/* ==========================================================
   TOKENS — Spare Hours (virtual-assistant build)
   PROJECT-SPECIFIC. A deliberately different plan from the
   Redline Advisory build, not the same plan recolored — see
   README.md for the reasoning behind each axis.
   ========================================================== */

:root {

  /* ---- Color ----
     Calm + a little energy, not gravitas. 6 named values. */
  --cloud:  #F4F6F1;  /* primary light background — cool, not cream            */
  --mist:   #E7EEE7;  /* secondary surface — alt sections, card fill           */
  --sage:   #4F7A66;  /* brand color — nav, links, icons                      */
  --ink:    #1C2624;  /* dark teal-charcoal — text, dark sections (not black)  */
  --coral:  #FF6B4A;  /* CTA / the one energetic accent                       */
  --sun:    #FFC857;  /* sticky-note yellow — chaos chips, "popular" tag       */
  --slate:  #565F56;  /* body copy on light backgrounds                       */

  /* Generic alias — every tokens.css in this system must define
     --accent, pointing at this project's CTA/signal color. Reusable
     files (base.css) hook into --accent only, never a project's own
     name for it — see the audit notes in README.md. */
  --accent: var(--coral);

  --border-soft: rgba(28, 38, 36, 0.12);
  --shadow-card: 0 16px 36px -18px rgba(28, 38, 36, 0.28);

  /* ---- Type ----
     Two warm sans faces, no serif, no mono — friendlier
     register than the Redline build's report voice. */
  --font-display: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;

  --fs-eyebrow: 0.8125rem;
  --fs-small:   0.9375rem;
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.125rem, 1.05rem + 0.3vw, 1.3125rem);
  --fs-h3:      clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
  --fs-h2:      clamp(1.875rem, 1.5rem + 1.6vw, 2.75rem);
  --fs-h1:      clamp(2.375rem, 1.85rem + 2.6vw, 3.75rem);

  --lh-tight: 1.12;
  --lh-body:  1.6;

  --tracking-eyebrow: 0.08em;

  /* ---- Spacing scale (same fixed set the whole system uses) ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6.5rem;

  /* ---- Layout ---- */
  --container-max: 75rem;
  --container-pad: clamp(1.5rem, 6vw, 5rem);
  --nav-h: 4.5rem; /* approx. rendered nav height — drives both the
                       hero's top offset and scroll-padding-top */

  /* Rounded, on purpose — the opposite end of the dial from
     Redline's near-sharp corners. Soft shapes read as lower-
     stakes and easier to approach, which is the whole brief. */
  --radius:      16px;
  --radius-pill: 999px;
  --border-w:    1px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-reveal: 650ms;
}
/* ==========================================================
   BASE — reset + element defaults
   REUSABLE AS-IS across projects. Reads only the generic
   tokens every tokens.css is expected to define
   (--ink, --paper, --font-body, --space-*, etc.) — never
   reference a project-specific value by name in here.
   ========================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Every build on this system has a fixed-position .nav — without
     this, every #anchor link (and the browser's own back/forward
     and find-in-page jumps) lands with the target's heading tucked
     behind the bar. --nav-h is set per project in tokens.css; the
     0px fallback keeps this harmless if a future project ever ships
     without a fixed nav. */
  scroll-padding-top: var(--nav-h, 0px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

img, picture, svg, video, canvas {
  display: block;
  max-width: 100%;
}

img, video { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: var(--lh-tight);
  font-weight: 600;
}

/* Every tokens.css in this system defines --fs-h1/h2/h3 — give each
   level a real default size here so a plain <h2> in a new section
   is never silently left at the browser default. Specific
   components (e.g. .hero__headline) still override this via a
   higher-specificity class selector, same as before. */
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3, h4 { font-size: var(--fs-h3); }

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* Respect the OS-level motion preference everywhere, not just
   in the one place we remembered to check it. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Visible keyboard focus, everywhere, once — no per-component
   reinvention and no components quietly relying on the
   (often invisible) browser default. */
:focus-visible {
  outline: 2px solid var(--accent, #1a6dff);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -3rem;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius);
  transition: top 150ms ease;
}

.skip-link:focus {
  top: var(--space-4);
}
/* ==========================================================
   LAYOUT — reusable primitives
   REUSABLE AS-IS across projects. These are structural only:
   no color, no font, no project-specific values. If you find
   yourself reaching for a fresh flex/grid rule in a new
   section, check this file first — there is usually already
   a primitive for it.

   Breakpoints (the only three this whole system uses):
     max-width: 640px   mobile
     max-width: 960px   tablet & down
     min-width: 961px   desktop & up
   ========================================================== */

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

/* ---- Section rhythm ---- */

.section {
  padding-block: var(--space-9);
}

.section--tight { padding-block: var(--space-7); }

.section--alt {
  background: var(--paper-dim);
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--paper);
}

/* ---- Stack: vertical rhythm between children ---- */

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap, var(--space-5));
}

