/* ==========================================================================
   Wisteria RALF — design tokens
   ========================================================================== */
:root{
  --black:#0c0c0b;
  --white:#ffffff;
  --ink:#111110;
  --muted:#6f6d67;
  --line:#e2e0da;
  --line-dark:#3a3937;
  --gold:#af8a34;
  --paper:#ffffff;

  --font-display:'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body:'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --gutter:clamp(20px, 5vw, 64px);
  --section-space:clamp(72px, 10vw, 144px);
  --max-width:1440px;
  --text-max-width:1080px;

  --ease:cubic-bezier(.22,.68,0,1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
ul, ol{ list-style:none; margin:0; padding:0; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; padding:0; }
h1,h2,h3,h4,p,figure,blockquote{ margin:0; }
input, textarea{ font:inherit; color:inherit; }

.skip-link{
  position:absolute; left:-999px; top:0; z-index:200;
  background:var(--black); color:var(--white); padding:12px 20px;
}
.skip-link:focus{ left:12px; top:12px; }

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding-left:var(--gutter);
  padding-right:var(--gutter);
}

/* ==========================================================================
   Type
   ========================================================================== */
.eyebrow{
  font-size:11px;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:18px;
}
.eyebrow--light{ color:rgba(255,255,255,0.82); }

h2{
  font-family:var(--font-display);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-0.02em;
  line-height:0.98;
}
.h2-md{ font-size:clamp(30px, 4.6vw, 62px); max-width:16ch; }

h3{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(17px, 1.5vw, 20px);
  letter-spacing:-0.01em;
}
h4{
  font-family:var(--font-display);
  font-weight:700;
  font-size:16px;
}

.prose{ max-width:62ch; }
.prose p{
  font-size:16px;
  line-height:1.7;
  color:var(--ink);
  margin-bottom:1.1em;
}
.prose p:last-child{ margin-bottom:0; }
.prose-emphasis{
  font-family:var(--font-display);
  font-weight:700;
  font-size:19px !important;
  letter-spacing:-0.01em;
}
.prose-lead{
  font-size:clamp(16px, 1.5vw, 19px);
  line-height:1.6;
  color:var(--ink);
  max-width:56ch;
  margin:18px 0 40px;
}
.prose-note{
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
  max-width:56ch;
  margin-top:24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-group{ display:flex; flex-wrap:wrap; gap:16px; align-items:center; margin-top:32px; }

/* Consistent spacing between body content and a standalone CTA */
.split-copy > .btn{ margin-top:32px; }
.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:var(--black);
  color:var(--white);
  border:1px solid var(--black);
  border-radius:999px;
  padding:14px 26px;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  white-space:nowrap;
  transition:background .35s var(--ease), color .35s var(--ease);
}
.btn:hover{ background:var(--white); color:var(--black); }
.btn-outline{
  background:transparent;
  color:var(--ink);
}
.btn-outline:hover{ background:var(--ink); color:var(--white); }
.btn-arrow{
  width:7px; height:7px;
  border-top:1.5px solid currentColor;
  border-right:1.5px solid currentColor;
  transform:rotate(45deg);
  flex:none;
  transition:transform .3s var(--ease);
}
.btn:hover .btn-arrow{ transform:rotate(45deg) translate(1px,-1px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  padding:22px 0;
  transition:background .4s var(--ease), color .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  color:var(--white);
  border-bottom:1px solid transparent;
}
.site-header.is-scrolled{
  background:rgba(255,255,255,0.94);
  backdrop-filter:blur(10px);
  color:var(--ink);
  padding:14px 0;
  border-color:var(--line);
}
.header-inner{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--gutter);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{ display:flex; align-items:center; flex:none; }
.brand-logo{ height:100px; width:auto; flex:none; transition:height .4s var(--ease); }
.site-header.is-scrolled .brand-logo{ height:44px; }
.primary-nav ul{ display:flex; gap:clamp(12px, 1.6vw, 22px); }
.primary-nav a{
  font-size:11px;
  font-weight:600;
  letter-spacing:0.05em;
  text-transform:uppercase;
  position:relative;
  padding-bottom:3px;
  white-space:nowrap;
}
.primary-nav a::after{
  content:'';
  position:absolute;
  left:0; right:100%;
  bottom:0;
  height:1px;
  background:currentColor;
  transition:right .35s var(--ease);
}
.primary-nav a:hover::after{ right:0; }

.header-actions{ display:flex; align-items:center; gap:18px; flex:none; }
.header-cta{ color:var(--white); background:var(--black); }
.menu-toggle{
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  width:40px;
  height:40px;
  flex:none;
}
.menu-toggle-bar{
  display:block;
  width:22px;
  height:2px;
  border-radius:1px;
  background:currentColor;
}

/* ==========================================================================
   Mobile overlay menu
   ========================================================================== */
.mobile-menu{
  position:fixed;
  inset:0;
  z-index:200;
  background:var(--black);
  color:var(--white);
  transform:translateY(-100%);
  transition:transform .5s var(--ease);
  display:flex;
  align-items:center;
  overflow-y:auto;
}
.mobile-menu.is-open{ transform:translateY(0); }
.mobile-menu-inner{
  width:100%;
  padding:100px var(--gutter) 40px;
  display:flex;
  flex-direction:column;
  gap:40px;
}
.menu-close{
  position:absolute;
  top:24px; right:var(--gutter);
  width:40px; height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
}
.menu-close-bar{
  position:absolute;
  width:22px;
  height:2px;
  border-radius:1px;
  background:currentColor;
}
.menu-close-bar:first-child{ transform:rotate(45deg); }
.menu-close-bar:last-child{ transform:rotate(-45deg); }
.mobile-menu-links{ display:flex; flex-direction:column; gap:10px; }
.mobile-menu-links a{
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(24px, 7vw, 40px);
  text-transform:uppercase;
  letter-spacing:-0.02em;
  line-height:1.12;
  display:inline-block;
  opacity:0;
  transform:translateY(16px);
  transition:opacity .45s var(--ease), transform .45s var(--ease);
}
.mobile-menu.is-open .mobile-menu-links a{ opacity:1; transform:translateY(0); }
.mobile-menu-links li:nth-child(1) a{ transition-delay:.05s; }
.mobile-menu-links li:nth-child(2) a{ transition-delay:.08s; }
.mobile-menu-links li:nth-child(3) a{ transition-delay:.11s; }
.mobile-menu-links li:nth-child(4) a{ transition-delay:.14s; }
.mobile-menu-links li:nth-child(5) a{ transition-delay:.17s; }
.mobile-menu-links li:nth-child(6) a{ transition-delay:.20s; }
.mobile-menu-links li:nth-child(7) a{ transition-delay:.23s; }

.mobile-menu-footer{
  display:flex;
  flex-wrap:wrap;
  gap:12px 24px;
  font-size:13px;
  color:#c9c8c3;
  border-top:1px solid var(--line-dark);
  padding-top:24px;
}

/* ==========================================================================
   Schedule a Conversation modal
   ========================================================================== */
.modal{
  position:fixed;
  inset:0;
  z-index:300;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  visibility:hidden;
  opacity:0;
  transition:opacity .35s var(--ease), visibility 0s linear .35s;
}
.modal.is-open{
  visibility:visible;
  opacity:1;
  transition:opacity .35s var(--ease);
}
.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(12,12,11,0.72);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}
.modal-dialog{
  position:relative;
  z-index:1;
  width:100%;
  max-width:640px;
  max-height:calc(100vh - 48px);
  overflow-y:auto;
  background:var(--paper);
  padding:clamp(28px, 4vw, 48px);
  transform:translateY(18px) scale(.98);
  transition:transform .4s var(--ease);
}
.modal.is-open .modal-dialog{ transform:translateY(0) scale(1); }
.modal-close{
  position:absolute;
  top:20px; right:20px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
  transition:color .25s var(--ease);
}
.modal-close:hover{ color:var(--ink); }
.modal .contact-form h3{ padding-right:60px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  min-height:100svh;
  color:var(--white);
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; }
.hero-video{ width:100%; height:100%; object-fit:cover; object-position:center 32%; background:#111; }
.hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,10,9,0.60) 0%, rgba(10,10,9,0.40) 35%, rgba(10,10,9,0.46) 70%, rgba(10,10,9,0.68) 100%);
}
.hero-content{
  position:relative;
  z-index:1;
  padding:clamp(128px, 16vw, 176px) 0 clamp(96px, 12vw, 160px);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:clamp(32px, 5vw, 72px);
  align-items:start;
}
.hero-heading{
  max-width:22ch;
  font-family:var(--font-display);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-0.01em;
  line-height:1.05;
  font-size:clamp(32px, 4.6vw, 60px);
  margin-top:14px;
}
.hero-copy{ max-width:52ch; margin-top:24px; }
.hero-copy p{
  font-size:clamp(15px, 1.3vw, 17px);
  line-height:1.65;
  color:rgba(255,255,255,0.86);
  margin-bottom:1.1em;
}
.hero-copy p:last-child{ margin-bottom:0; }

