/* ============================================================
   John R Plumbing LLC — semi-premium revamp
   Palette built up from a trades identity: deep petrol ink +
   refined copper/brass + warm paper. Type-led, photo-light.
   ============================================================ */

:root {
  --ink:        #10222b;   /* deep petrol / near-black navy */
  --ink-2:      #16303c;
  --ink-3:      #1d3d4a;
  --brass:      #cd9350;   /* refined copper/brass accent */
  --brass-deep: #a96f2f;
  --brass-soft: #e2b787;
  --paper:      #f7f2e9;   /* warm off-white */
  --paper-2:    #efe6d6;
  --card:       #fffdf8;
  --line:       #e3d8c4;
  --text:       #223038;
  --muted:      #5c6b70;
  --muted-2:    #7d8a8d;
  --on-ink:     #f3ede1;
  --on-ink-mut: #a9bcc2;

  --nav-h: 76px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -28px rgba(16, 34, 43, .35);
  --shadow-sm: 0 10px 30px -18px rgba(16, 34, 43, .4);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.015em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img, iframe { max-width: 100%; display: block; }

/* ---------- shared layout ---------- */
.section-head { max-width: 720px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); text-align: center; }
.kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 1rem;
}
.kicker--light { color: var(--brass-soft); }
.section-head h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
.section-lead { margin-top: 1.1rem; color: var(--muted); font-size: 1.06rem; }

