:root {
  --cream: #f4efe6;
  --cream-2: #ebe2d4;
  --paper: #fbf8f2;
  --ink: #171713;
  --muted: #6e6a61;
  --line: rgba(23, 23, 19, 0.14);
  --dark: #1d241d;
  --accent: #b95834;
  --accent-soft: #e7c6b7;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(39, 31, 23, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .16em;
  font-size: .92rem;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  letter-spacing: 0;
  font-size: .85rem;
}
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  text-decoration: none;
  font-size: .9rem;
  color: #38362f;
  transition: opacity .2s ease;
}
.site-nav a:hover { opacity: .6; }
.site-nav .nav-cta {
  color: var(--cream);
  background: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform .2s ease;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 130px 0 36px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}
.eyebrow,
.section-label {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7.8rem);
  line-height: .93;
  letter-spacing: -.065em;
  font-weight: 670;
  max-width: 880px;
}
.hero h1 span { color: var(--accent); }
.hero-text {
  max-width: 640px;
  margin: 34px 0 0;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.65;
  color: #4e4b43;
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: .93rem;
  transition: transform .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--cream); }
.button-light { background: var(--cream); color: var(--ink); }
.text-link {
  text-decoration: none;
  font-weight: 700;
  font-size: .93rem;
}
.text-link span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }

.hero-visual { position: relative; min-height: 470px; }
.visual-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: var(--shadow);
}
.visual-card-main {
  position: absolute;
  inset: 20px 0 30px 30px;
  background: var(--dark);
  color: var(--cream);
  padding: clamp(30px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(2.5deg);
}
.visual-kicker {
  margin: 0;
  letter-spacing: .24em;
  font-size: .8rem;
  font-weight: 800;
}
.visual-statement {
  margin: 0;
  max-width: 390px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.visual-rule { height: 1px; background: rgba(244,239,230,.3); }
.visual-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .66rem;
  letter-spacing: .15em;
  color: rgba(244,239,230,.7);
}
.visual-card-small {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 999px;
  background: var(--paper);
  font-size: .82rem;
  font-weight: 700;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(185,88,52,.13);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-orb-a {
  width: 420px;
  height: 420px;
  background: rgba(231,198,183,.5);
  right: -140px;
  top: 70px;
}
.hero-orb-b {
  width: 260px;
  height: 260px;
  background: rgba(193,185,153,.25);
  left: -100px;
  bottom: 70px;
}
.hero-foot {
  margin-top: auto;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: .83rem;
}
.hero-foot a { text-decoration: none; font-size: 1.25rem; }

.section { padding: 125px 0; }
.section-intro { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 50px;
}
.intro-copy h2,
.section-heading h2,
.principles-title h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 650;
}
.intro-copy p {
  max-width: 850px;
  margin: 35px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.72;
  color: #5d594f;
}

.section-directions { background: var(--cream); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 60px;
  margin-bottom: 58px;
}
.section-heading .section-label { grid-column: 1 / -1; }
.section-heading p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 450px;
  justify-self: end;
}
.direction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.direction-card {
  min-height: 590px;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.direction-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.direction-card-dark { background: var(--dark); color: var(--cream); }
.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--muted);
}
.direction-card-dark .card-topline { color: rgba(244,239,230,.6); }
.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .62rem;
  font-weight: 700;
}
.pill-light { border-color: rgba(244,239,230,.24); }
.direction-card h3 {
  margin: 65px 0 20px;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  letter-spacing: -.055em;
  line-height: 1;
}
.direction-card > p:not(.card-status) {
  margin: 0;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #625e55;
}
.direction-card-dark > p:not(.card-status) { color: rgba(244,239,230,.72); }
.feature-list {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.direction-card-dark .feature-list { border-color: rgba(244,239,230,.16); }
.feature-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.direction-card-dark .feature-list li { border-color: rgba(244,239,230,.16); }
.card-status {
  margin: auto 0 0;
  padding-top: 42px;
  font-size: .76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.card-status span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--accent);
}
.direction-card-dark .card-status { color: rgba(244,239,230,.55); }

.section-principles { background: var(--paper); }
.principles-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
}
.principles-title { position: sticky; top: 130px; align-self: start; }
.principles-list { border-top: 1px solid var(--line); }
.principle {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.principle > span { color: var(--accent); font-size: .78rem; font-weight: 800; }
.principle h3 { margin: 0 0 10px; font-size: 1.45rem; letter-spacing: -.025em; }
.principle p { margin: 0; color: var(--muted); line-height: 1.65; }

.section-quote { background: var(--cream-2); }
.quote-wrap { position: relative; text-align: center; max-width: 1000px; }
.quote-mark {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: .4;
  color: var(--accent);
}
blockquote {
  margin: 30px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-contact { background: var(--cream); }
.contact-card {
  padding: clamp(34px, 6vw, 75px);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: end;
}
.contact-card .section-label { color: rgba(244,239,230,.65); }
.contact-card h2 { max-width: 800px; }
.contact-card p:not(.section-label) {
  margin: 24px 0 0;
  color: rgba(244,239,230,.8);
  max-width: 720px;
  line-height: 1.65;
}
.contact-card .button { justify-self: end; min-width: 220px; }

.site-footer { padding: 50px 0 70px; background: var(--cream); border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.brand-footer { margin-bottom: 18px; }
.footer-grid p { margin: 0; color: var(--muted); font-size: .85rem; }
.footer-meta { text-align: right; display: flex; flex-direction: column; gap: 14px; }
.footer-meta a { text-decoration: none; font-weight: 700; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

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

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 84px 16px auto;
    padding: 26px;
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid, .intro-grid, .principles-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; margin-top: 10px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading p:last-child { justify-self: start; margin-top: 26px; }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-card { min-height: 540px; }
  .principles-title { position: static; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card .button { justify-self: start; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { height: 72px; }
  .site-nav { top: 72px; }
  .hero { padding-top: 115px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-text { margin-top: 26px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { min-height: 355px; }
  .visual-card-main { inset: 20px 8px 30px 18px; padding: 30px; }
  .visual-statement { font-size: clamp(2rem, 10vw, 3rem); }
  .visual-meta { font-size: .55rem; }
  .hero-foot { padding-top: 36px; }
  .hero-foot p { max-width: 240px; }
  .section { padding: 88px 0; }
  .intro-copy h2,
  .section-heading h2,
  .principles-title h2,
  .contact-card h2 { font-size: clamp(2.3rem, 11vw, 3.5rem); }
  .direction-card { padding: 28px; min-height: 540px; }
  .direction-card h3 { margin-top: 48px; }
  .principle { grid-template-columns: 38px 1fr; gap: 10px; }
  .quote-mark { font-size: 6rem; }
  blockquote { font-size: clamp(2rem, 9vw, 3rem); }
  .footer-grid { flex-direction: column; }
  .footer-meta { text-align: left; }
}
