/* All Special Landscaping — design system tokens + site styles
   Source: all-special-landscaping-design-system-6a02d560 (Borrego Brothers, 8/31/26)
   Rules: borders do elevation, no drop shadows anywhere. */

:root {
  --evergreen: #141B15;
  --cream: #F7F4EC;
  --white: #FFFFFF;
  --terracotta: #DF6E31;
  --terracotta-deep: #B1501B;
  --sun-gold: #FDC310;
  --fresh-green: #039331;
  --field-green: #639B31;
  --spring-lime: #B5C93A;
  --aqua-teal: #02B4C3;
  --charcoal: #5D605C;
  --stone: #A0A19D;

  --border-card: rgba(20, 27, 21, .10);
  --border-strong: rgba(20, 27, 21, .25);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius-card: 12px;
  --radius-pill: 999px;
  --content-max: 1200px;
  --motion: 300ms cubic-bezier(.2, .8, .2, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--evergreen);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; }
a { color: var(--evergreen); }
a:hover { color: var(--terracotta-deep); }

:focus-visible {
  outline: 3px solid var(--terracotta-deep);
  outline-offset: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--evergreen); color: var(--cream);
  padding: 12px 20px; border-radius: 0 0 var(--radius-card) 0;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--cream); }

.wrap { max-width: var(--content-max); margin: 0 auto; padding-inline: 32px; }
[id] { scroll-margin-top: 96px; }
.narrow { max-width: 900px; margin-inline: auto; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--charcoal);
}
.eyebrow--dark { color: var(--stone); }
.eyebrow--cream { color: var(--cream); opacity: .75; }

h1, h2, h3 { letter-spacing: -.02em; font-weight: 800; line-height: 1.08; }
h1 { font-size: clamp(34px, 6vw, 61px); line-height: 1.05; margin: 14px 0 0; }
h1.h1--sm { font-size: clamp(32px, 5.2vw, 49px); line-height: 1.08; margin: 12px 0 0; }
h2 { font-size: clamp(28px, 4.4vw, 39px); margin: 10px 0 0; }
h2.h2--lg { font-size: clamp(32px, 5.2vw, 49px); }
h3 { font-size: clamp(22px, 3vw, 25px); margin: 8px 0; }

.lede { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: var(--charcoal); max-width: 48ch; margin: 20px 0 28px; }
.body-lg { font-size: 17px; line-height: 1.6; color: var(--charcoal); max-width: 52ch; }
.rule { width: 120px; height: 4px; background: var(--terracotta); margin-top: 14px; }
.rule--center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700;
  border-radius: var(--radius-pill); cursor: pointer; text-decoration: none;
  transition: background var(--motion), color var(--motion), border-color var(--motion);
  border: 1px solid transparent; white-space: nowrap;
  padding: 12px 24px; font-size: 18px;
}
.btn--lg { padding: 16px 32px; font-size: 18px; }
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-deep); color: var(--white); }
.btn-secondary { background: transparent; color: var(--evergreen); border-color: var(--evergreen); font-size: 16px; }
.btn-secondary.btn--lg { font-size: 18px; }
.btn-secondary:hover { background: var(--evergreen); color: var(--cream); }
.btn-cream { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-cream:hover { background: var(--cream); color: var(--evergreen); }

.btn-tertiary {
  display: inline-block; font-weight: 700; font-size: 16px; color: var(--evergreen);
  text-decoration: none; border-bottom: 3px solid var(--terracotta);
  padding-bottom: 2px; transition: border-color var(--motion);
}
.btn-tertiary:hover { border-bottom-color: var(--terracotta-deep); color: var(--evergreen); }

.btn-soft {
  display: inline-block; font-size: 16px; font-weight: 500; color: var(--charcoal);
  text-decoration: underline; text-underline-offset: 3px; transition: color var(--motion);
}
.btn-soft:hover { color: var(--evergreen); }

.cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cta-row--center { justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  background: var(--white); border-bottom: 1px solid var(--border-card);
  position: sticky; top: 0; z-index: 60;
}
.nav__inner {
  max-width: var(--content-max); margin: 0 auto;
  display: flex; align-items: center; gap: clamp(12px, 2vw, 32px);
  padding: 12px 24px;
}
.nav__logo { flex: none; display: flex; }
.nav__logo img { width: 55px; height: 55px; display: block; }
.nav__links { display: flex; gap: clamp(12px, 1.8vw, 28px); flex: 1; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--evergreen); text-decoration: none; }
.nav__links a[aria-current="page"] { font-weight: 700; }
.nav__phone { font-size: 15px; font-weight: 700; color: var(--evergreen); text-decoration: none; white-space: nowrap; flex: none; }
.nav__toggle {
  display: none; margin-left: auto; flex: none;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border-card); border-radius: 10px; cursor: pointer;
  color: var(--evergreen);
}

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__inner { flex-wrap: wrap; }
  .nav__links, .nav__inner > .btn, .nav__phone { display: none; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 4px;
    width: 100%; order: 3; padding: 12px 0 16px; border-top: 1px solid var(--border-card);
  }
  .nav.is-open .nav__links a { padding: 12px 4px; font-size: 17px; }
  .nav.is-open .nav__phone { display: block; order: 4; width: 100%; font-size: 18px; padding: 8px 4px 4px; }
  .nav.is-open > .nav__inner > .btn { display: inline-flex; order: 5; width: 100%; margin: 12px 0 4px; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(56px, 8vw, 80px); }