.stack--sm { --stack-gap: var(--space-3); }
.stack--lg { --stack-gap: var(--space-7); }

/* ---- Cluster: horizontal wrapping group ---- */

.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--cluster-gap, var(--space-4));
}

/* ---- Split: two columns, collapses to one ----
   Ratio is intentionally generic (1fr / 1fr) here — an
   asymmetric ratio is a *design* decision, so projects that
   want one override --split-ratio on a component-level class
   in components.css rather than editing this primitive. */

.split {
  display: grid;
  grid-template-columns: var(--split-ratio, 1fr 1fr);
  gap: var(--split-gap, var(--space-7));
  align-items: var(--split-align, center);
}

.split--reverse > :first-child { order: 2; }

@media (max-width: 960px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split--reverse > :first-child { order: 0; }
}

/* ---- Grids ---- */

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-auto-min, 15rem), 1fr));
  gap: var(--grid-gap, var(--space-6));
}

.grid-fixed-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap, var(--space-6));
}

.grid-fixed-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap, var(--space-6));
}

@media (max-width: 960px) {
  /* 3 items don't divide evenly into 2 columns — a 2-up tablet
     layout always orphans the third card onto its own row,
     which is the exact "looks unfinished" problem this system
     exists to avoid. Go straight to 1 column instead. */
  .grid-fixed-3 { grid-template-columns: 1fr; }
  .grid-fixed-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-fixed-4 { grid-template-columns: 1fr; }
}

/* ---- Scroll-reveal hook ----
   Generic transform/opacity transition. reveal.js toggles
   .is-visible; components decide their own --reveal-y if a
   section wants a different travel distance. */

[data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-y, 14px));
  transition: opacity var(--dur-reveal) var(--ease-out),
              transform var(--dur-reveal) var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ==========================================================
   COMPONENTS — Spare Hours
   Nav, button, card, and form MECHANICS are the same pattern
   as every build on this system (and the .nav__inner fix is
   still here — that bug doesn't come back just because the
   brief changed). Colors, radius, the chaos→checklist hero,
   and the tick signature are THIS project's.
   ========================================================== */

/* ---------- Section intro ---------- */

.section__head {
  max-width: 36rem;
  margin-bottom: var(--space-7);
}

.section__head .eyebrow {
  display: block;
  margin-bottom: var(--space-3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--sage);
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--coral);
}

/* ---------- Buttons ----------
   Pill-shaped, not the Redline build's sharp-edged button —
   a different point on the same --radius-driven mechanic. */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  border: var(--border-w) solid var(--ink);
  transition: background 150ms ease, color 150ms ease,
              border-color 150ms ease, transform 150ms ease;
}

.btn--primary {
  background: var(--coral);
  color: var(--cloud);
  border-color: var(--coral);
}
.btn--primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-soft);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--on-dark { border-color: var(--cloud); color: var(--cloud); }
.btn--on-dark.btn--primary {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--ink);
}

/* ==========================================================
   NAV
   Same structural fix as every build: .nav__inner is ONE flex
   container holding the logo, the mobile toggle, AND the
   panel. Keep them nested — splitting them into separate
   sibling containers is the bug that started this rule.
   ========================================================== */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cloud) 92%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: var(--border-w) solid transparent;
  transition: border-color 200ms ease;
}

.nav.is-scrolled { border-bottom-color: var(--border-soft); }

.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-4);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  white-space: nowrap;
}
.nav__logo span { color: var(--coral); }

.nav__toggle {
  display: flex;
  padding: var(--space-2);
  margin: calc(var(--space-2) * -1);
  color: var(--ink);
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle.is-open .icon-open { display: none; }
.nav__toggle.is-open .icon-close { display: block; }

.nav__panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: var(--space-5);
  background: var(--cloud);
  border-bottom: var(--border-w) solid var(--border-soft);
  padding: var(--space-5) var(--container-pad) var(--space-6);
}