.btn-outline--light{ color:var(--white); border-color:rgba(255,255,255,0.55); }
.btn-outline--light:hover{ background:var(--white); color:var(--black); border-color:var(--white); }

/* ==========================================================================
   Hero highlights — glass panel, right column
   ========================================================================== */
.hero-highlights{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.22);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
  padding:clamp(24px, 2.6vw, 36px) clamp(24px, 2.6vw, 32px);
}
.highlight-list{ display:flex; flex-direction:column; }
.highlight-list li{
  display:flex;
  align-items:center;
  gap:14px;
  padding:13px 0;
  border-top:1px solid rgba(255,255,255,0.16);
  font-size:14px;
  line-height:1.4;
  color:rgba(255,255,255,0.94);
}
.highlight-list li:first-child{ border-top:0; padding-top:0; }
.highlight-list li:last-child{ padding-bottom:0; }
.highlight-icon{
  flex:none;
  width:20px; height:20px;
  display:inline-flex;
  color:rgba(255,255,255,0.85);
}
.highlight-icon svg{ width:100%; height:100%; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
[data-reveal]{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-revealed{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; }
}

/* ==========================================================================
   Generic section rhythm
   ========================================================================== */
.section{ padding:var(--section-space) 0; border-top:1px solid var(--line); }
.section--text .text-block{ max-width:var(--text-max-width); }

#life{ background:#ece7da; }

.section--dark{
  background:var(--black);
  color:var(--white);
  border-top-color:var(--line-dark);
}
.section--dark .eyebrow{ color:rgba(255,255,255,0.55); }
.section--dark h2{ color:var(--white); }
.section--dark .divided-list li{ border-top-color:var(--line-dark); }
.section--dark .divided-list li:last-child{ border-bottom-color:var(--line-dark); }
.section--dark .divided-list li::before{ color:rgba(255,255,255,0.45); }
.section--dark .divided-list h3{ color:var(--white); }
.section--dark .divided-list p{ color:rgba(255,255,255,0.72); }
.section--dark .divided-list li:hover{ background-color:rgba(175,138,52,0.07); }

#contact.section--dark{
  background:linear-gradient(180deg, #2e2000 0%, #1a1300 60%, var(--black) 100%);
  border-top-color:rgba(255,255,255,0.14);
}
#contact.section--dark h3{ color:var(--white); }
#contact.section--dark .prose-lead{ color:rgba(255,255,255,0.82); }
#contact.section--dark .prose-note{ color:rgba(255,255,255,0.68); }
#contact.section--dark .contact-facts{ color:rgba(255,255,255,0.9); }
#contact.section--dark .contact-facts a:hover{ border-color:rgba(255,255,255,0.8); }
#contact.section--dark .form-row label{ color:rgba(255,255,255,0.6); }
#contact.section--dark .form-row input,
#contact.section--dark .form-row textarea{
  color:var(--white);
  border-bottom-color:rgba(255,255,255,0.3);
}
#contact.section--dark .form-row input:focus,
#contact.section--dark .form-row textarea:focus{ border-color:var(--white); }
#contact.section--dark .form-consent{ color:rgba(255,255,255,0.55); }
#contact.section--dark .form-status{ color:var(--white); }
#contact.section--dark .form-status.form-status--error{ color:#ff9b8f; }
#contact.section--dark .btn{ background:var(--white); color:var(--black); border-color:var(--white); }
#contact.section--dark .btn:hover{ background:transparent; color:var(--white); }