.section--tight { padding-block: clamp(40px, 6vw, 64px); }
.band-dark { background: var(--evergreen); color: var(--cream); }
.band-dark h2, .band-dark h1 { color: var(--cream); }
.band-white { background: var(--white); border-top: 1px solid var(--border-card); border-bottom: 1px solid var(--border-card); }

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.split > *, .grid-2 > *, .grid-3 > *, .process > *, .footer__grid > * { min-width: 0; }
.split--rev { grid-template-columns: 1fr 1.1fr; }
.split--even { grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) {
  .split, .split--rev, .split--even { grid-template-columns: 1fr; gap: 32px; }
  .split--stackrev > *:first-child { order: 2; }
}

.photo {
  display: block; width: 100%; object-fit: cover;
  border-radius: var(--radius-card); border: 1px solid var(--border-card);
}
.photo--380 { height: 380px; object-position: center 20%; }
.photo--440 { height: 440px; object-position: center 20%; }
.photo--400 { height: 400px; object-position: center 25%; }
.photo--340 { height: 340px; }
.photo--300 { height: 300px; }
@media (max-width: 640px) {
  .photo--380, .photo--440, .photo--400, .photo--340, .photo--300 { height: 260px; }
}

.photo-pending {
  height: 300px; background: rgba(99, 155, 49, .28);
  border-radius: var(--radius-card); border: 1px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--charcoal); text-align: center; padding: 16px;
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(40px, 6vw, 72px); }
.hero__media { position: relative; }
.hero__frame { border: 4px solid var(--terracotta); border-radius: 16px; padding: 5px; background: var(--white); }
.hero__frame video { display: block; width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: cover; border-radius: 9px; }
.hero__play {
  position: absolute; top: 32%; left: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; background: var(--white);
  border: 1px solid var(--border-card); border-radius: var(--radius-pill);
  cursor: pointer; padding: 0; transition: background var(--motion);
}
.hero__play:hover { background: var(--cream); }
.hero__arrival { margin-top: 20px; }
@media (min-width: 1080px) {
  .hero__arrival { position: absolute; bottom: -56px; right: -12px; transform: scale(.85); transform-origin: bottom right; margin-top: 0; }
  .hero { padding-bottom: 96px; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--border-card);
  border-radius: var(--radius-card); padding: 32px;
}
.card--sm { padding: 20px 24px; max-width: 440px; }

.arrival-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  padding: 16px 20px; max-width: 420px; text-align: left;
}
.arrival-card__dot {
  width: 36px; height: 36px; border-radius: 50%; background: var(--evergreen);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.arrival-card__kicker { font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--charcoal); text-transform: uppercase; }
