:root {
  --primary: #241a17;
  --secondary: #3a2924;
  --gold: #c9a227;
  --gold-soft: #e4c96a;
  --cream: #f7f3ec;
  --white: #ffffff;
  --text: #222222;
  --muted: #6b625c;
  --line: rgba(36, 26, 23, 0.12);
  --shadow-sm: 0 8px 24px rgba(36, 26, 23, 0.08);
  --shadow-md: 0 16px 40px rgba(36, 26, 23, 0.12);
  --shadow-lg: 0 26px 70px rgba(36, 26, 23, 0.18);
  --radius: 22px;
  --max: 1220px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.12;
  color: var(--primary);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.03em;
}
h2 em {
  font-style: italic;
  color: var(--gold);
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
.section-space {
  padding: 105px 0;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.eyebrow.light {
  color: var(--gold-soft);
}
.section-head {
  max-width: 700px;
  margin-bottom: 50px;
}
.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
}
.light-head h2,
.light-head .section-sub {
  color: var(--white);
}
.nav-toggle {
  display: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.watch-icon {
  width: 18px;
  height: 22px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  display: block;
  position: relative;
}
.watch-icon:before,
.watch-icon:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 7px;
  border-left: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.watch-icon:before {
  top: -8px;
}
.watch-icon:after {
  bottom: -8px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: max-content;
}

.navbar-logo {
    width: 180px;
    height: 80px;
    object-fit: contain;
    display: block;
}
.site-nav {
  margin-left: auto;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 27px;
}
.site-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
}
.site-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.25s;
}
.site-nav a:hover:after {
  width: 100%;
}
.nav-burger {
  display: none;
  margin-left: auto;
  width: 30px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
}
.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
  transition: max-height 0.3s;
}
.mobile-nav ul {
  padding: 8px 24px;
}
.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-weight: 600;
}
#nav-toggle:checked ~ .site-header .mobile-nav {
  max-height: 500px;
}
.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("image/hero1.png");
  background-size: cover;
  background-position: center 57%;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(19, 12, 10, 0.93) 0%,
      rgba(36, 26, 23, 0.76) 46%,
      rgba(36, 26, 23, 0.35) 100%
    ),
    linear-gradient(0deg, rgba(10, 6, 5, 0.68), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  max-width: 900px;
  margin: 0;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.2rem);
  letter-spacing: 0.015em;
}
.hero-content h1 span {
  font-size: 0.52em;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
}
.hero-tagline {
  color: #f8efe4;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  margin: 22px 0 12px;
}
.hero-desc {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 25px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s;
}
.btn-primary {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.22);
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}
.light-btn {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 34px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 55px;
  background: var(--gold);
  margin: 12px auto 0;
}
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 78px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.image-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(36, 26, 23, 0.9);
  color: var(--white);
  padding: 10px 15px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-left: 2px solid var(--gold);
}
.image-caption span {
  color: var(--gold);
  margin-right: 8px;
}
.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 17px;
}
.about-copy h2 {
  margin-bottom: 24px;
}
.about-points {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.about-points span {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.about-points strong {
  font-size: 0.92rem;
}
.collections {
  background: #eee8dd;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.collection-card {
  position: relative;
  background: var(--white);
  min-height: 285px;
  border-radius: var(--radius);
  padding: 27px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: 0.3s;
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.featured-card {
  grid-row: span 2;
  padding: 0;
}
.featured-card .card-image {
  height: 360px;
  overflow: hidden;
}
.featured-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.featured-card:hover .card-image img {
  transform: scale(1.05);
}
.featured-card h3,
.featured-card p {
  margin-left: 27px;
  margin-right: 27px;
}
.featured-card h3 {
  margin-top: 20px;
}
.featured-card p {
  margin-bottom: 28px;
}
.card-number {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 700;
}
.featured-card .card-number {
  margin: 22px 27px 0;
}
.collection-card h3 {
  font-size: 1.35rem;
  margin: 14px 0 9px;
}
.collection-card p {
  color: var(--muted);
  font-size: 0.9rem;
}
.card-icon {
  font-size: 2.4rem;
  color: var(--gold);
  font-family: serif;
}
.dark-card {
  background: var(--primary);
  color: var(--white);
}
.dark-card h3 {
  color: var(--white);
}
.dark-card p {
  color: rgba(255, 255, 255, 0.7);
}
.brands {
  background: var(--cream);
}
.brand-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}
.brand-intro > p {
  max-width: 440px;
  color: var(--muted);
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 25px;
  border-right: 1px solid var(--line);
  transition: 0.25s;
}
.brand-card:last-child {
  border-right: 0;
}
.brand-card:hover {
  background: var(--white);
}
.brand-card span {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.brand-card strong {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  letter-spacing: 0.05em;
}
.why-us {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.why-us:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -200px;
  top: -230px;
  border: 1px solid rgba(201, 162, 39, 0.18);
}
.why-us .container {
  position: relative;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}
.feature-card {
  background: var(--primary);
  padding: 32px 27px;
  min-height: 210px;
  transition: 0.25s;
}
.feature-card:hover {
  background: #30221e;
}
.feature-no {
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 700;
}
.feature-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 17px 0 8px;
}
.feature-card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}
.gallery {
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  background: #ddd;
}
.gallery-item.large {
  aspect-ratio: 1.45/1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 12, 10, 0.7), transparent 55%);
}
.gallery-item figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-section {
  background: var(--secondary);
  color: var(--white);
  padding: 75px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.cta-inner h2 {
  color: var(--white);
  margin-bottom: 13px;
}
.cta-inner p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}
.contact {
  background: #eee8dd;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.contact-copy h2 {
  margin-bottom: 18px;
}
.contact-lead {
  color: var(--muted);
  max-width: 560px;
}
.contact-details {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.contact-details div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-details span {
  font-size: 0.65rem;
  letter-spacing: 0.17em;
  color: var(--gold);
  font-weight: 700;
}
.contact-details strong {
  font-size: 0.94rem;
}
.contact-note {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 22px;
}
.contact-visual {
  position: relative;
}
.contact-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.location-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 13px 17px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.location-pin {
  color: var(--gold);
  font-size: 1.4rem;
}
.location-card strong {
  display: block;
  font-size: 0.9rem;
}
.location-card small {
  color: var(--muted);
}
.site-footer {
  background: #1b1311;
  color: rgba(255, 255, 255, 0.68);
  padding-top: 65px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 55px;
}
.footer-logo-img {
    width: 180px;
    height:120px;
    object-fit: contain;
    display: block;
}
.footer-logo b {
  color: var(--gold);
  font-size: 0.78em;
  letter-spacing: 0.12em;
}
.footer-logo .watch-icon {
  color: var(--gold);
}
.footer-brand > p {
  margin-top: 17px;
  font-size: 0.83rem;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links h3,
.footer-contact h3 {
  font-family: "DM Sans", sans-serif;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.footer-links a,
.footer-contact a,
.footer-contact p {
  font-size: 0.86rem;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px 24px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 1050px) {
  .site-nav ul {
    gap: 18px;
  }
  .about-grid {
    gap: 45px;
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-card {
    grid-row: span 1;
  }
  .featured-card .card-image {
    height: 330px;
  }
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-card:nth-child(3) {
    border-right: 0;
  }
  .brand-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .container {
    width: min(var(--max), calc(100% - 36px));
  }
  .site-nav {
    display: none;
  }
  .nav-burger {
    display: block;
  }
  .mobile-nav {
    display: block;
  }
  .hero {
    min-height: calc(100vh - 72px);
  }
  .header-inner {
    height: 72px;
  }
  .hero-content {
    padding: 75px 0;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(19, 12, 10, 0.9), rgba(36, 26, 23, 0.58)),
      linear-gradient(0deg, rgba(10, 6, 5, 0.72), transparent 55%);
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-image-wrap {
    max-width: 600px;
  }
  .brand-intro {
    display: block;
  }
  .brand-intro > p {
    margin-top: 18px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.large {
    grid-column: 1/-1;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    display: block;
  }
  .cta-inner .btn {
    margin-top: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  .section-space {
    padding: 72px 0;
  }
  .container {
    width: min(var(--max), calc(100% - 30px));
  }
  .brand-name {
    font-size: 0.9rem;
  }
  .brand-sub {
    font-size: 0.52rem;
  }
  .hero-content h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }
  .hero-content {
    padding: 55px 0;
  }
  .hero-scroll {
    display: none;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .collection-grid,
  .feature-grid,
  .gallery-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .featured-card .card-image {
    height: 320px;
  }
  .brand-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
    min-height: 110px;
  }
  .brand-card:last-child {
    border-bottom: 0;
  }
  .gallery-item.large {
    grid-column: auto;
    aspect-ratio: 1/1;
  }
  .gallery-item {
    aspect-ratio: 1/1;
  }
  .contact-visual {
    margin-top: 5px;
  }
  .location-card {
    left: 15px;
    right: auto;
    bottom: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-links,
  .footer-contact {
    padding-top: 8px;
  }
}
.location-map {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  background: var(--cream);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 768px) {
  .location-map {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .location-map {
    height: 300px;
  }
}