#care.section--dark .prose p{ color:rgba(255,255,255,0.78); }
#care.section--dark .checklist li{ color:rgba(255,255,255,0.9); }
#care.section--dark .checklist li::before{ background:rgba(255,255,255,0.7); }
#care.section--dark .callout{ border-left-color:rgba(255,255,255,0.6); }
#care.section--dark .btn{ background:var(--white); color:var(--black); border-color:var(--white); }
#care.section--dark .btn:hover{ background:transparent; color:var(--white); }

#dining.section--dark{ background:#835b00; border-top-color:rgba(255,255,255,0.18); }
#dining.section--dark .prose p{ color:rgba(255,255,255,0.85); }
#dining.section--dark .prose-note{ color:rgba(255,255,255,0.7); }
#dining.section--dark .checklist li{ color:rgba(255,255,255,0.92); }
#dining.section--dark .checklist li::before{ background:rgba(255,255,255,0.75); }

/* ==========================================================================
   Photo section — background image with dark overlay
   ========================================================================== */
.section--photo{
  position:relative;
  overflow:hidden;
  color:var(--white);
  background:var(--black);
  border-top-color:rgba(255,255,255,0.14);
}
.section-media{ position:absolute; inset:0; }
.section-bg-img{ width:100%; height:100%; object-fit:cover; }
.section-scrim{ position:absolute; inset:0; background:rgba(8,7,5,0.74); }
.section--photo .container{ position:relative; z-index:1; }
.section--photo h2{ color:var(--white); }
.section--photo .prose-lead{ color:rgba(255,255,255,0.82); }
.section--photo .steps-list li{ border-top-color:rgba(255,255,255,0.2); }
.section--photo .steps-list h3{ color:var(--white); }
.section--photo .steps-list p{ color:rgba(255,255,255,0.7); }

