/* ==========================================================================
   PAW & TIDE CO. — Design System
   "Sunset Lowcountry" palette · Cormorant Garamond + Jost
   Mobile-first. One stylesheet for the whole site.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --deep-tide:  #085041;
  --marsh:      #1D9E75;
  --sunset:     #E8872A;
  --coral-clay: #D4522A;
  --honey:      #F2C96E;
  --warm-sand:  #FAF0E4;

  /* ---- Accessible text variants ----------------------------------------
     The six brand colours above are correct for FILLS and large display
     type, but several fail WCAG AA as small text (Sunset on Warm Sand is
     2.35:1; Marsh on Deep Tide is 2.78:1). These are darkened/brightened
     shades of the SAME hues, used only where colour carries body copy.
     Fills, buttons, borders, and dots keep the original brand values. */
  --sunset-ink:  #B04C1C;  /* small text on light grounds — 4.79 on sand  */
  --marsh-ink:   #3ECBA0;  /* small text on Deep Tide      — 4.59 on tide */
  --marsh-deep:  #0F7555;  /* small text on light grounds  — 5.05 on sand */
  --clay-deep:   #C4451F;  /* CTA band ground, white text  — 4.98         */

  /* Support neutrals */
  --sand-border: #E8D8C4;
  --tide-deeper: #04342C;
  --ink:         #444441;
  --ink-soft:    #5F5E5A;
  --ink-muted:   #666663;
  --ink-light:   #6E6D67;
  --white:       #FFFFFF;

  /* Tinted surfaces */
  --mint-tint:  #E1F5E8;

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 5.5rem;

  /* Layout */
  --wrap: 1160px;
  --wrap-narrow: 820px;
  --gutter: 1.25rem;
  --radius-sm: 5px;
  --radius: 10px;
  --radius-lg: 14px;

  --shadow-card: 0 1px 2px rgba(8,80,65,0.04), 0 6px 20px rgba(8,80,65,0.06);
  --shadow-lift: 0 2px 6px rgba(8,80,65,0.07), 0 14px 38px rgba(8,80,65,0.11);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 720px) {
  :root { --gutter: 2rem; }
}
@media (min-width: 1024px) {
  :root { --gutter: 2.5rem; }
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--warm-sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep-tide);
}

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

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

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

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

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

:focus-visible {
  outline: 2px solid var(--sunset);
  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;
  top: -100px;
  left: var(--sp-4);
  z-index: 200;
  background: var(--honey);
  color: var(--deep-tide);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section {
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}
@media (min-width: 720px) {
  .section { padding-top: var(--sp-8); padding-bottom: var(--sp-8); }
}
@media (min-width: 1024px) {
  .section { padding-top: var(--sp-9); padding-bottom: var(--sp-9); }
}
.section--tight { padding-top: var(--sp-6); padding-bottom: var(--sp-6); }

/* Section background variants */
.bg-tide  { background: var(--deep-tide); }
.bg-sand  { background: var(--warm-sand); }
.bg-honey { background: var(--honey); }
.bg-sun   { background: var(--clay-deep); }
.bg-white { background: var(--white); }

/* Text colour helpers for dark sections.
   .hero and .page-hero are always Deep Tide, so they belong to this set —
   without them, headings inherit Deep Tide type on a Deep Tide ground. */
.bg-tide, .bg-sun, .hero, .page-hero { color: var(--warm-sand); }

.bg-tide h1, .bg-tide h2, .bg-tide h3, .bg-tide h4,
.bg-sun  h1, .bg-sun  h2, .bg-sun  h3, .bg-sun  h4,
.hero h1, .hero h2, .hero h3,
.page-hero h1, .page-hero h2, .page-hero h3 { color: var(--warm-sand); }

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.688rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunset-ink);
  margin: 0 0 var(--sp-2);
  font-style: normal;
}
.eyebrow--marsh { color: var(--marsh-ink); }
.eyebrow--tide  { color: var(--deep-tide); opacity: 0.78; }
.eyebrow--sand  { color: var(--warm-sand); opacity: 0.7; }

.h-xl { font-size: clamp(2.25rem, 7vw, 3.5rem); }
.h-lg { font-size: clamp(1.95rem, 5.6vw, 2.75rem); }
.h-md { font-size: clamp(1.6rem, 4.4vw, 2.1rem); }
.h-sm { font-size: clamp(1.25rem, 3.2vw, 1.5rem); }

