/* =====================================================================
   Grade A Construction and Landscaping — "Built Right" design system
   Graphite + warm concrete + signal red. Bricolage Grotesque + IBM Plex Sans.
   Sturdy, professional, blueprint-grid motifs. Two divisions. No frameworks.
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
  /* Brand */
  --graphite:   #1f242b;   /* dark */
  --graphite-2: #2a3138;
  --graphite-3: #39414b;
  --red:        #d23b2c;   /* signal/brick red */
  --red-600:    #b62f22;
  --red-700:    #95261b;
  --red-50:     #fceeec;

  /* Neutrals */
  --concrete:   #e9e7e2;   /* warm light gray */
  --concrete-2: #ddd9d1;
  --paper:      #f7f6f3;   /* off-white */
  --white:      #ffffff;
  --line:       #dcd8cf;
  --line-dark:  #333b45;
  --steel:      #5c6470;

  /* Text */
  --text:       #21262d;
  --muted:      #5d646e;
  --on-dark:    #e8e6e1;
  --on-dark-mut:#9aa1aa;

  /* System */
  --radius:    5px;
  --radius-lg: 10px;
  --shadow:    0 22px 48px -26px rgba(18,22,28,.42);
  --shadow-sm: 0 10px 24px -16px rgba(18,22,28,.34);
  --shadow-red:0 16px 30px -14px rgba(210,59,44,.45);
  --container: 1180px;
  --gutter:    clamp(1.1rem, 4vw, 2.2rem);
  --ease:      cubic-bezier(.2,.65,.25,1);

  --ff-display:"Bricolage Grotesque", system-ui, sans-serif;
  --ff-body:   "IBM Plex Sans", 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(--paper);
  line-height: 1.62;
  font-size: 1.02rem;
  -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(--red); color: #fff; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 3px; }

