/* =========================================================
   Embrace Joy Coaching — styles.css
   Warm, holistic wellness studio. Mobile-first.
   ========================================================= */

:root {
  /* Brand palette (extracted from current site) */
  --lavender: #BDA3CB;
  --peach:    #FDCC9A;
  --teal:     #81BECB;
  --sage:     #D3E9D6;
  --forest:   #142617;
  --moss:     #49592E;
  --gold:     #A79843;
  --greige:   #DFDEDA;
  --ink:      #242424;
  --cream:    #FFFDFA;

  /* Derived / tints */
  --lavender-soft: #EBE2F0;
  --lavender-deep: #8C6BA1;
  --peach-soft:    #FFEEDC;
  --teal-soft:     #E0F0F3;
  --ink-soft:      #4a4a4a;
  --line:          rgba(36, 36, 36, 0.10);

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Montserrat", system-ui, -apple-system, sans-serif;
  --font-accent:  "Fjalla One", Impact, sans-serif;

  /* Shape & depth */
  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 18px rgba(36, 36, 36, 0.06);
  --shadow:    0 18px 48px -18px rgba(73, 89, 46, 0.28);
  --shadow-lg: 0 32px 80px -28px rgba(20, 38, 23, 0.34);

  --max:  1160px;
  --pad:  clamp(1.1rem, 4vw, 2rem);
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* warm ambient gradient wash behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60vw 60vw at 85% -5%, rgba(189, 163, 203, 0.16), transparent 60%),
    radial-gradient(55vw 55vw at -10% 25%, rgba(253, 204, 154, 0.14), transparent 60%),
    radial-gradient(60vw 60vw at 60% 100%, rgba(129, 190, 203, 0.12), transparent 60%);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--forest);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }
a { color: var(--lavender-deep); text-decoration: none; }

.ital { font-style: italic; font-weight: 500; color: var(--lavender-deep); }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.visually-hidden, .skip-link:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  background: var(--forest);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--lavender-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Eyebrow / labels (Fjalla One, sparingly) ---------- */
.eyebrow {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--moss);
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--peach);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  text-align: center;
  line-height: 1.25;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--lavender), var(--lavender-deep));
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(140, 107, 161, 0.7);
}
.btn--primary:hover { box-shadow: 0 18px 34px -10px rgba(140, 107, 161, 0.85); }

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: rgba(73, 89, 46, 0.35);
}
.btn--ghost:hover { background: rgba(73, 89, 46, 0.06); border-color: var(--moss); }

.btn--peach {
  background: var(--peach);
  color: var(--moss);
  box-shadow: 0 12px 26px -12px rgba(253, 204, 154, 0.9);
}
.btn--peach:hover { background: #ffd9ad; }

.btn--block { width: 100%; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 253, 250, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--forest);
}
.brand-mark { display: grid; place-items: center; filter: drop-shadow(0 4px 8px rgba(140,107,161,0.25)); }
.brand-mark img { display: block; width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--forest);
}
.brand-sub {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.62rem;
  color: var(--moss);
  margin-top: 2px;
}

.primary-nav { display: flex; align-items: center; }

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0; padding: 0;
}
.nav-menu a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.2s, color 0.2s;
}
.nav-menu a:not(.nav-cta):hover { background: var(--lavender-soft); color: var(--lavender-deep); }

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  margin-left: 0.35rem;
  font-weight: 600;
}
.nav-cta:hover { background: var(--moss); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle-bar {
  width: 22px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(3rem, 8vw, 6rem); overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  line-height: 1.04;
  margin-bottom: 0.5em;
}
.hero-lead {
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.4rem; }

.hero-trust {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
}
.hero-trust span { font-size: 0.78rem; color: var(--ink-soft); }

/* hero media */
.hero-media { position: relative; }
.hero-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 36px 36px; /* soft arch top, gently rounded base */
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--lavender), var(--sage));
  isolation: isolate;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
}
/* Emblem variant — present the brand mark as art on a soft, light wash */
.hero-frame--emblem {
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  display: grid;
  place-items: center;
  padding: clamp(0.5rem, 2vw, 1.25rem);
}
.hero-emblem {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 34px rgba(20, 38, 23, 0.13));
}
/* warm accent glow tucked behind the lower-right of the frame */
.hero-frame-accent {
  position: absolute;
  z-index: -1;
  right: -7%; bottom: -7%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, var(--peach), var(--lavender) 68%, transparent 72%);
  opacity: 0.5;
  filter: blur(6px);
  pointer-events: none;
}

.hero-quote {
  position: absolute;
  bottom: 28px; left: -22px;
  max-width: 232px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 2;
}
.hero-quote p { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 0.98rem; color: var(--moss); line-height: 1.4; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0;
  color: var(--peach);
  display: block;
  height: 0.6em;
}

/* decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.blob.soft { opacity: 0.4; filter: blur(40px); }
.blob--lavender { width: 320px; height: 320px; background: var(--lavender); top: -80px; right: -60px; }
.blob--peach { width: 240px; height: 240px; background: var(--peach); bottom: -40px; left: -80px; }
.blob--teal { width: 200px; height: 200px; background: var(--teal); top: 40%; left: 35%; opacity: 0.25; }
.blob--sage { width: 380px; height: 380px; background: var(--sage); top: -120px; left: -120px; }

/* =========================================================
   SECTION SCAFFOLD
   ========================================================= */
.section { position: relative; padding: clamp(3.5rem, 9vw, 6.5rem) 0; }

