/* ===== Design tokens ===== */
:root {
  --radius: 0.125rem;

  --background: oklch(0.095 0.01 285);
  --foreground: oklch(0.94 0.01 85);
  --card: oklch(0.15 0.025 260);
  --card-foreground: oklch(0.94 0.01 85);
  --primary: oklch(0.72 0.13 85);
  --primary-foreground: oklch(0.11 0.01 285);
  --secondary: oklch(0.17 0.018 270);
  --secondary-foreground: oklch(0.94 0.01 85);
  --muted: oklch(0.18 0.018 265);
  --muted-foreground: oklch(0.62 0.018 275);
  --accent: oklch(0.72 0.13 85);
  --accent-foreground: oklch(0.11 0.01 285);
  --border: oklch(0.32 0.02 265 / 45%);
  --input: oklch(0.32 0.02 265);
  --ring: oklch(0.72 0.13 85);
  --gold: oklch(0.72 0.13 85);
  --gold-soft: oklch(0.65 0.08 80);
  --navy: oklch(0.18 0.055 260);
  --navy-copy: oklch(0.67 0.025 265);
  --footer: oklch(0.085 0.009 285);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: var(--primary-foreground); }
.text-gold { color: var(--gold); }

/* ===== Header ===== */
.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem clamp(1.25rem, 6vw, 5rem);
  background: color-mix(in oklab, var(--background) 82%, transparent);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.wordmark { display: inline-flex; width: fit-content; flex-direction: column; font-family: var(--font-display); line-height: .72; }
.wordmark span { font-size: clamp(1.75rem, 8vw, 2.75rem); font-weight: 600; }
.wordmark small { margin-top: .65rem; padding-left: .7rem; font-family: var(--font-sans); font-size: .65rem; font-weight: 500; letter-spacing: .65rem; }

.desktop-nav { display: none; align-items: center; gap: 2.75rem; }
.nav-link { color: var(--muted-foreground); font-size: .92rem; transition: color .25s ease; }
.nav-link:hover { color: var(--foreground); }
.engage-link {
  border: 1px solid var(--gold-soft);
  padding: .9rem 1.5rem;
  color: var(--gold);
  font-size: .92rem;
  transition: background-color .25s ease, color .25s ease;
}
.engage-link:hover { background-color: var(--gold); color: var(--primary-foreground); }

.menu-button {
  position: relative;
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
}
.menu-line { position: absolute; left: .75rem; width: 1.2rem; height: 1px; background: var(--foreground); transition: transform .25s ease, top .25s ease; }
.menu-line-one { top: 1.05rem; }
.menu-line-two { top: 1.55rem; }
.menu-button[aria-expanded="true"] .menu-line-one { top: 1.3rem; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-line-two { top: 1.3rem; transform: rotate(-45deg); }

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 1.5rem clamp(1.25rem, 6vw, 5rem) 2rem;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a { display: block; padding: .9rem 0; color: var(--muted-foreground); }
.mobile-nav .mobile-engage { margin-top: .75rem; border: 1px solid var(--gold-soft); padding: .9rem 1rem; color: var(--gold); text-align: center; }

/* ===== Hero ===== */
.hero-section { position: relative; display: flex; min-height: min(44rem, 100svh); align-items: center; overflow: hidden; padding: 9rem clamp(1.25rem, 7.7vw, 6.5rem) 5rem; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      color-mix(in oklab, var(--background) 91%, transparent) 0%,
      color-mix(in oklab, var(--background) 63%, transparent) 62%,
      color-mix(in oklab, var(--background) 52%, transparent) 100%),
    linear-gradient(0deg, var(--background) 0%, transparent 58%);
}
.hero-grid { position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(to right, var(--foreground) 1px, transparent 1px); background-size: 11.11% 100%; }
.hero-content { position: relative; z-index: 1; max-width: 76rem; }
.eyebrow, .section-kicker { color: var(--gold-soft); font-size: .72rem; font-weight: 600; letter-spacing: .16rem; text-transform: uppercase; }
.hero-title { margin: 2.5rem 0 0; font-family: var(--font-display); font-size: clamp(2.6rem, 11.5vw, 8.25rem); font-weight: 500; line-height: .83; }
.hero-title span { display: block; max-width: 100%; overflow-wrap: break-word; }
.gold-rule { margin-top: 2.75rem; width: 6.25rem; height: 1px; background: var(--gold); }
.hero-copy { margin-top: 2.35rem; max-width: 48rem; color: color-mix(in oklab, var(--foreground) 70%, transparent); font-size: 1.1rem; line-height: 1.8; }

