/* ==========================================================================
   Carlos Reyes Lawn Service LLC. — design system
   Palette: deep palm green + leaf + warm sand, marigold call-to-action.
   Type: serif display (Georgia stack) + system sans body. No web fonts.
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES
     All photography on this site is referenced directly from the HTML with
     <img src="assets/..."> so every picture can be swapped by replacing one
     file in /assets (see assets/manifest.json). No images are set in CSS. */

  /* colour */
  --ink:        #17251c;
  --ink-2:      #47564c;
  --ink-3:      #5b6a60;
  --green-900:  #0e2418;
  --green-800:  #16402a;
  --green-700:  #1d5636;
  --green-600:  #2a7448;
  --leaf:       #8fc956;
  --leaf-700:   #43701d;
  --sand:       #f3f0e7;
  --sand-200:   #e8e3d5;
  --cream:      #fbfaf6;
  --line:       #e2ddce;
  --line-dark:  rgba(255,255,255,.16);
  --white:      #ffffff;
  --amber:      #f4a933;
  --amber-600:  #dd9018;
  --amber-soft: #fdf1dc;

  /* type */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --fs-hero:  clamp(2.05rem, 1.05rem + 4.2vw, 4rem);
  --fs-h2:    clamp(1.8rem, 1.15rem + 2.3vw, 2.7rem);
  --fs-h3:    clamp(1.18rem, 1.06rem + .5vw, 1.42rem);
  --fs-lead:  clamp(1.08rem, 1rem + .45vw, 1.3rem);
  --fs-body:  clamp(1rem, .97rem + .17vw, 1.1rem);
  --fs-sm:    .938rem;
  --fs-xs:    .82rem;

  /* space */
  --s-1: .25rem; --s-2: .5rem;  --s-3: .75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem;   --s-7: 3rem;   --s-8: 4rem;
  --s-9: 6rem;
  --section-y: clamp(3.25rem, 2rem + 5vw, 6rem);

  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(14,36,24,.06), 0 3px 10px rgba(14,36,24,.05);
  --shadow-md: 0 6px 14px rgba(14,36,24,.08), 0 18px 40px rgba(14,36,24,.09);
  --shadow-lg: 0 20px 50px rgba(14,36,24,.18);
  --ease: cubic-bezier(.32,.72,.3,1);
}

/* --- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg, picture { max-width: 100%; display: block; }
figure { margin: 0; }
img { height: auto; background: var(--sand-200); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.13;
  letter-spacing: -.012em;
  margin: 0 0 var(--s-4);
  font-weight: 700;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
p  { margin: 0 0 var(--s-4); }
a  { color: var(--green-700); text-underline-offset: .18em; }
a:hover { color: var(--green-600); }
ul, ol { margin: 0 0 var(--s-4); padding-left: 1.15rem; }
li { margin-bottom: .35rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-6) 0; }

/* Dual-tone focus ring: the dark outline carries on light backgrounds, the
   white inner ring carries on the dark hero/callout/footer and on the amber
   button — so the indicator is visible against every surface on the site. */
:focus-visible {
  outline: 3px solid var(--green-900);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--white);
  border-radius: 4px;
}
.section--dark :focus-visible,
.hero :focus-visible,
.callout :focus-visible,
.footer :focus-visible,
.lightbox :focus-visible,
.announce :focus-visible {
  outline-color: var(--white);
  box-shadow: 0 0 0 3px var(--green-900);
}

/* --- layout --------------------------------------------------------------- */
.wrap { width: min(100% - 2.25rem, 1180px); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.25rem, 780px); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark { background: var(--green-900); color: #d9e4dc; }
.section--dark h2, .section--dark h3 { color: var(--white); }

.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 200;
  background: var(--white); color: var(--green-800);
  padding: .7rem 1.1rem; border-radius: var(--radius-sm);
  font-weight: 650; box-shadow: var(--shadow-md);
  transition: top .18s var(--ease);
}
.skip-link:focus { top: var(--s-3); }

