:root {
  --cream: #f7f2ea;
  --cream-soft: #fbf8f2;
  --cream-warm: #efe4d5;
  --stone: #d8cec0;
  --oatmeal: #e7ded2;
  --taupe: #b9ac9a;
  --brown: #6f5b49;
  --brown-dark: #4b3a2d;
  --ink: #1d2328;
  --muted: #5f5a52;
  --line: rgba(29, 35, 40, 0.13);
  --panel: rgba(255, 252, 247, 0.72);
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/*
  Production font note:
  Replace the font stacks above with self-hosted fonts when ready.
  Example:
  @font-face {
    font-family: 'Cognition Serif';
    src: url('/fonts/newsreader.woff2') format('woff2');
    font-weight: 400 700;
    font-display: swap;
  }
*/

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.86);
  border-bottom: 1px solid rgba(29, 35, 40, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
}

.nav a:not(.btn) {
  color: rgba(29, 35, 40, 0.78);
}
.nav a:not(.btn):hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--brown-dark);
  border-radius: 4px;
  background: var(--brown-dark);
  color: #fffaf2;
  font-weight: 650;
  font-size: 14px;
  line-height: 1;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); opacity: 0.94; }
.btn-light { background: #fffaf2; color: var(--brown-dark); border-color: #fffaf2; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 84px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

h1 {
  max-width: 690px;
  font-size: clamp(50px, 6.4vw, 86px);
}

.lede {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  opacity: 0.86;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.email-inline {
  color: rgba(29, 35, 40, 0.86);
  border-bottom: 1px solid var(--taupe);
  font-size: 15px;
}

.hero-image {
  position: relative;
  min-height: 700px;
  margin-right: calc((100vw - min(var(--max), calc(100vw - 48px))) / -2);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: 54% center;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream-warm) 0%, rgba(239, 228, 213, 0.76) 2%, rgba(239, 228, 213, 0) 27%);
  pointer-events: none;
}

.trust-band {
  padding: 48px 0 52px;
  background: linear-gradient(180deg, var(--cream-soft), #f6f0e7);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.trust-band p {
  max-width: 820px;
  margin: 0 auto 34px;
  color: var(--muted);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  align-items: center;
  color: rgba(29, 35, 40, 0.64);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.04em;
  filter: grayscale(1);
}

.logo-grid span {
  display: grid;
  min-height: 48px;
  place-items: center;
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 82px;
  align-items: center;
}

h2 {
  font-size: clamp(40px, 4.6vw, 66px);
}

.rich-text {
  color: var(--muted);
  font-size: 18px;
}
.rich-text p:first-child { margin-top: 0; }
.rich-text p:last-child { margin-bottom: 0; }

.about-card {
  overflow: hidden;
  border-radius: 10px;
  background: var(--cream-warm);
  box-shadow: 0 18px 60px rgba(65, 50, 36, 0.08);
}

.about-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 55% center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  border-bottom: 1px solid var(--taupe);
  color: var(--ink);
  font-weight: 650;
}

.services-heading {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}

.services-heading h2 { font-size: clamp(36px, 4vw, 58px); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 250px;
  padding: 38px;
  background: var(--cream-soft);
}

.icon-circle {
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--oatmeal);
  color: var(--brown-dark);
  font-size: 26px;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 31px;
}
.service-card p {
  margin: 0;
  color: var(--muted);
}

.reference {
  background: var(--cream);
}

blockquote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}
blockquote footer {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
}

.quote-hero { margin-bottom: 72px; }

.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.quote-card {
  margin: 0;
  padding: 38px;
  background: var(--cream);
}

.quote-card blockquote {
  max-width: none;
  margin: 0;
  text-align: left;
}

.quote-card blockquote p {
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.quote-card figcaption {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 680px) {
  .quotes-grid { grid-template-columns: 1fr; }
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cream-warm), #f9f4ed);
  box-shadow: 0 16px 50px rgba(65, 50, 36, 0.07);
}
.cta-panel h2 {
  font-size: clamp(34px, 3.4vw, 50px);
}
.cta-panel p {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

/* Principles / How I work */
.principles-section { background: var(--cream-soft); }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle-card {
  padding: 38px;
  background: var(--cream-soft);
}

.principle-card h3 {
  margin-bottom: 16px;
  font-size: 31px;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
}

/* Is this right for you */
.fit-section { background: var(--cream-warm); }

.fit-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 82px;
  align-items: start;
}

.fit-body { padding-top: 8px; }

.fit-intro {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 650;
  color: var(--ink);
}

.fit-list {
  margin: 0 0 24px;
  padding: 0 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.fit-list li { margin-bottom: 6px; }

.fit-footnote {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
}

/* Podcast strip */
.podcast-strip {
  background: var(--brown-dark);
  color: #fffaf2;
  padding: 28px 0;
}

.podcast-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.podcast-strip strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.podcast-strip span {
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 680px) {
  .principles-grid { grid-template-columns: 1fr; }
  .fit-inner { grid-template-columns: 1fr; gap: 36px; }
  .podcast-strip-inner { flex-direction: column; align-items: flex-start; }
}

.page-hero {
  padding: 110px 0 78px;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 880px; }
.page-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.legal-content {
  max-width: 820px;
  padding: 78px 0 110px;
}
.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 34px;
  letter-spacing: -0.04em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { border-bottom: 1px solid var(--taupe); }

.site-footer {
  background: #eee4d8;
  border-top: 1px solid var(--line);
}

.footer-main {
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-main p {
  max-width: 260px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--ink); }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal {
  display: flex;
  gap: 28px;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding-bottom: 44px; }
  .hero-image { min-height: 540px; margin: 0 -24px; }
  .hero-image img { min-height: 540px; object-position: 58% center; }
  .hero-image::after { background: linear-gradient(180deg, rgba(239,228,213,0), rgba(239,228,213,0.18)); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .fit-inner { grid-template-columns: 1fr; gap: 44px; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 32px, var(--max)); }
  .header-inner { display: block; padding: 20px 0; }
  .nav { margin-top: 18px; gap: 18px; flex-wrap: wrap; }
  .nav .btn { width: 100%; }
  .hero-copy { padding: 66px 0 34px; }
  .hero-image { min-height: 420px; margin: 0 -16px; }
  .hero-image img { min-height: 420px; object-position: 62% center; }
  h1 { font-size: 46px; }
  .lede { font-size: 19px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
  .service-card { padding: 30px; }
  .cta-panel { padding: 34px; }
}
