/* =========================================================================
   Lake Norman Wallpaper Installer
   Design system: greige-stone neutrals + deep sage accent
   Type: Spectral (display) / Hanken Grotesk (UI)
   ========================================================================= */

:root {
  --paper:      #F6F2EB;
  --stone:      #EDE7DC;
  --taupe:      #E0D7C8;
  --ink:        #26221B;
  --muted:      #605648;
  --accent:     #47583D;
  --accent-ink: #3B4A33;
  --accent-deep:#3A4A31;
  --dark:       #1E231C;
  --on-dark:    #EAE8DE;
  --on-dark-muted: #B7B4A6;
  --sage-light: #AFC495;
  --chip:       #D7E0C4;
  --line:       #DCD3C4;
  --line-soft:  #E6DFD2;

  --font-display: 'Spectral', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --gutter: clamp(1.15rem, 4.5vw, 4rem);
  --maxw: 1220px;
  --sec-y: clamp(4rem, 8.5vw, 8.5rem);
  --radius: 3px;
  --shadow: 0 18px 50px -28px rgba(38, 34, 27, 0.45);

  --h1: clamp(2.45rem, 1.55rem + 3.7vw, 4.5rem);
  --h2: clamp(1.85rem, 1.3rem + 2.1vw, 3rem);
  --h3: clamp(1.2rem, 1.02rem + 0.72vw, 1.6rem);
  --lead: clamp(1.06rem, 0.98rem + 0.42vw, 1.32rem);
}

/* ---------- Reset / base ---------- */
*, *::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;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: var(--accent-ink); text-underline-offset: 3px; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}
p { margin: 0 0 1.1rem; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--sec-y); }
.section--tint { background: var(--stone); }
.section--dark { background: var(--dark); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: #fff; padding: 10px 16px;
  border-radius: var(--radius); z-index: 200; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-ink); margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--accent); opacity: .55;
}
.section--dark .eyebrow { color: var(--sage-light); }
.section--dark .eyebrow::before { background: var(--sage-light); opacity: .6; }

.lead { font-size: var(--lead); line-height: 1.6; color: var(--muted); }
.section--dark .lead { color: var(--on-dark-muted); }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

.btn {
  --btn-bg: var(--accent); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  letter-spacing: .01em; line-height: 1;
  padding: 1rem 1.7rem; border-radius: var(--radius);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg); text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(58,74,49,.7); }
.btn:active { transform: translateY(0); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--accent-ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head h2 { font-size: var(--h2); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: clamp(.7rem, 1.4vw, 1.1rem);
  transition: background .35s ease, box-shadow .35s ease, padding .3s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: #fff; }
.brand__mark { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 9px; }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; letter-spacing: -.01em; }
.brand__name span { font-family: var(--font-body); font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; opacity: .82; margin-top: 3px; }

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); list-style: none; margin: 0; padding: 0; }
.nav a {
  color: #fff; text-decoration: none; font-size: .95rem; font-weight: 500;
  letter-spacing: .01em; opacity: .9; position: relative; padding-block: 4px;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px; background: var(--sage-light); transition: right .25s ease; }
.nav a:hover, .nav a.is-current { opacity: 1; }
.nav a:hover::after, .nav a.is-current::after { right: 0; }

.header-cta { display: none; }

/* scrolled / solid state */
.site-header.is-scrolled {
  background: rgba(246, 242, 235, 0.92);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(38,34,27,.55);
}
.site-header.is-scrolled .brand { color: var(--ink); }
.site-header.is-scrolled .nav a { color: var(--ink); opacity: .82; }
.site-header.is-scrolled .nav a:hover, .site-header.is-scrolled .nav a.is-current { opacity: 1; color: var(--accent-ink); }
.site-header.is-scrolled .nav a::after { background: var(--accent); }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }

/* When JS is off, keep a readable solid header from the start */
.no-js .site-header { position: sticky; background: rgba(246,242,235,.96); border-bottom-color: var(--line); }
.no-js .brand, .no-js .nav a { color: var(--ink); }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px; border: 0; background: transparent; cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: background .3s ease; }

