/* =========================================================================
   Landorf's Lawn Service — "Heritage Green"
   Vanilla CSS. All component colors via semantic tokens (light + dark).
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand raw palette (used only to compose semantic tokens below) */
  --c-forest: #14532d;
  --c-green: #2f6b3a;
  --c-green-600: #3a7d47;
  --c-gold: #c9a227;
  --c-gold-soft: #e0bf52;
  --c-cream: #f4f1e4;
  --c-cream-2: #ece7d4;
  --c-ink: #102a1c;
  --c-ink-2: #0b2014;
  --c-white: #ffffff;

  /* Spacing scale (4px base) */
  --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: 4rem;
  --space-9: 6rem;

  /* Radii & shadow */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Type */
  --font-display: "Lora", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", Helvetica, "Helvetica Neue", system-ui, sans-serif;

  --container: 1180px;
  --header-h: 72px;

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

/* ---------- LIGHT theme (default) ---------- */
:root,
[data-theme="light"] {
  --bg: var(--c-cream);
  --bg-elev: #fbf9f1;
  --surface: var(--c-white);
  --surface-2: #f6f3e8;
  --surface-tint: #eef0e3;
  --text: #1d2a20;
  --text-strong: #14271a;
  --muted: #566154;
  --primary: var(--c-forest);
  --primary-hover: #103f23;
  --primary-contrast: #ffffff;
  --accent: #806810;            /* gold, darkened to meet AA 4.5:1 for small text on cream/tint */
  --accent-bright: var(--c-gold);
  --accent-contrast: #1d1503;
  --border: #d9d3bf;
  --border-strong: #c5bda3;
  --ring: #2f6b3a;

  --hero-ink: #f4f1e4;          /* text on the dark hero */
  --hero-muted: #d6e2d2;
  --hero-chip-bg: rgba(255, 255, 255, 0.10);
  --hero-chip-border: rgba(255, 255, 255, 0.22);

  --seal-bg: #103b21;
  --seal-text: #e7d79a;
  --brand-mark-bg: var(--c-forest);
  --brand-leaf: #5fb070;

  --header-bg: rgba(250, 248, 240, 0.86);
  --header-border: #ddd6c2;
  --shadow-sm: 0 1px 2px rgba(20, 39, 26, 0.06), 0 2px 6px rgba(20, 39, 26, 0.05);
  --shadow-md: 0 6px 18px rgba(20, 39, 26, 0.10), 0 2px 6px rgba(20, 39, 26, 0.06);
  --shadow-lg: 0 18px 50px rgba(16, 42, 28, 0.18);
  --stripe: rgba(20, 83, 45, 0.035);
}

/* ---------- DARK theme ---------- */
[data-theme="dark"] {
  --bg: var(--c-ink);
  --bg-elev: #123524;
  --surface: #163a27;
  --surface-2: #11301f;
  --surface-tint: #0d2718;
  --text: #e8efe6;
  --text-strong: #f4f7f1;
  --muted: #a6bbab;
  --primary: #3f8a4d;
  --primary-hover: #4a9b58;
  --primary-contrast: #06170e;
  --accent: #e0bf52;            /* gold reads bright on dark — AA+ */
  --accent-bright: #e7c75a;
  --accent-contrast: #1d1503;
  --border: #244d34;
  --border-strong: #2f6342;
  --ring: #6fc07f;

  --hero-ink: #f4f1e4;
  --hero-muted: #cfe0cb;
  --hero-chip-bg: rgba(255, 255, 255, 0.07);
  --hero-chip-border: rgba(255, 255, 255, 0.16);

  --seal-bg: #0c2817;
  --seal-text: #e7d79a;
  --brand-mark-bg: #0f3d22;
  --brand-leaf: #5fb070;

  --header-bg: rgba(13, 35, 22, 0.82);
  --header-border: #214631;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.30);
  --shadow-md: 0 8px 22px rgba(0, 0, 0, 0.40);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.55);
  --stripe: rgba(255, 255, 255, 0.022);
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(
      -14deg,
      var(--stripe) 0,
      var(--stripe) 56px,
      transparent 56px,
      transparent 112px
    );
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

