/* =====================================================================
   ALSP LLC — Arizona Public Adjusters
   Design System / Global Stylesheet
   Palette: desert neutrals + sage. Mobile-first. Premium whitespace.
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Neutrals (desert-inspired) */
  --warm-white: #F8F3E9;
  --off-white:  #EFE7D8;
  --beige:      #E6DBC6;
  --sand:       #D7C6AB;
  --line:       #E0D6C4;

  /* Text — cool dark teal-slate (matches ALSP wordmark) */
  --charcoal:      #213B44;
  --charcoal-soft: #4C5A60;
  --charcoal-mute: #7E8A8E;

  /* Accent — sage-teal (matches logo cactus / hills) */
  --sage:        #7A9A88;
  --sage-dark:   #5E7E6C;
  --sage-deep:   #3C5247;
  --sage-light:  #E8EFEB;
  --sage-tint:   #F1F6F2;

  /* Secondary accent — desert terracotta (matches logo peak). Use sparingly. */
  --clay:       #B06A2C;
  --clay-dark:  #8F5420;
  --clay-light: #F3E6D7;

  /* Support */
  --gold:   #B8964F;   /* subtle, for stars / accents only */
  --white:  #FFFFFF;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter",
               Roboto, Helvetica, Arial, sans-serif;

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

  /* Layout */
  --maxw: 1140px;
  --maxw-narrow: 760px;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(38,38,31,.05), 0 2px 6px rgba(38,38,31,.05);
  --shadow:    0 4px 14px rgba(38,38,31,.07), 0 10px 30px rgba(38,38,31,.06);
  --shadow-lg: 0 18px 50px rgba(38,38,31,.12);
  --ring: 0 0 0 3px rgba(110,126,96,.28);
  --ease: cubic-bezier(.2,.7,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; }
a:hover { color: var(--sage-deep); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.15rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25rem; }
li { margin-bottom: .4em; }
strong { font-weight: 650; color: var(--charcoal); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: var(--maxw-narrow); margin-left: auto; margin-right: auto; }
.section { padding: var(--sp-9) 0; }
.section--tight { padding: var(--sp-8) 0; }
.section--alt { background: var(--off-white); }
.section--sage { background: var(--sage-tint); }
.section--dark { background: var(--sage-deep); color: #EDEFE8; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage-dark);
  margin-bottom: .9rem;
}
.eyebrow svg { flex: none; }
.lead { font-size: 1.2rem; color: var(--charcoal-soft); line-height: 1.6; }
.muted { color: var(--charcoal-soft); }
.section-head { max-width: 680px; margin-bottom: var(--sp-7); }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 650; font-size: 1.02rem;
  padding: .95rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), background .2s, box-shadow .2s, color .2s;
  line-height: 1; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--sage-dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--sage-deep); color: #fff; box-shadow: var(--shadow); }
.btn--secondary { background: var(--white); color: var(--charcoal); border-color: var(--line); }
.btn--secondary:hover { background: var(--off-white); color: var(--charcoal); border-color: var(--sand); }
.btn--ghost { background: transparent; color: var(--sage-dark); border-color: rgba(110,126,96,.4); }
.btn--ghost:hover { background: var(--sage-light); color: var(--sage-deep); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn--ondark { background: #fff; color: var(--sage-deep); }
.btn--ondark:hover { background: var(--off-white); color: var(--sage-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,243,233,.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 132px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 700; }
.brand__logo { width: 116px; height: 116px; object-fit: contain; display: block; flex: none; }
/* SVG fallback mark (used in footer) */
.brand__mark { width: 44px; height: 38px; flex: none; display: grid; place-items: center; }
.brand__mark svg { width: 100%; height: auto; display: block; }
.brand__name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; color: var(--charcoal); letter-spacing: -.01em; }
.brand__tag { display: block; font-family: var(--font-body); font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-dark); margin-top: 1px; }
.nav__links { display: none; align-items: center; gap: .15rem; }
.nav__link {
  position: relative; padding: .5rem .7rem; border-radius: 8px; white-space: nowrap;
  color: var(--charcoal-soft); font-weight: 550; font-size: .95rem; line-height: 1;
  display: inline-flex; align-items: center; gap: .25rem;
}
.nav__link:hover { color: var(--charcoal); background: var(--off-white); }
.nav__link .caret { font-size: .7rem; color: var(--sage-dark); }
.nav__cta { display: none; align-items: center; gap: .8rem; }
.nav__cta-btn { white-space: nowrap; padding: .8rem 1.25rem; }
.menu__all { border-top: 1px solid var(--line); margin-top: .35rem; padding-top: .6rem !important; color: var(--sage-dark) !important; font-weight: 650 !important; }
.nav__phone { font-weight: 650; color: var(--charcoal); white-space: nowrap; }
.nav__phone span { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-dark); }

