/* ==========================================================================
   MANTELLO — Premium luxury-fashion design system
   Apple-inspired refinement, warm cream/champagne palette from bg.mp4
   ========================================================================== */

:root {
  /* Palette */
  --cream: #F5EDE0;
  --champagne: #EFE6D6;
  --sand: #D4C4A8;
  --bronze: #B8956A;
  --bronze-deep: #9A7A52;
  --coffee: #5C4A35;
  --ink: #2A2520;
  --ink-soft: #3A332C;
  --white: #FFFFFF;
  --hairline: rgba(42, 37, 32, 0.12);
  --hairline-light: rgba(245, 237, 224, 0.18);

  /* Type */
  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Easing */
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --gutter: clamp(20px, 5vw, 96px);
  --maxw: 1440px;
  --nav-h: 76px;
}

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--f-ui);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection {
  background: var(--bronze);
  color: var(--white);
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px;
  font-size: 14px;
  transition: top 0.2s var(--ease-soft);
}
.skip-link:focus { top: 16px; }

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ==========================================================================
   Type primitives
   ========================================================================== */

.display {
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--bronze);
}

.display--xl  { font-size: clamp(56px, 9vw, 116px); }
.display--lg  { font-size: clamp(40px, 6vw, 76px); }
.display--md  { font-size: clamp(28px, 4vw, 48px); }

.eyebrow {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coffee);
}
.eyebrow--bronze { color: var(--bronze); }
.eyebrow--light  { color: var(--cream); opacity: 0.85; }

.muted { color: var(--coffee); }

.wordmark {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.wordmark--lg { font-size: 36px; letter-spacing: 0.28em; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease-soft),
              color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft);
  white-space: nowrap;
}
.btn__arrow {
  display: inline-block;
  font-size: 18px;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--ink-soft); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(42, 37, 32, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(245, 237, 224, 0.4);
}

.btn--light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn--light:hover { background: var(--white); }

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  height: var(--nav-h);
  transition: background 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft),
              backdrop-filter 0.4s var(--ease-soft);
  border-bottom: 1px solid transparent;
}

.nav[data-state="top"] {
  background: linear-gradient(180deg, rgba(245, 237, 224, 0.55) 0%, rgba(245, 237, 224, 0) 100%);
}

.nav[data-state="scrolled"] {
  background: rgba(245, 237, 224, 0.86);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom-color: var(--hairline);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.nav__brand { color: var(--ink); }

.nav__links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.3s var(--ease-soft);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--bronze);
  transition: width 0.4s var(--ease-out);
}
.nav__links a:hover { color: var(--bronze); }
.nav__links a:hover::after { width: 100%; }

.nav__meta {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  color: var(--ink);
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft),
              border-color 0.3s var(--ease-soft);
}
.nav__icon:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Burger button — hidden on desktop */
.nav__burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft);
}
.nav__burger:hover { background: rgba(42, 37, 32, 0.05); }
.nav__burger-line {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-soft),
              top 0.4s var(--ease-out), bottom 0.4s var(--ease-out);
  border-radius: 1px;
}
.nav__burger-line:nth-child(1) { top: 15px; }
.nav__burger-line:nth-child(2) { top: 50%; transform: translate(-50%, -50%); }
.nav__burger-line:nth-child(3) { bottom: 15px; }

/* Burger → X when menu open */
body.m-open .nav__burger-line:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
body.m-open .nav__burger-line:nth-child(2) { opacity: 0; }
body.m-open .nav__burger-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__meta { display: none; }
  .nav__burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* ==========================================================================
   Mobile menu (full-screen overlay)
   ========================================================================== */

.m-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 24px) var(--gutter) clamp(24px, 6vw, 48px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out),
              visibility 0s linear 0.5s;
  overflow-y: auto;
}
.m-menu[data-state="open"] {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out),
              visibility 0s linear 0s;
}

/* Subtle decorative gradient */
.m-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(184, 149, 106, 0.12), transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(212, 196, 168, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.m-menu__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 48px;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.m-menu__links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.m-menu__links a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
  transition: color 0.3s var(--ease-soft), padding-left 0.3s var(--ease-soft);
}
.m-menu__links a:hover { color: var(--bronze); padding-left: 8px; }
.m-menu__links a[aria-current="page"] { color: var(--bronze); }

