/* ==========================================================================
   Classic Lawncare — Design System v2
   Built to the official brand guide:
   - Colors: charcoal #283235 (backgrounds), forest green #2E6962 (brand),
     warm cream #F5F4E4 (primary accent), white, gold #C9A24B (interactive UI only)
   - Typography: Libre Franklin
   - Voice: WORK DONE RIGHT.
   ========================================================================== */

:root {
  /* Brand color tokens (from brand guide) */
  --slate: #283235;
  --slate-deep: #1D2528;
  --slate-soft: #334045;
  --pine: #2E6962;
  --pine-deep: #245650;
  --gold: #C9A24B;
  --gold-deep: #B18B3C;
  --gold-soft: rgba(201, 162, 75, 0.55);
  --cream: #F5F4E4;
  --cream-dark: #EBEAD6;
  --paper: #FFFFFF;
  --ink: #283235;
  --body-color: #46504E;
  --muted: #6E7876;
  --line: #DFDDC9;
  --line-dark: rgba(245, 244, 228, 0.16);
  --cream-on-dark: #F5F4E4;
  --muted-on-dark: #B7C0BC;

  /* Type — Libre Franklin per brand guide */
  --font: "Libre Franklin", "Franklin Gothic Medium", "Helvetica Neue", Arial, sans-serif;
  --step--1: clamp(0.85rem, 0.82rem + 0.15vw, 0.94rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1: clamp(1.12rem, 1.06rem + 0.3vw, 1.3rem);
  --step-2: clamp(1.4rem, 1.26rem + 0.7vw, 1.8rem);
  --step-3: clamp(1.8rem, 1.5rem + 1.5vw, 2.6rem);
  --step-4: clamp(2.3rem, 1.8rem + 2.5vw, 3.6rem);
  --step-5: clamp(2.7rem, 2rem + 3.6vw, 4.6rem);

  /* Layout */
  --container: 73.75rem; /* 1180px */
  --gutter: clamp(1.1rem, 4vw, 2rem);
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: clamp(4rem, 9vw, 7.5rem);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(29, 37, 40, 0.08);
  --shadow-md: 0 18px 44px -18px rgba(29, 37, 40, 0.35);
  --shadow-lg: 0 30px 70px -25px rgba(29, 37, 40, 0.5);
  --header-h: 5.25rem;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.65;
  color: var(--body-color);
  background-color: var(--cream);
  background-image: var(--grain);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 var(--space-2); max-width: 65ch; }
p:last-child { margin-bottom: 0; }

a { color: var(--pine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--slate); }

ul, ol { margin: 0 0 var(--space-2); padding-left: 1.2rem; }
li { margin-bottom: 0.35rem; }

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

:focus-visible {
  outline: 3px solid var(--pine);
  outline-offset: 2px;
  border-radius: 3px;
}
.on-dark :focus-visible, .section--dark :focus-visible { outline-color: var(--gold); }

::selection { background: var(--pine); color: var(--cream); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--cream);
  color: var(--slate);
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus-visible { left: 0; top: 0; }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space-5); }
.section--paper { background: var(--paper); }
.section--pine {
  background: var(--pine);
  background-image: linear-gradient(160deg, var(--pine), var(--pine-deep));
  color: #DCE9E2;
}
.section--pine h2, .section--pine h3, .section--pine h4 { color: var(--cream-on-dark); }
.section--pine a { color: var(--cream-on-dark); text-decoration-color: var(--gold-soft); }
.section--dark {
  background: var(--slate);
  background-image: linear-gradient(165deg, var(--slate-soft) 0%, var(--slate) 45%, var(--slate-deep) 100%);
  color: var(--muted-on-dark);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream-on-dark); }
.section--dark a { color: var(--cream-on-dark); }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--pine);
  margin-bottom: 0.8rem;
}
.section--dark .eyebrow, .section--pine .eyebrow, .page-hero .eyebrow { color: var(--cream-on-dark); opacity: 0.85; }

.section-head { max-width: 46rem; margin-bottom: var(--space-4); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }

.lead { font-size: var(--step-1); line-height: 1.55; }