.h-xl .accent, .h-lg .accent, .h-md .accent { color: var(--honey); }
.bg-sand .accent, .bg-white .accent, .bg-honey .accent { color: var(--sunset-ink); }

.lede {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 56ch;
}
.bg-tide .lede,
.hero .lede, .page-hero .lede { color: var(--warm-sand); opacity: 0.75; }
/* The clay CTA band is a lighter ground than Deep Tide, so its body copy
   runs at near-full opacity to hold contrast. */
.bg-sun .lede { color: var(--warm-sand); opacity: 0.95; }

.body-sm { font-size: 0.9375rem; line-height: 1.75; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: var(--sp-6); }
.section-head .lede { margin-top: var(--sp-3); }
.section-head--center { text-align: center; }
.section-head--center .lede { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--sunset);
  color: var(--warm-sand);
  box-shadow: 0 2px 10px rgba(232,135,42,0.28);
}
.btn--primary:hover { background: var(--coral-clay); box-shadow: 0 4px 18px rgba(212,82,42,0.34); }

.btn--tide {
  background: var(--deep-tide);
  color: var(--honey);
}
.btn--tide:hover { background: var(--tide-deeper); }

.btn--ghost {
  background: transparent;
  color: var(--honey);
  border-color: rgba(242,201,110,0.45);
}
.btn--ghost:hover { border-color: var(--honey); background: rgba(242,201,110,0.1); }

.btn--ghost-tide {
  background: transparent;
  color: var(--deep-tide);
  border-color: rgba(8,80,65,0.28);
}
.btn--ghost-tide:hover { border-color: var(--deep-tide); background: rgba(8,80,65,0.06); }

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep-tide);
  border-bottom: 1px solid rgba(250,240,228,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 68px;
}

/* Wordmark — this is the logo swap point. Replace .wordmark's contents with
   an <img> or inline <svg> when Molly's final logo is ready; nothing else
   in the stylesheet depends on the text version. */
.wordmark {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-shrink: 0;
  line-height: 1;
}
.wordmark__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--honey);
  letter-spacing: 0.01em;
}
.wordmark__co {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  color: var(--marsh-ink);
}
.wordmark__img { height: 34px; width: auto; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid rgba(250,240,228,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--warm-sand);
  border-radius: 2px;
  transition: transform 0.24s var(--ease), opacity 0.18s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--deep-tide);
  border-bottom: 1px solid rgba(250,240,228,0.08);
  padding: var(--sp-2) var(--gutter) var(--sp-5);
  box-shadow: 0 16px 30px rgba(4,52,44,0.25);
}
.nav__menu.is-open { display: block; }

.nav__list { display: flex; flex-direction: column; gap: 0; }

.nav__link {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-sand);
  opacity: 0.72;
  border-bottom: 1px solid rgba(250,240,228,0.07);
  transition: opacity 0.18s var(--ease), color 0.18s var(--ease);
}
.nav__link:hover { opacity: 1; color: var(--honey); }
.nav__link[aria-current="page"] { color: var(--honey); opacity: 1; }

.nav__cta { margin-top: var(--sp-4); }

@media (min-width: 900px) {
  .nav__toggle { display: none; }
  .nav__menu {
    display: flex !important;
    position: static;
    align-items: center;
    gap: var(--sp-5);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .nav__list { flex-direction: row; gap: var(--sp-5); }
  .nav__link {
    padding: 0;
    border: 0;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
  }
  .nav__link[aria-current="page"] { border-bottom-color: var(--sunset); }
  .nav__cta { margin-top: 0; }
  .nav__cta .btn { padding: 0.65rem 1.15rem; font-size: 0.688rem; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  background: var(--deep-tide);
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}
@media (min-width: 900px) {
  .hero { padding-top: var(--sp-8); padding-bottom: var(--sp-8); }
}

.hero__grid {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
}

.hero__title { font-size: clamp(2.35rem, 7.5vw, 3.6rem); margin-bottom: var(--sp-4); }
.hero__body { max-width: 42ch; }

/* Centered page hero (interior pages) */
.page-hero { background: var(--deep-tide); text-align: center; }
.page-hero .lede { margin-left: auto; margin-right: auto; }
.page-hero__title { margin-bottom: var(--sp-4); }

/* --------------------------------------------------------------------------
   8. IMAGE PLACEHOLDERS
   Swap <div class="ph"> for <img> when real photography lands.
   -------------------------------------------------------------------------- */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  border-radius: var(--radius);
  min-height: 260px;
  text-align: center;
  padding: var(--sp-5);
}
.ph--tall { min-height: 320px; }
.ph--short { min-height: 190px; }

.ph__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--warm-sand);
  opacity: 0.66;
}
.ph__note {
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-sand);
  opacity: 0.4;
}