.m-menu__no {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--bronze);
  flex: 0 0 auto;
  width: 28px;
}
.m-menu__label {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 8vw, 52px);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Stagger reveal */
.m-menu__links a {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out),
              color 0.3s var(--ease-soft), padding-left 0.3s var(--ease-soft);
}
.m-menu[data-state="open"] .m-menu__links a {
  opacity: 1;
  transform: none;
}
.m-menu[data-state="open"] .m-menu__links a:nth-child(1) { transition-delay: 0.08s, 0.08s, 0s, 0s; }
.m-menu[data-state="open"] .m-menu__links a:nth-child(2) { transition-delay: 0.16s, 0.16s, 0s, 0s; }
.m-menu[data-state="open"] .m-menu__links a:nth-child(3) { transition-delay: 0.24s, 0.24s, 0s, 0s; }
.m-menu[data-state="open"] .m-menu__links a:nth-child(4) { transition-delay: 0.32s, 0.32s, 0s, 0s; }

/* Footer block */
.m-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.m-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease-soft);
}
.m-menu__cta:hover { background: var(--ink-soft); }
.m-menu__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--coffee);
}
.m-menu__socials a:hover { color: var(--bronze); }
.m-menu__tag {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 8px;
}

/* Hide overlay above the breakpoint */
@media (min-width: 881px) {
  .m-menu { display: none !important; }
}

/* Lock body scroll while menu is open */
body.m-open { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--champagne);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: calc(var(--nav-h) + 80px) var(--gutter) 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 100vh;
  min-height: 100svh;
  justify-content: center;
}

.hero__content .eyebrow { margin-bottom: -14px; }

.hero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--coffee);
  max-width: 460px;
  margin: 0;
  font-weight: 300;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coffee);
}
.hero__scroll-line {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--bronze), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bronze);
  animation: scrollLine 2.6s var(--ease-soft) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Default: only show the long subtitle. The short version is a mobile swap. */
.hero__sub--short { display: none; }

@media (max-width: 760px) {
  /* Mobile: load the portrait-composed video. Push it down so models
     sit in the lower ~47% of viewport, leaving the upper half as the
     cream/silk text canvas */
  .hero__video { transform: translateY(18%); }

  /* Text-on-image, top-aligned, compact stack — primary CTA must land
     before the models begin so faces stay visible */
  .hero__content {
    justify-content: flex-start;
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: 56px;
    gap: 14px;
    max-width: 100%;
  }

  /* Headline scales with viewport, sized to feel impactful on phones */
  .display--xl { font-size: clamp(44px, 13vw, 72px); }
  .hero__content .eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
    margin-bottom: -6px;
  }
  .hero__sub {
    font-size: 15px;
    line-height: 1.5;
    max-width: 28ch;
  }
  .hero__sub--full { display: none; }
  .hero__sub--short { display: inline; }

  /* Stacked CTAs on mobile — primary pill, secondary underlined link */
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px;
  }
  .hero .btn--primary {
    width: auto;
    align-self: stretch;
    justify-content: center;
    padding: clamp(18px, 5vw, 26px) clamp(28px, 7vw, 36px);
    font-size: clamp(13px, 3.4vw, 15px);
    letter-spacing: 0.1em;
    gap: clamp(12px, 3vw, 18px);
  }
  .hero .btn--primary .btn__arrow {
    font-size: clamp(18px, 4.5vw, 22px);
  }
  .hero .btn--ghost {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 4px 0;
    border-bottom: 1px solid var(--coffee);
    color: var(--coffee);
    font-size: 12px;
    letter-spacing: 0.22em;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    align-self: flex-start;
  }
  .hero .btn--ghost::after {
    content: "→";
    margin-left: 12px;
    font-size: 14px;
    transition: transform 0.4s var(--ease-out);
  }
  .hero .btn--ghost:hover {
    border-bottom-color: var(--ink);
    color: var(--ink);
    background: transparent;
  }
  .hero .btn--ghost:hover::after { transform: translateX(4px); }

  .hero__scroll { display: none; }
}