/* dropdown */
.has-menu { position: relative; }
.menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: .18s var(--ease);
}
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu a { display: block; padding: .6rem .75rem; border-radius: 8px; color: var(--charcoal-soft); font-size: .95rem; font-weight: 550; }
.menu a:hover { background: var(--sage-tint); color: var(--sage-deep); }

/* mobile menu */
.nav__toggle {
  display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: none; border: 0; cursor: pointer;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: .2s; }
.mobile-menu {
  display: none; padding: 1rem 1.25rem 1.5rem; border-top: 1px solid var(--line);
  background: var(--warm-white);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: .7rem .4rem; color: var(--charcoal); font-weight: 550; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .btn { margin-top: 1rem; }
.mobile-menu__group { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-dark); margin: 1rem 0 .25rem; }

@media (min-width: 1080px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__toggle { display: none; }
}

/* ---------- Hero (desert dusk) ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(90% 98% at 12% -6%, rgba(214,128,58,.74) 0%, rgba(214,128,58,.24) 46%, rgba(214,128,58,0) 70%),
    linear-gradient(180deg, #233F3B 0%, #294845 36%, #2B4A42 70%, #2E4A40 100%);
  color: #E7EEE8;
  padding: var(--sp-9) 0 var(--sp-8);
}
.hero__scene { position: absolute; left: 0; right: 0; bottom: 0; height: 56%; z-index: 0; pointer-events: none; opacity: .9; }
.hero__scene-svg { width: 100%; height: 100%; display: block; }
.hero > .container { position: relative; z-index: 1; }
.hero__grid { display: grid; gap: var(--sp-7); align-items: center; }
.hero h1 { margin-bottom: .55em; color: #fff; }
.hero .eyebrow { color: #AAC7B3; }
.hero__sub { font-size: 1.22rem; color: #CBD8CE; max-width: 38ch; margin-bottom: 1.6rem; }
.hero__points { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .55rem; }
.hero__points li { display: flex; gap: .6rem; align-items: flex-start; font-size: .98rem; color: #C6D4C9; }
.hero__points svg { flex: none; margin-top: 3px; color: #8FD3A6; }
.hero .btn--secondary { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.28); }
.hero .btn--secondary:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.4); }
.hero__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(1.4rem, 3vw, 2.1rem);
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}

/* ---------- Trust bar ---------- */
.trustbar { background: #2E4A40; color: #E9ECE3; }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1rem;
  padding: var(--sp-6) 0;
}
.trust__item { text-align: center; }
.trust__num { font-family: var(--font-display); font-size: 1.9rem; color: #fff; line-height: 1; margin-bottom: .25rem; }
.trust__label { font-size: .82rem; color: #C9D1BE; letter-spacing: .02em; }
@media (min-width: 760px) { .trustbar__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.1rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 680px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 920px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; transition: transform .18s var(--ease), box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; height: 100%;
}
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sand); }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--sage-light);
  color: var(--sage-deep); display: grid; place-items: center; margin-bottom: 1rem; flex: none;
}
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--charcoal-soft); font-size: .96rem; margin-bottom: .9rem; }
.card--feature { border-color: var(--sage); border-width: 1.5px; background: var(--sage-tint); }
.card--feature .card__icon { background: var(--sage); color: #fff; }
.card__link { margin-top: auto; font-weight: 650; color: var(--sage-dark); font-size: .95rem; }
.card__link::after { content: " →"; }
.card.center { text-align: center; align-items: center; }
.avatar { width: 66px; height: 66px; border-radius: 50%; background: var(--sage-light); color: var(--sage-deep); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin: 0 auto 1rem; }

/* problem list */
.problem-grid { display: grid; gap: .8rem; grid-template-columns: 1fr; }
@media (min-width:680px){ .problem-grid { grid-template-columns: 1fr 1fr; } }
.problem {
  display: flex; gap: .9rem; align-items: flex-start; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.problem svg { flex: none; color: var(--sage); margin-top: 2px; }
.problem b { display: block; margin-bottom: .15rem; }
.problem span { color: var(--charcoal-soft); font-size: .93rem; }

/* ---------- Process / steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.1rem; }
@media (min-width: 760px){ .steps { grid-template-columns: repeat(5, 1fr); } }
.step { position: relative; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--sage-dark); color: #fff;
  font-family: var(--font-display); font-size: 1.2rem; display: grid; place-items: center;
  margin-bottom: .9rem; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step p { font-size: .92rem; color: var(--charcoal-soft); margin: 0; }

/* ---------- Reviews ---------- */
.reviews { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 760px){ .reviews { grid-template-columns: repeat(3,1fr); } }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .7rem; font-size: 1rem; }
.review p { font-size: 1.01rem; color: var(--charcoal); }
.review__who { margin-top: auto; padding-top: 1rem; font-size: .9rem; color: var(--charcoal-soft); }
.review__who b { color: var(--charcoal); }

/* ---------- Form ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(1.4rem, 3vw, 2.1rem);
}
.form-card h3 { margin-bottom: .2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.consent { display: flex; gap: .55rem; align-items: flex-start; font-size: .85rem; color: var(--charcoal-soft); margin: .2rem 0 1.1rem; line-height: 1.4; cursor: pointer; }
.consent input { margin-top: 3px; flex: none; width: 16px; height: 16px; accent-color: var(--sage-dark); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-card .sub { color: var(--charcoal-soft); font-size: .96rem; margin-bottom: 1.2rem; }
.field { margin-bottom: .9rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--charcoal); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: 1rem; color: var(--charcoal);
  background: var(--warm-white); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--sage); box-shadow: var(--ring); background: #fff;
}
.form-fine { font-size: .8rem; color: var(--charcoal-mute); margin: .8rem 0 0; text-align: center; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(120% 120% at 100% 0%, var(--sage-dark) 0%, var(--sage-deep) 60%);
  color: #EFF2EA; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #D5DCCB; max-width: 52ch; margin: 0 auto 1.6rem; font-size: 1.1rem; }

/* ---------- FAQ (cards for depth) ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: .8rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .15rem 1.3rem; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s, transform .15s var(--ease);
}
.faq details:hover { border-color: var(--sand); }
.faq details[open] { box-shadow: var(--shadow); border-color: var(--sage-light); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem .1rem; font-weight: 600;
  font-size: 1.08rem; color: var(--charcoal); display: flex; justify-content: space-between; gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--sage-dark); font-weight: 400; line-height: 1;
  width: 30px; height: 30px; flex: none; display: grid; place-items: center;
  background: var(--sage-light); border-radius: 50%; transition: transform .2s;
}
.faq details[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq details[open] summary { color: var(--sage-deep); }
.faq__a { padding: 0 .1rem 1.2rem; color: var(--charcoal-soft); }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Prose (article/service body) ---------- */
.prose { max-width: var(--maxw-narrow); }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul li::marker { color: var(--sage); }
.prose .callout {
  background: var(--sage-tint); border-left: 4px solid var(--sage);
  padding: 1.1rem 1.3rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.6rem 0;
}
.prose .callout p:last-child { margin-bottom: 0; }
.prose .callout strong { color: var(--sage-deep); }

/* table of contents / aside layout */
.article-layout { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 960px){ .article-layout { grid-template-columns: 1fr 300px; } }
.aside-cta {
  position: sticky; top: 120px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.aside-cta h4 { font-family: var(--font-display); font-size: 1.2rem; }
.aside-cta p { font-size: .92rem; color: var(--charcoal-soft); }

/* pills / chips */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.pill {
  display: inline-block; padding: .5rem 1rem; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; font-size: .92rem; font-weight: 550; color: var(--charcoal-soft);
}
a.pill:hover { background: var(--sage-light); color: var(--sage-deep); border-color: var(--sage-light); }

/* breadcrumb */
.crumbs { font-size: .85rem; color: var(--charcoal-mute); padding: 1.1rem 0 0; }
.crumbs a { color: var(--charcoal-soft); }
.crumbs span { margin: 0 .35rem; }

/* page hero (interior) */
.page-hero { background: linear-gradient(180deg, var(--off-white), var(--warm-white)); padding: var(--sp-7) 0 var(--sp-6); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: .4em; }
.page-hero .lead { max-width: 60ch; }

/* Dark interior hero (About, referral pages) */
.page-hero--dark { position: relative; overflow: hidden; isolation: isolate; border-bottom: 0;
  background:
    radial-gradient(88% 140% at 12% -8%, rgba(214,128,58,.70) 0%, rgba(214,128,58,.22) 46%, rgba(214,128,58,0) 68%),
    linear-gradient(180deg, #233F3B 0%, #294845 40%, #2B4A42 72%, #2E4A40 100%);
  color: #E7EEE8;
  padding: var(--sp-8) 0 var(--sp-9); }
.page-hero--dark > .container { position: relative; z-index: 1; }
.page-hero--dark h1 { color: #fff; }
.page-hero--dark .eyebrow { color: #AAC7B3; }
.page-hero--dark .lead { color: #CBD8CE; }
.page-hero--dark .btn--secondary { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.28); }
.page-hero--dark .btn--secondary:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.4); }
.logo-chip { display: flex; width: fit-content; background: var(--warm-white); padding: 14px 18px; border-radius: 20px; margin: 0 auto 1.25rem; box-shadow: var(--shadow); }
.logo-chip img { width: 116px; height: 116px; object-fit: contain; display: block; }

/* Photo hero (monsoon page). Falls back to a dark wash if no image present. */
.photo-hero { position: relative; padding: var(--sp-9) 0; color: #E7EEE8;
  background-color: var(--sage-deep); background-size: cover; background-position: center; }
.photo-hero h1 { color: #fff; }
.photo-hero .eyebrow { color: #BBD2C2; }
.photo-hero .lead { color: #DCE4DD; max-width: 60ch; }
.photo-hero .btn--secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.32); }
.photo-hero .btn--secondary:hover { background: rgba(255,255,255,.2); color: #fff; }
.page-hero--dark .lead a, .photo-hero .lead a { color: #fff; text-decoration: underline; }

/* feature list w/ checks */
.checklist { list-style: none; padding: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist svg { flex: none; color: var(--sage); margin-top: 3px; }

/* map / areas */
.areas { display: grid; gap: .6rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 680px){ .areas { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 920px){ .areas { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 860px){ .areas--home { grid-template-columns: repeat(5,1fr); } }
.area-link {
  display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 550; color: var(--charcoal);
}
.area-link:hover { border-color: var(--sage); background: var(--sage-tint); color: var(--sage-deep); }
.area-link svg { color: var(--sage); flex: none; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; padding: .6rem .8rem;
  background: rgba(251,250,247,.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(38,38,31,.08);
}
.mobile-cta .btn { padding: .85rem 1rem; font-size: .98rem; }
@media (min-width: 1080px){ .mobile-cta { display: none; } }
body { padding-bottom: 76px; }
@media (min-width: 1080px){ body { padding-bottom: 0; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #C9C6BC; padding: var(--sp-8) 0 var(--sp-6); margin-top: 0; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px){ .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__logo { display: inline-flex; background: var(--warm-white); padding: 12px 16px; border-radius: 16px; }
.footer__logo img { width: 132px; height: 132px; object-fit: contain; display: block; }
.footer__brand .brand__name { color: #fff; }
.site-footer h5 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #8C887C; margin: 0 0 1rem; font-weight: 700; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__links a { color: #C9C6BC; font-size: .95rem; }
.footer__links a:hover { color: #fff; }
.footer__about { font-size: .95rem; color: #A8A498; max-width: 34ch; }
.footer__contact { margin-top: 1rem; display: grid; gap: .4rem; font-size: .95rem; }
.footer__social { margin-top: 1.1rem; display: flex; gap: .6rem; }
.social-link { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #C9C6BC; transition: background .2s, color .2s; }
.social-link:hover { background: var(--sage); color: #fff; }
.footer__contact a { color: #fff; font-weight: 600; }
.footer__bottom {
  border-top: 1px solid #3A392F; margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: #8C887C;
}
.footer__bottom a { color: #8C887C; }
.footer__disclaimer { font-size: .78rem; color: #76736A; margin-top: 1rem; line-height: 1.6; }

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.stack > * + * { margin-top: 1rem; }
.divider { height: 1px; background: var(--line); border: 0; margin: var(--sp-7) 0; }
.tag { display:inline-block; font-size:.74rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--sage-dark); background:var(--sage-light); padding:.3rem .65rem; border-radius:999px; }
/* ---------- Tighter vertical rhythm on phones ---------- */
@media (max-width: 640px) {
  .section { padding: 3.25rem 0; }
  .section--tight { padding: 2.5rem 0; }
  .hero { padding: 2.75rem 0 2.5rem; }
  .photo-hero, .page-hero--dark, .page-hero { padding: 2.5rem 0; }
  .cta-band { padding: clamp(1.6rem, 6vw, 2.4rem); }
  .site-footer { padding: 3rem 0 1.75rem; }
  .section-head { margin-bottom: var(--sp-6); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
