/* Grace Coaching — site stylesheet
   Palette from the client's mint swatch; type: Tenor Sans (display) + Nunito Sans (body). */

@font-face {
  font-family: "Tenor Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/TenorSans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("../fonts/NunitoSans.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: italic;
  font-weight: 200 1000;
  font-display: swap;
  src: url("../fonts/NunitoSans-italic.woff2") format("woff2");
}

:root {
  --mint: #a2e3b8;
  --mint-soft: #cdefda;
  --mint-pale: #eaf7ef;
  --mint-wash: #f4fbf6;
  --green: #2e6b4f;
  --green-deep: #1f4a38;
  --ink: #24302a;
  --ink-soft: #5b6b62;
  --line: #dde6e0;
  --paper: #fbfcfa;
  --white: #ffffff;

  --font-display: "Tenor Sans", "Trebuchet MS", "Gill Sans", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --container: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 1.25rem;
  --shadow: 0 10px 30px rgba(36, 48, 42, 0.06);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.75em;
  color: var(--ink);
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--green-deep); }

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4em; }

strong { font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--green-deep);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.narrow { max-width: 46rem; }
.center { text-align: center; }
.center .narrow { margin-inline: auto; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.muted { color: var(--ink-soft); }
.small { font-size: 0.9375rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost:hover { background: var(--mint-pale); color: var(--green-deep); }
.btn-mint { background: var(--mint); color: var(--green-deep); border-color: var(--mint); }
.btn-mint:hover { background: var(--mint-soft); border-color: var(--mint-soft); }
.btn-small { padding: 0.7rem 1.2rem; font-size: 0.9375rem; }
.btn:active { transform: translateY(1px); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-top: 1.75rem;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--mint);
  padding-bottom: 0.1em;
}
.text-link:hover { border-bottom-color: var(--green); }

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--green-deep);
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.site-nav a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:not(.btn):hover,
.site-nav a[aria-current="page"] { border-bottom-color: var(--mint); color: var(--green-deep); }

.nav-toggle {
  display: none;
  font: inherit;
  font-weight: 700;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.5rem; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.25rem;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin-top: 1rem; }
}

/* Sections */
.section { padding-block: var(--section); }
.section-tint { background: var(--mint-pale); }
.section-wash { background: var(--mint-wash); }
.section-white { background: var(--white); }
.section + .section-white,
.section-white + .section { border-top: 1px solid var(--line); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { margin-bottom: 0.5em; }
.section-head p { color: var(--ink-soft); }

/* Hero */
.hero {
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(162, 227, 184, 0.45), transparent 70%),
    var(--mint-pale);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-title span { display: block; }
.hero-title span:last-child { color: var(--green); }
.hero-media { justify-self: center; width: min(100%, 26rem); }
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 999px 999px var(--radius) var(--radius);
  box-shadow: var(--shadow);
}
.hero-note { margin-top: 1rem; color: var(--ink-soft); font-size: 0.95rem; }

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; width: min(100%, 18rem); }
  .hero-media img { aspect-ratio: 1 / 1; }
}

/* Two-column feature */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-media.arch img { border-radius: 999px 999px var(--radius) var(--radius); }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split-media { width: min(100%, 22rem); margin-inline: auto; }
}

/* Cards */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card h3 { margin-bottom: 0.25em; }
.card p { color: var(--ink-soft); }
.card .text-link { margin-top: auto; align-self: flex-start; }
.card-mint { background: var(--mint-pale); border-color: var(--mint-soft); }

.icon-dot {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Simple stat/point strip */
.points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.points li { margin: 0; }
.points h4 { margin-bottom: 0.3em; }
.points p { color: var(--ink-soft); margin: 0; }
@media (max-width: 800px) { .points { grid-template-columns: 1fr; } }

/* Testimonials */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--mint);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}
.quote blockquote { margin: 0; padding-top: 1.5rem; }
.quote blockquote p { color: var(--ink); }
.quote footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.quote footer img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.quote footer .name { font-weight: 700; display: block; }
.quote footer .where { color: var(--ink-soft); font-size: 0.9375rem; display: block; }
.quote footer .linkedin { font-size: 0.875rem; }