/* --------------------------------------------------------------------------
   Buttons — cream accent, pine primary, gold reserved for UI indicators
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  padding: 1rem 1.5rem;
  min-height: 50px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; position: relative; z-index: 1; }
.btn > * { position: relative; z-index: 1; }
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.45s ease;
  pointer-events: none;
}
.btn:hover::before { left: 125%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--cream { background: var(--cream); color: var(--slate); box-shadow: 0 12px 28px -14px rgba(29, 37, 40, 0.45); }
.btn--cream:hover { background: #FFFFFF; color: var(--slate-deep); box-shadow: 0 16px 34px -14px rgba(29, 37, 40, 0.5); }

.btn--slate { background: var(--slate); color: var(--cream); box-shadow: 0 12px 26px -14px rgba(29, 37, 40, 0.6); }
.btn--slate:hover { background: var(--slate-deep); color: var(--cream); }

.btn--pine {
  background: linear-gradient(150deg, var(--pine), var(--pine-deep));
  color: #fff;
  box-shadow: 0 12px 28px -14px rgba(36, 86, 80, 0.75);
}
.btn--pine:hover { background: linear-gradient(150deg, #2A625B, #1E4740); color: #fff; box-shadow: 0 16px 34px -14px rgba(36, 86, 80, 0.85); }

.btn--outline {
  background: var(--cream);
  color: var(--slate);
  border-color: rgba(40, 50, 53, 0.35);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover { border-color: var(--slate); background: #fff; color: var(--slate-deep); }

.btn--outline-light {
  background: rgba(245, 244, 228, 0.06);
  color: var(--cream-on-dark);
  border-color: rgba(245, 244, 228, 0.65);
}
.btn--outline-light:hover { background: var(--cream); border-color: var(--cream); color: var(--slate); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

.link-arrow {
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pine);
}
.link-arrow::after { content: "\2192"; transition: transform 0.18s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Announcement bar — warm cream, brand tagline
   -------------------------------------------------------------------------- */
.announce {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-block: 0.55rem;
  text-align: center;
  text-transform: uppercase;
}
.announce__phone { display: none; color: var(--slate); font-weight: 800; text-decoration: none; white-space: nowrap; }
.announce__phone:hover { color: var(--slate-deep); text-decoration: underline; }
@media (min-width: 48em) {
  .announce__inner { justify-content: space-between; }
  .announce__phone { display: inline-flex; align-items: center; gap: 0.45rem; }
}

/* --------------------------------------------------------------------------
   Header — slate with cream nameplate
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(140deg, #2E6157 0%, var(--pine-deep) 55%, #1E4740 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.28);
  box-shadow: 0 6px 24px -14px rgba(29, 37, 40, 0.55);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.site-header__logo { display: inline-flex; align-items: center; flex: none; transition: transform 0.2s ease; }
.site-header__logo:hover { transform: translateY(-1px); }
.site-header__logo img { height: 54px; width: auto; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25)); }

.site-nav { display: none; }
.site-header__cta { display: none; }

@media (min-width: 64em) {
  .site-nav { display: block; }
  .site-nav ul { display: flex; gap: 2.1rem; list-style: none; margin: 0; padding: 0; }
  .site-nav li { margin: 0; }
  .site-nav a {
    position: relative;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cream-on-dark);
    padding: 0.5rem 0.1rem;
    transition: color 0.2s ease;
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--gold);
    transition: right 0.25s ease;
  }
  .site-nav a:hover { color: #fff; }
  .site-nav a:hover::after { right: 0; }
  .site-nav a[aria-current="page"] { color: #fff; }
  .site-nav a[aria-current="page"]::after { right: 0; }
  .site-header__cta { display: inline-flex; padding: 0.85rem 1.35rem; min-height: 46px; }
}

/* Mobile menu toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle__bar { display: block; width: 100%; height: 2px; background: var(--cream-on-dark); }
@media (min-width: 64em) { .nav-toggle { display: none; } }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--slate);
  background-image: linear-gradient(165deg, var(--slate-soft), var(--slate-deep));
  color: var(--cream-on-dark);
  display: flex;
  flex-direction: column;
  padding: 0.6rem var(--gutter) 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.mobile-menu__top img { height: 44px; width: auto; }
.mobile-menu__close {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  color: var(--cream-on-dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.mobile-menu nav { margin-top: 1.2rem; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { margin: 0; border-bottom: 1px solid var(--line-dark); }
.mobile-menu a.mobile-menu__link {
  display: block;
  padding: 0.95rem 0.2rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream-on-dark);
  text-decoration: none;
}
.mobile-menu a.mobile-menu__link:hover { color: #FFFFFF; }
.mobile-menu a.mobile-menu__link[aria-current="page"] { color: var(--gold); }
.mobile-menu__actions { margin-top: 1.6rem; display: grid; gap: 0.8rem; }
.mobile-menu__phone { margin-top: 1.4rem; text-align: center; color: var(--muted-on-dark); font-size: var(--step--1); }
.mobile-menu__phone a { color: var(--cream-on-dark); font-size: 1.45rem; font-weight: 800; letter-spacing: 0.02em; text-decoration: none; }

body.menu-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Home hero — slate, ghost-word device from brand guide
   -------------------------------------------------------------------------- */