.ph--marsh { background: linear-gradient(145deg, #0A6350, var(--marsh) 60%, var(--sunset)); }
.ph--sand  { background: var(--sand-border); }
.ph--sand .ph__label { color: var(--ink-light); opacity: 1; font-style: normal; font-family: var(--font-body); font-size: 0.688rem; letter-spacing: 0.14em; text-transform: uppercase; }
.ph--sand .ph__note  { color: var(--ink-light); }

.photo { border-radius: var(--radius); width: 100%; height: auto; }

/* --------------------------------------------------------------------------
   9. TRUST BAR
   -------------------------------------------------------------------------- */
.trust {
  background: var(--honey);
  padding: var(--sp-4) 0;
}
.trust__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.15rem;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.688rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-tide);
}
.trust__item::after {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sunset);
  flex-shrink: 0;
}
.trust__item:last-child::after { display: none; }

/* --------------------------------------------------------------------------
   10. CARDS
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 560px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 560px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 560px) { .grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1120px) { .grid--5 { grid-template-columns: repeat(5, 1fr); } }

/* Card on dark ground */
.card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  padding: var(--sp-5);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card-dark:hover { background: rgba(255,255,255,0.1); border-color: rgba(242,201,110,0.3); }
.card-dark__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--honey);
  margin-bottom: var(--sp-2);
}
.card-dark__body {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--warm-sand);
  opacity: 0.62;
}
.card-dark__icon { font-size: 1.35rem; margin-bottom: var(--sp-3); }

/* Card on light ground */
.card {
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  box-shadow: var(--shadow-card);
}
.card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--deep-tide);
  margin-bottom: var(--sp-2);
}
.card__body { font-size: 0.875rem; line-height: 1.7; color: var(--ink-muted); }

/* Translucent card on a coloured band */
.card-tint {
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: var(--sp-5);
}
.card-tint__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--warm-sand);
  margin-bottom: var(--sp-2);
}
.card-tint__body { font-size: 0.8125rem; line-height: 1.7; color: var(--warm-sand); opacity: 0.82; }

.card-tint--tide { background: rgba(8,80,65,0.1); }
.card-tint--tide .card-tint__title { color: var(--deep-tide); }
.card-tint--tide .card-tint__body { color: var(--deep-tide); opacity: 0.88; }

/* Pillar (small dark card) */
.pillar {
  background: var(--deep-tide);
  border-radius: 7px;
  padding: 0.85rem 1rem;
}
.pillar__title {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--honey);
  margin-bottom: 2px;
}
.pillar__body { font-size: 0.75rem; line-height: 1.55; color: var(--warm-sand); opacity: 0.62; }

/* --------------------------------------------------------------------------
   11. STATS
   -------------------------------------------------------------------------- */
.stats {
  background: var(--honey);
  padding: var(--sp-5) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  text-align: center;
}
@media (min-width: 720px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.5rem);
  line-height: 1;
  color: var(--deep-tide);
}
.stat__label {
  font-size: 0.625rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--deep-tide);
  opacity: 0.6;
  margin-top: 5px;
}

/* --------------------------------------------------------------------------
   12. PRICING (Services page)
   -------------------------------------------------------------------------- */
.svc-group { margin-bottom: var(--sp-7); }
.svc-group:last-child { margin-bottom: 0; }

.svc-group__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-2) var(--sp-4);
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--sand-border);
}
.svc-group__title { font-size: clamp(1.5rem, 4vw, 1.9rem); }
.svc-group__avail {
  font-size: 0.688rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sunset-ink);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.price-card--featured { border: 1.5px solid var(--sunset); }

