/* =====================================================
   TOKENS (Synced with home-v1.css)
===================================================== */
:root {
  /* --- COLORS (from home-v1) --- */
  --cream: #FAFAF7;
  --cream-warm: #F5F1E9;
  --dark: #1C1A18;
  --mid: #6A6763;
  --light-mid: #A09A94;
  --hairline: rgba(28, 26, 24, .09);
  --hairline-mid: rgba(28, 26, 24, .14);
  --burgundy: #7A1F2B;
  --burgundy-dk: #5C1720;
  --gold: #C8A36A;
  --gold-lt: #D9BC8F;
  --white: #FFFFFF;

  /* --- FONTS (from home-v1) --- */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* --- EASING (from home-v1) --- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* --- SHADOWS (from home-v1) --- */
  --shadow-sm: 0 2px 12px rgba(28, 26, 24, .06);
  --shadow-card: 0 4px 24px rgba(28, 26, 24, .08);
  --shadow-lift: 0 16px 56px rgba(28, 26, 24, .14);
  --shadow-xl: 0 32px 80px rgba(28, 26, 24, .18);

  /* --- LAYOUT (keep existing) --- */
  --max-w: 1240px;
  --pad-x: 32px;
  --section-gap: 112px;
  --radius: 20px;
  --radius-pill: 999px;

  /* --- TRANSITION (from home-v1) --- */
  --t: all 0.35s var(--ease);
}

/* =====================================================
   RESET & BASE (from home-v1)
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
iframe,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* =====================================================
   TYPE UTILITIES (from home-v1)
===================================================== */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: .95;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  color: var(--gold);
}

.eyebrow.dark {
  color: var(--burgundy);
}

.eyebrow--dark {
  color: var(--burgundy);
}

.body-text {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 400;
}

/* =====================================================
   LAYOUT (from home-v1)
===================================================== */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* =====================================================
   BUTTONS (from home-v1)
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 0 32px;
  height: 56px;
  border-radius: 999px;
  transition: background .3s var(--ease), transform .2s var(--ease), box-shadow .3s var(--ease);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 8px 24px -8px rgba(122, 31, 43, .38);
  position: relative;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.btn::after {
  display: none;
}

.btn:hover {
  background: var(--burgundy-dk);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(122, 31, 43, .50);
}

.btn:active {
  transform: translateY(0);
}

.btn .arrow {
  transition: transform .3s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* Button Variants (from home-v1) */
.btn-xl {
  height: 64px;
  padding: 0 40px;
  font-size: 15.5px;
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 16px 36px -10px rgba(122, 31, 43, .40);
}

.btn-cream {
  background: var(--white);
  color: var(--burgundy);
  box-shadow: 0 8px 24px -8px rgba(28, 26, 24, .14);
}

.btn-cream:hover {
  background: var(--cream);
  color: var(--burgundy-dk);
}

/* Alternate naming (keep existing) */
.btn--fill {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
  box-shadow: 0 8px 25px rgba(122, 31, 43, .25);
}

.btn--fill:hover {
  background: var(--burgundy-dk);
  border-color: var(--burgundy-dk);
  box-shadow: 0 8px 25px rgba(122, 31, 43, .25);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--hairline);
}

.btn--outline:hover {
  background: var(--cream-warm);
  border-color: var(--mid);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--burgundy);
  border-color: #fff;
}

.btn--lg {
  height: 64px;
  padding: 0 40px;
  font-size: 15.5px;
}

.btn--sm {
  height: 40px;
  padding: 0 20px;
  font-size: 12px;
}

/* =====================================================
   REVEAL ANIMATION (keep existing, add from home-v1)
===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.26s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.36s;
}

/* home-v1 reveal */
.rv.in {
  animation: rvIn .65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.rv-1.in {
  animation-delay: .05s;
}
.rv-2.in {
  animation-delay: .15s;
}
.rv-3.in {
  animation-delay: .25s;
}
.rv-4.in {
  animation-delay: .35s;
}
.rv-5.in {
  animation-delay: .45s;
}

@keyframes rvIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =====================================================
   GRAIN TEXTURE (keep existing)
===================================================== */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =====================================================
   TOP NAV (keep existing structure, update colors)
===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, .94);
  border-color: var(--hairline);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.nav__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 104px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}

.nav__links li {
  list-style: none;
}

.nav__links a,
.nav__links li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.nav__links a:hover,
.nav__links li a:hover,
.nav__links .current-menu-item > a {
  color: var(--burgundy);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: background 0.25s, transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 8px 24px -8px rgba(122, 31, 43, .38);
}

.nav__cta-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--burgundy-dk);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(122, 31, 43, .50);
}

