/* Motion Shading — shared design system */
:root {
  --ink: #0f1a2b;
  --ink-soft: #1c2a40;
  --paper: #f6f3ec;
  --paper-warm: #ece7dc;
  --paper-deep: #e4ddcd;
  --sage: #7a8f6b;
  --sage-deep: #556347;
  --brass: #b89968;
  --brass-light: #cdb388;
  --rule: rgba(15, 26, 43, 0.12);
  --rule-soft: rgba(15, 26, 43, 0.07);
  --muted: rgba(15, 26, 43, 0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.display, h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

em { font-style: italic; }

/* Placeholder frames */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.08) 100%),
    repeating-linear-gradient(45deg, #2a3142 0 2px, #252b3c 2px 14px);
  overflow: hidden;
}
.ph--warm {
  background:
    linear-gradient(135deg, rgba(184,153,104,0.06) 0%, rgba(15,26,43,0.12) 100%),
    repeating-linear-gradient(45deg, #c4b79e 0 2px, #bdaf93 2px 14px);
}
.ph-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.85);
  background: rgba(15, 26, 43, 0.55);
  padding: 6px 12px;
  backdrop-filter: blur(6px);
  z-index: 1;
}
.ph--warm .ph-tag { color: var(--ink); background: rgba(246, 243, 236, 0.75); }

/* ---------- NAV ---------- */
nav.site-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
nav.site-nav.inverted { color: var(--ink); border-bottom: 1px solid var(--rule); position: relative; background: var(--paper); }
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
.logo span { color: var(--brass-light); font-style: italic; font-weight: 300; }
nav.site-nav.inverted .logo span { color: var(--brass); }

.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--brass-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
nav.site-nav.inverted .nav-links a::after { background: var(--brass); }

.phone {
  font-size: 12px;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 11px 22px;
  border-radius: 0;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}
.phone:hover { background: #fff; color: var(--ink); border-color: #fff; }
nav.site-nav.inverted .phone { border-color: var(--rule); }
nav.site-nav.inverted .phone:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- PAGE HEADER (subpage hero) ---------- */
.page-head {
  position: relative;
  min-height: 480px;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.page-head-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1a2438 0%, #0f1a2b 60%, #1c2a40 100%),
    radial-gradient(ellipse at 70% 40%, rgba(184,153,104,0.15), transparent 60%);
}
.page-head-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 50% 70% at 65% 40%, rgba(255, 235, 200, 0.2), transparent 70%),
    linear-gradient(180deg, transparent 50%, rgba(15,26,43,0.5) 100%);
}
.page-head-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,26,43,0.3) 0%, rgba(15,26,43,0.55) 100%);
}
.page-head-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumb a { color: inherit; text-decoration: none; opacity: 0.7; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb .sep { color: var(--brass-light); }
.page-head h1 {
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 24px;
}
.page-head h1 em { color: var(--brass-light); font-weight: 300; }
.page-head .lede {
  font-size: 18px;
  max-width: 56ch;
  opacity: 0.85;
  font-weight: 300;
  line-height: 1.65;
}

/* ---------- SECTION / EYEBROW ---------- */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.section-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brass);
}
.section-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  margin-bottom: 80px;
  align-items: end;
}
.section-header h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.03;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.section-header h2 em { color: var(--sage-deep); }
.section-header p {
  color: var(--muted);
  font-size: 17px;
  max-width: 42ch;
  line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-dark {
  padding: 18px 36px;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.btn-primary { background: var(--paper); color: var(--ink); }
.btn-primary:hover { background: var(--brass); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--brass); }
.btn-primary .arrow, .btn-dark .arrow { transition: transform 0.35s; display: inline-block; }
.btn-primary:hover .arrow, .btn-dark:hover .arrow { transform: translateX(6px); }
.btn-ghost {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 6px;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--brass-light); color: var(--brass-light); }

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: 140px 48px;
  background: var(--paper-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; top: 50%; height: 1px; width: 80px;
  background: var(--brass); opacity: 0.4;
}
.cta-band::before { left: 48px; }
.cta-band::after { right: 48px; }
.cta-band-inner { max-width: 820px; margin: 0 auto; position: relative; }
.cta-band .section-eyebrow { justify-content: center; color: var(--brass); }
.cta-band .section-eyebrow::before { background: var(--brass); }
.cta-band .section-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--brass); }
.cta-band h2 {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.03;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.cta-band h2 em { color: var(--sage-deep); }
.cta-band > .cta-band-inner > p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-meta {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-meta span { display: inline-flex; align-items: center; gap: 10px; }
.cta-meta span::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--brass);
}