.price-card__badge {
  position: absolute;
  top: -10px;
  left: var(--sp-5);
  background: var(--sunset);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
}

.price-card__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--deep-tide);
  margin-bottom: var(--sp-1);
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--coral-clay);
  margin-bottom: var(--sp-1);
}
.price-card__extra {
  font-size: 0.688rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: var(--sp-3);
}
.price-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-top: auto;
}

.price-card--dashed {
  border: 1.5px dashed var(--sand-border);
  background: transparent;
  box-shadow: none;
  justify-content: center;
  text-align: center;
}
.price-card--dashed:hover { transform: none; box-shadow: none; border-color: var(--sunset); }

/* Full-width add-on strip */
.addon {
  display: grid;
  gap: var(--sp-4);
  background: var(--deep-tide);
  border-radius: var(--radius);
  padding: var(--sp-6);
  align-items: center;
}
@media (min-width: 760px) { .addon { grid-template-columns: auto 1fr; gap: var(--sp-7); } }
.addon__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--honey);
}
.addon__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--honey);
  margin-bottom: var(--sp-2);
}
.addon__meta { font-size: 0.8125rem; color: var(--marsh-ink); letter-spacing: 0.04em; }

/* Pricing note */
.note {
  background: var(--mint-tint);
  border-radius: 7px;
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--deep-tide);
}
.note strong { font-weight: 500; }

/* Service-area pills */
.pills { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.pill {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  color: var(--warm-sand);
}
.pill--tide {
  background: rgba(8,80,65,0.08);
  border-color: rgba(8,80,65,0.14);
  color: var(--deep-tide);
}

/* Service-area strip */
.area-strip {
  background: var(--honey);
  padding: var(--sp-4) 0;
}
.area-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.688rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-tide);
}
.area-strip__list li { display: flex; align-items: center; gap: 1rem; }
.area-strip__list li::after {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sunset);
}
.area-strip__list li:last-child::after { display: none; }

/* --------------------------------------------------------------------------
   13. STORY / EDITORIAL
   -------------------------------------------------------------------------- */
.story__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 900px) {
  .story__grid { grid-template-columns: 1fr 1.85fr; gap: var(--sp-7); align-items: start; }
  .story__side { position: sticky; top: 100px; }
}
.story__body { font-size: 1rem; line-height: 1.9; color: var(--ink-soft); }
.story__body p { margin-bottom: var(--sp-4); }

.pull-quote {
  border-left: 3px solid var(--sunset);
  padding-left: var(--sp-4);
  margin: var(--sp-5) 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  line-height: 1.5;
  color: var(--deep-tide);
  margin: 0;
}

.founder-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--sunset-ink);
  border-left: 2px solid var(--sunset);
  padding-left: 11px;
  line-height: 1.6;
}

/* Intro split (Why Paw & Tide) */
.split { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1.35fr; gap: var(--sp-7); }
  .split--even { grid-template-columns: 1fr 1fr; }
  .split > .ph { align-self: stretch; }
}

/* --------------------------------------------------------------------------
   14. TEAM
   -------------------------------------------------------------------------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.team-card__photo {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__photo span {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-sand);
  opacity: 0.5;
}
.team-card__info { padding: var(--sp-4); }
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep-tide);
  margin-bottom: 2px;
}
.team-card__role {
  font-size: 0.625rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sunset-ink);
  margin-bottom: var(--sp-3);
}
.team-card__bio { font-size: 0.8125rem; line-height: 1.68; color: var(--ink-muted); }
.team-card__detail {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--marsh-deep);
  margin-top: var(--sp-3);
}

/* --------------------------------------------------------------------------
   15. REVIEWS
   -------------------------------------------------------------------------- */
.review {
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.review__stars { color: var(--coral-clay); font-size: 0.9rem; letter-spacing: 0.16em; margin-bottom: var(--sp-3); }
.review__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: var(--sp-4);
  flex: 1;
}
.review__author {
  font-size: 0.688rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* --------------------------------------------------------------------------
   16. PROCESS STEPS
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: var(--sp-5); }
@media (min-width: 620px) { .steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { text-align: center; display: flex; flex-direction: column; align-items: center; }
.step__num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--deep-tide);
  color: var(--honey);
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  flex-shrink: 0;
}
.step__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--deep-tide);
  margin-bottom: var(--sp-2);
}
.step__desc { font-size: 0.875rem; line-height: 1.65; color: var(--ink-muted); }
.step__accent { font-size: 0.75rem; color: var(--sunset-ink); margin-top: var(--sp-2); letter-spacing: 0.03em; }

