/* =====================================================================
   Elevated Landscaping LLC — "Fresh Modern Outdoor Brand"
   Cool ink + vibrant teal on a bright airy canvas.
   Space Grotesk + Manrope. Rounded, modern, high-conversion.
   Hand-built, no frameworks.
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
  /* Brand */
  --ink:       #15181e;   /* cool near-black */
  --ink-2:     #222833;   /* dark panel */
  --ink-3:     #333b47;
  --teal:      #0fb5a6;   /* vibrant accent */
  --teal-600:  #0b8e83;
  --teal-700:  #0a766d;
  --teal-300:  #5fd6cc;
  --teal-100:  #d8f3f0;
  --teal-50:   #ecfaf8;

  /* Neutrals */
  --canvas:    #f6f8f7;   /* cool off-white */
  --mist:      #eef2f1;   /* surface */
  --white:     #ffffff;
  --line:      #dde4e1;
  --line-dark: #313944;

  /* Text */
  --text:      #1a1d22;
  --muted:     #5a6470;
  --on-dark:   #eef2f1;
  --on-dark-mut:#9aa4b0;

  /* System */
  --radius:    14px;
  --radius-lg: 24px;
  --pill:      999px;
  --shadow:    0 24px 50px -28px rgba(21,24,30,.35);
  --shadow-sm: 0 10px 26px -16px rgba(21,24,30,.3);
  --shadow-teal: 0 16px 34px -14px rgba(15,181,166,.5);
  --container: 1180px;
  --gutter:    clamp(1.1rem, 4vw, 2.2rem);
  --ease:      cubic-bezier(.22,.7,.25,1);

  --ff-display:"Space Grotesk", system-ui, sans-serif;
  --ff-body:   "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ----------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
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 {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--canvas);
  line-height: 1.65;
  font-size: 1.03rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--teal); color: var(--ink); }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

