/* ===================================================================
   Custom Creations Landscape — Design System
   Aesthetic: Premium outdoor living. Deep pine, warm stone, brass.
   =================================================================== */

:root {
  /* Color */
  --pine-900: #10241a;
  --pine-800: #16321f;
  --pine-700: #1f3d2b;
  --pine-600: #2c5139;
  --pine-500: #3c6b4b;

  --stone-50:  #faf8f4;
  --stone-100: #f2eee6;
  --stone-200: #e6dfd2;
  --stone-300: #d3c8b5;
  --stone-500: #8a8172;
  --stone-700: #4e483f;

  --brass-400: #c9a44c;
  --brass-500: #b08d38;
  --brass-600: #96762b;

  --ink:      #16191a;
  --ink-soft: #4a504d;

  /* Type */
  --font-display: "Bricolage Grotesque", "Instrument Sans", sans-serif;
  --font-body: "Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Space */
  --wrap: 1180px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --sec-y: clamp(4.5rem, 9vw, 8rem);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(16,36,26,.08);
  --shadow-md: 0 12px 32px rgba(16,36,26,.13);
  --shadow-lg: 0 28px 60px rgba(16,36,26,.20);
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; }   /* contain the off-canvas nav panel */
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--stone-50);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.032em; }
p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--pine-700); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }

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

/* ===== SHARED TYPE ===== */
.section-eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--pine-500); margin: 0 0 .9rem;
}
.section-eyebrow--gold { color: var(--brass-400); }
.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  max-width: 20ch;
}
.section-head { margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head .section-title { max-width: 24ch; }

.link-arrow {
  font-weight: 600; color: var(--pine-600);
  border-bottom: 1.5px solid var(--brass-400);
  padding-bottom: 2px; transition: color .25s var(--ease);
}
.link-arrow span { display: inline-block; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--pine-800); }
.link-arrow:hover span { transform: translateX(5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; white-space: nowrap; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: .94rem; font-weight: 600;
  letter-spacing: .02em; padding: .8rem 1.5rem; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--brass-400); color: var(--pine-900); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: #d9b45e; box-shadow: var(--shadow-md); }

.btn--green { background: var(--pine-700); color: #fff; }
.btn--green:hover { background: var(--pine-600); box-shadow: var(--shadow-md); }

.btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; backdrop-filter: blur(6px); background: rgba(255,255,255,.06); }
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }

.btn--ghost-dark { border-color: var(--pine-600); color: var(--pine-700); }
.btn--ghost-dark:hover { background: var(--pine-700); color: #fff; }

/* ===== TOPBAR ===== */
.topbar { background: var(--pine-900); color: var(--stone-200); font-size: .84rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 1rem; }
.topbar__msg { letter-spacing: .03em; }
.topbar__phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--brass-400); transition: color .2s var(--ease);
}
.topbar__phone:hover { color: #e0c078; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,244,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 4px 20px rgba(16,36,26,.09); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: auto; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; color: var(--pine-800); letter-spacing: -.01em; }
.brand__sub { font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--stone-500); }

.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__menu > li > a:not(.btn) {
  font-size: .95rem; font-weight: 500; color: var(--ink-soft); white-space: nowrap;
  position: relative; padding: .3rem 0; transition: color .2s var(--ease);
}
.nav__menu > li > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--brass-400); transition: width .28s var(--ease);
}
.nav__menu > li > a:not(.btn):hover { color: var(--pine-800); }
.nav__menu > li > a:not(.btn):hover::after { width: 100%; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: 0; padding: .5rem; cursor: pointer;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--pine-800); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.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); }

/* seven nav items are tight between the breakpoint and a wide desktop */
@media (min-width: 961px) and (max-width: 1180px) {
  .nav__menu { gap: 1.15rem; }
  .nav__menu > li > a:not(.btn) { font-size: .89rem; }
  .nav__cta .btn { padding: .7rem 1rem; font-size: .86rem; }
  .site-header__inner { gap: 1rem; }
}

