/* ============================================
   Bright Finch Coaching — Deep Teal / Sage
   Brand colours: Teal #0A4748 · Sage #CBD6C6
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Work+Sans:wght@400;500;600&family=Caveat:wght@500;600&display=swap');

:root {
  /* Brand palette — all 6 colours */
  --teal: #0A4748;          /* Deep Teal — primary */
  --teal-light: #8ABCBC;    /* Light Teal — hover / soft accent */
  --navy: #004466;          /* Deep Navy — footer bg */
  --sage: #D6DFCE;          /* Sage — light backgrounds / borders */
  --sage-light: #EFF4EE;    /* Sage tint — section alt bg */
  --gold: #E09200;          /* Amber Gold — highlight on dark */
  --mauve: #A48EA2;         /* Muted Mauve — tags / secondary accent */

  /* Semantic tokens */
  --paper: #FFFFFF;
  --paper-alt: #EFF4EE;
  --ink: #0D2B2C;
  --ink-soft: #3B5354;
  --ink-faint: #7A9898;
  --moss: #0A4748;          /* teal — retreat block bg */
  --moss-deep: #004466;     /* navy — footer bg */
  --rust: #0A4748;          /* teal — primary CTA accent */
  --mustard: #E09200;       /* gold — accent on dark backgrounds */
  --line: #D6DFCE;          /* sage — dividers */
  --line-soft: #EFF4EE;     /* sage tint — soft dividers */

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Caveat', cursive;

  --max: 1120px;
  --blob-1: 63% 37% 54% 46% / 43% 47% 53% 57%;
  --blob-2: 42% 58% 61% 39% / 51% 44% 56% 49%;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--script);
  font-size: 22px;
  font-weight: 600;
  color: var(--rust);
  display: inline-block;
  margin-bottom: 8px;
  transform: rotate(-2deg);
}

.tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--mauve);
  border: 1px solid var(--mauve);
  border-radius: 20px;
  padding: 3px 12px;
  display: inline-block;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--rust);
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.btn-solid {
  background: var(--rust);
  color: var(--paper);
}
/* override nav-links a color specificity for solid buttons */
a.btn-solid,
.nav-links a.btn-solid { color: var(--paper); }
.btn-solid:hover { background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-1px) rotate(-1deg); }

.btn-outline {
  background: transparent;
  color: var(--rust);
}
.btn-outline:hover { background: var(--rust); color: var(--paper); }

/* ---------- header / nav ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

.nav-cta { font-size: 13px; padding: 10px 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- sections ---------- */
section { padding: 92px 0; }
.section-alt { background: var(--paper-alt); }

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------- hero ---------- */
.hero {
  padding: 64px 0 92px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { margin-bottom: 24px; }
.hero .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions { margin-top: 30px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-image {
  border-radius: var(--blob-1);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 48px -20px rgba(58, 46, 34, 0.35);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.specimen-note {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-family: var(--script);
  font-size: 17px;
  color: var(--moss-deep);
}

/* ---------- wordmark logo ---------- */
.wordmark img { height: 52px; width: auto; }

/* ---------- bird mark divider ---------- */
.mark-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
}
.mark-divider::before,
.mark-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.mark-divider img { height: 36px; width: auto; opacity: 0.55; }

/* ---------- card grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.card {
  display: flex;
  flex-direction: column;
}
.card-image {
  border-radius: var(--blob-2);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
  box-shadow: 0 18px 36px -18px rgba(58, 46, 34, 0.35);
}
.card:nth-child(2) .card-image { border-radius: var(--blob-1); }
.card-image img { width: 100%; height: 100%; object-fit: cover; }

.card-number {
  font-family: var(--script);
  font-size: 18px;
  font-weight: 600;
  color: var(--moss);
  margin-bottom: 4px;
  display: block;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
}
.card ul li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--rust);
  font-size: 12px;
}

/* ---------- event cards ---------- */
.event-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px dashed var(--line);
}
.event-card:last-child { border-bottom: none; padding-bottom: 0; }
.event-image { border-radius: var(--blob-1); overflow: hidden; aspect-ratio: 4/3; }
.event-image img { width: 100%; height: 100%; object-fit: cover; }
.event-meta { font-family: var(--script); font-size: 17px; color: var(--rust); margin-bottom: 6px; display: block; }

/* ---------- pull quote ---------- */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--moss-deep);
  border-left: 3px solid var(--rust);
  padding-left: 28px;
  margin: 36px 0;
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.about-image { border-radius: var(--blob-2); overflow: hidden; box-shadow: 0 24px 48px -20px rgba(58, 46, 34, 0.35); }
.about-image img { width: 100%; }