/* ==========================================================================
   Split layout (figure + copy)
   ========================================================================== */
.split-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:clamp(32px, 6vw, 80px);
  align-items:center;
}
.split-grid--reverse{ grid-template-columns:1.15fr 0.85fr; }
.split-grid--reverse .split-copy{ order:1; }
.split-grid--reverse .split-figure{ order:2; }
.split-figure{ aspect-ratio:3/4; overflow:hidden; background:#eeece7; }
.split-figure img{ width:100%; height:100%; object-fit:cover; }
.split-figure--large{ aspect-ratio:4/3; }

.split-figure--accessibility{ aspect-ratio:4/3; }
.a11y-video{ width:100%; height:100%; object-fit:cover; display:block; }

.figure-pair{ display:grid; grid-template-columns:1fr 1fr; gap:20px; align-items:end; }
.figure-pair figure{ aspect-ratio:3/4; overflow:hidden; background:#eeece7; }
.figure-pair img{ width:100%; height:100%; object-fit:cover; }
.figure-pair-offset{ margin-bottom:clamp(0px, 6vw, 48px); }

.list-heading{ margin-top:36px; margin-bottom:16px; }

/* ==========================================================================
   Checklist (bullet lists)
   ========================================================================== */
.checklist{ display:flex; flex-direction:column; gap:10px; }
.checklist li{
  position:relative;
  padding-left:20px;
  font-size:15px;
  line-height:1.55;
  color:var(--ink);
}
.checklist li::before{
  content:'';
  position:absolute;
  left:0; top:8px;
  width:6px; height:6px;
  background:var(--ink);
}
.checklist--wide{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px 32px;
}

/* ==========================================================================
   Divided list (Why Choose Wisteria)
   ========================================================================== */
.divided-list{ margin-top:48px; counter-reset:item; }
.divided-list li{
  counter-increment:item;
  padding:28px 0;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:80px 1fr 200px;
  gap:24px;
  align-items:center;
  transition:background-color .4s var(--ease);
}
.divided-list li:last-child{ border-bottom:1px solid var(--line); }
.divided-list li:hover{ background-color:rgba(175,138,52,0.05); }
.divided-list li::before{
  content:counter(item, decimal-leading-zero);
  grid-column:1;
  align-self:start;
  padding-top:2px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:14px;
  color:var(--muted);
  transition:color .35s var(--ease);
}
.divided-list li:hover::before{ color:var(--gold); }
.divided-list li > div{ grid-column:2; }
.divided-list h3{ margin-bottom:10px; transition:color .35s var(--ease); }
.divided-list li:hover h3{ color:var(--gold); }
.divided-list p{ font-size:15px; line-height:1.6; color:var(--ink); max-width:56ch; margin:0; }

.divided-figure{
  position:relative;
  grid-column:3;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#1a1a19;
}
.divided-figure img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s var(--ease);
}
.divided-figure::after{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(12,12,11,0) 45%, rgba(12,12,11,.6) 100%),
    rgba(175,138,52,.22);
  opacity:0;
  transition:opacity .45s var(--ease);
}
.divided-list li:hover .divided-figure img{ transform:scale(1.08); }
.divided-list li:hover .divided-figure::after{ opacity:1; }