/* ===== HERO ===== */
.hero { position: relative; min-height: clamp(560px, 82vh, 780px); display: grid; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(16,36,26,.90) 0%, rgba(16,36,26,.66) 42%, rgba(16,36,26,.22) 78%),
    linear-gradient(to top, rgba(16,36,26,.55), transparent 45%);
}
.hero__inner { position: relative; padding-block: clamp(3.5rem, 8vw, 6rem); }
.hero__eyebrow {
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass-400); font-weight: 600; margin: 0 0 1.1rem;
  animation: rise .8s var(--ease) both;
}
.hero__title { font-weight: 800; 
  font-size: clamp(2.4rem, 6.2vw, 4.3rem); color: #fff; margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
  animation: rise .8s .1s var(--ease) both;
}
.hero__lede {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: rgba(255,255,255,.9);
  max-width: 52ch; margin-bottom: 2.2rem;
  animation: rise .8s .2s var(--ease) both;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; animation: rise .8s .3s var(--ease) both; }
.hero__note { margin: 1.4rem 0 0; font-size: .9rem; color: rgba(255,255,255,.72); animation: rise .8s .4s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ===== TRUST BAR ===== */
.trust { background: var(--pine-800); color: #fff; padding: clamp(2rem, 4vw, 2.75rem) 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.trust__item { display: flex; flex-direction: column; gap: .3rem; position: relative; }
.trust__item + .trust__item::before {
  content: ""; position: absolute; left: -.75rem; top: 12%; bottom: 12%;
  width: 1px; background: rgba(255,255,255,.15);
}
.trust__num { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.05rem); font-weight: 600; color: var(--brass-400); }
.trust__label { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.72); }

/* ===== INTRO ===== */
.intro { padding-block: var(--sec-y); }
.intro__inner { max-width: 760px; }
.intro__text { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--ink-soft); margin-block: 1.5rem 1.75rem; }