.nav__panel.is-open { display: flex; }

.nav__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav__links a:hover { color: var(--sage); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--coral);
}
.nav__cta:hover { text-decoration: underline; }

@media (min-width: 961px) {
  .nav__toggle { display: none; }
  .nav__panel {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: none;
    border: 0;
    padding: 0;
    gap: var(--space-7);
  }
  .nav__links { flex-direction: row; gap: var(--space-6); }
}

/* ==========================================================
   HERO
   Structural risk: not a photo, not a stack of overlapping
   cards either — one card with two states inside it. The top
   half is a scatter of cluttered tasks; the bottom half is
   the same tasks as a calm, ticked-off checklist. The page's
   whole pitch, shown rather than described.
   ========================================================== */

.hero {
  padding-top: calc(var(--nav-h) + var(--space-8));
  padding-bottom: var(--space-9);
}

.hero__inner {
  --split-ratio: 1fr 0.95fr;
  --split-gap: var(--space-8);
}

.hero__headline {
  font-size: var(--fs-h1);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

.hero__lede {
  font-size: var(--fs-lead);
  max-width: 32rem;
  color: var(--slate);
  margin-bottom: var(--space-6);
}

.hero__actions { margin-bottom: var(--space-3); }

.hero__price-note { font-size: 0.85rem; color: var(--slate); }
.hero__price-note strong { color: var(--ink); }

.hero__transform {
  background: var(--mist);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}

.transform__label {
  display: block;
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--slate);
  margin-bottom: var(--space-3);
}

.transform__before { margin-bottom: var(--space-4); }

.chaos {
  position: relative;
  height: 8.5rem;
}

.chaos__item {
  position: absolute;
  background: var(--cloud);
  border: var(--border-w) solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 8px 16px -10px rgba(28, 38, 36, 0.3);
  white-space: nowrap;
}

.chaos--1 { top: 0;   left: 0;   transform: rotate(-6deg); background: var(--sun); }
.chaos--2 { top: 2%;  left: 42%; transform: rotate(4deg); }
.chaos--3 { top: 58%; left: 2%;  transform: rotate(3deg); background: var(--coral); color: var(--cloud); }
.chaos--4 { top: 56%; left: 46%; transform: rotate(-3deg); }
.chaos--5 { top: 0;   right: 0;  transform: rotate(5deg); }

.transform__arrow {
  text-align: center;
  color: var(--coral);
  font-size: 1.4rem;
  line-height: 1;
  margin-block: var(--space-3);
}

.tidy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.tidy__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--cloud);
  border: var(--border-w) solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--slate);
}

.tidy__item--active { color: var(--ink); }

/* ---- Signature: the tick ----
   Ships statically checked for no-JS users (see the
   <noscript> override in index.html). With JS, the live item
   starts unchecked and draws its own checkmark in shortly
   after load — the one animated moment on the page. */

.tick { flex-shrink: 0; width: 22px; height: 22px; }
.tick__icon { width: 100%; height: 100%; }
.tick__box { fill: var(--cloud); stroke: var(--sage); stroke-width: 1.6; }
.tick__check {
  fill: none;
  stroke: var(--coral);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
  transition: stroke-dashoffset var(--dur-reveal) var(--ease-out);
}
.tick.is-revealed .tick__check { stroke-dashoffset: 0; }

.tick--static .tick__check { stroke-dashoffset: 0; transition: none; }

@media (prefers-reduced-motion: reduce) {
  .tick__check { transition: none; }
}

@media (max-width: 960px) {
  .hero { padding-top: calc(var(--nav-h) + var(--space-7)); }
}

/* ==========================================================
   TRUST STRIP
   ========================================================== */

.trust {
  padding-block: var(--space-5);
  border-top: var(--border-w) solid var(--border-soft);
  border-bottom: var(--border-w) solid var(--border-soft);
}

.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
}

.trust__label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--slate);
  white-space: nowrap;
}

.trust__names {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.62;
}

/* ==========================================================
   SERVICES — uses .grid-fixed-3, the locked primitive, not
   .grid-auto, so 3 cards can't wrap unevenly.
   ========================================================== */

.service-card {
  background: var(--cloud);
  border: var(--border-w) solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-6);
}