.hero {
  background: var(--slate);
  background-image: linear-gradient(165deg, var(--slate-soft) 0%, var(--slate) 45%, var(--slate-deep) 100%);
  color: var(--muted-on-dark);
  overflow: hidden;
  position: relative;
}
.hero::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); pointer-events: none; }
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-4);
  align-items: center;
  padding-block: clamp(2.8rem, 6vw, 5.5rem);
}
.hero .eyebrow { color: var(--cream-on-dark); opacity: 0.85; }

.wordmark-stack { margin: 0 0 var(--space-3); }
.wordmark-stack .ghost {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
  font-size: var(--step-3);
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 244, 228, 0.22);
  user-select: none;
}
.hero h1 {
  color: var(--cream-on-dark);
  font-size: var(--step-5);
  margin: 0.1em 0;
}
.hero h1 em { font-style: normal; color: var(--cream-on-dark); text-decoration: underline; text-decoration-color: var(--gold-soft); text-decoration-thickness: 3px; text-underline-offset: 0.14em; }
.hero__lead { font-size: var(--step-1); line-height: 1.55; max-width: 34rem; color: var(--muted-on-dark); }
.hero__phone { margin-top: var(--space-3); font-size: var(--step--1); color: var(--muted-on-dark); }
.hero__phone a {
  display: inline-block;
  font-size: var(--step-2);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--cream-on-dark);
  text-decoration: none;
}
.hero__phone a:hover { color: var(--gold); }

.hero__media { position: relative; max-width: 34rem; }
.hero__media .photo-frame { box-shadow: var(--shadow-md); }
.hero__badge {
  position: absolute;
  top: -1.6rem;
  right: -1rem;
  width: clamp(6rem, 12vw, 8.5rem);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  transform: rotate(6deg);
}
@media (min-width: 64em) {
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; gap: clamp(2.5rem, 5vw, 5rem); }
  .hero__media { justify-self: end; width: 100%; }
}

/* Photo frame used across the site */
.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.55rem 1rem;
  background: rgba(29, 37, 40, 0.78);
  color: var(--cream-on-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Page hero (interior pages) */
.page-hero {
  background: var(--slate);
  background-image: linear-gradient(165deg, var(--slate-soft) 0%, var(--slate) 50%, var(--slate-deep) 100%);
  color: var(--muted-on-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); pointer-events: none; }
.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-4);
  align-items: center;
  padding-block: clamp(2.8rem, 6vw, 5rem);
}
.page-hero h1 { color: var(--cream-on-dark); max-width: 20ch; font-size: var(--step-4); }
.page-hero h1 em { font-style: normal; color: var(--cream-on-dark); text-decoration: underline; text-decoration-color: var(--gold-soft); text-decoration-thickness: 3px; text-underline-offset: 0.14em; }
.page-hero p.lead { color: var(--muted-on-dark); max-width: 34rem; }
.page-hero__media { max-width: 30rem; }
@media (min-width: 64em) {
  .page-hero__grid--split { grid-template-columns: 1.1fr 0.9fr; }
  .page-hero__media { justify-self: end; width: 100%; }
}