/* ===== SERVICES ===== */
.services { padding-block: var(--sec-y); background: var(--stone-100); }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.scard {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.scard__media { aspect-ratio: 16/10; overflow: hidden; background: var(--stone-200); }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.scard:hover .scard__media img { transform: scale(1.06); }
.scard__body { padding: 1.5rem 1.6rem 1.75rem; }
.scard__title { font-size: 1.32rem; margin-bottom: .5rem; color: var(--pine-800); }
.scard__text { font-size: .96rem; color: var(--ink-soft); margin: 0; }

/* ===== FEATURE SPLIT ===== */
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--pine-700); color: #fff; }
.feature__media { min-height: 420px; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body { padding: clamp(2.75rem, 6vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.feature__body .section-title { color: #fff; margin-bottom: 1.1rem; }
.feature__body p { color: rgba(255,255,255,.82); max-width: 46ch; }
.checks { margin: .5rem 0 2rem; display: grid; gap: .7rem; }
.checks li { position: relative; padding-left: 1.9rem; color: rgba(255,255,255,.9); font-size: .98rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .48em; width: 11px; height: 6px;
  border-left: 2px solid var(--brass-400); border-bottom: 2px solid var(--brass-400);
  transform: rotate(-45deg);
}
.feature__body .btn { align-self: flex-start; }

/* ===== GALLERY PREVIEW ===== */
.gallery-pre { padding-block: var(--sec-y); }
.gallery-pre__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: .85rem; }
.gallery-pre__grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius);
  filter: saturate(1.02); transition: transform .5s var(--ease), filter .4s var(--ease);
}
.gallery-pre__grid img:hover { transform: scale(1.02); filter: saturate(1.12); }
.gallery-pre__cta { margin-top: 2.5rem; text-align: center; }

/* ===== FINAL CTA ===== */
.cta {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background:
    linear-gradient(rgba(16,36,26,.86), rgba(16,36,26,.92)),
    url("../img/waterfeat-wide.jpg") center/cover fixed;
  color: #fff; text-align: center;
}
.cta__inner { max-width: 720px; margin-inline: auto; }
.cta__title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 1rem; }
.cta__text { color: rgba(255,255,255,.82); margin-bottom: 2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ===== FOOTER ===== */
.site-footer { background: var(--pine-900); color: rgba(255,255,255,.72); padding-top: clamp(3.25rem, 6vw, 4.5rem); font-size: .95rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 3rem; }
.foot-brand .brand__name { color: #fff; display: block; margin-bottom: .8rem; font-size: 1.2rem; }
.foot-brand p { max-width: 34ch; }
.foot-col h3 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-400); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }
.foot-col li { margin-bottom: .55rem; }
.foot-col a { transition: color .2s var(--ease); }
.foot-col a:hover { color: #fff; }
.foot-contact { display: flex; flex-direction: column; align-items: flex-start; gap: .4rem; }
.foot-phone { font-family: var(--font-display); font-size: 1.4rem; color: #fff; font-weight: 600; }
.foot-contact p { margin: .3rem 0 1rem; }
.site-footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.5rem; font-size: .85rem;
}
.site-footer__bottom p { margin: 0; }

/* ===== STICKY MOBILE CALL ===== */
.mobile-call {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  align-items: center; justify-content: center; gap: .55rem;
  background: var(--brass-400); color: var(--pine-900);
  font-weight: 700; font-size: 1.02rem; padding: 1rem;
  box-shadow: 0 -4px 20px rgba(16,36,26,.22);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .feature { grid-template-columns: 1fr; }
  .feature__media { min-height: 300px; max-height: 380px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .trust__item:nth-child(3)::before { display: none; }
}

@media (max-width: 960px) {
  .topbar__msg { display: none; }
  .topbar__inner { justify-content: center; }

  /* must outrank the panel (120) so the X stays visible and tappable */
  .nav__toggle { display: flex; position: relative; z-index: 130; }

  /* backdrop-filter makes an element a containing block for fixed
     descendants, which would trap the nav panel inside the header box.
     Drop it here and use a solid background instead. */
  .site-header { backdrop-filter: none; background: var(--stone-50); }

  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); z-index: 120;
    background: var(--stone-50); flex-direction: column; align-items: flex-start;
    gap: .35rem; padding: 6rem 2rem 2rem; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .38s var(--ease);
    overflow-y: auto; overscroll-behavior: contain;
  }
  .nav__menu.is-open { transform: translateX(0); }

  /* Layer order while the menu is open:
     sticky call bar (200) < scrim (205) < header + panel (210).
     The header creates its own stacking context, so the panel's
     z-index only sorts inside it — the header is what must outrank
     the scrim. */
  .nav-scrim {
    position: fixed; inset: 0; z-index: 205;
    background: rgba(16,36,26,.55);
    opacity: 0; pointer-events: none;
    transition: opacity .38s var(--ease);
  }
  body.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }
  body.nav-open .site-header { z-index: 210; }
  .nav__menu > li { width: 100%; }
  .nav__menu > li > a:not(.btn) {
    display: block; width: 100%; padding: .85rem 0; font-size: 1.08rem;
    border-bottom: 1px solid var(--stone-200);
  }
  .nav__cta { margin-top: 1.25rem; }
  .nav__cta .btn { width: 100%; }

  .cta { background-attachment: scroll; }
}

