/* ============================================================
   Santana Landscaping LLC — public site
   Palette: granite, fern and mulch. Type: Fraunces + Public Sans.
   Brand colours are overridden inline from admin settings.
   ============================================================ */

:root {
  --forest:      #14372A;
  --fern:        #3C7A52;
  --goldenrod:   #C7912E;
  --ink:         #16211C;
  --granite:     #5D6862;

  /* Accent and fern are tuned for fills and dark backgrounds; at small text
     sizes on the light page they fall well under 4.5:1. These darkened tones
     are what text actually uses. color-mix keeps them following whatever
     accent colour is set in the admin panel. */
  --accent-ink:  #8A651F;
  --fern-ink:    #346B47;
  --stonedust:   #EDEAE1;
  --birch:       #FBFAF6;
  --line:        #DCD7C9;
  --white:       #FFFFFF;
  --danger:      #A6402F;
  --success:     #2F6B44;

  --shadow-sm: 0 1px 2px rgba(22, 33, 28, .06), 0 2px 6px rgba(22, 33, 28, .05);
  --shadow-md: 0 8px 24px rgba(22, 33, 28, .10);
  --shadow-lg: 0 24px 60px rgba(22, 33, 28, .18);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body:    "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section: clamp(3.5rem, 9vw, 7rem);
}


/* Where color-mix is available the readable tones follow whatever accent and
   secondary colours are set in the admin panel; elsewhere the static values
   above apply. */