/* Tiny phones: tighten the headline a touch more so it stays above models */
@media (max-width: 420px) {
  .display--xl { font-size: clamp(40px, 14vw, 60px); }
}

/* Larger phones (iPhone Pro Max class, ≥414px wide AND tall enough):
   bump headline / subtitle / eyebrow / button so they feel proportional
   to the bigger viewport */
@media (min-width: 414px) and (max-width: 760px) and (min-height: 800px) {
  .display--xl { font-size: 58px; line-height: 0.96; }
  .hero__content .eyebrow {
    font-size: 13px;
    letter-spacing: 0.24em;
  }
  .hero__sub {
    font-size: 18px;
    line-height: 1.5;
    max-width: 32ch;
  }
  .hero .btn--primary {
    padding: 22px 34px;
    font-size: 15px;
    letter-spacing: 0.1em;
  }
  .hero .btn--primary .btn__arrow { font-size: 22px; }
  .hero__content { gap: 20px; padding-top: calc(var(--nav-h) + 28px); }
}

/* Short viewports (iPhone SE class — 667px): keep the stack compact
   enough to clear the models, but bump up everything proportionally
   so it doesn't feel cramped */
@media (max-width: 760px) and (max-height: 750px) {
  .hero__content {
    padding-top: calc(var(--nav-h) + 14px);
    padding-bottom: 28px;
    gap: 12px;
  }
  .display--xl { font-size: 42px; line-height: 1; }
  .hero__content .eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    margin-bottom: -4px;
  }
  .hero__sub { font-size: 14px; line-height: 1.4; max-width: 24ch; }
  .hero__cta { margin-top: 2px; }
  .hero .btn--primary {
    padding: 16px 26px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }
  .hero .btn--primary .btn__arrow { font-size: 18px; }
  /* SE has no room for both CTAs; the ghost link lives in the burger menu */
  .hero .btn--ghost { display: none; }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trust {
  background: var(--cream);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 20px;
  border-left: 1px solid var(--hairline);
}
.trust__item:first-child { border-left: none; padding-left: 0; }
.trust__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trust__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coffee);
}

@media (max-width: 760px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; padding: 32px var(--gutter); }
  .trust__item { padding-left: 0; border-left: none; }
}

/* ==========================================================================
   Story
   ========================================================================== */

.story {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.story__quote { display: flex; flex-direction: column; gap: 28px; }
.story__quote .display { max-width: 14ch; }
.story__quote .display .muted {
  color: var(--coffee);
  font-style: normal;
  display: block;
  margin-bottom: 0.15em;
}

.story__founders {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: clamp(0px, 4vw, 56px);
  border-left: 1px solid var(--hairline);
}
.story__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story__copy .eyebrow { margin-bottom: 6px; }

.story__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 42ch;
}
.story__copy strong { font-weight: 500; color: var(--ink); }
.story__signature {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--bronze);
  margin-top: 24px;
}

@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story__founders {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--hairline);
    padding-top: 32px;
  }
}

/* ==========================================================================
   Section heads
   ========================================================================== */

.section-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
}
.section-head--center {
  text-align: center;
  align-items: center;
}
.section-head__lede {
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--coffee);
  margin: 0;
}

/* ==========================================================================
   Craft / pillars
   ========================================================================== */

.craft {
  background: var(--champagne);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.craft::before, .craft::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--hairline);
}
.craft::before { top: 0; }
.craft::after { bottom: 0; }

.pillars {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
.pillar {
  position: relative;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
}
.pillar__no {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--bronze);
  margin-bottom: 24px;
}
.pillar__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.pillar p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--coffee);
  max-width: 38ch;
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   Stores
   ========================================================================== */