.breadcrumb { font-size: 0.82rem; letter-spacing: 0.04em; margin-bottom: var(--space-3); font-weight: 500; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.breadcrumb li { margin: 0; display: flex; gap: 0.4rem; align-items: center; }
.breadcrumb li + li::before { content: "/"; opacity: 0.4; }
.breadcrumb a { color: var(--muted-on-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--cream-on-dark); }

/* --------------------------------------------------------------------------
   Trust strip — gold band (legacy, superseded by trust-float)
   -------------------------------------------------------------------------- */
.trust { background: var(--cream); color: var(--slate); }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.trust__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust__item svg { width: 21px; height: 21px; flex: none; }
@media (min-width: 48em) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .trust__item { justify-content: center; }
  .trust__item + .trust__item { border-left: 1.5px solid rgba(40, 50, 53, 0.18); }
}

/* --------------------------------------------------------------------------
   Problem / solution
   -------------------------------------------------------------------------- */
.compare { display: grid; gap: var(--space-3); margin-top: var(--space-4); }
@media (min-width: 48em) { .compare { grid-template-columns: 1fr 1fr; } }
.compare__col {
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line-dark);
}
.compare__col--good { background: var(--pine); border-color: transparent; }
.compare__col h3 { font-size: var(--step-1); margin-bottom: var(--space-2); }
.compare__col ul { list-style: none; padding: 0; margin: 0; }
.compare__col li { display: flex; gap: 0.7rem; align-items: flex-start; padding-block: 0.45rem; margin: 0; }
.compare__col li svg { width: 19px; height: 19px; flex: none; margin-top: 0.25rem; }
.compare__col--bad li svg { color: #D98A6A; }
.compare__col--good li svg { color: var(--cream-on-dark); }
.compare__col--good { color: #DCE9E2; }

/* --------------------------------------------------------------------------
   Service cards — photo-led
   -------------------------------------------------------------------------- */
.card-grid { display: grid; gap: var(--space-3); }
@media (min-width: 34em) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .card-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 64em) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card__media { aspect-ratio: 4 / 3; background: var(--cream-dark); overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.service-card:hover .service-card__media img { transform: scale(1.04); }
.service-card__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.service-card__body h3 { font-size: 1.12rem; margin: 0; letter-spacing: 0.01em; }
.service-card__body p { font-size: var(--step--1); margin: 0; flex: 1; }
.service-card__body .link-arrow { font-size: 0.85rem; margin-top: 0.35rem; }
.service-card a.service-card__link { text-decoration: none; color: inherit; }
.service-card a.service-card__link::after { content: ""; position: absolute; inset: 0; }

/* --------------------------------------------------------------------------
   Featured work / gallery
   -------------------------------------------------------------------------- */
.work-grid { display: grid; gap: 1rem; }
@media (min-width: 34em) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .work-grid { grid-template-columns: repeat(3, 1fr); } }

.work-feature { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 64em) {
  .work-feature { grid-template-columns: 1.1fr 1fr; }
  .work-feature .work-feature__side { display: grid; gap: 1rem; grid-template-rows: 1fr 1fr; }
}

.work-item {
  position: relative;
  display: block;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
  padding: 0;
  cursor: pointer;
  width: 100%;
}
.work-item--43 { aspect-ratio: 4 / 3; }
.work-item--45 { aspect-ratio: 4 / 5; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.work-item:hover img { transform: scale(1.025); }
.work-item .work-item__label, .work-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.55rem 0.9rem;
  background: linear-gradient(transparent, rgba(29, 37, 40, 0.85));
  padding-top: 2rem;
  color: var(--cream-on-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: left;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(29, 37, 40, 0.94);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox__figure { margin: 0; max-width: min(64rem, 100%); max-height: 100%; display: flex; flex-direction: column; gap: 0.7rem; }
.lightbox__figure img { max-height: 78vh; width: auto; max-width: 100%; margin-inline: auto; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox__caption { color: var(--muted-on-dark); text-align: center; font-size: var(--step--1); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(245, 244, 228, 0.1);
  border: 1px solid rgba(245, 244, 228, 0.3);
  border-radius: var(--radius-sm);
  color: var(--cream-on-dark);
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(245, 244, 228, 0.22); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 0.8rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 0.8rem; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   Numbered features
   -------------------------------------------------------------------------- */
.feature-grid { display: grid; gap: var(--space-3); }
@media (min-width: 48em) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.feature__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--slate);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  border: 1px solid var(--line);
}
.feature h3 { font-size: 1.1rem; margin-bottom: 0.5rem; letter-spacing: 0.01em; }
.feature p { font-size: var(--step--1); margin: 0; }

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: var(--space-4); }
@media (min-width: 48em) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); } }
.step__num {
  font-size: var(--step-4);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream-on-dark);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.step h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.step p { font-size: var(--step--1); margin: 0; }

