/* Sparkling Leaf. Colours sampled from design/homepage-mockup.png */
:root {
  --cream: #fdfaf3;
  --sage-wash: #e9ebe0;
  --sage-card: #e2e6d8;
  --sage-footer: #dfe3d5;
  --sage-deep: #cad3c2;
  --peach-card: #f5ede0;
  --green: #4d5d42;
  --green-hover: #3e4c35;
  --ink: #323d2f;
  --text: #3d3f3c;
  --muted: #575757;
  --gold: #a8864f;
  --line-art: #5f6e52;

  --font-display: "Delius", "Trebuchet MS", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font: 400 1.125rem/1.55 var(--font-body);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; color: var(--ink); margin: 0; }

.wrap { width: min(1240px, 100% - 48px); margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--green); color: #fff; text-decoration: none;
  font: 400 1.1875rem/1 var(--font-body);
  padding: .95em 1.6em; border-radius: 999px;
  transition: background .2s;
}
.btn:hover { background: var(--green-hover); }
.btn span { font-size: 1.1em; line-height: 1; }

/* Line-art leaves */
.sprig { position: absolute; fill: none; stroke: var(--line-art); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.sprig use { fill: rgba(253, 250, 243, .35); }

/* Header */
.site-header { position: relative; z-index: 3; }
.header-inner { display: flex; align-items: flex-start; gap: 2rem; padding-top: 10px; }
.brand { display: flex; align-items: flex-start; gap: 6px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 88px; margin-top: 2px; }
.brand-name { display: block; font: 400 2.6rem/1 var(--font-display); color: var(--ink); margin-top: 20px; }
.brand-tag { display: block; max-width: 230px; margin-top: 8px; font-size: .95rem; line-height: 1.35; color: var(--text); }
.main-nav { display: flex; gap: 1.9rem; margin: 48px auto 0; font-size: 1rem; }
.main-nav a { text-decoration: none; color: var(--text); padding-bottom: 12px; position: relative; white-space: nowrap; }
.main-nav a:hover { color: var(--green); }
.main-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 2px; background: var(--green);
}
.btn-header { margin-top: 34px; font-size: 1.1rem; padding: .85em 1.6em; flex-shrink: 0; }
.menu-toggle { display: none; }