.stores { padding: clamp(80px, 12vw, 160px) 0; }
.store-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  counter-reset: store-counter;
}
.store-card {
  position: relative;
  background: var(--white);
  padding: 36px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  counter-increment: store-counter;
  transition: transform 0.5s var(--ease-out),
              border-color 0.4s var(--ease-soft),
              box-shadow 0.5s var(--ease-out),
              background 0.4s var(--ease-soft);
}
.store-card::before {
  content: counter(store-counter, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--bronze);
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.store-card:hover {
  transform: translateY(-3px);
  border-color: var(--sand);
  box-shadow: 0 18px 40px -22px rgba(42, 37, 32, 0.18);
  background: var(--white);
}

.store-card__city {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  padding-right: 36px;
  color: var(--ink);
  line-height: 1.05;
}
.store-card__addr {
  font-size: 14px;
  line-height: 1.6;
  color: var(--coffee);
  margin: 0;
}
.store-card__hours {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 12px 0 6px;
  padding: 6px 10px;
  background: var(--champagne);
  border-radius: 999px;
}
.store-card__hours::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--bronze);
}
.store-card__phone {
  font-family: var(--f-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.store-card__phone:hover { color: var(--bronze); }
.store-card__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  transition: color 0.3s var(--ease-soft);
}
.store-card__wa .wa-ico {
  width: 14px;
  height: 14px;
  color: var(--bronze);
  transition: transform 0.4s var(--ease-out);
}
.store-card__wa .wa-arrow {
  margin-left: auto;
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 0.4s var(--ease-out);
}
.store-card__wa:hover { color: var(--bronze); }
.store-card__wa:hover .wa-arrow { transform: translateX(3px); }

@media (max-width: 1100px) { .store-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  {
  .store-grid { grid-template-columns: 1fr; }
  .store-card { padding: 28px 24px 24px; }
}

/* ==========================================================================
   Franchise CTA
   ========================================================================== */

.franchise {
  background:
    radial-gradient(120% 100% at 80% 10%, rgba(184, 149, 106, 0.25), transparent 60%),
    linear-gradient(160deg, #2C2519 0%, #1A1611 100%);
  color: var(--cream);
  padding: clamp(96px, 14vw, 180px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.franchise::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -180px;
  top: -180px;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.18) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.franchise__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 920px;
}

.franchise .display { color: var(--cream); }
.franchise .display em { color: var(--bronze); }

.franchise__lede {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245, 237, 224, 0.78);
  max-width: 60ch;
  margin: 0;
  font-weight: 300;
}

.franchise__points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 24px 0 16px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}
.franchise__points li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.franchise__points strong {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}
.franchise__points span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.6);
}

.franchise__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .franchise__points { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.foot {
  background: var(--cream);
  padding: clamp(64px, 8vw, 120px) var(--gutter) 32px;
  border-top: 1px solid var(--hairline);
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--hairline);
}
.foot__brand p {
  margin-top: 18px;
  max-width: 32ch;
  color: var(--coffee);
  font-size: 14px;
  line-height: 1.65;
}
.foot__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 8px;
}
.foot__col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease-soft);
}
.foot__col a:hover { color: var(--bronze); }
.foot__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.foot__wa .wa-ico { color: var(--bronze); flex: 0 0 auto; }

.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coffee);
}

@media (max-width: 900px) {
  .foot__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .foot__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Ghost button on dark backgrounds
   ========================================================================== */

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 237, 224, 0.35);
}
.btn--ghost-light:hover {
  border-color: var(--cream);
  background: rgba(245, 237, 224, 0.08);
}
.btn__wa {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(245, 237, 224, 0.12);
  color: var(--cream);
}
.btn--primary .btn__wa,
.btn--light .btn__wa { background: rgba(42, 37, 32, 0.06); color: inherit; }

/* ==========================================================================
   Franchise page
   ========================================================================== */

.page-franchise { background: var(--cream); }
.page-franchise .nav[data-state="solid"] {
  background: rgba(245, 237, 224, 0.92);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--hairline);
}
.nav__links a[aria-current="page"] { color: var(--bronze); }
.nav__links a[aria-current="page"]::after { width: 100%; }

/* Hero */
.fr-hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--nav-h) + clamp(48px, 8vw, 120px)) var(--gutter)
           clamp(64px, 9vw, 120px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.fr-hero__inner { display: flex; flex-direction: column; gap: 28px; max-width: 620px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coffee);
  width: fit-content;
  transition: color 0.3s var(--ease-soft);
}
.back-link:hover { color: var(--bronze); }