@media (max-width: 640px) {
  body { padding-bottom: 60px; }  /* room for sticky call bar */
  .mobile-call { display: flex; }
  .hero { min-height: 76vh; }
  .hero__actions .btn { width: 100%; }
  .cta__actions .btn { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   INTERIOR PAGES
   =================================================================== */

/* ===== PAGE HERO ===== */
.phero { position: relative; min-height: clamp(340px, 46vh, 460px); display: grid; align-items: center; overflow: hidden; }
.phero--short { min-height: clamp(300px, 38vh, 400px); }
.phero__media { position: absolute; inset: 0; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; }
.phero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,36,26,.90) 0%, rgba(16,36,26,.68) 48%, rgba(16,36,26,.34) 100%);
}
.phero__inner { position: relative; padding-block: clamp(2.5rem, 6vw, 4rem); }
.phero__title { font-size: clamp(2.1rem, 5.2vw, 3.4rem); color: #fff; margin-bottom: .9rem; animation: rise .7s var(--ease) both; }
.phero__lede { color: rgba(255,255,255,.88); max-width: 54ch; margin: 0; font-size: clamp(1rem, 1.5vw, 1.14rem); animation: rise .7s .1s var(--ease) both; }

.crumbs { font-size: .84rem; color: rgba(255,255,255,.66); margin-bottom: 1rem; letter-spacing: .04em; }
.crumbs a { color: var(--brass-400); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span[aria-hidden] { margin-inline: .45rem; }

/* ===== SERVICE DETAIL BLOCKS ===== */
.svc { padding-block: clamp(3rem, 6vw, 5rem); }
.svc--alt { background: var(--stone-100); }
.svc__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.svc:nth-of-type(even) .svc__media { order: 2; }
.svc__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.svc__title { font-size: clamp(1.6rem, 3.2vw, 2.3rem); color: var(--pine-800); margin-bottom: .9rem; }
.svc__body p { color: var(--ink-soft); }

.checks--dark li { color: var(--ink-soft); }
.checks--dark li::before { border-color: var(--pine-500); }

/* ===== SEASONAL ===== */
.seasonal { padding-block: var(--sec-y); background: var(--pine-800); color: #fff; }
.seasonal .section-title { color: #fff; }
.seasonal__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.seasonal__card { border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 1.75rem 1.6rem; background: rgba(255,255,255,.03); }
.seasonal__card h3 { font-size: 1.24rem; color: var(--brass-400); margin-bottom: .5rem; }
.seasonal__card p { color: rgba(255,255,255,.78); margin: 0; font-size: .96rem; }
.seasonal__rate { margin: 2rem 0 0; color: rgba(255,255,255,.82); font-size: 1.02rem; }
.seasonal__rate strong { color: var(--brass-400); }

/* ===== PROCESS ===== */
.process { padding-block: var(--sec-y); background: var(--stone-100); }
.process__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.5rem, 3vw, 2.25rem); counter-reset: step; list-style: none; padding: 0; margin: 0; }
.process__step { position: relative; padding-top: .5rem; }
.process__num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--pine-700); color: var(--brass-400);
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 1rem;
}
.process__step h3 { font-size: 1.24rem; color: var(--pine-800); margin-bottom: .45rem; }
.process__step p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

.stats { background: var(--pine-800); color: #fff; padding: clamp(2rem, 4vw, 2.75rem) 0; }

/* ===== GALLERY PAGE ===== */
.gal { padding-block: var(--sec-y); }
.gal__filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.25rem; }
.gal__filter {
  font-family: var(--font-body); font-size: .89rem; font-weight: 500;
  padding: .55rem 1.15rem; border-radius: 100px; cursor: pointer;
  border: 1.5px solid var(--stone-300); background: transparent; color: var(--ink-soft);
  transition: all .25s var(--ease);
}
.gal__filter:hover { border-color: var(--pine-500); color: var(--pine-700); }
.gal__filter.is-active { background: var(--pine-700); border-color: var(--pine-700); color: #fff; }

.gal__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gal__item { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; background: var(--stone-200); }
.gal__item.is-hidden { display: none; }
.gal__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .55s var(--ease); }
.gal__item:hover img { transform: scale(1.06); }
.gal__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1rem .85rem;
  color: #fff; font-size: .92rem; font-weight: 500;
  background: linear-gradient(transparent, rgba(16,36,26,.85));
  opacity: 0; transform: translateY(8px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gal__item:hover figcaption, .gal__item:focus-within figcaption { opacity: 1; transform: none; }
.gal__note { margin-top: 2.5rem; text-align: center; color: var(--stone-500); font-size: .95rem; }

/* ===== LIGHTBOX ===== */
.lb {
  position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
  background: rgba(10,20,14,.94); padding: 4vmin;
  animation: lbIn .25s var(--ease);
}
.lb[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb__img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lb__caption { position: absolute; bottom: 3vmin; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.86); font-size: .95rem; margin: 0; }
.lb__close, .lb__nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.lb__close:hover, .lb__nav:hover { background: rgba(255,255,255,.24); }
.lb__close { top: 3vmin; right: 3vmin; width: 46px; height: 46px; font-size: 1.9rem; line-height: 1; }
.lb__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2.2rem; line-height: 1; }
.lb__nav--prev { left: 3vmin; }
.lb__nav--next { right: 3vmin; }