/* --------------------------------------------------------------------------
   17. FORMS
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  box-shadow: var(--shadow-card);
}
@media (min-width: 620px) { .form-card { padding: var(--sp-6); } }

.field { margin-bottom: var(--sp-4); }
.field__label {
  display: block;
  font-size: 0.688rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.field__req { color: var(--sunset-ink); }

.input, .textarea, .select {
  width: 100%;
  background: var(--warm-sand);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
  background: var(--white);
  border-color: var(--sunset);
  outline: none;
}
.input::placeholder, .textarea::placeholder { color: #C8C6BC; }
.textarea { min-height: 110px; resize: vertical; }

.field-row { display: grid; gap: var(--sp-3); }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.checks { display: grid; gap: var(--sp-2); }
@media (min-width: 480px) { .checks { grid-template-columns: 1fr 1fr; } }
.check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  cursor: pointer;
}
.check input { margin-top: 4px; accent-color: var(--sunset); flex-shrink: 0; }

.form-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--ink-light);
  text-align: center;
  margin-top: var(--sp-3);
}

.form-status {
  display: none;
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.6;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--mint-tint); color: var(--deep-tide); }
.form-status--err { background: #FBE6DE; color: #A33F1C; }

/* Existing-client card */
.portal-card {
  background: var(--deep-tide);
  border-radius: var(--radius);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
}
@media (min-width: 620px) { .portal-card { padding: var(--sp-6); } }
.portal-card__body { color: var(--warm-sand); opacity: 0.68; font-size: 0.9375rem; line-height: 1.75; flex: 1; margin-bottom: var(--sp-5); }
.portal-card__note { font-size: 0.8125rem; color: var(--marsh-ink); text-align: center; margin-top: var(--sp-3); }

/* Bullet list with sunset dots */
.dot-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.dot-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.dot-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sunset);
  margin-top: 9px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   18. FAQ / ACCORDION
   -------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }

.faq-item {
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--deep-tide);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--sunset);
  flex-shrink: 0;
  transition: transform 0.22s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 var(--sp-5) var(--sp-5);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.faq-item__body p { margin-bottom: var(--sp-3); }

/* --------------------------------------------------------------------------
   19. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band .lede { margin-left: auto; margin-right: auto; margin-bottom: var(--sp-5); }

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--deep-tide); color: var(--warm-sand); }
.site-footer__grid {
  display: grid;
  gap: var(--sp-6);
  padding: var(--sp-7) 0;
}
@media (min-width: 760px) {
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: var(--sp-6); }
}

.site-footer__tag {
  font-size: 0.8125rem;
  color: var(--marsh-ink);
  margin-top: var(--sp-2);
}
.site-footer__contact { margin-top: var(--sp-4); font-size: 0.875rem; }
.site-footer__contact a { color: var(--warm-sand); opacity: 0.7; }
.site-footer__contact a:hover { opacity: 1; color: var(--honey); }

.site-footer__label {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marsh-ink);
  margin-bottom: var(--sp-3);
}
.site-footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer__links > li {
  font-size: 0.875rem;
  color: var(--warm-sand);
  opacity: 0.72;
}
.site-footer__links a { opacity: 1; }
.site-footer__links a:hover { opacity: 1; color: var(--honey); }

.subfooter {
  background: var(--tide-deeper);
  padding: var(--sp-4) 0;
}
.subfooter__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--warm-sand);
  opacity: 0.62;
}

/* --------------------------------------------------------------------------
   21. UTILITIES
   -------------------------------------------------------------------------- */
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }

.stack-3 > * + * { margin-top: var(--sp-3); }
.stack-4 > * + * { margin-top: var(--sp-4); }
.stack-5 > * + * { margin-top: var(--sp-5); }

/* Print — a clean pricing sheet if anyone prints the Services page */
@media print {
  .site-header, .site-footer, .subfooter, .btn, .cta-band { display: none !important; }
  body { background: #fff; }
  .section { padding: 1rem 0; }
  .price-card { break-inside: avoid; box-shadow: none; }
}