.arrival-card__headline { font-size: 18px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; margin: 4px 0; }
.arrival-card__sub { font-size: 14px; color: var(--charcoal); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.service-card {
  display: block; background: var(--white); border: 1px solid var(--border-card);
  border-radius: var(--radius-card); overflow: hidden; text-decoration: none;
  transition: border-color var(--motion);
}
.service-card:hover { border-color: var(--border-strong); color: var(--evergreen); }
.service-card img, .service-card .service-card__ph { width: 100%; height: 160px; object-fit: cover; display: block; }
.service-card__ph { background: rgba(99, 155, 49, .25); }
.service-card__body { padding: 20px; }
.service-card__title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--evergreen); }
.service-card__line { margin: 6px 0 12px; font-size: 15px; line-height: 1.5; color: var(--charcoal); }
.service-card__cta { font-size: 15px; font-weight: 700; color: var(--evergreen); border-bottom: 3px solid var(--terracotta); padding-bottom: 1px; transition: border-color var(--motion); }
.service-card:hover .service-card__cta { border-bottom-color: var(--terracotta-deep); }

.review-card {
  background: var(--cream); border: 1px solid var(--border-card);
  border-radius: var(--radius-card); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-card__stars { display: flex; gap: 2px; }
.review-card p { margin: 0; font-size: 16px; line-height: 1.6; }
.review-card__name { font-size: 15px; font-weight: 600; }
.review-card__svc { font-size: 13px; color: var(--charcoal); }

.plan-card {
  background: var(--white); border: 1px solid var(--border-card);
  border-radius: var(--radius-card); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.plan-card--featured { border: 2px solid var(--evergreen); }
.plan-card__price { font-size: 39px; font-weight: 900; letter-spacing: -.02em; }
.plan-card__note { font-size: 15px; color: var(--charcoal); margin-left: 6px; }
.plan-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.plan-card li svg { flex: none; margin-top: 3px; }
.plan-card .btn { margin-top: auto; }

/* ---------- Proof ---------- */
.trustbar {
  display: flex; justify-content: space-between; gap: 14px 20px; flex-wrap: wrap;
  background: var(--cream); border: 1px solid var(--border-card);
  border-radius: var(--radius-card); padding: 18px 24px;
}
.trustbar div { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.trustbar div svg { flex: none; }
@media (max-width: 1100px) { .trustbar { justify-content: flex-start; column-gap: 28px; } }

.rating-badge {
  width: 140px; height: 140px; flex: none; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}
.rating-badge__num { font-size: 42px; font-weight: 900; letter-spacing: -.02em; line-height: 1; }
.rating-badge__stars { display: flex; gap: 1px; }
.rating-badge__label { font-size: 12px; font-weight: 500; color: var(--charcoal); }
.proof-head { display: flex; gap: 48px; align-items: center; margin-bottom: 36px; flex-wrap: wrap; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.process__n { font-size: 49px; font-weight: 900; letter-spacing: -.02em; color: var(--spring-lime); line-height: 1; }
.process__t { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin: 10px 0 6px; }
.process p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--charcoal); }

/* ---------- Areas ---------- */
.area-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.area-list span {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500;
  border: 1px solid var(--border-card); border-radius: var(--radius-pill); padding: 6px 14px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border-card); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; cursor: pointer; font-size: 18px; font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex: none; transition: transform var(--motion); }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq details p { margin: 0 0 20px; font-size: 16px; line-height: 1.6; color: var(--charcoal); max-width: 68ch; }

/* ---------- Portfolio ---------- */
.hero-photo { position: relative; overflow: hidden; }
.hero-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo__scrim { position: absolute; inset: 0; background: rgba(20, 27, 21, .55); }
.hero-photo__scrim--deep { background: rgba(20, 27, 21, .72); }
.hero-photo__body { position: relative; padding-block: clamp(72px, 11vw, 140px) clamp(64px, 9vw, 120px); }
.hero-photo h1, .hero-photo h2 { color: var(--cream); }
.hero-photo p { color: var(--cream); opacity: .85; }

.filters { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filters button {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  padding: 8px 18px; border-radius: var(--radius-pill); cursor: pointer;
  background: var(--white); color: var(--evergreen); border: 1px solid var(--border-card);
  transition: background var(--motion), border-color var(--motion), color var(--motion);
}
.filters button[aria-pressed="true"] { background: var(--evergreen); color: var(--cream); border-color: var(--evergreen); }

.project {
  margin: 0; background: var(--white); border: 1px solid var(--border-card);
  border-radius: var(--radius-card); overflow: hidden; display: flex; flex-direction: column;
}
.project img { display: block; width: 100%; height: 240px; object-fit: cover; }
.project figcaption { padding: 18px 20px 22px; }
.project__title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin: 8px 0 6px; }
.project figcaption p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--charcoal); }