@supports (color: color-mix(in srgb, red 50%, blue)) {
  :root {
    --accent-ink: color-mix(in srgb, var(--goldenrod) 65%, #1A1204);
    --fern-ink:   color-mix(in srgb, var(--fern) 85%, #04140B);
  }
}

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

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

body {
  margin: 0;
  background: var(--stonedust);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
svg { flex-shrink: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { margin: 0 0 1rem; }
a  { color: var(--fern-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--forest); }

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

.wrap { width: min(100% - (2 * var(--gutter)), var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section--birch { background: var(--birch); }
.section--forest { background: var(--forest); color: var(--birch); }
.section--forest h2, .section--forest h3 { color: var(--birch); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--forest); color: var(--birch); padding: .8rem 1.2rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fern-ink);
  margin: 0 0 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--goldenrod); }
.section--forest .eyebrow { color: #9DC3A5; }

.lede { font-size: 1.15rem; color: var(--granite); max-width: 62ch; }
.section--forest .lede { color: #C4D3C6; }
.section-head { max-width: 66ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.text-center { text-align: center; }
.center-head { margin-inline: auto; }
.center-head .eyebrow { justify-content: center; }

/* ---------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--body); font-size: .98rem; font-weight: 650; line-height: 1;
  padding: 1.05rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; min-height: 52px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; }

.btn--primary { background: var(--goldenrod); color: #211603; box-shadow: 0 6px 18px rgba(199, 145, 46, .32); }
.btn--primary:hover { background: #D9A23C; color: #211603; }
.btn--forest { background: var(--forest); color: var(--birch); }
.btn--forest:hover { background: #1B4735; color: var(--birch); }
.btn--ghost { border-color: currentColor; color: var(--forest); background: transparent; }
.btn--ghost:hover { background: rgba(20, 55, 42, .06); color: var(--forest); }
.section--forest .btn--ghost { color: var(--birch); }
.section--forest .btn--ghost:hover { background: rgba(251, 250, 246, .12); color: var(--birch); }
.btn--block { width: 100%; }
.btn--sm { padding: .7rem 1.1rem; min-height: 44px; font-size: .9rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 650; font-size: .95rem; text-decoration: none; color: var(--forest);
}
.arrow-link .icon { width: 17px; height: 17px; transition: transform .18s ease; }
.arrow-link:hover .icon { transform: translateX(4px); }

/* ---------------------------------------------------------- header */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 250, 246, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.header-bar { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--forest); margin-right: auto; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 11px; background: var(--forest);
  display: grid; place-items: center; color: var(--birch); flex: none;
}
.brand__mark .icon { width: 24px; height: 24px; }
.brand__logo { max-height: 46px; width: auto; }
.brand__name { font-family: var(--display); font-weight: 600; font-size: 1.12rem; line-height: 1.1; letter-spacing: -.01em; }
.brand__tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--granite); font-weight: 600; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  padding: .6rem .85rem; border-radius: 8px; text-decoration: none;
  color: var(--ink); font-size: .96rem; font-weight: 550;
}
.nav a:hover { background: rgba(20, 55, 42, .07); }
.nav a.is-active { color: var(--forest); font-weight: 700; box-shadow: inset 0 -2px 0 var(--goldenrod); border-radius: 8px 8px 0 0; }

.header-actions { display: flex; align-items: center; gap: .8rem; }
.header-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 650; color: var(--forest); text-decoration: none; white-space: nowrap; }
.header-phone .icon { width: 18px; height: 18px; color: var(--fern); }

.nav-toggle {
  display: none; background: var(--forest); color: var(--birch); border: 0;
  width: 48px; height: 48px; border-radius: 12px; cursor: pointer; place-items: center;
}
.nav-toggle .icon { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .nav-toggle { display: grid; }
  .header-phone span { display: none; }
  .nav {
    position: fixed; inset: 76px 0 auto; display: none; flex-direction: column; align-items: stretch;
    background: var(--birch); border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 1.6rem; gap: .2rem;
    box-shadow: var(--shadow-md); max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .95rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin-top: 1rem; }
}

/* ---------------------------------------------------------- hero */

.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #0F2A20 0%, var(--forest) 55%, #17402F 100%);
  color: var(--birch);
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4rem, 9vw, 7rem);
}
.hero__topo { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; pointer-events: none; }
.hero__grid {
  position: relative; display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center;
}
@media (max-width: 920px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 { color: var(--birch); }
.hero h1 em { font-style: normal; color: #E9C173; }
.hero__eyebrow { color: #9DC3A5; }
.hero__eyebrow::before { background: var(--goldenrod); }
.hero__text { font-size: 1.15rem; color: #C6D5C8; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 1.6rem 2.6rem; margin-top: 2.8rem; padding-top: 1.8rem; border-top: 1px solid rgba(251, 250, 246, .18); }
.hero__stat b { display: block; font-family: var(--display); font-size: 1.7rem; color: #E9C173; line-height: 1.1; }
.hero__stat span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #A9BFAD; font-weight: 600; }

/* Hero card: a site-visit summary, the thing customers actually book */
.hero__card {
  background: var(--birch); color: var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero__card-media { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(150deg, #2C5B3F, #4C7F52 60%, #7DA36A); }
.hero__card-media img { width: 100%; height: 100%; object-fit: cover; }
.hero__card-tag {
  position: absolute; left: 1rem; bottom: 1rem; background: rgba(20, 55, 42, .92); color: var(--birch);
  padding: .45rem .85rem; border-radius: 999px; font-size: .78rem; font-weight: 650; letter-spacing: .04em;
}
.hero__card-body { padding: 1.4rem 1.5rem 1.6rem; }
.hero__card-body h2 { font-size: 1.25rem; margin-bottom: .4rem; }
.hero__list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .6rem; }
.hero__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.hero__list .icon { width: 18px; height: 18px; color: var(--fern-ink); margin-top: .18rem; }

.trust-bar { background: var(--forest); border-top: 1px solid rgba(251, 250, 246, .12); color: #C6D5C8; }
.trust-bar__inner { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: center; padding: 1.1rem 0; font-size: .9rem; }
.trust-bar__item { display: inline-flex; align-items: center; gap: .5rem; }
.trust-bar__item .icon { width: 18px; height: 18px; color: #E9C173; }

/* ---------------------------------------------------------- cards */

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: var(--birch); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--fern); }

.service-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(60, 122, 82, .12); color: var(--forest); margin-bottom: 1.1rem;
}
.service-card__icon .icon { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: .4rem; }
.service-card p { color: var(--granite); font-size: .97rem; }
.service-card .arrow-link { margin-top: auto; padding-top: .8rem; }
.service-card__season {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
  color: var(--accent-ink); margin-bottom: .5rem;
}

.value-card { display: flex; gap: 1rem; align-items: flex-start; }
.value-card__icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(233, 193, 115, .16); color: #E9C173; display: grid; place-items: center; flex: none; }
.section--birch .value-card__icon { background: rgba(60, 122, 82, .12); color: var(--forest); }
.value-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.value-card p { font-size: .95rem; color: var(--granite); margin: 0; }
.section--forest .value-card p { color: #B9C9BC; }

/* Numbered because the order is the actual process a customer goes through */
.steps { counter-reset: step; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--display); font-size: 1.6rem; color: var(--accent-ink); font-weight: 600;
}
.step::after { content: ""; position: absolute; top: 1.1rem; left: 2.6rem; right: 0; height: 1px; background: var(--line); }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--granite); font-size: .95rem; margin: 0; }
.section--forest .step p { color: #B9C9BC; }
.section--forest .step::after { background: rgba(251, 250, 246, .18); }

/* ---------------------------------------------------------- gallery */

.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem; padding: .55rem 1rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--birch); color: var(--ink);
  font-size: .9rem; font-weight: 600; text-decoration: none; cursor: pointer;
}
.chip:hover { border-color: var(--fern); color: var(--forest); }
.chip.is-active { background: var(--forest); border-color: var(--forest); color: var(--birch); }

.masonry { columns: 3 300px; column-gap: 1.25rem; }
.masonry > * { break-inside: avoid; margin-bottom: 1.25rem; }

.project {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--birch);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: block; width: 100%;
  padding: 0; text-align: left; cursor: zoom-in; color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.project:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.project img { width: 100%; background: #DFE3DA; }
.project__body { padding: 1rem 1.1rem 1.2rem; }
.project__body h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.project__body p { font-size: .9rem; color: var(--granite); margin: 0; }
.project__cat {
  position: absolute; top: .8rem; left: .8rem; background: rgba(22, 33, 28, .82); color: var(--birch);
  font-size: .72rem; font-weight: 650; letter-spacing: .04em; padding: .3rem .7rem; border-radius: 999px;
}

/* Signature element: drag-to-compare before/after */
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden; user-select: none;
  aspect-ratio: 4 / 3; background: #DFE3DA; box-shadow: var(--shadow-md); touch-action: pan-y;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: var(--birch);
  transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(22, 33, 28, .2);
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--birch); color: var(--forest);
  display: grid; place-items: center; box-shadow: var(--shadow-md); cursor: ew-resize;
}
.ba__grip::before { content: "◀ ▶"; font-size: .7rem; letter-spacing: -.05em; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba__label {
  position: absolute; bottom: .8rem; padding: .3rem .7rem; border-radius: 999px;
  background: rgba(22, 33, 28, .78); color: var(--birch); font-size: .74rem; font-weight: 650; letter-spacing: .06em;
}
.ba__label--before { left: .8rem; }
.ba__label--after { right: .8rem; }
.ba-caption { margin-top: .8rem; }
.ba-caption h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.ba-caption p { color: var(--granite); font-size: .93rem; margin: 0; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(94vw, 1100px); }
.lightbox::backdrop { background: rgba(11, 20, 16, .88); }
.lightbox__inner { background: var(--birch); border-radius: var(--radius); overflow: hidden; }
.lightbox img { width: 100%; max-height: 74vh; object-fit: contain; background: #12211A; }
.lightbox__caption { padding: 1rem 1.2rem; }
.lightbox__caption h3 { margin-bottom: .2rem; }
.lightbox__caption p { margin: 0; color: var(--granite); font-size: .94rem; }
.lightbox__close {
  position: absolute; top: .6rem; right: .6rem; width: 42px; height: 42px; border-radius: 50%;
  border: 0; background: rgba(22, 33, 28, .7); color: var(--birch); cursor: pointer; display: grid; place-items: center;
}

/* ---------------------------------------------------------- testimonials */

.testimonial { display: flex; flex-direction: column; height: 100%; }
.testimonial .quote-mark { width: 30px; height: 30px; color: var(--accent-ink); margin-bottom: .6rem; }
.testimonial blockquote { margin: 0 0 1.1rem; font-size: 1.02rem; line-height: 1.6; }
.testimonial footer { margin-top: auto; border-top: 1px solid var(--line); padding-top: .9rem; }
.testimonial cite { font-style: normal; font-weight: 700; display: block; }
.testimonial small { color: var(--granite); }
.stars { display: inline-flex; gap: 2px; margin-bottom: .6rem; color: var(--accent-ink); }
.star-icon { width: 16px; height: 16px; fill: currentColor; }

/* ---------------------------------------------------------- service area + CTA */

.area-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.area-list span {
  padding: .45rem .9rem; border-radius: 999px; background: rgba(60, 122, 82, .12);
  color: var(--forest); font-size: .88rem; font-weight: 600;
}
.section--forest .area-list span { background: rgba(251, 250, 246, .1); color: var(--birch); }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--birch); min-height: 320px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band__topo { position: absolute; inset: 0; opacity: .35; }
.cta-band__inner { position: relative; max-width: 720px; margin-inline: auto; }
.cta-band .btn-row { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ---------------------------------------------------------- forms */

.form-card { background: var(--birch); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.form-row { display: grid; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field > label, .label { font-weight: 650; font-size: .93rem; }
.field .hint { font-size: .84rem; color: var(--granite); }
.req { color: var(--danger); }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"],
input[type="number"], input[type="url"], input[type="password"], input[type="search"], input[type="color"],
select, textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); min-height: 50px; transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2367736C' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; background-size: 18px; padding-right: 2.5rem; }
input:focus, select:focus, textarea:focus { border-color: var(--fern); box-shadow: 0 0 0 3px rgba(60, 122, 82, .16); outline: none; }
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--danger); background: #FDF6F4; }
input[type="file"] { padding: .6rem; background: var(--white); border: 1.5px dashed var(--line); border-radius: var(--radius-sm); width: 100%; }

.checkbox { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; }
.checkbox input { width: 22px; height: 22px; margin-top: .15rem; accent-color: var(--fern); flex: none; }

.radio-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.radio-card {
  flex: 1 1 140px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .85rem 1rem;
  display: flex; gap: .6rem; align-items: center; cursor: pointer; background: var(--white); font-weight: 600; font-size: .95rem;
}
.radio-card input { accent-color: var(--fern); width: 20px; height: 20px; }
.radio-card:has(input:checked) { border-color: var(--fern); background: rgba(60, 122, 82, .07); }

.field-error { color: var(--danger); font-size: .88rem; font-weight: 600; margin: 0; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.5rem; border-left: 4px solid; font-size: .97rem; }
.alert--success { background: #EDF6EF; border-color: var(--success); color: #1F4A2F; }
.alert--error   { background: #FBEFEC; border-color: var(--danger);  color: #7A2C1F; }
.alert--warning { background: #FDF5E6; border-color: var(--goldenrod); color: #6B4C11; }
.alert--info    { background: #EEF3F6; border-color: #3F6B86; color: #24485C; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: .55rem; }
.slot {
  border: 1.5px solid var(--line); background: var(--white); border-radius: var(--radius-sm);
  padding: .75rem .5rem; font-weight: 650; font-size: .93rem; cursor: pointer; min-height: 48px; font-family: var(--body); color: var(--ink);
}
.slot:hover { border-color: var(--fern); }
.slot.is-selected { background: var(--forest); border-color: var(--forest); color: var(--birch); }
.slot-status { font-size: .92rem; color: var(--granite); }

.file-preview { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .6rem; }
.file-preview span { font-size: .82rem; background: rgba(60,122,82,.1); color: var(--forest); padding: .3rem .6rem; border-radius: 999px; }

/* ---------------------------------------------------------- page furniture */

.page-head { background: var(--forest); color: var(--birch); position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 4.5rem); }
.page-head__topo { position: absolute; inset: 0; opacity: .4; }
.page-head__inner { position: relative; max-width: 70ch; }
.page-head h1 { color: var(--birch); font-size: clamp(2.1rem, 5vw, 3.2rem); }
.page-head p { color: #C6D5C8; font-size: 1.1rem; margin: 0; }
.breadcrumbs { display: flex; gap: .5rem; font-size: .85rem; color: #9DC3A5; margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumbs a { color: #9DC3A5; text-decoration: none; }
.breadcrumbs a:hover { color: var(--birch); text-decoration: underline; }

.split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.sticky-side { position: sticky; top: 100px; }

.prose { max-width: 70ch; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose blockquote { border-left: 3px solid var(--goldenrod); margin: 1.5rem 0; padding-left: 1.2rem; color: var(--granite); font-style: italic; }

.check-list { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-list .icon { width: 20px; height: 20px; color: var(--fern-ink); margin-top: .2rem; flex: none; }

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .icon { width: 22px; height: 22px; color: var(--fern-ink); margin-top: .15rem; flex: none; }
.info-list a { text-decoration: none; font-weight: 650; color: var(--ink); }
.info-list a:hover { color: var(--fern); }
.info-list small { display: block; color: var(--granite); font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 650; }

.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table th { text-align: left; font-weight: 600; padding: .55rem 0; color: var(--granite); }
.hours-table td { text-align: right; padding: .55rem 0; font-weight: 650; }
.hours-table tr + tr th, .hours-table tr + tr td { border-top: 1px solid var(--line); }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--forest); }

.receipt { background: var(--birch); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm); }
.receipt__number { font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--forest); letter-spacing: .02em; }
.receipt dl { display: grid; grid-template-columns: minmax(120px, auto) 1fr; gap: .7rem 1.5rem; margin: 1.5rem 0 0; }
.receipt dt { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--granite); font-weight: 700; }
.receipt dd { margin: 0; font-weight: 600; }

/* ---------------------------------------------------------- footer */

.site-footer { background: #10281F; color: #B9C9BC; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(180px, 1fr)); }
.site-footer h3 { color: var(--birch); font-size: 1rem; font-family: var(--body); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: #B9C9BC; text-decoration: none; }
.site-footer a:hover { color: var(--birch); text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: .95rem; }
.footer-brand .brand__mark { background: rgba(251, 250, 246, .1); }
.footer-brand .brand__name { color: var(--birch); }
.footer-about { font-size: .95rem; margin-top: 1rem; max-width: 40ch; }
.social-row { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social-row a { width: 42px; height: 42px; border-radius: 12px; background: rgba(251, 250, 246, .09); display: grid; place-items: center; color: var(--birch); }
.social-row a:hover { background: var(--goldenrod); color: #211603; }
.social-row .icon { width: 20px; height: 20px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(251, 250, 246, .12); display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; font-size: .87rem; }

/* ---------------------------------------------------------- utilities */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.muted { color: var(--granite); }
.small { font-size: .88rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--granite); border: 1px dashed var(--line); border-radius: var(--radius); }

@media (max-width: 640px) {
  .masonry { columns: 1; }
  .hero__stats { gap: 1.2rem 1.8rem; }
  .btn { width: 100%; }
  .hero__actions .btn, .cta-band .btn { width: auto; flex: 1 1 220px; }
}

@media print {
  .site-header, .site-footer, .cta-band, .btn { display: none !important; }
  body { background: #fff; }
}