/* --------------------------------------------------------------------------
   Testimonials (hidden until verified reviews are added — see site-config.js)
   -------------------------------------------------------------------------- */
.testimonials[hidden] { display: none; }
.quote-grid { display: grid; gap: var(--space-3); }
@media (min-width: 48em) { .quote-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--paper);
  border-radius: var(--radius);
  border-left: 4px solid var(--pine);
  padding: 1.6rem 1.6rem 1.4rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.quote p { font-size: var(--step--1); font-style: italic; margin: 0; }
.quote blockquote { flex: 1; }
.quote figcaption { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem; }
.quote cite { font-style: normal; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.85rem; color: var(--ink); }
.quote__date { font-size: 0.8rem; color: var(--muted); }

/* Star ratings — gold as a small icon highlight */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; fill: var(--gold); }
.stars svg.stars__empty { fill: var(--line); }

/* Reviews section header + Google buttons */
.reviews-aggregate {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--step-0);
  color: var(--body-color);
  margin-bottom: 0.4rem;
}
.reviews-aggregate strong { color: var(--ink); }
.reviews-actions { justify-content: center; margin-top: var(--space-4); }
.reviews-note { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Service area
   -------------------------------------------------------------------------- */
.area-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; padding: 0; margin: var(--space-3) 0 0; }
.area-chips li {
  margin: 0;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink);
}
.section--dark .area-chips li, .section--pine .area-chips li { background: rgba(245, 244, 228, 0.08); border-color: var(--line-dark); color: var(--cream-on-dark); }

.seal { width: clamp(7rem, 16vw, 10.5rem); height: auto; }

/* --------------------------------------------------------------------------
   Split layout
   -------------------------------------------------------------------------- */
.split { display: grid; gap: var(--space-4); align-items: center; }
@media (min-width: 64em) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-left .split__media { order: -1; }
}
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.split__media img { width: 100%; height: auto; display: block; }

/* --------------------------------------------------------------------------
   Checklist
   -------------------------------------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
@media (min-width: 48em) { .checklist--2col { grid-template-columns: 1fr 1fr; column-gap: 2rem; } }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; margin: 0; padding-block: 0.3rem; }
.checklist svg { width: 19px; height: 19px; flex: none; color: var(--pine); margin-top: 0.3rem; }
.section--dark .checklist svg, .section--pine .checklist svg { color: var(--cream-on-dark); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 48rem; }
.faq details {
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.7rem;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--pine); flex: none; transition: transform 0.18s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.25rem 1.25rem; }

/* --------------------------------------------------------------------------
   CTA band — photo background
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  color: var(--muted-on-dark);
  text-align: center;
  padding-block: var(--space-5);
  overflow: hidden;
  background: var(--slate);
}
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(29, 37, 40, 0.82), rgba(29, 37, 40, 0.88)); }
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream-on-dark); }
.cta-band h2 em { font-style: normal; color: var(--cream-on-dark); text-decoration: underline; text-decoration-color: var(--gold-soft); text-decoration-thickness: 3px; text-underline-offset: 0.14em; }
.cta-band p { margin-inline: auto; max-width: 40rem; color: #C9D1CC; }
.cta-band .btn-row { justify-content: center; margin-top: var(--space-3); }

/* Inline CTA */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: var(--slate);
  color: var(--cream-on-dark);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
}
.cta-inline h3 { color: var(--cream-on-dark); margin: 0; font-size: var(--step-2); }
.cta-inline p { margin: 0.3rem 0 0; font-size: var(--step--1); color: var(--muted-on-dark); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 48em) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .form-field--full { grid-column: 1 / -1; }
}
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-field .optional { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.82rem; }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  min-height: 50px;
}
.form-field textarea { min-height: 8rem; resize: vertical; }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible {
  outline: 3px solid var(--pine);
  outline-offset: 1px;
  border-color: var(--pine);
}
.form-check { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--step--1); }
.form-check input { width: 20px; height: 20px; margin-top: 0.2rem; flex: none; accent-color: var(--pine); }
.form-hint { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }

/* --------------------------------------------------------------------------
   Contact cards
   -------------------------------------------------------------------------- */
.contact-cards { display: grid; gap: var(--space-3); }
@media (min-width: 48em) { .contact-cards { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.contact-card h2, .contact-card h3 { margin: 0; font-size: var(--step-1); letter-spacing: 0.01em; }
.contact-card p { font-size: var(--step--1); margin: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--slate-deep);
  color: var(--muted-on-dark);
  font-size: var(--step--1);
  padding-block: var(--space-5) 0;
}
.site-footer a { color: var(--muted-on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.site-footer__grid { display: grid; gap: var(--space-4); padding-bottom: var(--space-4); }
@media (min-width: 48em) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-3); } }
.site-footer__brand img.site-footer__logo { height: 52px; width: auto; margin-bottom: 1.1rem; }
.site-footer__brand p { max-width: 30ch; }
.site-footer__seal { width: 74px; height: auto; margin-top: 1.1rem; opacity: 0.9; }
.site-footer__heading {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cream-on-dark);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  margin: 0 0 0.9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer__phone { font-size: 1.5rem; font-weight: 800; letter-spacing: 0.01em; color: var(--cream-on-dark) !important; }
.site-footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.site-footer__bottom p { margin: 0; }
.site-footer__tagline { color: var(--cream-on-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }

/* --------------------------------------------------------------------------
   Sticky mobile contact bar
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 1px;
  background: rgba(245, 244, 228, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--slate-deep);
  color: var(--cream-on-dark);
}
.mobile-bar a svg { width: 17px; height: 17px; }
.mobile-bar a.mobile-bar__estimate { background: var(--cream); color: var(--slate); }
body { padding-bottom: calc(53px + env(safe-area-inset-bottom, 0px)); }
body.menu-open .mobile-bar { display: none; }
@media (min-width: 64em) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   Prose / 404 / misc
   -------------------------------------------------------------------------- */
.prose h2 { font-size: var(--step-2); margin-top: var(--space-4); }
.prose h3 { font-size: var(--step-1); margin-top: var(--space-3); }
.prose { max-width: 46rem; }

.error-hero { text-align: center; padding-block: var(--space-5); }
.error-hero .error-code {
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2.5px var(--pine);
}

/* ==========================================================================
   v3 — Homepage redesign layer
   ========================================================================== */

/* ---- Section rhythm & panels ---- */
.section--sand { background: var(--cream-dark); background-image: var(--grain); }
.section-head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head h2 { letter-spacing: -0.015em; }
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto var(--space-3);
  max-width: 16rem;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--gold-soft); }
.divider svg, .divider img { width: 26px; height: 26px; opacity: 0.85; }