/* --- shared bits ---------------------------------------------------------- */
.eyebrow {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--leaf-700); margin: 0 0 var(--s-3);
}
.eyebrow::before {
  content: ""; width: 1.45rem; height: 2px; flex: none;
  background: var(--leaf); border-radius: 2px;
}
.section--dark .eyebrow { color: var(--leaf); }
.section--dark .eyebrow::before { background: var(--leaf); }

.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-2); }
.section--dark .lead { color: #cbdacf; }
.section-head { max-width: 62ch; margin-bottom: var(--s-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* buttons — ONE call-to-action vocabulary across the whole site */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 650;
  line-height: 1.2; padding: .92rem 1.5rem;
  border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn svg { flex: none; }
.btn--primary { background: var(--amber); color: var(--ink); box-shadow: 0 3px 0 var(--amber-600); }
.btn--primary:hover { background: #ffb845; color: var(--ink); transform: translateY(-2px); box-shadow: 0 5px 0 var(--amber-600); }
.btn--primary:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--amber-600); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--green-800); border-color: var(--green-700); }
.btn--outline:hover { background: var(--green-800); color: var(--white); transform: translateY(-2px); }
.btn--sm { padding: .6rem 1.05rem; font-size: .92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 650; text-decoration: none; color: var(--green-700);
}
.link-arrow::after { content: "\2192"; transition: transform .18s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* --- announcement bar (editable) ------------------------------------------ */
.announce {
  background: var(--green-800); color: #e7f0e8;
  font-size: var(--fs-sm); text-align: center;
}
.announce p { margin: 0; padding: .6rem 1.1rem; }
.announce [data-ss-items] { width: min(100% - 1.5rem, 1180px); margin-inline: auto; }
.announce [data-ss-field="text"] { font-weight: 550; color: #eef5ef; }
.announce a { color: var(--white); }

/* --- header --------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: var(--s-4);
  min-height: 72px; padding-block: .6rem;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.12rem; color: var(--green-800); letter-spacing: -.01em;
}
.brand__tag {
  font-size: .63rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--leaf-700); margin-top: .18rem;
}

.nav { display: flex; align-items: center; gap: .2rem; }
.nav a {
  font-size: .95rem; font-weight: 600; color: var(--ink-2);
  text-decoration: none; padding: .55rem .78rem; border-radius: var(--radius-sm);
  transition: color .16s var(--ease), background-color .16s var(--ease);
}
.nav a:hover { color: var(--green-800); background: var(--sand); }
.nav a[aria-current="page"] { color: var(--green-800); }
.nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; border-radius: 2px;
  background: var(--leaf); margin-top: 3px;
}
.header__cta { display: flex; align-items: center; gap: .55rem; }
.header__tel {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .95rem; color: var(--green-800);
  text-decoration: none; padding: .5rem .7rem; border-radius: var(--radius-sm);
  white-space: nowrap;
}
.header__tel:hover { background: var(--sand); color: var(--green-800); }

.nav-btn {
  display: none; align-items: center; gap: .45rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .55rem .8rem;
  font: inherit; font-size: .9rem; font-weight: 650; color: var(--green-800);
  cursor: pointer;
}
.nav-btn:hover { background: var(--sand); }
.nav-btn__bars { position: relative; width: 17px; height: 2px; background: currentColor; border-radius: 2px; }
.nav-btn__bars::before, .nav-btn__bars::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px;
  background: currentColor; border-radius: 2px; transition: transform .2s var(--ease);
}
.nav-btn__bars::before { top: -5.5px; }
.nav-btn__bars::after  { top: 5.5px; }

@media (max-width: 900px) {
  .js .nav-btn { display: inline-flex; }
  .js .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: var(--s-3);
  }
  .js .nav[hidden] { display: none; }
  .js .nav a { padding: .85rem .9rem; font-size: 1.02rem; }
  .js .nav a[aria-current="page"]::after { display: none; }
  .js .nav a[aria-current="page"] { background: var(--sand); }
  .header__inner { position: relative; flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .nav { flex-wrap: wrap; justify-content: center; width: 100%; order: 3; }
}
@media (max-width: 760px) {
  .header__cta .btn { display: none; }
}
@media (max-width: 560px) {
  .header__inner { gap: .6rem; }
  .brand__name { font-size: .95rem; }
  .brand__tag { display: none; }
  .nav-btn__label { display: none; }
  .nav-btn { padding: .55rem .62rem; }
  .header__tel span { display: none; }
  .header__tel { padding: .55rem; }
}

/* --- hero ----------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; background: var(--green-900); }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(102deg, rgba(10,30,19,.94) 0%, rgba(10,30,19,.82) 38%, rgba(10,30,19,.42) 68%, rgba(10,30,19,.25) 100%),
    linear-gradient(to top, rgba(10,30,19,.65), rgba(10,30,19,0) 45%);
}
.hero__inner { padding-block: clamp(2.75rem, 1.5rem + 7vw, 7rem); }
.hero__content { max-width: 40rem; color: #e6efe8; }
.hero h1 { color: var(--white); text-wrap: balance; margin-bottom: var(--s-5); }
.hero .eyebrow { color: var(--leaf); }
.hero .eyebrow::before { background: var(--leaf); }
.hero__sub { font-size: var(--fs-lead); color: #cfdcd3; max-width: 34rem; margin-bottom: var(--s-6); }
.hero .btn-row { margin-bottom: var(--s-6); }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: .5rem .6rem;
  list-style: none; margin: 0; padding: 0;
}
.hero__proof li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--fs-sm); font-weight: 600; color: #d5e2d8;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: .4rem .85rem; border-radius: 999px; margin: 0;
}
.hero__proof svg { flex: none; color: var(--leaf); }

/* page banner (inner pages) */
.pagehead { position: relative; isolation: isolate; background: var(--green-900); }
.pagehead__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.pagehead__media picture { display: block; width: 100%; height: 100%; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.pagehead::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(96deg, rgba(10,30,19,.93), rgba(10,30,19,.74) 55%, rgba(10,30,19,.45));
}
.pagehead__inner { padding-block: clamp(2.75rem, 1.6rem + 5.5vw, 5rem); }
.pagehead h1 { color: var(--white); max-width: 20ch; text-wrap: balance; }
.pagehead p { color: #cfdcd3; font-size: var(--fs-lead); max-width: 46ch; margin: 0; }
.pagehead .eyebrow { color: var(--leaf); }
.pagehead .eyebrow::before { background: var(--leaf); }

/* --- cards / grids -------------------------------------------------------- */
.grid { display: grid; gap: var(--s-5); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand-200); }
.card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand-200); }
.card__media picture { display: block; width: 100%; height: 100%; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .55rem; }
.card__body p { font-size: var(--fs-sm); margin-bottom: 0; color: var(--ink-2); }
.card__body p + .link-arrow { margin-top: var(--s-4); }

/* two-column feature row */
.split {
  display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-right .split__media { order: 2; }
}
.split__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split__media figcaption {
  font-size: var(--fs-xs); color: var(--ink-3); margin-top: .7rem; text-align: center;
}

/* checklist */
.checklist { list-style: none; padding: 0; margin: 0 0 var(--s-5); display: grid; gap: .5rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; margin: 0; font-weight: 550; color: var(--ink-2); }
.checklist svg { flex: none; margin-top: .34rem; color: var(--leaf-700); }
.section--dark .checklist li { color: #cbdacf; }
.section--dark .checklist svg { color: var(--leaf); }

/* pill list (services at a glance / areas / property types) */
.pills { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 0; }
.pills li {
  margin: 0; font-size: var(--fs-sm); font-weight: 600; color: var(--green-800);
  background: var(--white); border: 1px solid var(--line);
  padding: .5rem 1rem; border-radius: 999px;
}
.section--dark .pills li { background: rgba(255,255,255,.08); border-color: var(--line-dark); color: #e0ebe3; }

/* photo row — 3:2 frames rather than tight circles, so wide property shots
   keep their subject instead of being cropped to a square */
.roundrow { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--s-5); list-style: none; padding: 0; margin: 0; }
.roundrow li { margin: 0; text-align: center; }
.roundrow img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius); margin: 0 auto .8rem;
  box-shadow: var(--shadow-sm);
}
.roundrow h3 { font-size: 1.02rem; margin-bottom: .25rem; }
.roundrow p { font-size: var(--fs-xs); color: var(--ink-3); margin: 0; }