/* ==========================================================================
   Mission / Vision / Values
   ========================================================================== */
.mission-vision{
  margin-top:var(--section-space);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(32px, 6vw, 80px);
  padding-top:48px;
  border-top:1px solid var(--line);
}
.mission-vision h3{ margin-bottom:14px; }
.mission-vision p{ font-size:16px; line-height:1.6; color:var(--ink); max-width:44ch; }

.values-heading{ margin-top:var(--section-space); padding-top:48px; border-top:1px solid var(--line); margin-bottom:32px; }
.values-list{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
}
.values-list li{ border-top:1px solid var(--line); padding-top:18px; }
.values-list h4{ margin-bottom:8px; }
.values-list p{ font-size:14px; line-height:1.55; color:var(--muted); }

/* ==========================================================================
   Callout
   ========================================================================== */
.callout{
  border-left:2px solid var(--ink);
  padding:4px 0 4px 22px;
  margin:32px 0 0;
  font-family:var(--font-display);
  font-weight:600;
  font-size:18px;
  line-height:1.4;
  max-width:48ch;
  font-style:normal;
}

/* ==========================================================================
   Glance list
   ========================================================================== */
.glance-list{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
}
.glance-list li{
  font-size:15px;
  padding:16px 20px 16px 0;
  border-top:1px solid var(--line);
}
.glance-list li:nth-last-child(-n+2){ border-bottom:1px solid var(--line); }

/* ==========================================================================
   Steps list (Getting Started)
   ========================================================================== */
.steps-list{ margin-top:44px; display:grid; grid-template-columns:repeat(2, 1fr); gap:36px 48px; }
.steps-list li{ border-top:1px solid var(--line); padding-top:20px; }
.steps-list h3{ margin-bottom:10px; }
.steps-list p{ font-size:15px; line-height:1.6; color:var(--muted); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list{ margin-top:44px; max-width:var(--text-max-width); }
.faq-list details{ border-top:1px solid var(--line); }
.faq-list details:last-child{ border-bottom:1px solid var(--line); }
.faq-list summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:22px 0;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(15px, 1.6vw, 18px);
  letter-spacing:-0.01em;
}
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-list summary::after{
  content:'';
  flex:none;
  width:11px; height:11px;
  border-right:1.5px solid var(--ink);
  border-bottom:1.5px solid var(--ink);
  transform:rotate(45deg);
  transition:transform .3s var(--ease);
  margin-top:-4px;
}
.faq-list details[open] summary::after{ transform:rotate(225deg); margin-top:4px; }
.faq-list details p{
  font-size:15px;
  line-height:1.65;
  color:var(--muted);
  max-width:64ch;
  padding-bottom:26px;
}

/* ==========================================================================
   Closing statement
   ========================================================================== */
.closing{ text-align:left; }
.closing-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:clamp(32px, 6vw, 80px);
  align-items:center;
}
.closing-heading{
  font-size:clamp(34px, 6vw, 88px);
  max-width:14ch;
  margin-bottom:32px;
}
.closing-prose{ max-width:52ch; }
.closing-prose p{ font-size:17px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:clamp(40px, 6vw, 96px); }
.contact-intro h2{ margin-bottom:18px; }
.contact-facts{ margin-top:32px; display:flex; flex-direction:column; gap:10px; font-size:15px; }
.contact-facts a{ border-bottom:1px solid transparent; transition:border-color .25s var(--ease); }
.contact-facts a:hover{ border-color:var(--ink); }