/* ===== Services ===== */
.services-section { background: var(--navy); padding: 7.5rem 0 8rem; }
.content-shell { width: min(92%, 1210px); margin-inline: auto; }
.section-title { margin-top: 1.45rem; font-family: var(--font-display); font-size: clamp(2rem, 7vw, 3.3rem); font-weight: 600; line-height: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 4.5rem; }
.service-item { min-height: 22rem; padding: 3.25rem 3.1rem; border-left: 1px solid var(--border); }
.service-item:last-child { border-right: 1px solid var(--border); }
.service-number { margin: 0; color: var(--navy-copy); font-size: .8rem; letter-spacing: .08rem; }
.service-item h3 { margin-top: 2rem; font-family: var(--font-display); font-size: clamp(1.45rem, 5.5vw, 1.8rem); font-weight: 600; line-height: 1.1; }
.service-item > p:last-child { margin-top: 1.35rem; color: var(--navy-copy); font-size: .98rem; line-height: 1.85; }

/* ===== Footer ===== */
.site-footer { background: var(--footer); padding: 4.5rem 3.1vw 2rem; }
.footer-main { display: grid; grid-template-columns: 1fr .45fr 1.2fr; gap: 4rem; min-height: 10rem; }
.footer-main .wordmark span { font-size: 2.35rem; }
.footer-tagline { margin-top: 1.75rem; color: var(--muted-foreground); font-size: .8rem; }
.footer-nav { display: flex; flex-direction: column; gap: 1.05rem; color: var(--muted-foreground); font-size: .82rem; }
.footer-nav a { width: fit-content; transition: color .25s ease; }
.footer-nav a:hover { color: var(--gold); }
.disclaimer { justify-self: end; max-width: 25rem; margin: 0; color: color-mix(in oklab, var(--muted-foreground) 75%, transparent); font-size: .67rem; line-height: 1.65; text-align: right; }
.footer-base { display: flex; justify-content: space-between; gap: 2rem; margin-top: 2.5rem; padding-top: 1.8rem; border-top: 1px solid var(--border); color: color-mix(in oklab, var(--muted-foreground) 60%, transparent); font-size: .65rem; }
.footer-base p { margin: 0; }
.footer-base p:last-child { color: var(--gold-soft); letter-spacing: .08rem; }

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .menu-button { display: none; }
  .mobile-nav { display: none !important; }
}

@media (max-width: 1024px) {
  .service-item { padding-inline: 2rem; }
}

@media (max-width: 767px) {
  .site-header { padding: 1.2rem 1.25rem; }
  .wordmark span { font-size: 2rem; }
  .wordmark small { margin-top: .5rem; padding-left: .45rem; font-size: .5rem; letter-spacing: .45rem; }
  .hero-section { min-height: min(38rem, 100svh); padding: 7rem 1.25rem 3.5rem; }
  .hero-image { object-position: 58% center; }
  .hero-shade {
    background:
      linear-gradient(90deg,
        color-mix(in oklab, var(--background) 87%, transparent),
        color-mix(in oklab, var(--background) 62%, transparent)),
      linear-gradient(0deg, var(--background), transparent 65%);
  }
  .hero-grid { background-size: 25% 100%; }
  .hero-title { margin-top: 2rem; line-height: .88; }
  .hero-title span { max-width: min(22rem, 100%); }
  .gold-rule { margin-top: 2rem; width: 4.5rem; }
  .hero-copy { margin-top: 1.75rem; font-size: .92rem; line-height: 1.7; }
  .services-section { padding: 5rem 0 4.5rem; }
  .content-shell { width: calc(100% - 2.5rem); }
  .section-title { max-width: min(20rem, 100%); font-size: 2.6rem; line-height: 1.05; }
  .services-grid { grid-template-columns: 1fr; margin-top: 3rem; }
  .service-item { min-height: 0; padding: 2.5rem 1.5rem 2.75rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .service-item:first-child { border-top: 1px solid var(--border); }
  .service-item h3 { margin-top: 1.4rem; }
  .site-footer { padding: 4rem 1.25rem 2rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
  .disclaimer { grid-column: 1 / -1; justify-self: start; max-width: none; text-align: left; }
  .footer-base { flex-direction: column; gap: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