/* ===== CONTACT PAGE ===== */
.contact { padding-block: var(--sec-y); }
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }

.contact__phoneHead { font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--pine-800); margin-bottom: .6rem; }
.contact__phone {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--pine-700);
  border-bottom: 2px solid var(--brass-400); padding-bottom: .1em;
  transition: color .2s var(--ease);
}
.contact__phone:hover { color: var(--brass-600); }
.contact__phoneNote { margin-top: 1rem; color: var(--ink-soft); font-size: .96rem; }
.contact__block { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--stone-200); }
.contact__block h3 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--pine-500); font-family: var(--font-body); font-weight: 600; margin-bottom: .6rem; }
.contact__block p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.contact__block a { color: var(--pine-700); border-bottom: 1px solid var(--stone-300); }
.contact__block a:hover { border-color: var(--brass-400); }

.contact__formWrap { background: var(--stone-100); border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 2.75rem); }
.contact__formHead { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--pine-800); margin-bottom: .4rem; }
.contact__formSub { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1.75rem; }

/* ===== QUOTE FORM ===== */
.qform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.qform__field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.qform__field label { font-size: .88rem; font-weight: 600; color: var(--stone-700); margin-bottom: .4rem; }
.req { color: var(--brass-600); }
.qform__field input, .qform__field select, .qform__field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--stone-300); border-radius: var(--radius);
  background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.qform__field textarea { resize: vertical; min-height: 120px; }
.qform__field input:focus, .qform__field select:focus, .qform__field textarea:focus {
  outline: none; border-color: var(--pine-500); box-shadow: 0 0 0 3px rgba(60,107,75,.13);
}
.qform__field input.is-invalid, .qform__field select.is-invalid { border-color: #b4472f; }
.qform__err { font-size: .82rem; color: #b4472f; margin-top: .35rem; min-height: 1em; }
.qform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.qform__submit { width: 100%; margin-top: .5rem; }
.qform__fine { margin: 1rem 0 0; font-size: .88rem; color: var(--stone-500); text-align: center; }
.qform__fine a { color: var(--pine-700); font-weight: 600; }
.qform__status { margin-top: 1rem; padding: 0; font-size: .95rem; border-radius: var(--radius); }
.qform__status.is-ok { padding: .9rem 1rem; background: #e4efe4; color: #1f5130; border: 1px solid #b9d6bf; }
.qform__status.is-err { padding: .9rem 1rem; background: #fbeae6; color: #8c3722; border: 1px solid #eec4b8; }

/* ===== INTERIOR RESPONSIVE ===== */
@media (max-width: 900px) {
  .svc__inner { grid-template-columns: 1fr; }
  .svc:nth-of-type(even) .svc__media { order: 0; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .qform__row { grid-template-columns: 1fr; gap: 0; }
  .lb__nav { width: 42px; height: 42px; font-size: 1.7rem; }
  .lb__close { width: 40px; height: 40px; font-size: 1.6rem; }
  .gal__grid { grid-template-columns: 1fr; }
}

/* two-up services grid (wildfire hub) */
.services__grid--two { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