.service-card__icon {
  width: 26px;
  height: 26px;
  color: var(--sage);
  margin-bottom: var(--space-4);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.service-card h3 { font-size: var(--fs-h3); margin-bottom: var(--space-2); }
.service-card p { font-size: var(--fs-small); color: var(--slate); }

/* ==========================================================
   HOW IT WORKS — a genuine 3-step sequence, so numbering is
   information here, same rule as Redline's phases. Composed
   from .grid-fixed-3 (the primitive) + .process__list (the
   connector line) rather than redeclaring grid columns —
   the cleaner version of the pattern.
   ========================================================== */

.process__list { position: relative; }

.process__list::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 0;
  right: 0;
  height: var(--border-w);
  background-image: linear-gradient(to right, var(--sage) 50%, transparent 50%);
  background-size: 10px var(--border-w);
  opacity: 0.4;
}

@media (max-width: 960px) {
  .process__list::before { display: none; }
}

.step { position: relative; }

.step__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cloud);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: var(--space-4);
}

.step h3 { font-size: var(--fs-h3); margin-bottom: var(--space-2); }
.step p { font-size: var(--fs-small); color: var(--slate); }

/* ==========================================================
   PRICING — also .grid-fixed-3. Transparent pricing up front
   is this build's structural counterpart to Redline's
   discovery-call CTA: the thing that actually signals "this
   is the budget option," not a color choice.
   ========================================================== */

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--cloud);
  border: var(--border-w) solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-6);
}

.price-card--featured {
  border-color: var(--coral);
  border-width: 2px;
  background: var(--mist);
}

.price-card__tag {
  position: absolute;
  top: -0.9rem;
  left: var(--space-6);
  background: var(--coral);
  color: var(--cloud);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
}

.price-card__name { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h3); }

.price-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}
.price-card__price span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--slate);
}

.price-card__rate { font-size: 0.82rem; color: var(--slate); }

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.price-card__features li {
  display: flex;
  gap: var(--space-2);
  font-size: 0.9rem;
}
.price-card__features li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card .btn { margin-top: var(--space-3); }

/* ==========================================================
   PROOF — stats + testimonials, kept light. (Redline's dark
   boardroom section would undercut a budget pitch here.)
   ========================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}

.stat__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.7rem + 1.6vw, 3rem);
  color: var(--coral);
  line-height: 1;
}

.stat__label {
  margin-top: var(--space-2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
}

@media (max-width: 960px) {
  .stats { grid-template-columns: 1fr; gap: var(--space-5); }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--cloud);
  border: var(--border-w) solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-6);
}

.testimonial-card p { font-size: var(--fs-lead); color: var(--ink); margin-bottom: var(--space-4); }
.testimonial-card cite { display: block; font-size: 0.82rem; font-weight: 600; color: var(--slate); font-style: normal; }

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

/* ==========================================================
   REASSURANCE — .grid-fixed-4. 4 items divide evenly into a
   2x2 at tablet, so (unlike .grid-fixed-3) the default
   collapse behaviour is fine left as-is.
   ========================================================== */

.reassure-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.reassure-card__icon {
  width: 30px;
  height: 30px;
  color: var(--sage);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.reassure-card h3 { font-size: 1.05rem; }
.reassure-card p { font-size: 0.88rem; color: var(--slate); }

/* ==========================================================
   CONTACT
   ========================================================== */

.contact__grid {
  --split-ratio: 1fr 1fr;
  --split-gap: var(--space-8);
  --split-align: start;
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.field label { font-weight: 700; font-size: 0.82rem; color: var(--ink); }

.field input,
.field textarea,
.field select {
  border: var(--border-w) solid var(--border-soft);
  background: var(--cloud);
  padding: var(--space-3) var(--space-4);
  border-radius: calc(var(--radius) * 0.6);
  resize: vertical;
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--sage); }

.contact-direct a { color: var(--coral); font-weight: 600; }
.contact-direct a:hover { text-decoration: underline; }

/* ==========================================================
   FOOTER
   ========================================================== */

.footer { border-top: var(--border-w) solid var(--border-soft); padding-block: var(--space-7); }

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-5);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  font-weight: 600;
  font-size: 0.85rem;
}
.footer__links a:hover { color: var(--coral); }

.footer__meta { font-size: 0.8rem; color: var(--slate); }