strong { font-weight: 700; color: var(--text-strong); }

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

.visually-hidden {
  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: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-contrast);
  padding: 0.6rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 200;
  font-weight: 600;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 0; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section-tint { background: var(--surface-tint); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-top: var(--space-2); }
.section-intro { color: var(--muted); font-size: 1.125rem; margin-top: var(--space-3); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-line { position: relative; padding-left: 2.4rem; }
.eyebrow-line::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.8rem; height: 2px;
  background: var(--accent-bright);
  transform: translateY(-50%);
}

.accent-text { color: var(--accent); font-style: italic; }
[data-theme="dark"] .accent-text { color: var(--accent-bright); }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.7rem;
  --btn-pad-x: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  min-height: 44px;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-lg { --btn-pad-y: 0.9rem; --btn-pad-x: 1.6rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-contrast);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, transparent); }
[data-theme="dark"] .btn-outline { color: var(--text-strong); }

/* Ghost button — readable in both themes incl. on the dark hero */
.btn-ghost {
  background: var(--hero-chip-bg);
  color: var(--hero-ink);
  border-color: var(--hero-chip-border);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.4); }

/* Ghost used outside the hero (pricing) needs theme-aware colors */
#pricing .btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
  backdrop-filter: none;
}
#pricing .btn-ghost:hover { background: color-mix(in srgb, var(--primary) 8%, transparent); border-color: var(--primary); }
[data-theme="dark"] #pricing .btn-ghost { color: var(--text-strong); }

.icon { flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--header-border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-strong);
  flex: none;
}
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-top: 2px;
}

.primary-nav { margin-left: auto; }
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: clamp(0.5rem, 1.6vw, 1.5rem);
  padding: 0;
}
.primary-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.2rem;
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.primary-nav a:hover { text-decoration: none; color: var(--text-strong); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: none;
}

.theme-toggle {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }
[data-theme="dark"] .theme-toggle:hover { color: var(--accent-bright); border-color: var(--accent-bright); }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.header-call span { white-space: nowrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--hero-ink);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--c-forest);
  background-image: url("../assets/img/hero-pattern.svg");
  background-size: cover;
  background-position: center 35%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(8, 23, 14, 0.86) 0%, rgba(8, 23, 14, 0.55) 48%, rgba(8, 23, 14, 0.25) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3.5rem, 9vw, 7rem);
}
.hero-copy { max-width: 40rem; }
.hero .eyebrow {
  color: var(--accent-bright);
  background: var(--hero-chip-bg);
  border: 1px solid var(--hero-chip-border);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
}
.hero h1 {
  color: var(--hero-ink);
  font-size: clamp(2.3rem, 6vw, 4rem);
  font-weight: 700;
  margin-top: var(--space-4);
  text-wrap: balance;
}
.hero .accent-text { color: var(--accent-bright); }
.lede {
  color: var(--hero-muted);
  font-size: clamp(1.075rem, 2vw, 1.3rem);
  margin-top: var(--space-4);
  max-width: 38ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  padding: 0;
  margin-top: var(--space-6);
  border-top: 1px solid var(--hero-chip-border);
  padding-top: var(--space-5);
}
.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--hero-muted);
  font-size: 0.95rem;
}
.trust-chips .icon { color: var(--accent-bright); }
.trust-chips strong { color: var(--hero-ink); }

/* The "Since 1992" seal */
.hero-seal-wrap { display: flex; justify-content: center; }
.seal {
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
  animation: sealIn 700ms var(--ease) both;
  animation-delay: 220ms;
}
.seal svg { width: clamp(150px, 22vw, 230px); height: auto; }
.seal-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  fill: var(--seal-text);
}
.seal-since {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.4em;
  fill: var(--seal-text);
  font-weight: 600;
}
.seal-year {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  fill: #ffffff;
  letter-spacing: 0.02em;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-copy h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-top: var(--space-2); }
.about-copy p { color: var(--muted); margin-top: var(--space-4); max-width: 62ch; }