/* ---- Immersive hero ---- */
.hero-v3 {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(46, 105, 98, 0.55) 0%, transparent 55%),
    linear-gradient(150deg, #2E6157 0%, #24544D 40%, var(--slate-deep) 100%);
  color: var(--muted-on-dark);
  overflow: hidden;
}
.hero-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.7;
  pointer-events: none;
}
.hero-v3::after {
  content: "";
  position: absolute;
  left: -10%; right: -10%; bottom: -2px;
  height: 120px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(29, 37, 40, 0.5), transparent 70%);
  pointer-events: none;
}
.hero-v3__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(5rem, 9vw, 7.5rem);
}
.hero-v3 .eyebrow { color: var(--cream-on-dark); opacity: 0.85; }
.hero-v3 .wordmark-stack .ghost { -webkit-text-stroke-color: rgba(245, 244, 228, 0.26); }
.hero-v3 h1 { color: var(--cream-on-dark); font-size: var(--step-5); margin: 0.08em 0; }
.hero-v3 h1 em { font-style: normal; color: var(--cream-on-dark); text-decoration: underline; text-decoration-color: var(--gold-soft); text-decoration-thickness: 4px; text-underline-offset: 0.14em; }
.hero-v3 .hero__lead { color: #CBD5CF; }
.hero-v3 .hero__phone { color: #A9B5AF; }
.hero-v3 .hero__phone a { color: var(--cream-on-dark); }
.hero-v3 .hero__phone a:hover { color: var(--gold); }

/* Collage */
.hero-collage {
  position: relative;
  max-width: 33rem;
  margin-inline: auto;
  padding: 0 1.2rem 3.4rem 0;
}
.hero-collage__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(245, 244, 228, 0.16);
  position: relative;
  margin: 0;
}
.hero-collage__main img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage__main figcaption {
  position: absolute;
  left: 0.9rem; bottom: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(29, 37, 40, 0.72);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 244, 228, 0.2);
  color: var(--cream-on-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-collage__detail {
  position: absolute;
  right: -0.4rem;
  bottom: 0;
  width: clamp(9rem, 30%, 11.5rem);
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid rgba(245, 244, 228, 0.92);
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
}
.hero-collage__detail img { display: block; width: 100%; height: auto; }
.hero-collage__badge {
  position: absolute;
  top: -1.8rem;
  left: -1.2rem;
  width: clamp(6rem, 14vw, 8rem);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.4));
  transform: rotate(-8deg);
  animation: badge-float 7s ease-in-out infinite;
}
@keyframes badge-float {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-6.5deg) translateY(-7px); }
}
@media (min-width: 64em) {
  .hero-v3__grid { grid-template-columns: 1.04fr 0.96fr; }
  .hero-collage { justify-self: end; width: 100%; }
}

/* Floating trust card overlapping hero bottom */
.trust-float { position: relative; z-index: 5; margin-top: clamp(-3.6rem, -5vw, -2.6rem); }
.trust-float__card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}
.trust-float__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
}
.trust-float__item svg { width: 24px; height: 24px; flex: none; color: var(--pine); }
.trust-float__item:nth-child(odd) { border-right: 1px solid var(--line); }
.trust-float__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
@media (min-width: 64em) {
  .trust-float__card { grid-template-columns: repeat(4, 1fr); }
  .trust-float__item { justify-content: center; padding: 1.5rem 1rem; border-bottom: 0 !important; }
  .trust-float__item:not(:last-child) { border-right: 1px solid var(--line); }
}

/* ---- Full-bleed photo band ---- */
.photo-band { position: relative; overflow: hidden; }
.photo-band picture, .photo-band img { display: block; width: 100%; height: clamp(16rem, 42vw, 30rem); object-fit: cover; }
.photo-band__chip {
  position: absolute;
  left: 50%;
  bottom: clamp(1.2rem, 4vw, 2.4rem);
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: rgba(29, 37, 40, 0.72);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 162, 75, 0.45);
  color: var(--cream-on-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Photo frame refinements ---- */
.photo-frame { border-radius: var(--radius-lg); }
.work-item { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.service-card { box-shadow: 0 2px 8px rgba(29, 37, 40, 0.06), 0 14px 34px -20px rgba(29, 37, 40, 0.25); }

/* ---- Reveal-on-scroll (JS adds .js to <html>; safe without JS) ---- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal][data-reveal-delay="1"].is-visible { transition-delay: 0.08s; }
.js [data-reveal][data-reveal-delay="2"].is-visible { transition-delay: 0.16s; }
.js [data-reveal][data-reveal-delay="3"].is-visible { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Final CTA enhancements
   -------------------------------------------------------------------------- */
.cta-band--final { padding-block: clamp(4.5rem, 10vw, 8rem); }
.cta-band__seal {
  width: clamp(4.6rem, 9vw, 5.75rem);
  height: auto;
  margin: 0 auto var(--space-3);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}
.cta-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.8rem;
  padding: 0;
  margin: var(--space-3) 0;
  color: var(--cream-on-dark);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta-bullets li { display: inline-flex; align-items: center; gap: 0.5rem; margin: 0; }
.cta-bullets svg { width: 18px; height: 18px; color: var(--cream-on-dark); opacity: 0.9; }

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