.section-head { max-width: 640px; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); text-align: center; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); }
.section-intro { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { background: linear-gradient(180deg, transparent, rgba(211, 233, 214, 0.35), transparent); }

.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(189, 163, 203, 0.35);
  line-height: 1;
}
.step-icon {
  width: 62px; height: 62px;
  border-radius: 20px;
  display: grid; place-items: center;
  color: var(--forest);
  margin-bottom: 1.2rem;
}
.step-icon--lavender { background: var(--lavender-soft); color: var(--lavender-deep); }
.step-icon--teal { background: var(--teal-soft); color: #3f8b9b; }
.step-icon--peach { background: var(--peach-soft); color: #c47e3a; }
.step-card h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.step-card p { color: var(--ink-soft); margin: 0; }

/* =========================================================
   COACHING / OFFERINGS
   ========================================================= */
.coaching { overflow: hidden; }

.offerings {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.offer-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offer-card h3 { font-size: 1.45rem; }
.offer-card p { color: var(--ink-soft); }

.offer-card--feature {
  background: linear-gradient(155deg, var(--lavender-soft), #fff 70%);
  border-color: rgba(189, 163, 203, 0.5);
}
.offer-card--feature h3 { font-size: 1.8rem; }
.offer-tag {
  display: inline-block;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--lavender-deep);
  background: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin: 0 0 1rem;
  box-shadow: var(--shadow-sm);
}
.offer-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--sage);
  color: var(--moss);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}

.support-band {
  margin-top: 1.6rem;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  color: var(--greige);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}
.support-band::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(167, 152, 67, 0.25);
  filter: blur(40px);
  top: -80px; right: -60px;
}
.support-title { color: #fff; font-size: clamp(1.5rem, 4vw, 2.1rem); max-width: 22ch; }
.support-band p { color: rgba(223, 222, 218, 0.92); margin: 0; max-width: 62ch; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.about-media { position: relative; max-width: 420px; margin-inline: auto; width: 100%; }
.about-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--peach) 0%, var(--lavender) 60%, var(--teal) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.about-photo-caption {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--forest);
  background: rgba(255,253,250,0.9);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.about-accent {
  position: absolute;
  inset: auto -16px -16px auto;
  width: 60%; height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.7;
}
.about-role { color: var(--gold); font-weight: 600; margin-top: -0.5rem; margin-bottom: 1.2rem; }
.about-copy p { color: var(--ink-soft); }
.about-creds {
  list-style: none;
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.about-creds li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.about-creds li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow: 0 0 0 4px var(--lavender-soft);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: linear-gradient(180deg, transparent, rgba(255, 238, 220, 0.5), transparent); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 880px;
  margin-inline: auto;
}
.testi-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  margin: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testi-quote-mark {
  position: absolute;
  top: 0.3rem; left: 1.6rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--lavender);
  opacity: 0.4;
  line-height: 1;
}
.testi-card blockquote { margin: 0; }
.testi-card blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--forest);
}
.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--lavender);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}
.testi-avatar--alt { background: var(--teal); }
.testi-name { font-weight: 600; color: var(--ink); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { overflow: hidden; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-intro p { color: var(--ink-soft); }
.contact-intro .section-title { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }

.contact-points {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.contact-points li { display: flex; align-items: center; gap: 0.8rem; color: var(--ink); }
.contact-points em { color: var(--ink-soft); font-style: italic; }
.cp-icon {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--lavender-soft);
  color: var(--lavender-deep);
  display: grid; place-items: center;
  font-size: 1.05rem;
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--forest);
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder,
.field textarea::placeholder { color: #a8a8a4; }
.field input:focus,
.field textarea:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px var(--lavender-soft);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }

.form-status {
  margin: 1rem 0 0;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--sage);
  color: var(--moss);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}
.form-status--error {
  background: #f6e0e0;
  color: #8a2b2b;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  margin-top: 2rem;
  background: linear-gradient(160deg, var(--forest), #0d1a10);
  color: var(--greige);
  overflow: hidden;
}
.footer-blob {
  width: 300px; height: 300px;
  top: -100px; right: 10%;
  opacity: 0.15;
  filter: blur(50px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-top: clamp(3rem, 7vw, 4.5rem);
  padding-bottom: 2.5rem;
}
.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--peach);
  font-size: 1.1rem;
  margin: 0.4rem 0 0.8rem;
}
.footer-fine { color: rgba(223, 222, 218, 0.75); font-size: 0.9rem; max-width: 38ch; }

.footer-nav h4, .footer-cta h4 {
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-nav a { color: rgba(223, 222, 218, 0.85); font-size: 0.95rem; }
.footer-nav a:hover { color: var(--peach); }

.footer-cta p { color: rgba(223, 222, 218, 0.85); font-size: 0.95rem; margin-bottom: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(223, 222, 218, 0.14);
  padding: 1.4rem 0;
}
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.5rem; }
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(223, 222, 218, 0.65); }
.footer-disclaimer { max-width: 52ch; }

/* =========================================================
   SCROLL-IN ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-photo { animation: none; }
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .offerings { grid-template-columns: repeat(2, 1fr); }
  .offer-card--feature { grid-column: 1 / -1; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

/* =========================================================
   RESPONSIVE — DESKTOP
   ========================================================= */
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-media { max-width: 460px; margin-left: auto; }
  .offerings { grid-template-columns: 1.4fr 1fr 1fr; }
  .offer-card--feature { grid-column: auto; grid-row: span 1; }
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .contact-grid { grid-template-columns: 1fr 1.05fr; }
}

/* =========================================================
   RESPONSIVE — MOBILE NAV
   ========================================================= */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: rgba(255, 253, 250, 0.98);
    backdrop-filter: blur(14px);
    padding: 1rem var(--pad) 1.6rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .nav-cta { margin-left: 0; text-align: center; margin-top: 0.5rem; }
}