/* ---------- Before / after ---------- */
.ba {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  border: 1px solid var(--border-card); user-select: none;
  width: 100%; height: clamp(260px, 34vw, 460px);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); }
.ba__line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--cream); transform: translateX(-1px); pointer-events: none; }
.ba__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 36px; height: 36px; border-radius: 50%; background: var(--cream);
  border: 1px solid var(--border-card); display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--evergreen);
}
.ba__label {
  position: absolute; top: 16px; font-size: 12px; font-weight: 600; letter-spacing: .08em;
  color: var(--cream); background: rgba(20, 27, 21, .55); padding: 4px 10px; border-radius: var(--radius-pill);
}
.ba__label--b { left: 16px; }
.ba__label--a { right: 16px; }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; background: none;
}
.ba__range:focus-visible { opacity: 1; outline-offset: -3px; }

/* ---------- Form ---------- */
.estimate-form {
  background: var(--white); border: 1px solid var(--border-card);
  border-radius: var(--radius-card); padding: clamp(20px, 5vw, 32px); width: 100%; max-width: 520px;
  display: flex; flex-direction: column; gap: 20px;
}
.estimate-form label, .estimate-form .lbl {
  display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px;
}
.estimate-form input, .estimate-form textarea {
  width: 100%; padding: 12px 14px; font-size: 16px;
  font-family: var(--font-sans); color: var(--evergreen); background: var(--white);
  border: 1px solid var(--border-card); border-radius: 8px; outline: none;
  transition: border-color var(--motion);
}
.estimate-form input:focus, .estimate-form textarea:focus { border-color: var(--evergreen); }
.estimate-form textarea { resize: vertical; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-pair { grid-template-columns: 1fr; } }

.type-picker { display: flex; gap: 8px; flex-wrap: wrap; }
.type-picker button { flex: 1 1 96px; }
.type-picker button {
  padding: 10px; font-size: 15px; font-weight: 500;
  font-family: var(--font-sans); cursor: pointer; border-radius: var(--radius-pill);
  border: 1px solid var(--border-card); background: var(--white); color: var(--evergreen);
  transition: background var(--motion), border-color var(--motion), color var(--motion);
}
.type-picker button[aria-pressed="true"] {
  font-weight: 700; border-color: var(--evergreen);
  background: var(--evergreen); color: var(--cream);
}
.form-note {
  margin: 0; font-size: 15px; line-height: 1.5; background: var(--cream);
  border: 1px solid var(--border-card); border-radius: 8px; padding: 12px 14px;
}
.form-status { margin: 0; font-size: 15px; line-height: 1.5; }
.form-status--err { color: var(--terracotta-deep); font-weight: 500; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.tf-card {
  background: var(--white); border: 1px solid var(--border-card);
  border-radius: var(--radius-card); overflow: hidden; width: 100%; max-width: 620px;
}

/* ---------- AIDA band (video background) ---------- */
.aida {
  position: relative; overflow: hidden;
  background: var(--evergreen); color: var(--cream);
  padding-block: clamp(64px, 9vw, 104px);
}
.aida__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
/* Evergreen scrim: deepest top and bottom so the headline and CTAs stay legible
   over moving footage. Measured 6.3:1 cream-on-scrim at the worst-case white frame. */
.aida__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(20, 27, 21, .84) 0%,
    rgba(20, 27, 21, .72) 42%,
    rgba(20, 27, 21, .86) 100%
  );
}
.aida__body { position: relative; max-width: 940px; text-align: center; }
.aida h2 { color: var(--cream); }
.aida__lede {
  font-size: clamp(17px, 2vw, 19px); line-height: 1.6;
  opacity: .88; margin: 22px auto 0; max-width: 56ch;
}
.aida__points {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px;
}
.aida__points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 500; color: var(--cream);
}
.aida__points svg { flex: none; }
.aida__proof {
  font-size: 16px; line-height: 1.6; opacity: .75;
  margin: 26px auto 32px; max-width: 54ch;
}
/* The three proof points measure 942px together; break the row out past the
   940px text column so they hold one line once there is room for it. */