/* ---------- Mobile drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 120;
  background: var(--dark); color: var(--on-dark);
  padding: clamp(1.4rem, 6vw, 2.4rem);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.2rem; }
.mobile-nav__close { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; border-radius: var(--radius); font-size: 1.4rem; cursor: pointer; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .3rem; }
.mobile-nav ul a {
  display: block; color: #fff; text-decoration: none;
  font-family: var(--font-display); font-size: clamp(1.6rem, 8vw, 2.2rem);
  padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: 1rem; }
.mobile-nav__foot a[href^="tel"] { font-family: var(--font-display); font-size: 1.5rem; color: var(--sage-light); text-decoration: none; }
.mobile-nav__foot .btn { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(94vh, 900px); display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(17,20,15,.60) 0%, rgba(17,20,15,.14) 15%, rgba(17,20,15,0) 26%),
    linear-gradient(90deg, rgba(17,20,15,.90) 0%, rgba(17,20,15,.78) 42%, rgba(17,20,15,.54) 64%, rgba(17,20,15,.18) 100%),
    linear-gradient(0deg, rgba(17,20,15,.55) 0%, rgba(17,20,15,0) 42%);
}
.hero__inner { padding-block: clamp(7rem, 16vh, 11rem) clamp(3rem, 7vw, 5.5rem); }
.hero__eyebrow { color: #fff; }
.hero__eyebrow::before { background: var(--sage-light); opacity: .9; }
.hero h1 { color: #fff; font-size: var(--h1); font-weight: 600; max-width: 16ch; margin-bottom: 1.1rem; }
.hero h1 em { font-style: italic; font-weight: 500; color: #EDE9DF; }
.hero__lead { color: #F4F2EA; font-size: var(--lead); max-width: 46ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__meta { margin-top: clamp(2.4rem, 5vw, 3.6rem); display: grid; gap: 1.4rem 2rem; grid-template-columns: 1fr; border-top: 1px solid rgba(255,255,255,.22); padding-top: 1.6rem; max-width: 780px; }
.hero__meta div { display: flex; gap: .7rem; align-items: baseline; }
.hero__meta b { font-family: var(--font-display); font-size: 1rem; color: #fff; font-weight: 600; }
.hero__meta span { color: #E7E4DA; font-size: .92rem; line-height: 1.4; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 1; display: inline-flex; flex-direction: column; align-items: center; gap: .5rem; color: #EDE9DF; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; }
.scroll-cue__line { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,0)); position: relative; overflow: hidden; }
.scroll-cue__line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: #fff; animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0% { top: -50%; } 60%,100% { top: 100%; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue__line::after { animation: none; } }

/* ---------- Intro / value ---------- */
.intro__grid { display: grid; gap: clamp(2rem, 5vw, 4.5rem); grid-template-columns: 1fr; align-items: center; }
.intro__media { position: relative; }
.intro__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; }
.intro__media .tag {
  position: absolute; left: -10px; bottom: 22px; background: var(--dark); color: #fff;
  padding: .9rem 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 220px;
}
.intro__media .tag b { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.intro__media .tag span { font-size: .82rem; color: var(--on-dark-muted); }
.intro h2 { font-size: var(--h2); }
.detail-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 0; }
.detail-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.05rem 0; border-top: 1px solid var(--line); }
.detail-list li:last-child { border-bottom: 1px solid var(--line); }
.detail-list .n { font-family: var(--font-display); font-size: .95rem; color: var(--accent-ink); font-weight: 600; padding-top: 2px; }
.detail-list b { font-weight: 600; }
.detail-list p { margin: .15rem 0 0; color: var(--muted); font-size: .98rem; }