.featured-quote {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--mint-soft);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}
.featured-quote .mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--mint);
  display: block;
  margin-bottom: 1rem;
}
.featured-quote blockquote { margin: 0; }
.featured-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.45;
}
.featured-quote cite { display: block; margin-top: 1.25rem; font-style: normal; color: var(--ink-soft); }

/* Band CTA */
.band {
  background: var(--green-deep);
  color: var(--white);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.band h2 { color: var(--white); }
.band p { color: rgba(255, 255, 255, 0.82); }
.band .btn-primary { background: var(--mint); color: var(--green-deep); border-color: var(--mint); }
.band .btn-primary:hover { background: var(--mint-soft); border-color: var(--mint-soft); }
.band .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.band .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }

/* Page header */
.page-head {
  background:
    radial-gradient(50% 90% at 100% 0%, rgba(162, 227, 184, 0.4), transparent 70%),
    var(--mint-pale);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.page-head h1 { margin-bottom: 0.4em; }
.page-head .lead { max-width: 44rem; }

/* Prose */
.prose { max-width: 44rem; }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.75rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }

/* Definition-style rows */
.rows { display: grid; gap: 1.25rem; }
.row {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1rem 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.row:last-child { border-bottom: 1px solid var(--line); }
.row .label { font-weight: 700; color: var(--green-deep); }
.row p { color: var(--ink-soft); }
@media (max-width: 600px) { .row { grid-template-columns: 1fr; gap: 0.25rem; } }

/* Pricing */
.price-card { position: relative; }
.price-card .price {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: var(--green-deep);
  margin: 0.25rem 0 0;
}
.price-card .price small {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
}
.price-card ul { padding-left: 1.1rem; color: var(--ink-soft); margin: 0.25rem 0 0; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 0;
  font-size: 1rem;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 0.7rem 0.25rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.price-table th { font-weight: 700; color: var(--green-deep); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.price-table td:nth-child(2), .price-table th:nth-child(2) { text-align: right; white-space: nowrap; }
.price-table td:nth-child(3), .price-table th:nth-child(3) { text-align: right; white-space: nowrap; color: var(--ink-soft); }
.price-table tr:last-child td { border-bottom: 0; }

.callout {
  background: var(--mint-pale);
  border-left: 4px solid var(--mint);
  border-radius: 0.5rem;
  padding: 1.1rem 1.4rem;
  color: var(--ink);
}
.callout p { margin: 0; }

/* Forms */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 700; }
.field .hint { font-size: 0.9rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(162, 227, 184, 0.5);
}
.field textarea { min-height: 9rem; resize: vertical; }
.form-status { display: none; }
.form-status.is-visible { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.stack > * + * { margin-top: 1.5rem; }

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-block: 2.5rem;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  align-items: flex-start;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.footer-nav a { color: var(--ink); text-decoration: none; font-weight: 600; }
.footer-nav a:hover { color: var(--green-deep); }
.footer-tag { font-family: var(--font-display); color: var(--green-deep); }
.footer-meta { width: 100%; margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }

/* Utilities */
.cta-center { justify-content: center; }
.mt-2 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2.5rem; }

/* Pull-quote panel (home intro) */
.pull-panel {
  background: var(--mint-pale);
  border: 1px solid var(--mint-soft);
  border-radius: 999px 999px var(--radius) var(--radius);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.75rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  width: min(100%, 26rem);
  justify-self: center;
  text-align: center;
}
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.4;
  color: var(--green-deep);
  margin: 0 0 1rem;
}
.pull-attr {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}
@media (max-width: 480px) { .brand-sub { display: none; } }