@media (min-width: 1080px) {
  .aida__points { width: 1000px; margin-left: 50%; transform: translateX(-50%); }
}

@media (max-width: 620px) {
  .aida__points { flex-direction: column; align-items: flex-start; text-align: left; gap: 12px; }
  .aida__points li { font-size: 16px; }
}

.photo--headshot {
  width: 100%; max-width: 460px; height: auto;
  aspect-ratio: 800 / 871; object-fit: cover; object-position: center top;
}
@media (max-width: 860px) { .photo--headshot { max-width: 420px; margin-inline: auto; } }

/* ---------- Leadership bio ---------- */
.bio__role {
  font-size: 17px; font-weight: 500; color: var(--charcoal); margin-top: 6px;
}
.bio__creds {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
}
.bio__creds li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--evergreen);
}
.bio__creds svg { flex: none; }
.bio__p {
  font-size: 16px; line-height: 1.6; color: var(--charcoal);
  max-width: 68ch; margin: 16px 0 0;
}

/* ---------- Footer ---------- */
.footer { background: var(--evergreen); color: var(--cream); padding: 64px 32px 32px; }
.footer__grid { max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__mark { width: 96px; height: 96px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.footer__mark img { width: 92px; height: 92px; border-radius: 50%; }
.footer p { font-size: 15px; line-height: 1.6; opacity: .85; max-width: 32ch; }
.footer__phone { font-size: 20px; font-weight: 700; color: var(--cream); text-decoration: none; }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer__col strong { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer__col a { color: var(--cream); text-decoration: none; opacity: .85; }
.footer__col a:hover { color: var(--cream); opacity: 1; text-decoration: underline; }
.footer__base {
  max-width: var(--content-max); margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(247, 244, 236, .15); font-size: 13px; opacity: .6;
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call {
  display: none; align-items: center; justify-content: center; gap: 10px;
  background: var(--evergreen); color: var(--cream);
  font-size: 17px; font-weight: 700; padding: 16px; text-decoration: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
}
@media (max-width: 700px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 56px; }
}

/* ---------- Video modal ---------- */
.video-modal {
  position: fixed; inset: 0; z-index: 1000; background: rgba(20, 27, 21, .85);
  display: flex; align-items: center; justify-content: center; padding: clamp(16px, 5vw, 48px);
}
.video-modal[hidden] { display: none; }
.video-modal__box { position: relative; width: min(1080px, 100%); background: var(--evergreen); border-radius: 14px; padding: 10px; }
.video-modal__ratio { position: relative; aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; }
.video-modal__ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close {
  position: absolute; top: 16px; right: 16px; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; font-size: 22px; line-height: 1; color: var(--evergreen);
  background: var(--cream); border: 1px solid var(--border-card); border-radius: var(--radius-pill); cursor: pointer;
}

/* ---------- Motion ---------- */
.js .reveal { opacity: 0; transform: translateY(12px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity var(--motion), transform var(--motion); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.is-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Founder portrait (About hero) ---------- */
.founder-fig { margin: 0; justify-self: end; width: 100%; max-width: 460px; }
.founder-fig figcaption { font-size: 14px; color: var(--charcoal); margin-top: 10px; }
.photo--portrait { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%; }
@media (max-width: 860px) { .founder-fig { justify-self: center; max-width: 420px; } }

/* Videos get the same vibrance lift as the regraded stills */
.hero__frame video, .aida__bg { filter: saturate(1.18) contrast(1.04); }

/* ---------- Leadership profiles (About) ---------- */
.profile-fig { margin: 0; width: 100%; max-width: 460px; }
@media (min-width: 861px) { .profile-end { justify-self: end; } }
@media (max-width: 860px) { .profile-fig { max-width: 420px; margin-inline: auto; } }