/* Hero */
.hero { position: relative; margin-top: -40px; padding-bottom: 20px; overflow-x: clip; }
.hero-wash { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; }
.hero-copy { padding: 110px 0 90px; }
.hero h1 { font-size: clamp(2.5rem, 4.6vw, 4.3rem); line-height: 1.15; max-width: 16ch; }
.hero-copy p { font-size: 1.4rem; line-height: 1.45; max-width: 21em; margin: 1.4rem 0 2rem; }
.hero-photo { justify-self: end; width: min(100%, 560px); margin-top: 20px; }
.hero-photo img { width: 100%; aspect-ratio: 400 / 496; object-fit: cover; clip-path: url(#blob); }
.sprig-hero-left { left: 1%; bottom: 0; width: 200px; z-index: 1; }
.sprig-hero-right { right: -34px; top: 230px; width: 110px; z-index: 2; }

/* Support cards */
.support { padding: 28px 0 40px; }
.section-title { text-align: center; font-size: clamp(2rem, 3.2vw, 2.6rem); }
.section-title::after {
  content: ""; display: block; width: 58px; height: 3px; border-radius: 2px; background: var(--gold); margin: 18px auto 0;
}
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 30px; }
.card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 26px 20px 22px; border-radius: 12px; text-decoration: none; color: var(--text);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(77, 93, 66, .12); }
.card-sage { background: var(--sage-card); }
.card-peach { background: var(--peach-card); }
.card .icon { width: 64px; height: 56px; fill: none; stroke: #252d20; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.card .icon-gold { stroke: #b98a45; }
.card h3 { font-size: 1.3rem; margin: 14px 0 12px; }
.card p { margin: 0; font-size: 1rem; line-height: 1.5; max-width: 17em; }
.card .arrow { margin-top: auto; padding-top: 14px; font: 600 2rem/1 var(--font-body); color: var(--ink); }

/* About */
.signature { display: flex; align-items: center; gap: 18px; margin: 10px 0 0; font: 500 2.2rem/1 var(--font-script); color: var(--ink); }
.signature::before { content: ""; width: 26px; height: 2px; background: var(--ink); }

/* Footer */
.site-footer { position: relative; background: var(--sage-footer); margin-top: 20px; padding: 60px 0 70px; }
.footer-wave { position: absolute; left: 0; bottom: 100%; width: 100%; height: 70px; }
.site-footer::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 26%; height: 55%;
  background: var(--sage-deep); border-top-right-radius: 100% 100%; z-index: 0;
}
.sprig-footer { left: 1%; top: -60px; width: 250px; z-index: 1; }
.footer-inner { position: relative; z-index: 1; display: flex; justify-content: flex-end; align-items: stretch; gap: 50px; }
.footer-main { display: flex; flex-direction: column; align-items: center; gap: 22px; padding-top: 10px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; font-size: 1rem; }
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { color: var(--green); }
.social { display: flex; gap: 22px; }
.social a { color: var(--ink); display: block; }
.social svg { width: 34px; height: 34px; fill: currentColor; }
.social a:hover { color: var(--green); }
.footer-tag { position: relative; display: flex; align-items: center; gap: 10px; padding-left: 30px; border-left: 1.5px solid #9aa08e; }
.footer-tag p { margin: 0; font-size: 1rem; line-height: 1.75; }
.sprig-footer-tag { position: static; width: 56px; }

/* Tablet */
@media (max-width: 1100px) {
  .main-nav { gap: 1.2rem; font-size: .95rem; }
  .brand-name { font-size: 2.2rem; }
  .brand img { width: 72px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .sprig-hero-right { display: none; }
}

/* Collapsed navigation */
@media (max-width: 960px) {
  .header-inner { flex-wrap: wrap; align-items: center; gap: 0; padding-bottom: 10px; }
  .menu-toggle {
    display: block; margin-left: auto; background: none; border: 1.5px solid var(--green); color: var(--green);
    font: 600 1rem var(--font-body); padding: .5em 1.1em; border-radius: 999px; cursor: pointer;
  }
  .main-nav { display: none; order: 3; width: 100%; flex-direction: column; gap: 0; margin: 12px 0 0; }
  .main-nav a { padding: 12px 0; border-top: 1px solid #e5e1d6; }
  .main-nav a[aria-current="page"]::after { display: none; }
  .main-nav a[aria-current="page"] { color: var(--green); font-weight: 600; }
  .nav-open .main-nav { display: flex; }
  .btn-header { display: none; }
  .hero { margin-top: 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding: 30px 0 10px; }
  .hero-photo { justify-self: center; width: min(100%, 460px); margin: 10px 0 40px; }
  .sprig-hero-left { display: none; }
  .footer-inner { flex-direction: column; align-items: center; gap: 30px; }
  .footer-tag { border-left: 0; padding-left: 0; }
  .sprig-footer { width: 160px; opacity: .6; }
  .site-footer::after { width: 45%; height: 35%; }
}

/* Phone */
@media (max-width: 600px) {
  .wrap { width: calc(100% - 32px); }
  .brand img { width: 56px; }
  .brand-name { font-size: 1.8rem; margin-top: 12px; }
  .brand-tag { font-size: .8rem; max-width: 180px; }
  .hero-copy p { font-size: 1.2rem; }
  .cards { grid-template-columns: 1fr; }
}

/* ---------- Inner pages ---------- */
.page-hero { position: relative; overflow-x: clip; padding: 50px 0 90px; }
.page-hero .hero-wash { z-index: 0; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); line-height: 1.15; max-width: 18ch; }
.page-hero h1::after { content: ""; display: block; width: 58px; height: 3px; border-radius: 2px; background: var(--gold); margin-top: 18px; }
.page-hero .lead { font-size: 1.3rem; line-height: 1.5; max-width: 34em; margin: 1.3rem 0 0; }
.page-hero .sprig-page { right: 4%; bottom: 10px; width: 150px; z-index: 1; }

.section { padding: 56px 0; scroll-margin-top: 20px; }
.section-band { background: var(--sage-wash); }
.section-band.peach { background: #f8f2e8; }
.section h2 { font-size: clamp(1.9rem, 3vw, 2.4rem); line-height: 1.2; }
.section h2 + .intro { margin-top: 12px; }
.intro { font-size: 1.2rem; line-height: 1.55; max-width: 44em; margin: 0; }
.kicker { font: 600 .85rem/1 var(--font-body); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.section-head { display: flex; align-items: center; gap: 18px; }
.section-head .icon { width: 58px; height: 50px; flex-shrink: 0; fill: none; stroke: #252d20; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.section-head .icon-gold { stroke: #b98a45; }

.offers { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-top: 30px; }
.offer { background: var(--cream); border-radius: 12px; padding: 26px 26px 24px; border: 1px solid #e6e2d6; }
.section-band .offer { border-color: transparent; }
.offer h3 { font-size: 1.3rem; line-height: 1.3; margin-bottom: 10px; }
.offer p { margin: 0; font-size: 1.02rem; }
.offer .meta { display: inline-block; margin-bottom: 10px; font-size: .85rem; font-weight: 600; color: var(--green); background: var(--sage-card); padding: 4px 12px; border-radius: 999px; }

.ticks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 28px; font-size: 1.1rem; }
.ticks li::before { content: ""; position: absolute; left: 4px; top: .6em; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.ticks.cols { grid-template-columns: repeat(2, 1fr); gap: 12px 40px; }

.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.split.flip { grid-template-columns: 1fr 1.3fr; }
.split p { font-size: 1.12rem; }
.split .signature { font-size: 2.2rem; margin-top: 18px; }
.photo-round { border-radius: 24px; overflow: hidden; box-shadow: 0 12px 30px rgba(50, 61, 47, .12); }
.photo-blob img { width: 100%; clip-path: url(#blob); }

.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pills span { background: var(--cream); border: 1px solid #d7dccb; color: var(--ink); border-radius: 999px; padding: 8px 18px; font-size: .98rem; }
.section-band .pills span { border-color: transparent; }

.values { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 0; margin: 0; padding: 0; list-style: none; font: 400 1.35rem/1.3 var(--font-display); color: var(--ink); }
.values li + li::before { content: "•"; color: var(--gold); margin: 0 16px; }

.creds { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 28px; }
.cred { background: var(--cream); border-radius: 12px; padding: 22px; }
.cred strong { display: block; font: 400 1.2rem/1.3 var(--font-display); color: var(--ink); margin-bottom: 6px; }
.cred span { font-size: .98rem; }

.stat { display: flex; align-items: center; gap: 26px; }
.stat-num { font: 400 5rem/1 var(--font-display); color: var(--green); }
.stat p { margin: 0; font-size: 1.15rem; }

.cta-band { background: var(--green); color: #f3f1e8; border-radius: 20px; padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.cta-band p { margin: 8px 0 0; font-size: 1.1rem; max-width: 36em; }
.cta-band .btn { background: var(--cream); color: var(--ink); flex-shrink: 0; }
.cta-band .btn:hover { background: #fff; }

.book-feature { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: center; }
.book-feature img { filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .15)); }
.book-feature h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.book-feature .sub { font: 400 1.3rem/1.3 var(--font-display); color: var(--gold); margin: 6px 0 18px; }
.book-feature p { font-size: 1.12rem; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.contact-card { display: flex; flex-direction: column; gap: 6px; background: var(--sage-card); border-radius: 12px; padding: 28px 26px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
a.contact-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(77, 93, 66, .12); }
.contact-card:nth-child(even) { background: var(--peach-card); }
.contact-card svg { width: 32px; height: 32px; fill: var(--ink); margin-bottom: 8px; }
.contact-card .label { font-size: .85rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.contact-card .value { font: 400 1.3rem/1.3 var(--font-display); color: var(--ink); word-break: break-word; }

.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.contact-form { margin-top: 22px; display: grid; gap: 18px; }
.field label { display: block; font-weight: 600; font-size: 1rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea { width: 100%; font: 400 1.05rem/1.4 var(--font-body); color: var(--text); background: #fff; border: 1.5px solid #d7dccb; border-radius: 10px; padding: 12px 14px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(77, 93, 66, .15); }
.field textarea { resize: vertical; min-height: 150px; }
.contact-form .btn { justify-self: start; border: 0; cursor: pointer; }
.contact-form .btn:disabled { opacity: .6; cursor: default; }
.form-status:empty { display: none; }
.form-status { border-radius: 10px; padding: 12px 16px; font-size: 1rem; }
.form-status.success { background: var(--sage-card); color: var(--ink); }
.form-status.error { background: #f8e3dc; color: #7a2f1a; }

/* Content still needed from Natasha. Visible on purpose, remove before go-live. */
.todo { margin-top: 24px; border: 2px dashed #c9a35f; background: #fff8e8; border-radius: 12px; padding: 16px 20px; font-size: 1rem; color: #6b5220; }
.todo strong { display: block; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 4px; }
.small-print { font-size: .95rem; color: var(--muted); margin-top: 18px; }

@media (max-width: 960px) {
  .page-hero { padding: 20px 0 70px; }
  .page-hero .sprig-page { display: none; }
  .split, .split.flip, .book-feature { grid-template-columns: 1fr; gap: 36px; }
  .split .photo-round, .split .photo-blob { max-width: 440px; }
  .book-feature img { max-width: 280px; margin-inline: auto; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 34px 28px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .section { padding: 44px 0; }
  .ticks.cols { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .stat { flex-direction: column; align-items: flex-start; gap: 10px; }
  .values { font-size: 1.15rem; }
}

/* Natasha's quote on the homepage hero photo */
.q-cite { display: flex; align-items: center; gap: 12px; margin: 8px 0 0; font: 500 1.35rem/1.1 var(--font-script); color: var(--ink); }
.q-cite::before { content: ""; width: 22px; height: 2px; background: var(--ink); flex-shrink: 0; }
.qa-photo { position: relative; }
.qa-card { position: absolute; left: -14%; right: 4%; bottom: 3%; margin: 0; background: rgba(253, 250, 243, .92); backdrop-filter: blur(6px); border-radius: 18px; padding: 20px 24px 16px; box-shadow: 0 14px 34px rgba(50, 61, 47, .18); }
.qa-card h2 { font-size: 1.6rem; margin: 0 0 10px; }
.qa-card blockquote { margin: 0; font-size: .95rem; line-height: 1.5; }
.qa-card blockquote p { margin: 0 0 .7em; }
@media (max-width: 960px) {
  .qa-card { position: relative; left: auto; right: auto; bottom: auto; margin: -80px 12px 0; }
}