/* ---------- retreat cross-promo ---------- */
.retreat-block {
  background: var(--moss);
  color: var(--paper);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.retreat-block h2, .retreat-block .eyebrow { color: var(--paper); }
.retreat-block .eyebrow { color: var(--mustard); }
.retreat-block p { color: #B0CECE; }
.retreat-block .btn-outline { border-color: var(--paper); color: var(--paper); }
.retreat-block .btn-outline:hover { background: var(--paper); color: var(--moss-deep); }
.retreat-image { border-radius: var(--blob-1); overflow: hidden; aspect-ratio: 4/3; }
.retreat-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--moss-deep);
  color: #DCE0D0;
  padding: 56px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1A3B55;
}
.site-footer h4 {
  font-family: var(--script);
  font-size: 19px;
  font-weight: 600;
  color: var(--mustard);
  margin-bottom: 10px;
}
.site-footer .wordmark { color: var(--paper); }
.site-footer p { color: #8AACBC; font-size: 14px; }
.site-footer a { font-size: 14px; color: #C0D4DC; }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  color: #6A8A9B;
}

/* ---------- hero brand mark ---------- */
.hero-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px -6px rgba(10,71,72,0.3);
}

/* ---------- hero subheadline ---------- */
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--ink);
  margin: 0 0 20px;
}

/* ---------- recognition section ---------- */
.recognition { background: var(--teal); }
.recognition-inner { max-width: 680px; }
.recognition .eyebrow { color: var(--gold); }
.recognition h2 { color: var(--paper); }
.recognition > .container > .recognition-inner > p { color: #9ABFBF; }
.recognition p { color: #9ABFBF; }
.recognition-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 32px;
}
.recognition-list li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--sage);
  padding: 12px 0;
  border-bottom: 1px solid rgba(203,214,198,0.18);
}
.recognition-list li:first-child { border-top: 1px solid rgba(203,214,198,0.18); }
.recognition-close {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--paper) !important;
}

/* ---------- testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.testimonial {
  background: var(--sage-light);
  border-radius: 24px;
  padding: 32px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.65;
}
.testimonial cite {
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  color: var(--ink-faint);
  font-weight: 500;
}

/* ---------- proof photography ---------- */
.proof-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.proof-image {
  border-radius: var(--blob-1);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 18px 36px -18px rgba(10,71,72,0.3);
}
.proof-image:nth-child(2) { border-radius: var(--blob-2); }
.proof-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- final CTA ---------- */
.final-cta { background: var(--teal); }
.final-cta .eyebrow { color: var(--gold); }
.final-cta h2 { color: var(--paper); }
.final-cta p { color: #9ABFBF; }
.final-cta .btn-solid {
  background: var(--paper);
  color: var(--teal);
  border-color: var(--paper);
}
.final-cta .btn-solid:hover { background: var(--sage); border-color: var(--sage); color: var(--teal); }
.final-cta-mark { height: 52px; width: auto; margin: 0 auto 28px; display: block; opacity: 0.7; }

/* ---------- offer page ---------- */
.offer-lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 1em;
}
.offer-price-card {
  background: var(--teal);
  color: var(--paper);
  border-radius: 32px;
  padding: 56px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.offer-price-card h2 { color: var(--paper); margin-bottom: 8px; }
.offer-price-card .eyebrow { color: var(--gold); }
.offer-price { font-size: 4rem; font-weight: 600; font-family: var(--serif); color: var(--paper); line-height: 1; margin: 16px 0 4px; }
.offer-price-note { color: var(--sage); font-size: 14px; margin: 0 0 32px; }
.offer-checklist { list-style: none; padding: 0; margin: 0 0 32px; text-align: left; display: inline-block; }
.offer-checklist li { padding: 8px 0 8px 32px; position: relative; color: var(--ink-soft); font-size: 15px; border-bottom: 1px solid var(--line-soft); }
.offer-checklist li:last-child { border-bottom: none; }
.offer-checklist li::before { content: "✔"; position: absolute; left: 0; color: var(--teal); font-size: 13px; top: 9px; }
.offer-checklist-light li { color: #B0CECE; border-bottom-color: rgba(203,214,198,0.2); }
.offer-checklist-light li::before { color: var(--gold); }
.offer-fit-list { list-style: none; padding: 0; margin: 0 0 1em; }
.offer-fit-list li { padding: 10px 0 10px 28px; position: relative; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.offer-fit-list li:last-child { border-bottom: none; }
.offer-fit-list li::before { content: "→"; position: absolute; left: 0; color: var(--teal); font-weight: 600; }
.offer-narrow { max-width: 680px; }
.offer-cta-card {
  background: var(--sage-light);
  border-radius: 32px;
  padding: 56px;
  text-align: center;
}
.offer-cta-card h2 { color: var(--teal); }

/* ---------- utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; }
.section-head.left { margin-left: 0; }

/* Freebie strip */
.freebie-strip { background: var(--sage-light); border-top: 1px solid var(--line); padding: 40px 0; }
.freebie-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.freebie-strip-inner .eyebrow { margin-bottom: 4px; }
.freebie-strip-title { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin: 0; font-style: italic; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero-grid, .about-grid, .contact-grid, .retreat-block { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .proof-images { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { position: fixed; top: 65px; left: 0; right: 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 24px 32px; border-bottom: 1px solid var(--line); gap: 18px; display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .retreat-block { padding: 32px; border-radius: 24px; }
  .container { padding: 0 22px; }
  .hero-image, .about-image, .card-image, .event-image, .retreat-image { border-radius: 24px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .proof-images { grid-template-columns: 1fr; }
}