/* ---------- Services ---------- */
.services__grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; grid-template-columns: 1fr; }
.svc {
  background: var(--paper); padding: clamp(1.7rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: .65rem; position: relative;
  transition: background .25s ease, transform .25s ease;
}
.svc:hover { background: #fff; }
.svc__n { font-family: var(--font-body); font-size: .75rem; letter-spacing: .2em; color: var(--accent-ink); font-weight: 700; }
.svc__icon { width: 34px; height: 34px; color: var(--accent); }
.svc h3 { font-size: 1.28rem; margin: .2rem 0 0; }
.svc p { color: var(--muted); font-size: .97rem; margin: 0; }
.svc--feature { background: var(--dark); color: var(--on-dark); }
.svc--feature__lead { max-width: 30ch; }
.svc--feature h3 { color: #fff; }
.svc--feature p { color: var(--on-dark-muted); }
.svc--feature .svc__n { color: var(--sage-light); }
.svc--feature .svc__icon { color: var(--sage-light); }

/* ---------- Full-width image band ---------- */
.band { position: relative; min-height: clamp(300px, 42vw, 480px); display: flex; align-items: center; isolation: isolate; }
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(20,24,18,.28), rgba(20,24,18,.05)); }
.band__card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.7rem, 3.4vw, 2.8rem); max-width: 460px; }
.band__card h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); }
.band__card p { color: var(--muted); margin-bottom: 0; }