/* ---------- FOOTER ---------- */
footer.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246, 243, 236, 0.12);
}
footer h4 {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  color: var(--brass-light);
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a {
  color: rgba(246, 243, 236, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
footer a:hover { color: var(--brass-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  font-size: 11px;
  opacity: 0.55;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .nav-links { gap: 24px; font-size: 11px; }
  nav.site-nav { padding: 24px 32px; }
}
@media (max-width: 900px) {
  nav.site-nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .container, .page-head-content, .cta-band, footer.site-footer { padding-left: 24px; padding-right: 24px; }
  .section-header { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-band::before, .cta-band::after { display: none; }
}

/* ---------- MOBILE NAV — CSS-only hamburger (activates only where .nav-toggle markup exists) ---------- */
.nav-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.nav-burger { display: none; }
@media (max-width: 900px) {
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 30px; height: 24px; padding: 0; cursor: pointer; color: inherit; z-index: 1002;
  }
  .nav-burger span {
    display: block; width: 100%; height: 1.5px; background: currentColor;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .2s ease;
  }
  .nav-toggle ~ .nav-links {
    position: fixed; inset: 0; z-index: 1001; margin: 0; padding: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    background: var(--ink);
    font-family: 'Fraunces', serif; font-weight: 300; text-transform: none;
    font-size: clamp(30px, 8vw, 42px); letter-spacing: -0.01em;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .45s ease, visibility .45s ease;
  }
  .nav-toggle ~ .nav-links li {
    opacity: 0; transform: translateY(16px);
    transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1);
  }
  .nav-toggle ~ .nav-links a { color: var(--paper); opacity: .92; padding: 8px 0; }
  .nav-toggle ~ .nav-links a::after { display: none; }
  .nav-toggle ~ .nav-links a:hover { color: var(--brass-light); opacity: 1; }
  .nav-toggle ~ .phone { display: none; }
  .nav-toggle:checked ~ .nav-links { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-toggle:checked ~ .nav-links li { opacity: 1; transform: none; }
  .nav-toggle:checked ~ .nav-links li:nth-child(1) { transition-delay: .10s; }
  .nav-toggle:checked ~ .nav-links li:nth-child(2) { transition-delay: .15s; }
  .nav-toggle:checked ~ .nav-links li:nth-child(3) { transition-delay: .20s; }
  .nav-toggle:checked ~ .nav-links li:nth-child(4) { transition-delay: .25s; }
  .nav-toggle:checked ~ .nav-links li:nth-child(5) { transition-delay: .30s; }
  .nav-toggle:checked ~ .nav-links li:nth-child(6) { transition-delay: .35s; }
  .nav-toggle:checked ~ .nav-links li:nth-child(7) { transition-delay: .40s; }
  .nav-toggle:checked ~ .phone {
    display: inline-flex; position: fixed; left: 50%; bottom: 8vh; transform: translateX(-50%);
    z-index: 1002; color: var(--paper); border-color: rgba(246,243,236,0.4);
  }
  .nav-toggle:checked ~ .nav-burger { position: fixed; top: 22px; right: 22px; color: var(--paper); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- PHONE TIER (≤600px) — shared components ---------- */
@media (max-width: 600px) {
  nav.site-nav { padding: 20px 22px; }
  .container, .page-head-content, .cta-band, footer.site-footer { padding-left: 22px; padding-right: 22px; }
  .btn-primary, .btn-dark { padding: 16px 26px; font-size: 11px; justify-content: center; }
  .page-head { min-height: 440px; padding-bottom: 52px; }
  .page-head h1 { font-size: clamp(34px, 11vw, 50px); }
  .page-head .lede { font-size: 16px; }
  .cta-band { padding: 80px 22px; }
  .cta-band h2 { font-size: clamp(32px, 9vw, 44px); }
  .cta-band > .cta-band-inner > p { font-size: 16px; }
  .cta-meta { gap: 12px 22px; }
  footer.site-footer { padding: 64px 22px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; align-items: center; }
}