.contact-form{ display:flex; flex-direction:column; gap:16px; }
.contact-form h3{ margin-bottom:4px; }
.contact-form > .prose-note{ margin-top:0; margin-bottom:8px; }
.form-row{ display:flex; flex-direction:column; gap:8px; }
.form-row--split{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-row--split > div{ display:flex; flex-direction:column; gap:8px; }
.form-row label{
  font-size:11px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--muted);
}
.form-row input, .form-row textarea{
  border:0;
  border-bottom:1px solid #c7c5be;
  background:transparent;
  padding:10px 2px;
  font-size:16px;
  color:var(--ink);
  transition:border-color .25s var(--ease);
}
.form-row input:focus, .form-row textarea:focus{ border-color:var(--ink); }
.form-row textarea{ resize:vertical; }
.form-consent{ font-size:12px; line-height:1.5; color:var(--muted); max-width:52ch; }
.btn-submit{ align-self:flex-start; margin-top:4px; border:none; }
.form-status{ font-size:14px; color:var(--ink); }
.form-status.form-status--error{ color:#b3261e; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background:var(--black);
  color:var(--white);
  padding-top:clamp(56px, 8vw, 96px);
  overflow:hidden;
}
.footer-top{
  display:grid;
  grid-template-columns:0.8fr 1fr 1fr;
  gap:clamp(28px, 5vw, 56px);
  padding-bottom:clamp(44px, 6vw, 72px);
  border-bottom:1px solid var(--line-dark);
}
.footer-figure{ aspect-ratio:4/3; overflow:hidden; }
.footer-figure img{ width:100%; height:100%; object-fit:cover; }
.footer-icon{ height:34px; width:auto; margin-bottom:14px; }
.footer-tagline p{
  font-family:var(--font-display);
  font-weight:700;
  font-size:16px;
  line-height:1.4;
  margin-bottom:6px;
}
.footer-tagline p:last-child{ color:#c9c8c3; font-weight:400; margin-bottom:0; }
.footer-contact{ font-size:14px; line-height:1.8; color:#d9d8d2; }
.footer-contact a{ color:#d9d8d2; }
.footer-contact a:hover{ color:var(--white); }

.footer-legal{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding-top:24px;
  padding-bottom:24px;
  font-size:12px;
  color:#8f8d87;
}
.footer-nav{ display:flex; flex-wrap:wrap; gap:18px; }
.footer-nav a{ color:#8f8d87; transition:color .25s var(--ease); }
.footer-nav a:hover{ color:var(--white); }

.footer-legal-right{ display:flex; flex-wrap:wrap; align-items:center; gap:18px; }
.footer-legal-right a{ color:#8f8d87; transition:color .25s var(--ease); }
.footer-legal-right a:hover{ color:var(--white); }

.footer-wordmark{
  font-family:var(--font-display);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-0.03em;
  font-size:clamp(40px, 15vw, 320px);
  line-height:0.82;
  color:var(--white);
  opacity:0.2;
  white-space:nowrap;
  padding:0 var(--gutter);
  text-align:center;
  pointer-events:none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1150px){
  .primary-nav{ display:none; }
  .header-cta{ padding:12px 18px; font-size:11px; }
  .menu-toggle{ display:flex; }
}

@media (max-width:540px){
  .header-cta{ display:none; }
}

@media (max-width:900px){
  .hero-grid, .split-grid, .split-grid--reverse,
  .mission-vision, .contact-grid, .closing-grid{
    grid-template-columns:1fr;
  }
  .hero-content{ padding-top:clamp(168px, 30vw, 200px); }
  .hero-highlights{ margin-top:40px; }
  .split-grid--reverse .split-copy{ order:0; }
  .split-grid--reverse .split-figure{ order:0; }
  .split-figure{ max-width:360px; }

  .values-list{ grid-template-columns:1fr 1fr; }
  .steps-list{ grid-template-columns:1fr; }
  .checklist--wide{ grid-template-columns:1fr; }
  .glance-list{ grid-template-columns:1fr; }
  .glance-list li:nth-last-child(-n+2){ border-bottom:none; }
  .glance-list li:last-child{ border-bottom:1px solid var(--line); }

  .divided-list li{ grid-template-columns:1fr; gap:8px; }
  .divided-list li::before{ grid-column:1; }
  .divided-list li > div{ grid-column:1; }
  .divided-figure{ grid-column:1; margin-top:16px; max-width:320px; }

  .form-row--split{ grid-template-columns:1fr; }

  .footer-top{ grid-template-columns:1fr; }
  .footer-figure{ max-width:220px; }
}

@media (max-width:560px){
  .values-list{ grid-template-columns:1fr; }
  .figure-pair{ grid-template-columns:1fr; }
  .figure-pair-offset{ margin-bottom:0; }
}