/* ---------- Why (dark) ---------- */
.why__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
.why__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; }
.why__list { display: grid; gap: 0; }
.why__item { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.35rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.why__item:first-child { border-top: 0; }
.why__ico { width: 30px; height: 30px; color: var(--sage-light); flex: 0 0 auto; margin-top: 2px; }
.why__item h3 { font-size: 1.2rem; margin: 0 0 .25rem; }
.why__item p { margin: 0; color: var(--on-dark-muted); font-size: .97rem; }

/* ---------- Process ---------- */
.process__grid { display: grid; gap: clamp(1.4rem, 3vw, 2rem); grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; padding: 1.8rem 0 0; border-top: 2px solid var(--ink); }
.step__n { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 600; color: #8C7D57; line-height: 1; letter-spacing: -.02em; }
.step h3 { font-size: 1.35rem; margin: .5rem 0 .4rem; }
.step p { color: var(--muted); font-size: .97rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery__masonry { columns: 3 260px; column-gap: 1rem; }
.gallery__item { break-inside: avoid; margin: 0 0 1rem; padding: 0; border: 0; background: none; cursor: pointer; width: 100%; display: block; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery__item img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(30,35,28,.42), rgba(30,35,28,0) 45%);
  opacity: 0; transition: opacity .3s ease;
}
.gallery__item .zoom {
  position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-size: .8rem;
  letter-spacing: .04em; display: inline-flex; align-items: center; gap: .4rem;
  opacity: 0; transform: translateY(6px); transition: opacity .3s ease, transform .3s ease;
}
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.045); }
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; }
.gallery__item:hover .zoom, .gallery__item:focus-visible .zoom { opacity: 1; transform: translateY(0); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 150; display: none; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.lightbox.is-open { display: flex; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(18,21,16,.9); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lightbox__stage { position: relative; z-index: 2; max-width: 1000px; width: 100%; text-align: center; }
.lightbox__stage img { max-height: 78vh; width: auto; max-width: 100%; margin: 0 auto; border-radius: var(--radius); box-shadow: 0 30px 80px -30px rgba(0,0,0,.8); }
.lightbox__caption { color: #EDE9DF; font-size: .92rem; margin-top: 1rem; }
.lightbox__btn { position: absolute; z-index: 3; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(20,24,18,.55); color: #fff; font-size: 1.4rem; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease; }
.lightbox__btn:hover { background: rgba(71,88,61,.85); }
.lightbox__close { top: -6px; right: 0; }
.lightbox__prev { left: -4px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: -4px; top: 50%; transform: translateY(-50%); }

/* ---------- Service area ---------- */
.area__grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; }
.area__pins { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.area__pins span { display: inline-flex; align-items: center; gap: .45rem; background: var(--stone); border: 1px solid var(--line); color: var(--ink); font-size: .9rem; padding: .5rem .9rem; border-radius: 100px; }
.area__pins span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.area__note { background: var(--dark); color: var(--on-dark); border-radius: var(--radius); padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--shadow); }
.area__note h3 { color: #fff; font-size: 1.4rem; }
.area__note p { color: var(--on-dark-muted); margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; text-align: center; color: #fff; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(18,21,16,.72), rgba(18,21,16,.72)); }
.cta-band .container { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.cta-band h2 { color: #fff; font-size: var(--h2); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: #EFEDE5; max-width: 54ch; margin: 0 auto 2rem; font-size: var(--lead); }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; gap: 0; grid-template-columns: 1fr; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact__info { background: var(--dark); color: var(--on-dark); padding: clamp(1.8rem, 4vw, 3rem); }
.contact__info h2 { color: #fff; font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); }
.contact__info .lead { color: var(--on-dark-muted); }
.contact__info .eyebrow { color: var(--sage-light); }
.contact__info .eyebrow::before { background: var(--sage-light); opacity: .6; }
.contact__details { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.2rem; }
.contact__details li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.contact__details .ico { width: 22px; height: 22px; color: var(--sage-light); margin-top: 3px; }
.contact__details a, .contact__details span { color: var(--on-dark); text-decoration: none; overflow-wrap: anywhere; }
.contact__details a:hover { color: var(--sage-light); }
.contact__details small { display: block; color: var(--on-dark-muted); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2px; }

.contact__form { background: var(--paper); padding: clamp(1.8rem, 4vw, 3rem); }
.form__grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
.field { display: grid; align-content: start; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--ink); }
.field label .req { color: var(--accent-ink); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .85rem .95rem; width: 100%; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #9a9184; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(71,88,61,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { margin-top: .3rem; }
.form__note { font-size: .82rem; color: var(--muted); margin: .9rem 0 0; }

.form-success {
  display: none; text-align: center; padding: clamp(2rem, 5vw, 3.5rem) 1rem;
}
.form-success__badge { width: 62px; height: 62px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--chip); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; }
.form-success h3 { font-size: 1.6rem; }
.form-success p { color: var(--muted); margin-bottom: 0; }

/* ---------- Map / location ---------- */
.map__grid { display: grid; gap: 0; grid-template-columns: 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map__info { padding: clamp(1.7rem, 4vw, 2.6rem); background: var(--stone); }
.map__info h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem); }
.map__info address { font-style: normal; color: var(--muted); margin: 1rem 0 1.5rem; line-height: 1.7; }
.map__frame { position: relative; min-height: 320px; background: var(--taupe); }
.map__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; text-align: center; padding: 2rem; color: var(--muted); }
.map__fallback b { font-family: var(--font-display); color: var(--ink); font-size: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer__brand { max-width: 34ch; }
.footer__brand .brand { color: #fff; margin-bottom: 1rem; }
.footer__brand p { color: var(--on-dark-muted); font-size: .95rem; }
.footer__col h3 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-light); margin: 0 0 1.1rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer__col a, .footer__col span { color: var(--on-dark); text-decoration: none; font-size: .96rem; overflow-wrap: anywhere; }
.footer__col a:hover { color: var(--sage-light); }
.footer__bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; }
.footer__bottom p { margin: 0; color: var(--on-dark-muted); font-size: .86rem; }
.footer__bottom a { color: var(--on-dark-muted); font-size: .86rem; }

/* ---------- Reveal animation (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
  .reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }
  .reveal-ready [data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
  .reveal-ready [data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
  .reveal-ready [data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media print {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .site-header, .scroll-cue, .nav-toggle { position: static; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 700px) {
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(15,18,13,.58) 0%, rgba(15,18,13,.46) 22%, rgba(15,18,13,.60) 52%, rgba(15,18,13,.90) 100%);
  }
}
@media (min-width: 620px) {
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .form__grid { gap: 1.1rem 1.3rem; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer__bottom { }
}
@media (min-width: 760px) {
  .intro__grid { grid-template-columns: 0.95fr 1.1fr; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1.15fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .area__grid { grid-template-columns: 1.15fr .85fr; }
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; }
  .map__grid { grid-template-columns: 1fr 1.25fr; }
  .hero__meta { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .process__grid { grid-template-columns: repeat(4, 1fr); }
  .svc--feature { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 1rem clamp(1.5rem, 4vw, 3.5rem); }
  .svc--feature .svc__body { flex: 1 1 320px; }
  .svc--feature .btn { flex: 0 0 auto; }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .header-cta { padding-inline: 1.2rem; }
}
