.section-shell {
  width: min(var(--max-width), calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}

.top-row {
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 12px 0 10px;
  position: relative;
  margin-top: 0;
}

.brand img {
  height: 132px;
  width: auto;
  display: block;
}

.header-cta {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  padding: 15px 20px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

.site-header .section-shell {
  margin-top: 0;
}

.mobile-nav-toggle {
  display: none;
  border: 1px solid rgba(48, 43, 32, 0.25);
  background: #fff;
  border-radius: 10px;
  width: 40px;
  height: 36px;
  padding: 8px 9px;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #3b3528;
}

.mobile-submenu-toggle {
  display: none;
  border: 1px solid rgba(48, 43, 32, 0.25);
  background: #fff;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  line-height: 1;
  font-size: 14px;
  color: #3b3528;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-nav-backdrop {
  display: none;
}

.site-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
  margin: 0;
  padding: 0;
}

.site-nav-list > li {
  position: relative;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  margin: 0;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 30;
}

.dropdown-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hero {
  margin-bottom: 32px;
}

.landing-hero-photo {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 100vh;
  overflow: hidden;
  background: #ffffff url("../HeroHome.PNG") center center / cover no-repeat;
}

@media (min-width: 981px) and (max-width: 1366px) {
  .landing-hero-photo {
    height: clamp(420px, 62vh, 760px);
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.landing-hero-photo.is-video-active .hero-video {
  opacity: 1;
}

.section-shell {
  margin-top: 46px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.section-heading h2,
.story h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.94;
}

.collection-grid,
.occasion-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.occasion-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.story-copy {
  display: grid;
  gap: 16px;
}

.story-media {
  min-height: 360px;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  width: 100%;
  margin-left: 0;
  margin-top: 58px;
  margin-bottom: 0;
  background: linear-gradient(170deg, #f7f5ef 0%, #efebe2 100%);
  padding: clamp(24px, 3vw, 38px) max(20px, calc((100% - var(--max-width)) / 2));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-logo img {
  width: min(230px, 100%);
  height: auto;
  display: block;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 32ch;
}

.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links h3 {
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 0.92;
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(48, 43, 32, 0.8);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 0;
}

.footer-socials a {
  border: none;
  color: #111;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-socials a svg {
  width: 20px;
  height: 20px;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: #000;
  background: transparent;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(188, 150, 25, 0.2);
}

.footer-bottom p {
  text-align: center;
  color: rgba(48, 43, 32, 0.74);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(188, 150, 25, 0.35);
  display: grid;
  place-items: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cart-corner {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 70;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(48, 43, 32, 0.16);
  box-shadow: 0 10px 22px rgba(48, 43, 32, 0.14);
  display: grid;
  place-items: center;
}

.cart-corner svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

@media (max-width: 980px) {
  .site-header.nav-open {
    z-index: 140;
  }

  .section-shell {
    width: min(var(--max-width), calc(100% - 30px));
  }

  .header-cta {
    position: static;
    transform: none;
    margin-top: 4px;
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 150;
  }

  .site-nav {
    display: block;
    position: fixed;
    inset: 0 auto 0 0;
    width: min(50vw, 380px);
    min-width: 260px;
    height: 100vh;
    font-size: 11px;
    letter-spacing: 0.14em;
    background: rgba(255, 255, 255, 0.98);
    border-right: 1px solid rgba(188, 150, 25, 0.2);
    box-shadow: 12px 0 34px rgba(20, 20, 20, 0.12);
    margin-top: 0;
    padding: 20px 18px;
    transform: translateX(-105%);
    transition: transform 220ms ease;
    z-index: 160;
  }

  .site-header.nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    text-align: center;
  }

  .site-nav-list > li {
    width: 100%;
  }

  .site-nav-list > li > a {
    display: inline-block;
    padding: 4px 0;
  }

  .site-nav-list > li.has-dropdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .mobile-submenu-toggle {
    display: inline-flex;
    position: static;
    flex: 0 0 auto;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding: 6px 0 0;
    display: none;
    width: 100%;
    margin-top: 2px;
  }

  .dropdown-menu li {
    width: 100%;
  }

  .dropdown-menu a {
    display: block;
    padding: 4px 0;
    text-align: left;
    color: var(--muted);
    white-space: normal;
    width: fit-content;
    margin: 0 auto;
    transform: translateX(14px);
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .has-dropdown.submenu-open .dropdown-menu {
    display: block;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    transform: none;
    left: auto;
    top: auto;
  }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(20, 20, 20, 0.34);
    z-index: 130;
  }

  .mobile-nav-backdrop[hidden] {
    display: none !important;
  }

  .hero {
    margin-bottom: 34px;
  }

  .landing-hero-photo {
    height: clamp(320px, 62vh, 560px);
    background-position: center top;
  }

  .collection-grid,
  .occasion-grid,
  .contact-grid,
  .story {
    grid-template-columns: 1fr;
  }

  .story#about {
    display: none;
  }

  .site-footer {
    margin-top: 44px;
    padding-inline: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    justify-items: center;
    text-align: center;
  }

  .footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    margin-inline: auto;
  }

  .footer-links h3 {
    font-size: clamp(30px, 10vw, 38px);
  }

  .footer-links a {
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .footer-bottom p {
    letter-spacing: 0.08em;
    font-size: 11px;
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .cart-corner {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 600px) {
  .landing-hero-photo {
    height: clamp(160px, 31vh, 280px);
  }
}

@media (hover: hover) {
  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 34px rgba(188, 150, 25, 0.42);
  }
}