.cred-list { list-style: none; padding: 0; margin-top: var(--space-6); display: grid; gap: var(--space-4); }
.cred-list li { display: flex; gap: var(--space-3); align-items: flex-start; }
.cred-list .icon { color: var(--accent); margin-top: 2px; flex: none; }
[data-theme="dark"] .cred-list .icon { color: var(--accent-bright); }
.cred-list strong { display: block; color: var(--text-strong); }
.cred-list span { color: var(--muted); font-size: 0.95rem; }

.about-aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.about-aside::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-bright));
}
.stat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.stat { padding: var(--space-2) 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
[data-theme="dark"] .stat-num { color: var(--brand-leaf); }
.stat-unit { font-size: 1rem; color: var(--muted); margin-left: 2px; }
.stat-label { display: block; color: var(--muted); font-size: 0.9rem; margin-top: 0.35rem; }

.aside-quote {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.075rem;
  color: var(--text-strong);
}
.aside-quote span { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }

/* ---------- Services ---------- */
.service-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
  margin-bottom: var(--space-3);
}
[data-theme="dark"] .service-icon { background: color-mix(in srgb, var(--brand-leaf) 16%, transparent); color: var(--brand-leaf); }
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--muted); margin-top: var(--space-2); font-size: 0.975rem; }

.service-card-cta {
  background: linear-gradient(160deg, var(--primary), var(--primary-hover));
  border-color: transparent;
  color: var(--primary-contrast);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
}
.service-card-cta h3 { color: var(--primary-contrast); }
.service-card-cta p { color: color-mix(in srgb, var(--primary-contrast) 82%, transparent); }
.service-card-cta .btn-outline {
  align-self: flex-start;
  color: var(--primary-contrast);
  border-color: rgba(255, 255, 255, 0.5);
}
.service-card-cta .btn-outline:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }
[data-theme="dark"] .service-card-cta { background: linear-gradient(160deg, #1c4e30, #0f3d22); color: var(--c-cream); }
[data-theme="dark"] .service-card-cta h3 { color: var(--c-cream); }
[data-theme="dark"] .service-card-cta p { color: color-mix(in srgb, var(--c-cream) 80%, transparent); }

/* ---------- Pricing ---------- */
.pricing-wrap {
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
}
.pricing-table caption { text-align: left; }
.pricing-table thead th {
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--border-strong);
}
.pricing-table tbody th {
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-strong);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
}
.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table .col-price { text-align: right; white-space: nowrap; }
.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
[data-theme="dark"] .price { color: var(--brand-leaf); }
.price-unit { color: var(--muted); font-size: 0.9rem; margin-left: 0.3rem; }

.pricing-disclaimer {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: color-mix(in srgb, var(--accent-bright) 14%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent-bright) 40%, var(--border));
  border-radius: var(--radius);
  color: var(--text-strong);
  font-size: 0.95rem;
}
.pricing-disclaimer .icon { color: var(--accent); flex: none; margin-top: 1px; }
[data-theme="dark"] .pricing-disclaimer { background: color-mix(in srgb, var(--accent-bright) 12%, var(--surface)); }
[data-theme="dark"] .pricing-disclaimer .icon { color: var(--accent-bright); }

.pricing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}
.gallery-tile {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
  position: relative;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  pointer-events: none;
}