.nav__cta:hover .nav__cta-arrow {
  transform: translateX(4px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--hairline);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

.nav__mobile.is-open {
  max-height: 600px;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
}

.nav__mobile-links li {
  list-style: none;
}

.nav__mobile-links a,
.nav__mobile-links li a {
  display: block;
  padding: 13px var(--pad-x);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  transition: color 0.2s, background 0.2s;
}

.nav__mobile-links a:hover,
.nav__mobile-links li a:hover,
.nav__mobile-links .current-menu-item > a {
  color: var(--burgundy);
  background: var(--cream);
}

.nav__mobile-cta {
  margin: 20px var(--pad-x) 24px;
  align-self: flex-start;
}

@media (max-width: 960px) {
  .nav__links {
    display: none;
  }
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__mobile {
    display: flex;
  }
  .nav__logo-img {
    height: 80px;
  }
}

/* =====================================================
   SUBMENU STYLING (keep existing, update colors)
===================================================== */
.nav__links .menu-item-has-children {
  position: relative;
}

.nav__links .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    visibility 0.25s;
  box-shadow: var(--shadow-lift);
}

.nav__links .menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  z-index: 1;
  pointer-events: none;
}

.nav__links .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__links .sub-menu li {
  display: block;
}

.nav__links .sub-menu a,
.nav__links .sub-menu li a {
  display: block;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  transition: all 0.2s;
  position: relative;
}

.nav__links .sub-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 3px;
  height: 14px;
  background: var(--burgundy);
  border-radius: 0 3px 3px 0;
  transition: transform 0.25s var(--ease);
}

.nav__links .sub-menu a:hover::before {
  transform: translateY(-50%) scaleX(1);
}

.nav__links .sub-menu a:hover,
.nav__links .sub-menu li a:hover {
  color: var(--burgundy);
  padding-left: 28px;
}

.nav__links .menu-item-has-children > a::after {
  content: '▾';
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  color: var(--light-mid);
  transition: transform 0.3s var(--ease);
}

.nav__links .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.nav__links .sub-menu .sub-menu {
  top: -6px;
  left: calc(100% + 8px);
  transform: translateX(0) translateY(4px);
}

.nav__links .sub-menu .menu-item-has-children:hover > .sub-menu {
  transform: translateX(0) translateY(0);
}

.nav__mobile-links .menu-item-has-children .sub-menu {
  display: none;
  background: var(--cream);
  margin: 0;
  padding: 0;
}

.nav__mobile-links .menu-item-has-children .sub-menu li a,
.nav__mobile-links .menu-item-has-children .sub-menu li a {
  padding-left: calc(var(--pad-x) + 24px);
  font-family: var(--font-body);
  font-size: 10px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(0, 0, 0, .02);
}

.nav__mobile-links .menu-item-has-children .sub-menu li:last-child a {
  border-bottom: 0;
}

.nav__mobile-links .menu-item-has-children .sub-menu a:hover,
.nav__mobile-links .menu-item-has-children .sub-menu li a:hover {
  background: var(--cream);
  padding-left: calc(var(--pad-x) + 28px);
}

.nav__mobile-links .menu-item-has-children.is-open > .sub-menu {
  display: block;
}

.nav__mobile-links .menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__mobile-links .menu-item-has-children > a::after {
  content: '▸';
  font-size: 14px;
  transition: transform 0.3s var(--ease);
  color: var(--light-mid);
}

.nav__mobile-links .menu-item-has-children.is-open > a::after {
  transform: rotate(90deg);
}

@media (max-width: 960px) {
  .nav__links .sub-menu {
    display: none;
  }
  .nav__links .menu-item-has-children:hover > .sub-menu {
    display: none;
  }
}

/* =====================================================
   FOOTER (keep existing, update colors)
===================================================== */
.footer {
  background: var(--white);
  color: var(--mid);
  padding: 52px 0 36px;
  border-top: 1px solid var(--hairline);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer__logo {
  display: inline-block;
}

.footer__logo-img {
  height: 90px;
  width: auto;
  display: block;
  opacity: 0.92;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  list-style: none;
}

.footer__nav li {
  list-style: none;
}

.footer__nav a,
.footer__nav li a {
  color: var(--mid);
  text-decoration: none;
  transition: color 0.25s;
}

.footer__nav a:hover,
.footer__nav li a:hover {
  color: var(--burgundy);
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-mid);
}

/* =====================================================
   SCROLLBAR + SELECTION (from home-v1)
===================================================== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--burgundy);
  border-radius: 10px;
  border: 2px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--burgundy-dk);
}

::selection {
  background: var(--burgundy);
  color: #fff;
}

/* =====================================================
   SKIP LINK (from home-v1)
===================================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--burgundy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
}

/* =====================================================
   RESPONSIVE (from home-v1)
===================================================== */
@media (max-width: 1024px) {
  .wrap {
    padding: 0 18px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 72px;
    --pad-x: 20px;
  }

  .wrap {
    padding: 0 18px;
  }
}

@media (max-width: 600px) {
  :root {
    --section-gap: 72px;
    --pad-x: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}