/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  background: #FBFAF6; color: #20302C;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: #E7C9B2; }
a { color: inherit; }
p, h1, h2, h3, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ── Layout ── */
.container        { max-width: 1140px; margin: 0 auto; }
.container-narrow { max-width: 780px;  margin: 0 auto; }
.relative         { position: relative; }

/* ── Section bases ── */
.section       { padding: 96px 28px; }
.section-paper { background: #FBFAF6; }
.section-sand  { background: #F4EFE4; }
.section-pine  { background: #1C463F; color: #F4EFE4; position: relative; overflow: hidden; }

/* ── Eyebrows ── */
.eyebrow {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow-teal       { color: #2E6B5F; }
.eyebrow-sage       { color: #8FB3A6; }
.eyebrow-clay-light { color: #E7C9B2; letter-spacing: .16em; }
.eyebrow-light      { color: #C8E0D6; }

/* ── Shared headings ── */
.section-h2 {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.14; margin: 16px 0 0; max-width: 22ch;
}

.ambient { position: absolute; border-radius: 50%; pointer-events: none; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,246,.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(28,40,36,.08);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 18px;
  padding: 14px 28px;
}
.wordmark { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.wordmark-name { font-family: 'Newsreader', serif; font-size: 19px; color: #20302C; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link { font-size: 14px; color: #45554F; text-decoration: none; transition: color 140ms ease-out; }
.nav-link:hover { color: #1C463F; }
.nav-link:focus-visible { outline: 2px solid #1C463F; outline-offset: 3px; border-radius: 3px; }
.lang-btn {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: #1C463F; background: #E0EAE4;
  border: 1px solid rgba(28,40,36,.1);
  padding: 7px 13px; border-radius: 999px;
  text-decoration: none; transition: background 140ms ease-out;
}
.lang-btn:hover { background: #cfe0d8; }
.lang-btn:focus-visible { outline: 2px solid #1C463F; outline-offset: 3px; }
.nav-contact-btn {
  font-size: 13px; font-weight: 600;
  color: #FBFAF6; background: #1C463F;
  padding: 10px 18px; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  transition: background 140ms ease-out;
}
.nav-contact-btn:hover { background: #142A26; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: #1C463F; }
.nav-toggle:focus-visible { outline: 2px solid #1C463F; outline-offset: 3px; border-radius: 3px; }

/* ── HERO ── */
#top {
  position: relative; min-height: 660px;
  display: flex; align-items: flex-end;
  background: url('/assets/photos/hero-snow-tracks.webp') center 42% / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(18,38,34,.34) 0%, rgba(18,38,34,.06) 32%, rgba(18,38,34,.66) 100%);
}
.hero-inner { position: relative; width: 100%; padding: 0 28px 76px; }
.hero-content { max-width: 660px; }
.hero-h1 {
  font-family: 'Newsreader', serif; font-weight: 380;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.04; color: #FBFAF6;
  margin: 20px 0 0; letter-spacing: -.01em;
  text-shadow: 0 2px 24px rgba(16,34,30,.5), 0 1px 4px rgba(16,34,30,.35);
}
.hero-h1 em { font-style: italic; color: #E7C9B2; }
.hero-sub { font-size: 18px; line-height: 1.62; color: rgba(251,250,246,.93); max-width: 52ch; margin: 24px 0 0; }
.hero-btns { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-clay {
  display: inline-block; font-size: 15px; font-weight: 600;
  color: #FBFAF6; background: #C0714B;
  padding: 15px 28px; border-radius: 999px;
  text-decoration: none; transition: background 140ms ease-out;
}
.btn-clay:hover { background: #a8603e; }
.btn-clay:focus-visible { outline: 2px solid #E7C9B2; outline-offset: 3px; }
.btn-ghost {
  display: inline-block; font-size: 15px; font-weight: 600;
  color: #FBFAF6; background: rgba(251,250,246,.14);
  border: 1px solid rgba(251,250,246,.42);
  padding: 15px 28px; border-radius: 999px;
  text-decoration: none; transition: background 140ms ease-out;
}
.btn-ghost:hover { background: rgba(251,250,246,.26); }
.btn-ghost:focus-visible { outline: 2px solid rgba(251,250,246,.7); outline-offset: 3px; }
.btn-clay-light {
  display: inline-block; font-size: 15px; font-weight: 600;
  color: #1C463F; background: #E7C9B2;
  padding: 15px 30px; border-radius: 999px;
  text-decoration: none; transition: background 140ms ease-out;
}
.btn-clay-light:hover { background: #d9b89e; }
.btn-clay-light:focus-visible { outline: 2px solid #E7C9B2; outline-offset: 3px; }

/* ── EMPATHY ── */
.emp-list { margin: 36px 0 0; display: flex; flex-direction: column; gap: 2px; }
.emp-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(28,40,36,.1);
}
.emp-item:last-child { border-bottom: none; }
.emp-icon { flex: none; margin-top: 3px; }
.emp-text { font-family: 'Newsreader', serif; font-size: 21px; line-height: 1.45; color: #20302C; }
.emp-close { font-size: 18px; line-height: 1.7; color: #45554F; margin: 32px 0 0; max-width: 54ch; }

/* ── APPROACH ── */
.approach-h2 {
  font-family: 'Newsreader', serif; font-weight: 380;
  font-size: clamp(30px, 4.2vw, 48px); line-height: 1.12; margin: 16px 0 0;
}
.approach-h2 em { font-style: italic; color: #E7C9B2; }
.pine-body    { color: #cfe0d8; }
.approach-para { font-size: 18px; line-height: 1.7; max-width: 58ch; margin: 22px 0 0; }
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; margin-top: 44px;
}
.glass-card {
  background: rgba(251,250,246,.06); border: 1px solid rgba(251,250,246,.14);
  border-radius: 18px; padding: 32px;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.glass-card:hover { transform: translateY(-3px); box-shadow: 0 24px 52px -24px rgba(0,0,0,.38); }
.glass-card h3 { font-family: 'Newsreader', serif; font-weight: 400; font-size: 24px; margin: 10px 0 0; }
.glass-card p  { font-size: 15.5px; line-height: 1.7; color: #cfe0d8; margin: 14px 0 0; }

/* ── WORK / THEMEN ── */
.work-card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px; margin-top: 42px;
}
.work-card { border-radius: 20px; padding: 38px; transition: transform 200ms ease-out, box-shadow 200ms ease-out; }
.work-card:hover { transform: translateY(-3px); }
.work-card-light {
  background: #FBFAF6; border: 1px solid rgba(28,40,36,.1);
  box-shadow: 0 18px 44px -32px rgba(28,40,36,.5);
}
.work-card-light:hover { box-shadow: 0 22px 48px -24px rgba(28,40,36,.55); }
.work-card-light h3 { font-family: 'Newsreader', serif; font-weight: 400; font-size: 25px; color: #1C463F; }
.work-card-light p  { font-size: 15.5px; line-height: 1.7; color: #45554F; margin: 12px 0 22px; }
.work-card-pine { background: #1C463F; box-shadow: 0 18px 44px -28px rgba(28,40,36,.6); }
.work-card-pine:hover { box-shadow: 0 22px 48px -20px rgba(28,40,36,.65); }
.work-card-pine h3 { font-family: 'Newsreader', serif; font-weight: 400; font-size: 25px; color: #FBFAF6; }
.work-card-pine p  { font-size: 15.5px; line-height: 1.7; color: #cfe0d8; margin: 12px 0 22px; }
.bullet-list { display: flex; flex-direction: column; gap: 12px; }
.bullet-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.45; }
.bullet-dot  { width: 7px; height: 7px; border-radius: 50%; flex: none; margin-top: 7px; }
.dot-clay       { background: #C0714B; }
.dot-clay-light { background: #E7C9B2; }

/* ── ABOUT ── */
#about { background: #FBFAF6; scroll-margin-top: 70px; }
.about-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.about-photo {
  min-height: 560px;
  background: url('/assets/photos/portrait-daniel.webp') center / cover no-repeat;
}

/* ── LANDSCAPE STRIP ── */
.quote-photo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(28,40,36,.08);
  border-bottom: 1px solid rgba(28,40,36,.08);
}
.quote-photo-block .quote-section {
  border: none;
}
.landscape-strip {
  height: 500px;
  background: url('/assets/photos/about-coast-path.webp') center 25% / cover no-repeat;
}
.quote-photo-block .landscape-strip {
  height: auto;
  min-height: 420px;
}
.about-text { padding: 84px 56px; display: flex; flex-direction: column; justify-content: center; }
.about-text h2 {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.14; margin: 16px 0 0; max-width: 18ch;
}
.about-text p { font-size: 16.5px; line-height: 1.75; color: #45554F; margin: 22px 0 0; }
.about-text p + p { margin-top: 16px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.chip { font-size: 12.5px; font-weight: 600; color: #1C463F; background: #E0EAE4; padding: 7px 14px; border-radius: 999px; }
.therapy-link {
  display: inline-block; margin-top: 20px;
  font-size: 13.5px; font-weight: 600; color: #2E6B5F;
  text-decoration: none; border-bottom: 1px solid rgba(46,107,95,.3);
  transition: color 140ms ease-out, border-color 140ms ease-out;
}
.therapy-link:hover { color: #1C463F; border-color: #1C463F; }

/* ── QUOTE ── */
.quote-section { border-top: 1px solid rgba(28,40,36,.08); border-bottom: 1px solid rgba(28,40,36,.08); }
.quote-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.quote-logo  { display: block; margin: 0 auto 22px; }
blockquote {
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 380;
  font-size: clamp(26px, 3.6vw, 38px); line-height: 1.3; color: #20302C;
}
.quote-attr {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase; color: #7C8A84; margin-top: 24px;
}

/* ── HOW WE START ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin-top: 44px;
}
.step { display: flex; flex-direction: column; gap: 14px; }
.step-num { font-family: 'Newsreader', serif; font-style: italic; font-size: 34px; color: #C0714B; }
.step h3  { font-family: 'Newsreader', serif; font-weight: 400; font-size: 21px; color: #20302C; }
.step p   { font-size: 15px; line-height: 1.7; color: #45554F; }

/* ── CONTACT ── */
#contact { scroll-margin-top: 70px; }
.contact-inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.contact-logo { display: block; margin: 0 auto 20px; }
.contact-inner h2 {
  font-family: 'Newsreader', serif; font-weight: 380;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.12;
}
.contact-para { font-size: 17.5px; line-height: 1.7; color: #cfe0d8; max-width: 50ch; margin: 20px auto 0; }
.contact-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.contact-meta {
  display: flex; gap: 28px; justify-content: center;
  flex-wrap: wrap; margin-top: 30px; font-size: 14px; color: #8FB3A6;
}
.map-wrap { margin-top: 48px; }
.map-wrap iframe { border: 0; border-radius: 16px; display: block; width: 100%; height: 260px; opacity: .88; }
.map-link {
  display: block; text-align: right; margin-top: 6px;
  font-size: 12px; color: #8FB3A6; text-decoration: none;
  transition: color 140ms ease-out;
}
.map-link:hover { color: #cfe0d8; }

/* ── FOOTER ── */
.site-footer { padding: 40px 28px; background: #142A26; color: #8FB3A6; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand-name { font-family: 'Newsreader', serif; font-size: 16px; color: #F4EFE4; }
.footer-copy { font-size: 13px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-link { text-decoration: none; transition: color 140ms ease-out; }
.footer-link:hover { color: #cfe0d8; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 740px; margin: 0 auto; padding: 64px 28px 96px; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #2E6B5F;
  text-decoration: none; margin-bottom: 40px;
  transition: color 140ms ease-out;
}
.back-link:hover { color: #1C463F; }
.legal-content h1 {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(32px, 4vw, 48px); line-height: 1.1;
  margin: 0 0 40px; color: #1C463F;
}
.legal-content h2 {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: 24px; margin: 44px 0 12px; color: #20302C;
}
.legal-content h3 {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin: 32px 0 8px; color: #2E6B5F;
}
.legal-content p { font-size: 16px; line-height: 1.75; color: #45554F; margin: 0 0 14px; }
.legal-content ul { list-style: disc; padding-left: 20px; margin: 0 0 14px; }
.legal-content li { font-size: 16px; line-height: 1.75; color: #45554F; margin-bottom: 6px; }
.legal-content address {
  font-style: normal; font-size: 15px; line-height: 1.75;
  color: #20302C; background: #EEF4F0;
  padding: 16px 20px; border-radius: 10px;
  margin: 0 0 14px; display: block;
}

/* ── Scroll margins ── */
#approach, #work, #contact { scroll-margin-top: 70px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: fixed; top: 65px; left: 0; right: 0;
    background: rgba(251,250,246,.97);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 16px 28px 24px;
    border-bottom: 1px solid rgba(28,40,36,.1);
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 12px 0; font-size: 16px; border-bottom: 1px solid rgba(28,40,36,.06); }
  .lang-btn, .nav-contact-btn { margin-top: 12px; align-self: flex-start; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { min-height: 300px; }
  .quote-photo-block { grid-template-columns: 1fr; }
  .quote-photo-block .landscape-strip { height: 300px; }
  .about-text { padding: 48px 28px; }
  .card-grid, .work-card-grid, .steps-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 28px; }
  #top { min-height: 540px; }
  .hero-inner { padding-bottom: 52px; }
}
@media (max-width: 480px) {
  .header-inner { padding: 12px 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
}