/* --------------------------- Typography ---------------------------- */
h1, h2, h3, h4, .display {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--graphite);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { max-width: 64ch; }
strong { font-weight: 600; }
.hl { color: var(--red); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-body); font-weight: 600; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .16em; color: var(--red-600);
}
.eyebrow::before { content: ""; width: 20px; height: 3px; background: var(--red); }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--red); }
.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--concrete { background: var(--concrete); }
.section--graphite { background: var(--graphite); color: var(--on-dark); }
.section--graphite h1, .section--graphite h2, .section--graphite h3 { color: #fff; }
.section--graphite .lead, .section--graphite .muted { color: var(--on-dark-mut); }
.section-head { max-width: 58ch; 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--wide-left { grid-template-columns: 1.1fr .9fr; } }
.muted { color: var(--muted); }

/* blueprint grid motif */
.blueprint { background-image:
  linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 32px 32px; }

/* --------------------------- Buttons ------------------------------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--ff-display); font-weight: 700; font-size: .96rem; letter-spacing: -.01em;
  padding: .92rem 1.7rem; border-radius: var(--radius); border: 2px solid var(--bg);
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--red-600); border-color: var(--red-600); box-shadow: var(--shadow-red); }
.btn--dark { --bg: var(--graphite); border-color: var(--graphite); }
.btn--dark:hover { background: var(--graphite-2); border-color: var(--graphite-2); box-shadow: var(--shadow); }
.btn--ghost { --bg: transparent; --fg: var(--graphite); border-color: var(--graphite); }
.btn--ghost:hover { background: var(--graphite); color: #fff; box-shadow: none; }
.btn--ghost-light { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: #fff; color: var(--graphite); border-color: #fff; box-shadow: none; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.04rem; }
.btn svg { width: 1.1em; height: 1.1em; }

/* ----------------------------- Stamp ------------------------------- */
.stamp { display: inline-grid; place-items: center; text-align: center; width: 96px; height: 96px; border-radius: 50%; border: 2px solid var(--red); color: var(--red); font-family: var(--ff-display); line-height: 1; transform: rotate(-7deg); background: rgba(255,255,255,.04); }
.stamp b { font-size: 1.7rem; font-weight: 800; }
.stamp small { font-size: .56rem; letter-spacing: .14em; margin-top: .25rem; text-transform: uppercase; }

/* --------------------------- Header / Nav -------------------------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(31,36,43,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line-dark); transition: box-shadow .3s var(--ease); }
.header.is-stuck { box-shadow: 0 12px 30px -20px rgba(0,0,0,.7); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; height: 80px; }
.logo { display: inline-flex; align-items: center; gap: .65rem; color: #fff; }
.logo__mark { width: 46px; height: 46px; flex: none; }
.logo__name { font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.01em; line-height: 1; text-transform: uppercase; }
.logo__name span { color: var(--red); }
.logo__name small { display: block; font-family: var(--ff-body); font-size: .56rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-mut); margin-top: .3rem; }

.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: 600; font-size: .96rem; color: var(--on-dark); position: relative; padding: .3rem 0; transition: color .2s var(--ease); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--red); transition: width .22s var(--ease); }
.nav__link:hover { color: #fff; }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: #fff; }
.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: 700; color: #fff; }
.nav__phone svg { width: 1.05em; color: var(--red); }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: var(--radius); border: 1px solid var(--line-dark); position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 2.4px; background: #fff; 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(--graphite-2); padding: 5rem 2rem; border-left: 1px solid var(--line-dark); 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.1rem; }
  .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(10,12,15,.5); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 64; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

/* ----------------------------- Hero -------------------------------- */
.hero { position: relative; background: var(--graphite); color: var(--on-dark); overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -8%; top: -30%; width: 46%; aspect-ratio: 1; background: radial-gradient(circle, rgba(210,59,44,.22), transparent 64%); }
.hero__inner { position: relative; display: grid; gap: clamp(2rem,5vw,3.5rem); align-items: center; padding-block: clamp(3.4rem,8vw,5.5rem); }
@media (min-width: 920px) { .hero__inner { grid-template-columns: 1.06fr .94fr; } }
.hero__copy { display: grid; gap: 1.4rem; }
.hero__badge { display: inline-flex; align-items: center; gap: .6rem; align-self: start; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); border-radius: var(--pill, 999px); padding: .4rem .9rem .4rem .5rem; font-family: var(--ff-display); font-weight: 700; font-size: .82rem; }
.hero__badge i { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: #fff; font-style: normal; font-size: .68rem; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--red); }
.hero__lead { font-size: 1.2rem; color: var(--on-dark-mut); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: .4rem; }
.hero__chip { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--ff-display); font-weight: 600; font-size: .84rem; color: var(--on-dark); }
.hero__chip svg { width: 1.05em; color: var(--red); }
.hero__visual { position: relative; }
.hero__img { aspect-ratio: 4/4.2; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(155deg,#3a3027,#171a1f); border: 1px solid var(--line-dark); }
.hero__stamp { position: absolute; right: -1.2rem; bottom: 1.4rem; background: var(--graphite); border-radius: 50%; padding: .3rem; box-shadow: var(--shadow); }

/* --------------------------- Two divisions ------------------------- */
.divisions { display: grid; gap: 1.4rem; }
@media (min-width: 800px) { .divisions { grid-template-columns: 1fr 1fr; } }
.division { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 2.2rem; color: #fff; min-height: 320px; display: grid; align-content: end; gap: .7rem; border: 1px solid var(--line-dark); }
.division--build { background: linear-gradient(160deg,#2c333b,#171b20); }
.division--land { background: linear-gradient(160deg,#33392c,#181c14); }
.division::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 30px 30px; }
.division > * { position: relative; }
.division__ic { width: 56px; height: 56px; border-radius: var(--radius); background: var(--red); color: #fff; display: grid; place-items: center; }
.division__ic svg { width: 28px; height: 28px; }
.division__tag { font-family: var(--ff-body); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--red); }
.division h3 { color: #fff; font-size: clamp(1.5rem,3vw,2rem); }
.division p { color: var(--on-dark-mut); font-size: .98rem; }
.division ul { display: flex; flex-wrap: wrap; gap: .4rem .9rem; margin-top: .3rem; }
.division li { font-size: .86rem; color: var(--on-dark); display: inline-flex; align-items: center; gap: .4rem; }
.division li::before { content: ""; width: 5px; height: 5px; background: var(--red); border-radius: 50%; }
.division__link { display: inline-flex; align-items: center; gap: .45rem; margin-top: .6rem; font-family: var(--ff-display); font-weight: 700; font-size: .9rem; color: #fff; }
.division__link svg { width: 1em; transition: transform .2s var(--ease); }
.division:hover .division__link svg { transform: translateX(4px); }

/* --------------------------- Service cards ------------------------- */
.cards { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.6rem; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.card__ic { width: 52px; height: 52px; border-radius: var(--radius); background: var(--concrete); color: var(--graphite); display: grid; place-items: center; transition: background .2s var(--ease), color .2s var(--ease); }
.card:hover .card__ic { background: var(--red); color: #fff; }
.card__ic svg { width: 26px; height: 26px; }
.card__div { font-family: var(--ff-body); font-weight: 600; font-size: .64rem; text-transform: uppercase; letter-spacing: .12em; color: var(--steel); border: 1px solid var(--line); border-radius: var(--pill, 999px); padding: .25rem .6rem; }
.card__div--build { color: var(--red-600); border-color: #e9c4bf; background: var(--red-50); }
.card h3 { margin-bottom: .4rem; font-size: 1.22rem; }
.card p { color: var(--muted); font-size: .95rem; }

/* --------------------------- Feature split ------------------------- */
.feature__media { position: relative; aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(155deg,#3a3027,#171a1f); border: 1px solid var(--line-dark); }
.feature__media--land { background: linear-gradient(155deg,#33392c,#181c14); }
.feature__media .pill { position: absolute; left: 1.2rem; top: 1.2rem; z-index: 1; background: var(--red); color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; padding: .45rem .9rem; border-radius: var(--radius); }
.checks { display: grid; gap: 1rem; 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: var(--radius); background: var(--red-50); color: var(--red-600); display: grid; place-items: center; flex: none; margin-top: .15rem; }
.checks .tick svg { width: 15px; height: 15px; }
.checks b { font-family: var(--ff-display); font-weight: 700; }
.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(--graphite-2); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); }
.stat__num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.1rem,5vw,2.9rem); color: var(--red); line-height: 1; }
.stat__num span { font-size: .65em; }
.stat__label { color: var(--on-dark-mut); font-size: .86rem; margin-top: .5rem; }

/* ----------------------------- Steps ------------------------------- */
.steps { display: grid; gap: 1.2rem; 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: 46px; height: 46px; border-radius: var(--radius); background: var(--graphite); color: #fff; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; }
.step:nth-child(1) .step__n { background: var(--red); }
.step h3 { font-size: 1.15rem; 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: 600; font-size: .86rem; padding: .55rem 1.15rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); color: var(--graphite); transition: all .2s var(--ease); }
.filter:hover { border-color: var(--red); }
.filter.is-active { background: var(--graphite); color: #fff; border-color: var(--graphite); }
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }
.tile { position: relative; aspect-ratio: 4/3; 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(12,14,17,.82)); }
.tile > * { position: relative; }
.tile:hover { transform: scale(1.02); }
.tile__cat { font-family: var(--ff-body); font-weight: 600; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: #f0a89f; }
.tile__title { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; margin-top: .2rem; }
.tile.is-hidden { display: none; }
.t-1 { background-image: linear-gradient(155deg,#3a3027,#171a1f); }
.t-2 { background-image: linear-gradient(155deg,#4a4434,#26221a); }
.t-3 { background-image: linear-gradient(155deg,#33392c,#181c14); }
.t-4 { background-image: linear-gradient(155deg,#3a4048,#1a1e24); }
.t-5 { background-image: linear-gradient(155deg,#2f3a33,#141a14); }
.t-6 { background-image: linear-gradient(155deg,#45403a,#22201c); }

/* ------------------------ Before / after --------------------------- */
.ba { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); 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(155deg,#5a5340,#322d22); }
.ba__after { background-image: linear-gradient(155deg,#33392c,#181c14); clip-path: inset(0 0 0 50%); }
.ba__tag { font-family: var(--ff-display); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: #fff; background: rgba(20,22,26,.6); padding: .25rem .65rem; border-radius: var(--radius); 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: var(--red); 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(--red); 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: #fff; font-weight: 700; }

/* --------------------------- Reviews ------------------------------- */
.reviews { display: grid; gap: 1.2rem; 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; }
.review__stars { color: var(--red); letter-spacing: .1em; margin-bottom: .8rem; font-size: 1.05rem; }
.review p { color: var(--text); font-size: 1rem; }
.review__by { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.review__av { width: 42px; height: 42px; border-radius: var(--radius); background: var(--graphite); color: #fff; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 800; }
.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(--radius); font-size: .9rem; font-weight: 600; font-family: var(--ff-display); }
.area__chip svg { width: 1em; color: var(--red-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; filter: grayscale(.4) contrast(1.04); }

/* ------------------------------ CTA -------------------------------- */
.cta { position: relative; background: var(--red); color: #fff; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 30px 30px; }
.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: #fff; }
.cta p { color: rgba(255,255,255,.9); }
.cta .btn--dark { --bg: var(--graphite); border-color: var(--graphite); }

/* ------------------------- Page hero (inner) ----------------------- */
.pagehero { position: relative; background: var(--graphite); color: var(--on-dark); padding-block: clamp(3rem,7vw,4.6rem); overflow: hidden; }
.pagehero::after { content: ""; position: absolute; right: -8%; top: -50%; width: 40%; aspect-ratio: 1; background: radial-gradient(circle, rgba(210,59,44,.2), transparent 64%); }
.pagehero__inner { position: relative; }
.pagehero h1 { color: #fff; }
.pagehero p { color: var(--on-dark-mut); margin-top: 1rem; max-width: 54ch; }
.crumbs { display: flex; gap: .5rem; align-items: center; font-family: var(--ff-display); font-weight: 600; font-size: .8rem; color: var(--on-dark-mut); margin-bottom: 1rem; }
.crumbs a:hover { color: var(--red); }

/* ----------------------- Detailed service -------------------------- */
.divhead { display: flex; align-items: center; gap: 1rem; margin-bottom: .6rem; }
.divhead__ic { width: 52px; height: 52px; border-radius: var(--radius); background: var(--red); color: #fff; display: grid; place-items: center; flex: none; }
.divhead__ic svg { width: 26px; height: 26px; }
.divhead h2 { margin: 0; }
.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: 100px; }
@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(155deg,#3a3027,#171a1f); border: 1px solid var(--line-dark); }
.svc__media--land { background: linear-gradient(155deg,#33392c,#181c14); }
.svc__media .pill { position: absolute; left: 1.1rem; top: 1.1rem; z-index: 1; background: var(--red); color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; padding: .4rem .85rem; border-radius: var(--radius); }
.svc__ic { width: 54px; height: 54px; border-radius: var(--radius); background: var(--concrete); color: var(--graphite); display: grid; place-items: center; margin-bottom: 1rem; }
.svc__ic svg { width: 27px; height: 27px; }
.svc h3 { font-size: clamp(1.4rem,2.6vw,1.8rem); 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(--red-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: 700; font-size: .84rem; }
.field label .req { color: var(--red-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(--red); box-shadow: 0 0 0 3px var(--red-50); }
.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(--red-50); border: 1px solid var(--red); border-left-width: 4px; 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: 700; font-size: 1.04rem; }
.faq__q .ic { width: 1.4rem; height: 1.4rem; flex: none; color: var(--red-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(--graphite); color: var(--on-dark-mut); padding-block: 3.4rem 1.6rem; border-top: 3px solid var(--red); }
.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 h4 { color: #fff; font-family: var(--ff-display); font-size: .96rem; margin-bottom: 1rem; }
.footer__links { display: grid; gap: .55rem; }
.footer__links a:hover, .footer__contact a:hover { color: var(--red); }
.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(--red); 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: var(--radius); background: var(--graphite); 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(--red); }
.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(--graphite); border-top: 1px solid var(--line-dark); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; font-family: var(--ff-display); font-weight: 700; font-size: .92rem; color: #fff; }
.callbar a + a { background: var(--red); }
.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(--red); color: #fff; padding: .6rem 1rem; border-radius: var(--radius); z-index: 100; font-family: var(--ff-display); font-weight: 700; transition: top .2s; }
.skip-link:focus { top: .5rem; }