/* --------------------------- Typography ---------------------------- */
h1, h2, h3, h4, .display {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { max-width: 62ch; }
strong { font-weight: 700; }
.hl { color: var(--teal-600); }
.hl-underline { background: linear-gradient(transparent 62%, var(--teal-300) 0); padding: 0 .1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-display); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .14em; color: var(--teal-700);
  background: var(--teal-50); border: 1px solid var(--teal-100);
  padding: .4rem .85rem; border-radius: var(--pill);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.eyebrow--plain { background: none; border: 0; padding: 0; }
.lead { font-size: 1.18rem; color: var(--muted); }

/* --------------------------- Layout -------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.6rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 3.6rem); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: var(--on-dark); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink .lead, .section--ink .muted { color: var(--on-dark-mut); }
.section-head { max-width: 56ch; margin-bottom: 2.8rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .9rem; }
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--media-right { grid-template-columns: 1.05fr .95fr; } }
.muted { color: var(--muted); }

/* --------------------------- Buttons ------------------------------- */
.btn {
  --bg: var(--teal); --fg: #06302c;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--ff-display); font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  padding: .92rem 1.7rem; border-radius: var(--pill); border: 2px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--teal-600); box-shadow: var(--shadow-teal); }
.btn:active { transform: translateY(0); }
.btn--dark { --bg: var(--ink); --fg: #fff; }
.btn--dark:hover { background: var(--ink-2); box-shadow: var(--shadow); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: none; }
.btn--ghost-light { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; box-shadow: none; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.08rem; }
.btn svg { width: 1.1em; height: 1.1em; }

/* --------------------------- Header / Nav -------------------------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(246,248,247,.85); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 10px 30px -22px rgba(21,24,30,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; height: 78px; }
.logo { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); }
.logo__mark { width: 42px; height: 42px; flex: none; }
.logo__name { font-family: var(--ff-display); font-weight: 700; font-size: 1.24rem; letter-spacing: -.02em; line-height: 1; }
.logo__name small { display: block; font-family: var(--ff-body); font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }

.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__link { font-family: var(--ff-display); font-weight: 500; font-size: .98rem; color: var(--ink); position: relative; padding: .3rem 0; transition: color .2s var(--ease); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--teal); border-radius: 2px; transition: width .22s var(--ease); }
.nav__link:hover { color: var(--teal-700); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--teal-700); }
.nav__actions { display: flex; align-items: center; gap: .9rem; }
.nav__phone { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--ff-display); font-weight: 600; color: var(--ink); }
.nav__phone svg { width: 1.05em; color: var(--teal-600); }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav__toggle span::before { transform: translate(-50%,-7px); }
.nav__toggle span::after  { transform: translate(-50%,7px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%,0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translate(-50%,0) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__toggle { display: block; z-index: 70; }
  .nav__menu { position: fixed; inset: 0 0 0 auto; width: min(84vw, 350px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 2rem; background: var(--white); padding: 5rem 2rem; box-shadow: var(--shadow); transform: translateX(100%); transition: transform .32s var(--ease); z-index: 65; }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__links { flex-direction: column; align-items: flex-start; gap: 1.3rem; }
  .nav__link { font-size: 1.2rem; }
  .nav__actions { flex-direction: column; align-items: flex-start; gap: 1rem; width: 100%; }
  .nav__actions .btn { width: 100%; justify-content: center; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(21,24,30,.4); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 64; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

/* ----------------------------- Hero -------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__inner { display: grid; gap: clamp(2rem,5vw,3.5rem); align-items: center; padding-block: clamp(3rem,7vw,5.5rem); }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.05fr .95fr; } }
.hero__copy { display: grid; gap: 1.5rem; }
.hero h1 { letter-spacing: -.03em; }
.hero__lead { font-size: 1.22rem; color: var(--muted); max-width: 44ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__rating { display: inline-flex; align-items: center; gap: .7rem; font-size: .95rem; color: var(--muted); }
.hero__stars { color: #f5a623; letter-spacing: .1em; }
.hero__visual { position: relative; }
.hero__img { position: relative; aspect-ratio: 4/4.4; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(150deg, #1c6f68, #0c3b37); box-shadow: var(--shadow); }
.hero__img::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(100deg, rgba(255,255,255,.05) 0 28px, rgba(255,255,255,0) 28px 56px); }
.hero__blob { position: absolute; inset: auto -8% -10% auto; width: 56%; aspect-ratio: 1; background: var(--teal-100); border-radius: 46% 54% 60% 40% / 50% 42% 58% 50%; z-index: -1; }
.hero__badge { position: absolute; left: -1.2rem; bottom: 1.6rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem; }
.hero__badge .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; }
.hero__badge b { font-family: var(--ff-display); display: block; font-size: 1.05rem; }
.hero__badge span { font-size: .82rem; color: var(--muted); }

/* --------------------------- Trust bar ----------------------------- */
.trustbar { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; align-items: center; justify-content: center; padding-block: 1.6rem; border-block: 1px solid var(--line); }
.trustbar__item { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--ff-display); font-weight: 600; font-size: .95rem; color: var(--ink); }
.trustbar__item svg { width: 1.25rem; height: 1.25rem; color: var(--teal-600); }

/* --------------------------- Service cards ------------------------- */
.cards { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(255px,1fr)); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem 1.7rem; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.card__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; margin-bottom: 1.1rem; transition: background .22s var(--ease), color .22s var(--ease); }
.card:hover .card__ic { background: var(--teal); color: #06302c; }
.card__ic svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: .97rem; }
.card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-family: var(--ff-display); font-weight: 600; font-size: .92rem; color: var(--teal-700); }
.card__link svg { width: 1em; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* --------------------------- Feature split ------------------------- */
.feature__media { position: relative; aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(150deg,#2a8f86,#0d433e); box-shadow: var(--shadow); }
.feature__media--2 { background: linear-gradient(150deg,#356f8a,#15303b); }
.feature__media .pill { position: absolute; left: 1.2rem; top: 1.2rem; background: rgba(255,255,255,.92); color: var(--ink); font-family: var(--ff-display); font-weight: 600; font-size: .82rem; padding: .45rem .9rem; border-radius: var(--pill); }
.checks { display: grid; gap: .9rem; margin-top: 1.6rem; }
.checks li { display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: start; }
.checks .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; flex: none; margin-top: .1rem; }
.checks .tick svg { width: 15px; height: 15px; }
.checks b { font-family: var(--ff-display); font-weight: 600; }
.checks span.t { display: block; color: var(--muted); font-size: .96rem; }

/* ----------------------------- Stats ------------------------------- */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat { text-align: center; padding: 1.6rem 1rem; background: var(--ink-2); border-radius: var(--radius-lg); }
.stat__num { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.2rem,5vw,3rem); color: var(--teal-300); line-height: 1; }
.stat__label { color: var(--on-dark-mut); font-size: .9rem; margin-top: .55rem; }

/* ----------------------------- Steps ------------------------------- */
.steps { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem 1.5rem; position: relative; }
.step__n { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; margin-bottom: 1rem; }
.step:nth-child(1) .step__n { background: var(--teal); color: #06302c; }
.step h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* --------------------------- Gallery ------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter { font-family: var(--ff-display); font-weight: 500; font-size: .92rem; padding: .55rem 1.15rem; border-radius: var(--pill); border: 1px solid var(--line); background: var(--white); color: var(--ink); transition: all .2s var(--ease); }
.filter:hover { border-color: var(--teal-300); }
.filter.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }
.tile { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; display: grid; align-content: end; padding: 1.2rem; color: #fff; background-size: cover; background-position: center; transition: transform .25s var(--ease); }
.tile::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(10,20,18,.8)); }
.tile > * { position: relative; }
.tile:hover { transform: scale(1.02); }
.tile__cat { font-family: var(--ff-display); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--teal-300); }
.tile__title { font-family: var(--ff-display); font-weight: 600; font-size: 1.12rem; margin-top: .2rem; }
.tile.is-hidden { display: none; }
.tile.tall { aspect-ratio: 1/1.3; }
.g-1 { background-image: linear-gradient(150deg,#2a8f86,#0d433e); }
.g-2 { background-image: linear-gradient(150deg,#356f8a,#15303b); }
.g-3 { background-image: linear-gradient(150deg,#3f7e63,#173a2c); }
.g-4 { background-image: linear-gradient(150deg,#5a7d8f,#243842); }
.g-5 { background-image: linear-gradient(150deg,#2f8a7e,#114039); }
.g-6 { background-image: linear-gradient(150deg,#46768f,#1a313c); }

/* ------------------------ Before / after --------------------------- */
.ba { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); user-select: none; }
.ba__img { position: absolute; inset: 0; background-size: cover; background-position: center; display: grid; align-content: start; padding: 1rem; }
.ba__before { background-image: linear-gradient(150deg,#6a7d70,#34423a); }
.ba__after { background-image: linear-gradient(150deg,#2a8f86,#0d433e); clip-path: inset(0 0 0 50%); }
.ba__tag { font-family: var(--ff-display); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: #fff; background: rgba(21,24,30,.55); padding: .25rem .65rem; border-radius: var(--pill); justify-self: start; }
.ba__after .ba__tag { justify-self: end; }
.ba__range { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: ew-resize; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none; }
.ba__handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 42px; height: 42px; transform: translate(-50%,-50%); background: var(--teal); border-radius: 50%; box-shadow: 0 6px 16px -4px rgba(0,0,0,.5); }
.ba__handle::before { content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1; color: #06302c; font-weight: 700; }

/* --------------------------- Reviews ------------------------------- */
.reviews { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(285px,1fr)); }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; }
.section--mist .review { background: var(--white); }
.review__stars { color: #f5a623; letter-spacing: .12em; margin-bottom: .8rem; }
.review p { color: var(--text); font-size: 1.02rem; }
.review__by { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.review__av { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; }
.review__by b { font-family: var(--ff-display); display: block; font-size: .98rem; }
.review__by span { font-size: .84rem; color: var(--muted); }

/* ----------------------------- Area -------------------------------- */
.area__chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.3rem; }
.area__chip { display: inline-flex; align-items: center; gap: .4rem; background: var(--white); border: 1px solid var(--line); padding: .5rem 1rem; border-radius: var(--pill); font-size: .92rem; font-weight: 600; font-family: var(--ff-display); }
.area__chip svg { width: 1em; color: var(--teal-600); }
.area__map { border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.area__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ------------------------------ CTA -------------------------------- */
.cta { position: relative; background: linear-gradient(135deg, var(--teal), var(--teal-700)); color: #06302c; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.07) 0 30px, transparent 30px 60px); }
.cta__inner { position: relative; display: grid; gap: 1.6rem; align-items: center; }
@media (min-width: 820px) { .cta__inner { grid-template-columns: 1.5fr auto; } }
.cta h2 { color: #06302c; }
.cta p { color: #0a4641; }

/* ------------------------- Page hero (inner) ----------------------- */
.pagehero { background: var(--ink); color: var(--on-dark); padding-block: clamp(3rem,7vw,4.6rem); position: relative; overflow: hidden; }
.pagehero::after { content: ""; position: absolute; right: -6%; top: -40%; width: 40%; aspect-ratio: 1; background: radial-gradient(circle, rgba(15,181,166,.4), transparent 65%); }
.pagehero__inner { position: relative; }
.pagehero h1 { color: #fff; }
.pagehero p { color: var(--on-dark-mut); margin-top: 1rem; max-width: 52ch; }
.crumbs { display: flex; gap: .5rem; align-items: center; font-family: var(--ff-display); font-weight: 500; font-size: .85rem; color: var(--on-dark-mut); margin-bottom: 1rem; }
.crumbs a:hover { color: var(--teal-300); }

/* ----------------------- Detailed service -------------------------- */
.svc { display: grid; gap: clamp(1.6rem,4vw,3.2rem); align-items: center; padding-block: clamp(2.4rem,5vw,3.6rem); border-bottom: 1px solid var(--line); scroll-margin-top: 96px; }
@media (min-width: 860px) { .svc { grid-template-columns: 1fr 1fr; } .svc:nth-child(even) .svc__media { order: -1; } }
.svc__media { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; position: relative; background: linear-gradient(150deg,#2a8f86,#0d433e); box-shadow: var(--shadow-sm); }
.svc__media .pill { position: absolute; left: 1.1rem; top: 1.1rem; background: rgba(255,255,255,.92); color: var(--ink); font-family: var(--ff-display); font-weight: 600; font-size: .8rem; padding: .4rem .85rem; border-radius: var(--pill); }
.svc__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; margin-bottom: 1rem; }
.svc__ic svg { width: 28px; height: 28px; }
.svc h2 { margin-bottom: .7rem; }
.ticks { display: grid; gap: .55rem; margin-top: 1.2rem; }
.ticks li { display: grid; grid-template-columns: auto 1fr; gap: .65rem; color: var(--muted); align-items: start; }
.ticks svg { width: 1.2rem; height: 1.2rem; color: var(--teal-600); margin-top: .2rem; }

/* ------------------------------ Forms ------------------------------ */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--ff-display); font-weight: 600; font-size: .9rem; }
.field label .req { color: var(--teal-600); }
.field input, .field select, .field textarea { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: .85rem 1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-100); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217,83,79,.14); }
.field__error { color: #c0392b; font-size: .82rem; min-height: 1em; }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__success { display: none; background: var(--teal-50); border: 1px solid var(--teal-300); border-radius: var(--radius-lg); padding: 1.1rem 1.3rem; }
.form__success.is-visible { display: block; }
.form__success strong { font-family: var(--ff-display); }

/* ----------------------------- FAQ --------------------------------- */
.faq { display: grid; gap: .8rem; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; }
.faq__q .ic { width: 1.5rem; height: 1.5rem; flex: none; color: var(--teal-600); transition: transform .25s var(--ease); }
.faq__item.is-open .faq__q .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a p { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ----------------------------- Footer ------------------------------ */
.footer { background: var(--ink); color: var(--on-dark-mut); padding-block: 3.4rem 1.6rem; }
.footer__grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr; } }
.footer .logo { color: #fff; }
.footer__about p { margin-top: 1rem; max-width: 34ch; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 12px; background: var(--ink-2); display: grid; place-items: center; color: var(--on-dark); transition: background .2s var(--ease), color .2s var(--ease); }
.footer__social a:hover { background: var(--teal); color: #06302c; }
.footer__social svg { width: 1.2rem; height: 1.2rem; }
.footer h4 { color: #fff; font-family: var(--ff-display); font-size: 1rem; margin-bottom: 1rem; }
.footer__links { display: grid; gap: .55rem; }
.footer__links a:hover, .footer__contact a:hover { color: var(--teal-300); }
.footer__contact { display: grid; gap: .7rem; }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact svg { width: 1.1rem; height: 1.1rem; color: var(--teal-300); flex: none; margin-top: .2rem; }
.footer__bottom { border-top: 1px solid var(--line-dark); margin-top: 2.6rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .85rem; }

/* ------------------------ Back to top + call bar ------------------- */
.to-top { position: fixed; right: 1.1rem; bottom: 5.4rem; z-index: 55; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s var(--ease); }
.to-top:hover { background: var(--teal); color: #06302c; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
@media (min-width: 760px) { .to-top { bottom: 1.4rem; } }

.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 56; display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border-top: 1px solid var(--line); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; font-family: var(--ff-display); font-weight: 600; font-size: .95rem; color: var(--ink); }
.callbar a + a { background: var(--teal); color: #06302c; }
.callbar svg { width: 1.1em; height: 1.1em; }
@media (min-width: 760px) { .callbar { display: none; } }
@media (max-width: 759px) { body { padding-bottom: 56px; } }

/* ------------------------- Reveal animation ------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.no-js .reveal { opacity: 1; transform: none; }

/* ------------------------------ Utils ------------------------------ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: .5rem; top: -3.5rem; background: var(--teal); color: #06302c; padding: .6rem 1rem; border-radius: var(--pill); z-index: 100; font-family: var(--ff-display); font-weight: 600; transition: top .2s; }
.skip-link:focus { top: .5rem; }