/* ---------- Testimonial ---------- */
.testimonial {
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.35em;
  left: 0.3em;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--accent-bright);
  opacity: 0.28;
}
.stars { display: inline-flex; gap: 3px; color: var(--accent); margin-bottom: var(--space-3); }
[data-theme="dark"] .stars { color: var(--accent-bright); }
.testimonial blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  color: var(--text-strong);
}
.testimonial figcaption {
  margin-top: var(--space-4);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.testimonial .author { font-weight: 700; color: var(--text-strong); }
.testimonial .source { color: var(--muted); font-size: 0.9rem; }

/* ---------- Service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.area-copy h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-top: var(--space-2); }
.area-copy p { color: var(--muted); margin-top: var(--space-4); max-width: 56ch; }
.area-chips { list-style: none; padding: 0; margin-top: var(--space-5); display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-chips li {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.area-chips .area-chip-all {
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  border-color: transparent;
  color: var(--primary);
}
[data-theme="dark"] .area-chips .area-chip-all { color: var(--brand-leaf); }

.area-motif {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.area-pin-label { font-family: var(--font-display); font-weight: 700; font-size: 17px; fill: var(--text-strong); }
.area-pin-sub { font-family: var(--font-body); font-size: 11px; fill: var(--muted); letter-spacing: 0.05em; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-copy h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-top: var(--space-2); }
.contact-copy p { color: var(--muted); margin-top: var(--space-4); max-width: 50ch; }

.contact-methods { list-style: none; padding: 0; margin-top: var(--space-6); display: grid; gap: var(--space-4); }
.contact-methods li { display: flex; align-items: flex-start; gap: var(--space-3); }
.contact-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
}
[data-theme="dark"] .contact-ic { background: color-mix(in srgb, var(--brand-leaf) 16%, transparent); color: var(--brand-leaf); }
.contact-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.contact-value { color: var(--text-strong); font-weight: 600; font-size: 1.05rem; word-break: break-word; }
a.contact-value:hover { color: var(--primary); }
[data-theme="dark"] a.contact-value:hover { color: var(--brand-leaf); }
.contact-email { font-size: 0.98rem; }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3.5vw, 2.25rem);
  box-shadow: var(--shadow-md);
}
.form-intro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-strong);
  margin-bottom: var(--space-4);
}
.field { display: flex; flex-direction: column; margin-bottom: var(--space-4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-strong);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: 0.8; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 35%, transparent);
}
.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #c0432f;
}
[data-theme="dark"] .field input:user-invalid,
[data-theme="dark"] .field textarea:user-invalid { border-color: #e8775f; }

.form-note { margin-top: var(--space-3); font-size: 0.95rem; min-height: 1.2em; }
.form-note.is-success { color: var(--primary); font-weight: 600; }
[data-theme="dark"] .form-note.is-success { color: var(--brand-leaf); }
.form-note.is-error { color: #c0432f; font-weight: 600; }
[data-theme="dark"] .form-note.is-error { color: #e8775f; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink-2);
  color: #cbd9c9;
  border-top: 4px solid var(--accent-bright);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}
.site-footer a { color: #cbd9c9; }
.site-footer a:hover { color: #fff; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
}
.footer-brand { display: flex; gap: 0.75rem; align-items: center; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; }
.footer-tag { font-size: 0.85rem; color: #9fb39d; margin-top: 2px; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-weight: 600; width: fit-content; }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-contact a { font-weight: 600; }
.footer-hours { color: #9fb39d; font-size: 0.85rem; margin-top: 0.4rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: #9fb39d;
}
.footer-disclaimer { opacity: 0.85; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@keyframes sealIn {
  from { opacity: 0; transform: scale(0.85) rotate(-6deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1.4fr 0.8fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { max-width: 520px; }
}

@media (max-width: 880px) {
  .primary-nav { display: none; }
  .header-call span { display: none; }
  .header-call { width: 44px; padding: 0; }
}

@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-seal-wrap { order: -1; }
  .seal svg { width: 140px; }
  .lede { max-width: none; }
  .area-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .area-motif { max-width: 340px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  body { font-size: 1rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-bottom { flex-direction: column; }
  .hero-cta .btn,
  .pricing-cta .btn { width: 100%; }
  .brand-sub { font-size: 0.66rem; }
}

@media (max-width: 380px) {
  .trust-chips { gap: var(--space-3); }
  .service-grid { grid-template-columns: 1fr; }
}

/* ---------- Motion & contrast preferences ---------- */
@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;
  }
  .reveal { opacity: 1; transform: none; }
  .seal { animation: none; }
}

@media (prefers-contrast: more) {
  .service-card, .pricing-wrap, .testimonial, .about-aside, .contact-form-wrap, .area-chips li { border-width: 2px; }
}

@media print {
  .site-header, .theme-toggle, .hero-cta, .pricing-cta { display: none; }
  body { background: #fff; color: #000; }
}