.fr-hero__lede {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--coffee);
  max-width: 56ch;
  margin: 0;
}
.fr-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

.fr-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
}
.fr-stat {
  background: var(--champagne);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fr-stat__num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.fr-stat__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee);
}

@media (max-width: 900px) {
  .fr-hero { grid-template-columns: 1fr; }
  .fr-hero__stats { grid-template-columns: 1fr 1fr; }
}

/* Cities */
.fr-cities {
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
}
/* Tier blocks (price-banded city rows) */
.tier-block {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.tier-block + .tier-block { margin-top: clamp(48px, 6vw, 88px); }

.tier-block__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(24px, 3vw, 36px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.tier-block__no {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
}
.tier-block__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
.tier-block__hint {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--coffee);
  letter-spacing: 0.02em;
}

.tier-rows {
  display: flex;
  flex-direction: column;
}
.tier-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 3fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding: clamp(20px, 2.4vw, 28px) 0;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.4s var(--ease-soft);
}
.tier-row:hover { background: rgba(184, 149, 106, 0.04); }

.tier-row__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--f-display);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tier-row__num {
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
}
.tier-row__cur {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--bronze);
}

.tier-row__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tier-row__cities li {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--champagne);
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: background 0.3s var(--ease-soft),
              border-color 0.3s var(--ease-soft),
              color 0.3s var(--ease-soft),
              transform 0.4s var(--ease-out);
}
.tier-row:hover .tier-row__cities li {
  background: var(--cream);
  border-color: var(--hairline);
}
.tier-row__cities li:hover {
  background: var(--white);
  border-color: var(--bronze);
  color: var(--ink);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .tier-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }
  .tier-row__cities li { padding: 7px 12px; font-size: 13px; }
}

.fr-closed {
  max-width: var(--maxw);
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: 32px var(--gutter) 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fr-closed p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--coffee);
  margin: 0;
  max-width: 80ch;
}

/* Guarantee band */
.fr-guarantee {
  background: var(--champagne);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.fr-guarantee__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 820px;
}
.fr-guarantee p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}

/* Steps */
.fr-steps { padding: clamp(80px, 12vw, 160px) 0; }
.fr-steps-list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.fr-step {
  position: relative;
  padding: 36px clamp(24px, 3vw, 48px) 36px 0;
  border-top: 1px solid var(--hairline);
}
.fr-step:nth-child(2n) {
  padding-left: clamp(24px, 3vw, 48px);
  padding-right: 0;
  border-left: 1px solid var(--hairline);
}
.fr-step:nth-last-child(-n+2) { border-bottom: 1px solid var(--hairline); }
.fr-step__no {
  display: inline-block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--bronze);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.fr-step__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.fr-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--coffee);
  margin: 0;
  max-width: 56ch;
}

@media (max-width: 760px) {
  .fr-steps-list { grid-template-columns: 1fr; }
  .fr-step:nth-child(2n) { padding-left: 0; border-left: none; }
  .fr-step:nth-last-child(-n+2) { border-bottom: none; }
  .fr-step:last-child { border-bottom: 1px solid var(--hairline); }
}

/* Final CTA on franchise page */
.fr-cta {
  background:
    radial-gradient(120% 100% at 80% 10%, rgba(184, 149, 106, 0.25), transparent 60%),
    linear-gradient(160deg, #2C2519 0%, #1A1611 100%);
  color: var(--cream);
  padding: clamp(96px, 14vw, 180px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.fr-cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: -180px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.18) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.fr-cta__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 820px;
}
.fr-cta .display { color: var(--cream); }
.fr-cta .display em { color: var(--bronze); }
.fr-cta__lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245, 237, 224, 0.78);
  max-width: 56ch;
  margin: 0;
}
.fr-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

/* ==========================================================================
   Reveal animation (toggled by IntersectionObserver via .is-visible)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .hero__video { display: none; }
  .hero { background: linear-gradient(135deg, var(--cream), var(--sand)); }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
