:root {
  --anchor: #2b2d31;
  --slate: #4a4e55;
  --parchment: #f2ede3;
  --soft-white: #f5f2ee;
  --heritage-blue: #8eb9c7;
  --sage: #7c9279;
  --stone: #8c8272;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --content: 1180px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--anchor);
  background: var(--soft-white);
  font-family: var(--sans);
  line-height: 1.7;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--anchor);
  background: var(--parchment);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--heritage-blue); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem var(--gutter);
  color: var(--soft-white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}
.site-header.scrolled {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: rgba(43, 45, 49, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}
.brand { text-decoration: none; line-height: 1; }
.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.035em;
}
.brand-name em { color: var(--sage); font-weight: 400; }
.brand-subtitle {
  display: block;
  margin-top: 0.35rem;
  color: rgba(245, 242, 238, 0.68);
  font-size: 0.57rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.site-navigation { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.site-navigation a {
  color: rgba(245, 242, 238, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}
.site-navigation a:hover { color: var(--soft-white); }
.site-navigation .nav-cta {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(245, 242, 238, 0.45);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 8.5rem var(--gutter) 6rem;
  color: var(--soft-white);
  text-align: center;
  background:
    radial-gradient(circle at 78% 25%, rgba(124, 146, 121, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 82%, rgba(142, 185, 199, 0.10), transparent 25rem),
    var(--anchor);
}
.hero::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(transparent, var(--sage));
  content: "";
}
.hero-content { width: min(850px, 100%); }
.eyebrow, .section-kicker {
  margin: 0 0 1.25rem;
  color: var(--heritage-blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-logo { width: min(530px, 82vw); margin: 0 auto 2.4rem; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; }
h1 { max-width: 770px; margin-right: auto; margin-bottom: 1.5rem; margin-left: auto; font-size: clamp(3.25rem, 7.4vw, 6.8rem); }
.hero-intro { max-width: 660px; margin: 0 auto 2.3rem; color: rgba(245, 242, 238, 0.78); font-size: clamp(1rem, 1.8vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--anchor); background: var(--heritage-blue); }
.button-secondary { border-color: rgba(245, 242, 238, 0.35); color: var(--soft-white); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.4rem;
  color: var(--soft-white);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
}
.text-link span { color: var(--heritage-blue); transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }
.scroll-cue {
  position: absolute;
  bottom: 1.2rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245, 242, 238, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.section { padding: clamp(5.5rem, 10vw, 9rem) var(--gutter); }
.section-inner { width: min(var(--content), 100%); margin: 0 auto; }
.section > * { width: min(var(--content), 100%); margin-right: auto; margin-left: auto; }
.section-heading { max-width: 780px; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-heading h2, .split-copy h2, .contact h2 { margin-bottom: 1.5rem; font-size: clamp(2.7rem, 5.2vw, 5.3rem); }
.lead { max-width: 730px; color: var(--slate); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.manifesto { background: var(--parchment); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.service-card { min-height: 280px; padding: clamp(1.7rem, 3vw, 2.5rem); background: rgba(245, 242, 238, 0.72); }
.service-number, .card-number { display: block; margin-bottom: 4rem; color: var(--sage); font-family: var(--serif); font-size: 1.1rem; }
.service-card h3 { margin-bottom: 0.8rem; font-size: 2rem; }
.service-card p { margin-bottom: 0; color: var(--slate); font-size: 0.94rem; }

.philosophy { color: var(--soft-white); background: var(--slate); }
.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 8vw, 8rem);
}
.philosophy > * { width: 100%; }
.philosophy-intro > p:last-child { color: rgba(245, 242, 238, 0.72); }
.philosophy-intro h2 { margin-bottom: 1.5rem; font-size: clamp(2.7rem, 5.2vw, 5.3rem); }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.philosophy .section-kicker { color: var(--heritage-blue); }
.philosophy .split-copy > p { color: rgba(245, 242, 238, 0.72); }
.belief-list { border-top: 1px solid rgba(245, 242, 238, 0.2); }
.belief { padding: 1.6rem 0; border-bottom: 1px solid rgba(245, 242, 238, 0.2); }
.belief h3 { margin-bottom: 0.45rem; font-size: 1.55rem; }
.belief p { margin: 0; color: rgba(245, 242, 238, 0.68); font-size: 0.9rem; }

.experience { background: var(--parchment); }
.experience .centered { margin-right: auto; margin-left: auto; text-align: center; }
.experience .centered p:last-child { max-width: 720px; margin-right: auto; margin-left: auto; color: var(--slate); }
.experience-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.experience-strip span { padding: 0.55rem 0.85rem; border: 1px solid rgba(43, 45, 49, 0.22); color: var(--slate); font-size: 0.78rem; }
.coming-note { max-width: 720px; padding: 1.5rem 1.75rem; border-left: 4px solid var(--sage); color: var(--slate); background: var(--soft-white); text-align: center; }
.experience-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.experience h2 { margin-bottom: 1.5rem; font-size: clamp(2.8rem, 5vw, 5rem); }
.offering-list { display: flex; flex-wrap: wrap; gap: 0.65rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.offering-list li { padding: 0.55rem 0.85rem; border: 1px solid rgba(43, 45, 49, 0.22); color: var(--slate); font-size: 0.78rem; }
.growing-note { padding: 2rem; border-left: 4px solid var(--sage); background: var(--soft-white); }
.growing-note strong { display: block; margin-bottom: 0.6rem; font-family: var(--serif); font-size: 1.45rem; }
.growing-note p { margin: 0; color: var(--slate); font-size: 0.9rem; }

.about {
  display: block;
  background: var(--soft-white);
}
.about-copy { max-width: 880px; margin: 0 auto; text-align: center; }
.about-copy h2 { margin-bottom: 1.5rem; font-size: clamp(2.8rem, 5vw, 5rem); }
.about-copy > p { color: var(--slate); }
.founder-list {
  display: grid;
  max-width: 940px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.25rem);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
}
.founder-card { margin: 0; }
.founder-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--parchment);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-card figcaption {
  padding: 1.25rem 0.25rem 0;
  border-top: 3px solid var(--sage);
}
.founder-card strong { display: block; font-family: var(--serif); font-size: clamp(1.45rem, 2vw, 1.8rem); font-weight: 600; }
.founder-card span { display: block; margin-top: 0.3rem; color: var(--stone); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

.social-section { color: var(--soft-white); background: var(--slate); }
.social-heading { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); text-align: center; }
.social-heading h2 { margin-bottom: 1.25rem; font-size: clamp(2.7rem, 5.2vw, 5rem); }
.social-heading > p:last-child { max-width: 650px; margin-right: auto; margin-bottom: 0; margin-left: auto; color: rgba(245, 242, 238, 0.72); }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.social-card {
  display: grid;
  min-height: 145px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(245, 242, 238, 0.18);
  color: var(--soft-white);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.social-card:hover { border-color: var(--heritage-blue); background: rgba(43, 45, 49, 0.22); transform: translateY(-3px); }
.social-card > i:first-child { color: var(--heritage-blue); font-size: 1.65rem; }
.social-card > i:last-child { color: rgba(245, 242, 238, 0.5); font-size: 0.85rem; }
.social-card strong { display: block; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; line-height: 1.1; }
.social-card small { display: block; margin-top: 0.35rem; color: rgba(245, 242, 238, 0.62); font-size: 0.72rem; }

.contact { padding: clamp(5.5rem, 10vw, 9rem) var(--gutter); color: var(--soft-white); text-align: center; background: var(--anchor); }
.contact-inner { width: min(850px, 100%); margin: 0 auto; }
.contact p:not(.section-kicker) { max-width: 650px; margin-right: auto; margin-bottom: 2rem; margin-left: auto; color: rgba(245, 242, 238, 0.72); }
.contact p.service-area { margin-top: -0.6rem; color: var(--heritage-blue); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; }
.contact .button { color: var(--anchor); background: var(--parchment); }
.contact-email { display: block; width: fit-content; margin: 1rem auto 0; color: rgba(245, 242, 238, 0.68); font-size: 0.82rem; }

.legal-body { background: var(--parchment); }
.legal-header .legal-back { color: rgba(245, 242, 238, 0.8); font-size: 0.78rem; font-weight: 500; text-decoration: none; }
.legal-header .legal-back:hover { color: var(--soft-white); }
.legal-main { min-height: 100vh; padding: clamp(9rem, 15vw, 12rem) var(--gutter) clamp(5rem, 9vw, 8rem); }
.legal-intro,
.legal-content { width: min(820px, 100%); margin-right: auto; margin-left: auto; }
.legal-intro { padding-bottom: 3rem; border-bottom: 1px solid rgba(43, 45, 49, 0.18); }
.legal-intro h1 { margin-bottom: 0.75rem; font-size: clamp(3.4rem, 7vw, 6rem); }
.legal-intro > p:last-child { max-width: 700px; margin-bottom: 0; color: var(--slate); font-size: 1.05rem; }
.legal-updated { margin-bottom: 1.5rem; color: var(--stone); font-size: 0.76rem; letter-spacing: 0.07em; text-transform: uppercase; }
.legal-content section { padding: 2.5rem 0; border-bottom: 1px solid rgba(43, 45, 49, 0.14); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { margin-bottom: 1rem; font-size: clamp(1.8rem, 3vw, 2.35rem); }
.legal-content p,
.legal-content li { color: var(--slate); font-size: 0.94rem; }
.legal-content a { color: #557f8d; text-underline-offset: 3px; }
.legal-content ul { margin: 0; padding-left: 1.25rem; }
.legal-content li + li { margin-top: 0.45rem; }
.privacy-choice-button { padding: 0.7rem 1rem; border: 1px solid rgba(43, 45, 49, 0.35); color: var(--anchor); background: transparent; font-weight: 600; cursor: pointer; }
.privacy-choice-button:hover { border-color: var(--anchor); background: rgba(43, 45, 49, 0.05); }
.cookie-declaration { min-height: 260px; }

.site-footer { padding: 2.5rem var(--gutter); color: rgba(245, 242, 238, 0.68); background: var(--anchor); border-top: 1px solid rgba(245, 242, 238, 0.12); }
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-footer > * { margin: 0; }
.footer-subtitle { display: block; margin-top: 0.3rem; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-utility { display: flex; flex-direction: column; align-items: flex-end; gap: 0.45rem; text-align: right; }
.footer-utility p { margin: 0; font-size: 0.64rem; white-space: nowrap; }
.footer-links { display: flex; align-items: center; gap: 0.65rem; white-space: nowrap; }
.footer-links > span { color: rgba(245, 242, 238, 0.28); font-size: 0.58rem; }
.footer-links a,
.footer-links button { padding: 0; border: 0; color: rgba(245, 242, 238, 0.72); background: transparent; font-family: var(--sans); font-size: 0.65rem; text-decoration: none; cursor: pointer; }
.footer-links a:hover,
.footer-links button:hover { color: var(--soft-white); }
.footer-inner { display: flex; width: min(var(--content), 100%); align-items: center; justify-content: space-between; gap: 2rem; margin: 0 auto; }
.footer-brand { font-family: var(--serif); font-size: 1.25rem; }
.footer-meta { display: flex; align-items: center; gap: 1.25rem; font-size: 0.72rem; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.65rem;
    border: 0;
    place-content: center;
    gap: 0.28rem;
    color: var(--soft-white);
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 1.35rem; height: 1px; background: currentColor; transition: transform 160ms ease, opacity 160ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-5px) rotate(-45deg); }
  .site-navigation {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    padding: 6rem var(--gutter);
    opacity: 0;
    background: var(--anchor);
    transition: opacity 180ms ease, visibility 180ms ease;
  }
  .site-navigation.open { visibility: visible; opacity: 1; }
  .site-navigation a { font-family: var(--serif); font-size: 2rem; }
  .site-navigation .nav-cta { margin-top: 0.5rem; font-family: var(--sans); font-size: 0.8rem; }
  .split, .experience-layout, .philosophy { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-number { margin-bottom: 2.5rem; }
}

@media (max-width: 700px) {
  .hero { min-height: 860px; }
  .hero-logo { width: min(410px, 90vw); }
  .founder-list { max-width: 460px; grid-template-columns: 1fr; gap: 2.75rem; }
  .footer-inner, .footer-meta { flex-direction: column; align-items: flex-start; }
  .footer-meta { gap: 0.8rem; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-utility { align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