/* ---------- buttons ---------- */
.btn {
  --pad-y: .78rem; --pad-x: 1.35rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border-radius: 100px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn--lg { --pad-y: 1rem; --pad-x: 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--solid { background: var(--brass); color: #241403; box-shadow: 0 12px 26px -14px rgba(169, 111, 47, .8); }
.btn--solid:hover { background: var(--brass-deep); color: #fff; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--on-ink); transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: var(--on-ink); border-color: rgba(243,237,225,.35); }
.btn--outline-light:hover { background: var(--on-ink); color: var(--ink); transform: translateY(-2px); }

.btn--phone { background: var(--ink); color: var(--on-ink); font-size: .9rem; padding: .62rem 1.1rem; }
.btn--phone:hover { background: var(--ink-3); transform: translateY(-1px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(247, 242, 233, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px -22px rgba(16,34,43,.5); }
.nav__inner {
  max-width: var(--maxw); height: 100%; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex; align-items: center; gap: 1.2rem;
}
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__logo { height: 30px; width: auto; display: block; color: var(--ink); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); letter-spacing: -.01em; }
.brand__sub { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }

.nav__links { display: flex; gap: 1.9rem; }
.nav__links a { font-size: .93rem; font-weight: 500; color: var(--text); position: relative; padding: .3rem 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--brass);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-right: -8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu — hidden by default via display:none (class overrides [hidden]) */
.mobile-menu { display: none; }
.mobile-menu.is-open {
  display: flex; flex-direction: column; gap: .35rem;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 1rem clamp(1rem, 4vw, 2rem) 1.6rem;
  box-shadow: var(--shadow);
}
.mobile-menu a { padding: .85rem .4rem; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: .7rem; border-bottom: 0; }
.mobile-menu .btn--phone { color: var(--on-ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  margin-top: var(--nav-h);
  display: flex; align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(205,147,80,.18), transparent 55%),
    radial-gradient(90% 80% at 0% 110%, rgba(29,61,74,.10), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero__grain { position: absolute; inset: 0; opacity: .5; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .85rem; font-weight: 600; color: var(--muted);
  background: var(--card); border: 1px solid var(--line); border-radius: 100px;
  padding: .45rem .9rem; margin-bottom: 1.6rem; box-shadow: var(--shadow-sm);
}
.eyebrow .stars { color: var(--brass); letter-spacing: .05em; }
.hero__title { font-size: clamp(2.5rem, 6.4vw, 4.6rem); font-weight: 600; }
.hero__title .accent { color: var(--brass-deep); font-style: italic; font-weight: 500; }
.hero__sub { margin-top: 1.4rem; font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted); max-width: 46ch; }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__proof {
  margin-top: 1.7rem; font-size: .88rem; color: var(--muted-2); font-weight: 500;
  display: flex; align-items: center; gap: .5rem;
}
.hero__proof .dot { width: 8px; height: 8px; border-radius: 50%; background: #3fa06b; box-shadow: 0 0 0 4px rgba(63,160,107,.18); flex: none; }

/* credential card */
.hero__card {
  background: var(--ink);
  color: var(--on-ink);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.hero__card::before {
  content: ""; position: absolute; top: -40%; right: -30%; width: 70%; height: 90%;
  background: radial-gradient(circle, rgba(205,147,80,.28), transparent 70%);
}
.cred { position: relative; padding-bottom: 1.3rem; border-bottom: 1px solid rgba(243,237,225,.14); margin-bottom: 1.3rem; }
.cred__num { display: block; font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: #fff; line-height: 1; }
.cred__star { color: var(--brass); font-size: 2rem; margin-left: .1rem; }
.cred__label { display: block; margin-top: .5rem; color: var(--on-ink-mut); font-size: .92rem; }
.cred__list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.cred__list li { display: flex; flex-direction: column; }
.cred__list strong { font-size: 1rem; color: #fff; font-weight: 600; }
.cred__list span { font-size: .84rem; color: var(--on-ink-mut); }
.cred__link { display: inline-block; margin-top: 1.4rem; color: var(--brass-soft); font-weight: 600; font-size: .9rem; }
.cred__link:hover { color: #fff; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.strip { background: var(--ink); color: var(--on-ink); }
.strip__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1rem, 4vw, 2rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center;
}
.strip__item { display: flex; flex-direction: column; gap: .3rem; position: relative; }
.strip__item:not(:last-child)::after { content: ""; position: absolute; right: -.5rem; top: 15%; height: 70%; width: 1px; background: rgba(243,237,225,.14); }
.strip__num { font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 700; color: #fff; }
.strip__lbl { font-size: .8rem; letter-spacing: .04em; color: var(--on-ink-mut); text-transform: uppercase; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.svc {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brass-soft); }
.svc__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--paper-2); color: var(--brass-deep); margin-bottom: 1.2rem; }
.svc__ico svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.35rem; margin-bottom: .55rem; }
.svc p { color: var(--muted); font-size: .96rem; }
.svc__tags { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.1rem; }
.svc__tags li { font-size: .74rem; font-weight: 600; letter-spacing: .02em; color: var(--muted); background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: .28rem .65rem; }

.svc--feature { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.svc--feature h3 { color: #fff; }
.svc--feature p { color: var(--on-ink-mut); }
.svc--feature .svc__ico { background: rgba(205,147,80,.16); color: var(--brass-soft); }
.svc--feature .svc__tags li { color: var(--on-ink-mut); background: rgba(243,237,225,.06); border-color: rgba(243,237,225,.14); }
.svc__badge { position: absolute; top: 1.4rem; right: 1.4rem; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); background: var(--brass); border-radius: 100px; padding: .3rem .6rem; }

.svc-note {
  margin-top: 1.2rem; background: linear-gradient(120deg, var(--paper-2), var(--paper));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.svc-note strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.svc-note p { color: var(--muted); font-size: .96rem; margin-top: .4rem; max-width: 60ch; }

/* ============================================================
   WHY
   ============================================================ */
.why { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.why::before { content: ""; position: absolute; top: -20%; left: -10%; width: 50%; height: 80%;
  background: radial-gradient(circle, rgba(205,147,80,.12), transparent 70%); }
.why__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem);
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.4rem, 6vw, 5rem); align-items: center;
}
.why__copy h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.why__lead { margin-top: 1.2rem; color: var(--on-ink-mut); font-size: 1.06rem; max-width: 42ch; }
.why__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }

.why__list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.why__list li { display: flex; gap: 1.2rem; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(243,237,225,.12); }
.why__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.why__k { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--brass); flex: none; padding-top: .1rem; }
.why__list strong { display: block; color: #fff; font-size: 1.1rem; font-weight: 600; margin-bottom: .3rem; }
.why__list p { color: var(--on-ink-mut); font-size: .95rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.rev {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.rev:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.rev__stars { color: var(--brass); letter-spacing: .12em; margin-bottom: 1rem; font-size: 1.02rem; }
.rev blockquote { font-size: 1rem; color: var(--text); line-height: 1.62; flex: 1; }
.rev blockquote::before { content: "“"; font-family: var(--font-display); color: var(--brass-soft); font-size: 2.2rem; line-height: 0; vertical-align: -.35em; margin-right: .12em; }
.rev figcaption { margin-top: 1.3rem; display: flex; flex-direction: column; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.rev__who { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.rev__meta { font-size: .82rem; color: var(--muted-2); }

.rev-cta { margin-top: 2.4rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.rev-cta__stars { color: var(--brass); font-size: 1.4rem; letter-spacing: .15em; }
.rev-cta p { color: var(--muted); }
.rev-cta strong { font-family: var(--font-display); color: var(--ink); }
.rev-cta .btn { margin-top: .8rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 5rem); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; gap: 1rem; }
.gal-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--ink);
}
.gal-item--tall { grid-row: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.gal-item:hover img { transform: scale(1.05); }
.gal-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.1rem .9rem;
  font-size: .88rem; font-weight: 600; color: #fff; letter-spacing: .01em;
  background: linear-gradient(to top, rgba(11,26,33,.86), rgba(11,26,33,0));
}
.gal-note { text-align: center; margin-top: 1.4rem; font-size: .82rem; color: var(--muted-2); }

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--paper-2); }
.visit__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.visit__lead { margin-top: 1.1rem; color: var(--muted); font-size: 1.04rem; max-width: 44ch; }
.visit__rows { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.3rem; }
.vrow { display: flex; gap: 1rem; align-items: flex-start; }
.vrow__ico { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--card); border: 1px solid var(--line); color: var(--brass-deep); }
.vrow strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; margin-bottom: .15rem; }
.vrow p { color: var(--muted); font-size: .96rem; }
.vrow a { color: var(--brass-deep); font-weight: 600; }
.vrow a:hover { text-decoration: underline; }

.seal { margin-top: 2rem; display: flex; gap: .9rem; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.2rem; }
.seal__badge { flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--brass); display: grid; place-items: center; font-weight: 700; }
.seal strong { display: block; font-size: .95rem; color: var(--ink); }
.seal span { font-size: .8rem; color: var(--muted-2); }

.visit__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--card); }
.visit__map iframe { width: 100%; height: 460px; border: 0; filter: grayscale(.2) contrast(1.02); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; background: var(--ink); color: var(--on-ink); overflow: hidden; }
.final::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 130% at 50% -20%, rgba(205,147,80,.28), transparent 60%); }
.final__grain { position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E"); }
.final__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem); }
.final__inner h2 { color: #fff; font-size: clamp(2.2rem, 5.6vw, 3.6rem); }
.final__sub { margin-top: 1rem; color: var(--on-ink-mut); font-size: 1.1rem; }
.final__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0b1a21; color: var(--on-ink-mut); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(2.4rem, 5vw, 3.4rem) clamp(1rem, 4vw, 2rem);
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: .9rem; }
.footer__logo { height: 26px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand strong { display: block; font-family: var(--font-display); color: #fff; font-size: 1.1rem; }
.footer__brand span { font-size: .82rem; color: var(--on-ink-mut); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__links a { font-size: .92rem; font-weight: 500; color: var(--on-ink-mut); transition: color .2s; }
.footer__links a:hover { color: var(--brass-soft); }
.footer__bar {
  border-top: 1px solid rgba(243,237,225,.08);
  max-width: var(--maxw); margin: 0 auto; padding: 1.2rem clamp(1rem, 4vw, 2rem);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: #6d7e84;
}

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.callbar {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  align-items: center; justify-content: center; gap: .5rem;
  background: var(--brass); color: #241403; font-weight: 700; font-size: 1rem;
  padding: .95rem; border-radius: 100px; box-shadow: 0 14px 30px -10px rgba(0,0,0,.5);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .svc, .rev { transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .svc-grid, .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .why__inner, .visit__inner { grid-template-columns: 1fr; }
  .why__list { margin-top: .5rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__card { order: 2; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .brand__sub { display: none; }
}

@media (max-width: 680px) {
  .svc-grid, .rev-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 44vw; }
  .gal-item--tall { grid-row: span 2; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .strip__item:nth-child(2)::after { display: none; }
  .svc-note { flex-direction: column; align-items: flex-start; }
  .svc-note .btn { width: 100%; }
  .footer__inner, .footer__bar { flex-direction: column; align-items: flex-start; text-align: left; }
  .callbar { display: flex; }
  body { padding-bottom: 76px; } /* clearance for call bar */
  .hero { min-height: auto; padding-top: 2rem; padding-bottom: 3rem; }
  .hero__proof { align-items: flex-start; }
  .visit__map iframe { height: 320px; }
}

@media (max-width: 400px) {
  .hero__cta .btn { width: 100%; }
}