/* --- service list rows (services page) ------------------------------------ */
.srv { display: grid; gap: 0; }
.srv__item {
  display: grid; gap: clamp(1.5rem, 1rem + 3vw, 3.25rem);
  grid-template-columns: 1fr; align-items: center;
  padding-block: clamp(2rem, 1.2rem + 3vw, 3.25rem);
  border-top: 1px solid var(--line);
}
.srv__item:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 800px) {
  .srv__item { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
  .srv__item:nth-child(even) .srv__media { order: 2; }
}
.srv__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.srv__num {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  color: var(--leaf-700); letter-spacing: .08em; display: block; margin-bottom: .4rem;
}
.srv__body h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); }
.srv__body p:last-child { margin-bottom: 0; }

/* --- gallery -------------------------------------------------------------- */
.gallery { columns: 3; column-gap: var(--s-4); }
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 520px) { .gallery { columns: 1; } }
.gallery__item { break-inside: avoid; margin: 0 0 var(--s-4); }
.gallery__btn {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  cursor: zoom-in; border-radius: var(--radius); overflow: hidden;
  position: relative; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.gallery__btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery__btn img { width: 100%; height: auto; display: block; }
.gallery__cap {
  display: block; font-size: var(--fs-xs); line-height: 1.45;
  color: var(--ink-3); padding: .55rem .2rem 0; text-align: left;
}
/* no-JS: the button still shows the picture, just without the lightbox */
.no-js .gallery__btn { cursor: default; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(.75rem, 3vw, 2.5rem);
  background: rgba(8,22,14,.93);
}
.lightbox[hidden] { display: none; }
.lightbox__fig { margin: 0; max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; gap: .8rem; }
.lightbox__fig img {
  max-width: 100%; max-height: calc(100vh - 9rem);
  width: auto; height: auto; margin-inline: auto;
  object-fit: contain; border-radius: var(--radius); background: transparent;
}
.lightbox__fig figcaption { color: #d7e2da; font-size: var(--fs-sm); text-align: center; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.14); color: var(--white);
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
  width: 46px; height: 46px; display: grid; place-items: center;
  cursor: pointer; font-size: 1.35rem; line-height: 1; font-family: var(--font-sans);
  transition: background-color .16s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__close { top: clamp(.6rem,2vw,1.4rem); right: clamp(.6rem,2vw,1.4rem); }
.lightbox__nav--prev { left: clamp(.5rem,2vw,1.4rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(.5rem,2vw,1.4rem); top: 50%; transform: translateY(-50%); }

/* --- offer / callout band -------------------------------------------------- */
.callout {
  background: linear-gradient(135deg, var(--green-800), var(--green-900) 70%);
  border-radius: var(--radius-lg); color: #d9e4dc;
  padding: clamp(1.75rem, 1.2rem + 3vw, 3.25rem);
  display: grid; gap: var(--s-5); align-items: center;
}
@media (min-width: 820px) { .callout { grid-template-columns: 1.5fr auto; } }
.callout h2 { color: var(--white); margin-bottom: .6rem; }
.callout p { margin: 0; color: #c8d7cd; }
.callout .btn-row { justify-content: flex-start; }

.offer {
  display: grid; gap: var(--s-5); align-items: center;
  background: var(--amber-soft); border: 1px solid #f0dcb6;
  border-radius: var(--radius); padding: clamp(1.25rem, 1rem + 1.5vw, 2rem);
}
@media (min-width: 760px) { .offer { grid-template-columns: auto 1fr; } }
.offer__badge {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem); color: var(--green-800);
  line-height: 1; white-space: nowrap;
}
.offer p { margin: 0; font-size: var(--fs-sm); color: #6b5322; }
.offer p + p { margin-top: .4rem; }

/* --- facts / contact ------------------------------------------------------- */
.factlist { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-5); }
.fact { display: flex; gap: var(--s-4); align-items: flex-start; margin: 0; }
.fact__icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--line); color: var(--green-700);
}
.fact__label {
  display: block; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: .15rem;
}
.fact a, .fact strong { color: var(--ink); font-size: 1.06rem; font-weight: 650; font-style: normal; text-decoration: none; }
.fact a:hover { color: var(--green-600); text-decoration: underline; }
.fact p { margin: .2rem 0 0; font-size: var(--fs-sm); }

/* --- form ----------------------------------------------------------------- */
.formcard {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: var(--s-4); }
.field label {
  display: block; font-size: var(--fs-sm); font-weight: 650;
  color: var(--ink); margin-bottom: .35rem;
}
.field .req { color: #8a5a0a; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: .78rem .9rem;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease), background-color .16s var(--ease);
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; background: var(--white);
  border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(42,116,72,.16);
}
.field__hint { font-size: var(--fs-xs); color: var(--ink-3); margin: .35rem 0 0; }
.field-row { display: grid; gap: var(--s-4); }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* honeypot — visually hidden, still focusable by bots, not by people */
.hp {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.cf-turnstile { margin-bottom: var(--s-4); min-height: 0; }
.form-note { font-size: var(--fs-xs); color: var(--ink-3); margin: var(--s-4) 0 0; }
.form-msg { margin: 0 0 var(--s-4); padding: .85rem 1.05rem; border-radius: var(--radius-sm); font-size: var(--fs-sm); }
.form-msg[hidden] { display: none; }
.form-msg--ok { background: #e8f4ea; border: 1px solid #bcdcc3; color: #17402a; }
.form-msg--err { background: #fdeeea; border: 1px solid #f2c8bd; color: #7a2c17; }
.form-msg a { color: inherit; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: var(--s-3); }
.faq__item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.05rem 1.25rem;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--font-sans); font-size: 1.4rem;
  color: var(--leaf-700); flex: none; transition: transform .2s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { background: var(--sand); }
.faq__answer { padding: 0 1.25rem 1.2rem; font-size: var(--fs-sm); margin: 0; }

/* --- band image ------------------------------------------------------------ */
.band { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.band picture { display: block; }
.band img { width: 100%; height: clamp(150px, 22vw, 240px); object-fit: cover; object-position: center 60%; }

/* --- footer --------------------------------------------------------------- */
.footer { background: var(--green-900); color: #a9bcae; padding-block: var(--s-8) var(--s-5); }
.footer a { color: #d6e3d9; text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer__grid {
  display: grid; gap: var(--s-7);
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  padding-bottom: var(--s-7);
}
.footer h2, .footer h3 {
  color: var(--white); font-family: var(--font-sans);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: var(--s-4);
}
.footer__brand .brand__name { color: var(--white); font-size: 1.16rem; }
.footer__brand .brand__tag { color: var(--leaf); }
.footer p { font-size: var(--fs-sm); }
.footer ul { list-style: none; padding: 0; margin: 0; font-size: var(--fs-sm); }
.footer li { margin-bottom: .5rem; }
.footer address { font-style: normal; font-size: var(--fs-sm); }
.footer__tel {
  display: inline-block; font-size: 1.3rem; font-weight: 700;
  color: var(--white) !important; font-family: var(--font-display);
  margin-bottom: .35rem;
}
.footer__bottom {
  border-top: 1px solid var(--line-dark); padding-top: var(--s-5);
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5);
  align-items: center; justify-content: space-between;
  font-size: var(--fs-xs); color: #8ca395;
}
.footer__bottom p { margin: 0; font-size: var(--fs-xs); }
[data-ss-credit] a { color: #8ca395; text-decoration: underline; }
[data-ss-credit] a:hover { color: var(--white); }

/* --- utilities ------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.mt-6 { margin-top: var(--s-6); }
.mb-0 { margin-bottom: 0; }
[data-ss-empty] { color: var(--ink-3); font-size: var(--fs-sm); font-style: italic; }

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

@media print {
  .header, .footer, .announce, .lightbox, .btn, .nav-btn { display: none !important; }
  body { background: #fff; color: #000; }
}
