/* ==========================================================================
   Orion Taxidermy and Safari Studio — main stylesheet
   VISUAL_RECON of the source: mossy-rock photographic textures, black
   torn-brush section transitions, transparent animal cutouts, Krona One nav,
   Be Vietnam headings, DM Serif scripture/quotes. Tokens in tokens.css.
   Texture/torn/cutout assets in assets/img/texture + assets/img/hero.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 1.5rem; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-on-dark);
  background: var(--c-black);
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: var(--lh-heading); margin: 0 0 .5em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--c-green); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); }
.center { text-align: center; }
.center-cta { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.nf-call { margin-top: 1.5rem; }
.eyebrow { font-family: var(--font-display); font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--c-green); margin-bottom: .75rem; }
.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: -9999px; top: 0; background: var(--c-green); color: #000; padding: .6rem 1rem; z-index: 200; font-family: var(--font-heading); font-weight: 700; }
.skip-link:focus { left: 8px; top: 8px; }

/* --- Texture + torn-edge helpers (the source's real decorative system) --- */
/* image-set gives AVIF where supported, WebP everywhere; the plain url line is the fallback. */
/* The torn graphic IS the boundary. It is owned by the darker (tearing) section
   and positioned OUTSIDE it (translateY ±100%), so the brush's solid region is a
   seamless continuation of that section (no bar) and only the ragged edge dips
   into the next section (transparent → next shows through, no seam).
   The torn PNG is used as a MASK; --tear-color fills it to the section's colour. */
.tears-down, .tears-up { position: relative; }
.tears-down::after, .tears-up::before {
  content: ""; position: absolute; left: 0; right: 0; height: var(--tear-h, clamp(30px, 4vw, 56px));
  z-index: 6; pointer-events: none;
  background: var(--tear-color, #0a0a0a);
  -webkit-mask: url("/assets/img/texture/torn-a.webp") repeat-x center / 100% 100%;
  mask: url("/assets/img/texture/torn-a.webp") repeat-x center / 100% 100%;
}
/* torn-a is solid at its BOTTOM, ragged at its TOP.
   tears-down: flip so the solid edge is at TOP (seamless join to the section) and
   the ragged edge tears DOWN into the next section. tears-up: natural orientation. */
.tears-down::after { bottom: 0; transform: translateY(100%) scaleY(-1); }
.tears-up::before  { top: 0; transform: translateY(-100%); }
.tear-dark-moss { --tear-color: #0c1206; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-button);
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
  padding: .8rem 1.5rem;
  background: var(--c-green);
  color: var(--c-button-ink);
  border: 2px solid var(--c-green);
  transition: transform var(--dur-fast) var(--ease-standard), filter var(--dur-fast) var(--ease-standard);
}
.btn:hover { filter: brightness(.9); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: #1a1a1a; filter: none; }
.btn-dark { background: #111; color: #fff; border-color: #111; }
.btn-dark:hover { background: #000; }

.tel { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; white-space: nowrap; }
.tel:hover { border-bottom-color: currentColor; }

/* --- Header / nav (transparent, sits on the first section's texture, non-sticky like source) --- */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 30; background: transparent; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1rem; }
.logo img { width: auto; height: 64px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.55)); }
.site-nav ul { list-style: none; display: flex; gap: clamp(1rem, 2.2vw, 2rem); margin: 0; padding: 0; }
.site-nav ul a {
  font-family: var(--font-display);
  font-size: var(--fs-nav);
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.site-nav ul a:hover, .site-nav ul a[aria-current="page"] { color: var(--c-green); border-bottom-color: var(--c-green); }
/* drawer chrome — only shown in the mobile tray */
.nav-panel-head, .nav-panel-foot, .nav-scrim { display: none; }

/* Subtle dark backing guarantees the white bars stay visible over the mossy
   camo texture (thin white lines otherwise disappear on lighter patches). */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: rgba(10,14,8,.5); border: 1px solid rgba(255,255,255,.18); border-radius: 6px; cursor: pointer; }
.nav-toggle span { height: 2.5px; width: 100%; background: #fff; border-radius: 2px; box-shadow: 0 1px 2px rgba(0,0,0,.7); transition: transform var(--dur-base), opacity var(--dur-base); }
.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); }

/* --- Hero (moss/rock texture behind header + hero; all-white headline) --- */
.hero {
  position: relative; isolation: isolate; overflow: visible;
  background-color: #0e1508; background-size: cover; background-position: center;
  background-image: url("/assets/img/texture/moss-hero.webp");
  background-image: image-set(url("/assets/img/texture/moss-hero.avif") type("image/avif"), url("/assets/img/texture/moss-hero.webp") type("image/webp"));
  padding-block: clamp(6rem, 10vw, 8.5rem) clamp(1.5rem, 3vw, 2.5rem);
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,11,5,.7), rgba(7,11,5,.46) 45%, rgba(7,11,5,.64)); }
/* hero→about rip lives INSIDE the hero at z-index 2 — above the moss, BELOW the
   photos (z5/6) — so the ragged edge shows on the moss but never clips the photos.
   Natural orientation: ragged top eats up into the moss, solid bottom joins the black below. */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: clamp(30px, 4vw, 56px);
  z-index: 2; pointer-events: none; background: #0a0a0a;
  -webkit-mask: url("/assets/img/texture/torn-a.webp") repeat-x center / 100% 100%;
  mask: url("/assets/img/texture/torn-a.webp") repeat-x center / 100% 100%;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
/* headline: smaller + tighter than a display hero, matching the source's 5-line wrap */
.hero h1 { font-size: clamp(1.9rem, 3.3vw, 2.75rem); line-height: 1.04; letter-spacing: -0.01em; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.55); max-width: 7.4em; }
.hero-loc { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; color: #fff; font-size: .95rem; margin-bottom: 1.25rem; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }
/* larger, near-equal, overlapping photos that spill BELOW the moss into the black */
.hero-photos { position: relative; height: clamp(400px, 42vw, 580px); margin-bottom: clamp(-5.5rem, -7vw, -3rem); }
.hero-photo { position: absolute; border-radius: 12px; overflow: hidden; box-shadow: 0 18px 46px rgba(0,0,0,.6); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo > picture, .hero-slide-layer { position: absolute; inset: 0; }
.hero-slide-layer { opacity: 0; transition: opacity 1000ms var(--ease-standard); will-change: opacity; }
/* near-equal size with a clear gap between them; both spill below the moss into black */
.hero-photo-a { left: 0; top: 9%; width: 47%; height: 91%; z-index: 5; }
.hero-photo-b { right: 0; top: 0; width: 47%; height: 100%; z-index: 6; }

/* --- About (transparent axis cutout floating on black) --- */
.about { background: var(--c-black); padding-block: var(--section-y); }
.about-grid { display: grid; grid-template-columns: minmax(0, 42%) 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.axis-cutout img { width: 100%; height: auto; filter: drop-shadow(0 22px 34px rgba(0,0,0,.7)); }
.about-copy h2 { font-size: var(--fs-h2); color: var(--c-green); text-transform: uppercase; }
.about-copy .eyebrow { color: var(--c-green); }

/* --- Teasers --- */
.teasers { background: var(--c-black); padding-block: 0 var(--section-y); }
.teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); text-align: center; align-items: stretch; }
.teaser { display: flex; flex-direction: column; }
.teaser h2 { font-size: var(--fs-h3); color: var(--c-green); text-transform: uppercase; }
.teaser p { color: var(--text-on-dark-muted); max-width: 46ch; margin-inline: auto; }
.teaser .btn { margin-top: auto; align-self: center; }   /* pin both buttons to a shared bottom baseline */

/* --- Verse band (moss texture + torn top & bottom edges) --- */
.verse {
  position: relative; isolation: isolate; text-align: center;
  padding-block: clamp(6rem, 11vw, 9.5rem);
  background-color: #0e1508; background-size: cover; background-position: center;
  background-image: linear-gradient(rgba(8,12,5,.58), rgba(8,12,5,.58)), url("/assets/img/texture/moss-verse.webp");
  background-image: linear-gradient(rgba(8,12,5,.58), rgba(8,12,5,.58)), image-set(url("/assets/img/texture/moss-verse.avif") type("image/avif"), url("/assets/img/texture/moss-verse.webp") type("image/webp"));
}
.verse blockquote { margin: 0; max-width: 34em; margin-inline: auto; }
.verse blockquote p { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.45rem, 2.6vw, 2.05rem); line-height: 1.4; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.verse cite { font-family: var(--font-heading); font-weight: 700; font-style: normal; font-size: .95rem; letter-spacing: .05em; color: rgba(255,255,255,.9); }

/* --- Testimonials --- */
.testimonials { background: var(--c-black); padding-block: var(--section-y); text-align: center; }
.testimonials h2 { font-size: var(--fs-h2); color: var(--c-green); text-transform: uppercase; }
.carousel { position: relative; max-width: 760px; margin: 2rem auto 0; }
.carousel-track { position: relative; min-height: 8rem; }
.slide { margin: 0; display: none; }
.slide.is-active { display: block; animation: fade var(--dur-slow) var(--ease-out); }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.slide blockquote { margin: 0 0 1rem; }
.slide blockquote p { font-family: var(--font-serif); font-style: italic; font-size: var(--fs-quote); line-height: var(--lh-quote); color: #fff; }
.slide figcaption { font-family: var(--font-display); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-green); }
.carousel-arrow { position: absolute; top: 40%; background: none; border: 0; color: #fff; font-size: 2.5rem; line-height: 1; cursor: pointer; padding: .25rem .5rem; opacity: .7; transition: opacity var(--dur-fast); }
.carousel-arrow:hover { opacity: 1; color: var(--c-green); }
.carousel-arrow.prev { left: -1rem; } .carousel-arrow.next { right: -1rem; }
.carousel-dots { display: flex; gap: .5rem; justify-content: center; margin-top: 1.25rem; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.3); cursor: pointer; }
.carousel-dots button[aria-selected="true"] { background: var(--c-green); }
.reviews-link { margin-top: 1.5rem; }
.reviews-link a { color: var(--c-green); text-decoration: none; font-family: var(--font-heading); font-weight: 600; }
.reviews-link a:hover { text-decoration: underline; }

/* --- Contact (solid olive with torn top & bottom; outlined transparent fields) --- */
.contact {
  position: relative; isolation: isolate;
  background-color: #6f9a3c;
  padding-block: clamp(4.5rem, 9vw, 6.5rem);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.contact-copy h2 { font-size: var(--fs-h2); color: #14210a; text-transform: uppercase; }
.contact-copy { color: #14210a; }
.contact-copy .nap .tel { font-size: 1.35rem; font-weight: 600; font-family: var(--font-heading); }
.contact-copy .hours { margin-top: 1rem; }
.contact-form { display: grid; gap: 1rem; }
.field { display: grid; gap: .3rem; }
.field input, .field textarea {
  font: inherit; padding: .8rem 1rem; width: 100%; border-radius: 0;
  background: transparent; border: 1px solid rgba(18,28,8,.55); color: #14210a;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(18,28,8,.72); }
.field input:focus, .field textarea:focus { outline: 2px solid #14210a; outline-offset: 1px; border-color: #14210a; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #7a0012; outline-color: #7a0012; }
.field .err { color: #4a0010; font-size: .8rem; font-weight: 600; }
.form-status { min-height: 1.2em; font-weight: 600; color: #14210a; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- Footer (dark moss texture) --- */
.site-footer {
  position: relative; isolation: isolate; color: var(--text-on-dark);
  padding-block: clamp(3rem, 6vw, 4.5rem) 0; margin-top: 0;
  background-color: #0c1206; background-size: cover; background-position: center;
  background-image: linear-gradient(rgba(6,9,4,.5), rgba(6,9,4,.7)), url("/assets/img/texture/moss-footer.webp");
  background-image: linear-gradient(rgba(6,9,4,.5), rgba(6,9,4,.7)), image-set(url("/assets/img/texture/moss-footer.avif") type("image/avif"), url("/assets/img/texture/moss-footer.webp") type("image/webp"));
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 2rem; align-items: start; }
.footer-brand img { height: 70px; width: auto; margin-bottom: 1rem; }
.footer-brand .social { display: inline-flex; color: #fff; }
.footer-brand .social:hover { color: var(--c-green); }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.footer-nav a { font-family: var(--font-display); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: #fff; text-decoration: none; }
.footer-nav a:hover { color: var(--c-green); }
.footer-contact h3 { font-size: 1.1rem; color: var(--c-green); text-transform: uppercase; }
.footer-contact p { margin: 0 0 .5rem; font-size: .95rem; }
.footer-credit { margin-top: 2.5rem; padding-block: 1rem; border-top: 1px solid rgba(255,255,255,.15); background: rgba(0,0,0,.4); }
.footer-credit p { font-size: .8rem; margin: 0; text-align: center; color: rgba(255,255,255,.8); }
.footer-credit a { color: var(--c-green); text-decoration: none; }

/* ── VGM design credit — D01·V2 Brand Star Reveal (context/vgm-design-credit.md) ── */
.vgm-credit {
  --vgm-footer-color: #c4c9bd; --vgm-weight-hover: 800; --vgm-row-gap: 0.35em;
  --vgm-ease: cubic-bezier(0.23, 1, 0.32, 1);
  font-size: inherit; font-family: inherit; font-weight: inherit; letter-spacing: inherit; text-transform: inherit;
  color: var(--vgm-footer-color); margin: 0; display: flex; align-items: baseline; gap: 0.4em; flex-wrap: wrap;
}
.vgm-bsr { position: relative; display: inline-block; cursor: default; }
.vgm-bsr-brand, .vgm-bsr-rated, .vgm-bsr-label { font: inherit; letter-spacing: inherit; text-transform: inherit; color: var(--vgm-footer-color); }
.vgm-bsr-brand, .vgm-bsr-label { white-space: nowrap; }
.vgm-bsr-brand { text-decoration: none; line-height: 1.1; transition: font-weight 0.22s var(--vgm-ease), letter-spacing 0.22s var(--vgm-ease); }
.vgm-bsr-brand:focus-visible { outline: 2px solid #FBBC04; outline-offset: 3px; border-radius: 2px; }
.vgm-bsr-top { position: absolute; bottom: 100%; left: 0; margin-bottom: var(--vgm-row-gap); line-height: 1; display: flex; align-items: center; gap: 0.45em; white-space: nowrap; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity 0.32s var(--vgm-ease), transform 0.32s var(--vgm-ease); }
.vgm-bsr-star { font-size: 1em; line-height: 1; display: inline-block; font-family: "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", sans-serif; color: #FBBC04 !important; opacity: 0; transform: translateY(-8px) scale(0.6); transition: opacity 0.28s var(--vgm-ease), transform 0.28s var(--vgm-ease), filter 0.28s; }
.vgm-bsr-bottom { position: absolute; top: 100%; left: 0; margin-top: var(--vgm-row-gap); line-height: 1; display: flex; align-items: center; gap: 0.4em; white-space: nowrap; opacity: 0; transform: translateY(6px); pointer-events: none; transition: opacity 0.35s var(--vgm-ease), transform 0.35s var(--vgm-ease); }
.vgm-bsr-dot { width: 0.7em; height: 0.7em; border-radius: 50%; display: inline-block; flex-shrink: 0; background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%) !important; }
.vgm-bsr:focus-within .vgm-bsr-brand, .vgm-bsr.is-active .vgm-bsr-brand { font-weight: var(--vgm-weight-hover); letter-spacing: var(--vgm-hover-track, inherit); }
.vgm-bsr:focus-within .vgm-bsr-top, .vgm-bsr.is-active .vgm-bsr-top, .vgm-bsr:focus-within .vgm-bsr-bottom, .vgm-bsr.is-active .vgm-bsr-bottom { opacity: 1; transform: translateY(0); }
.vgm-bsr:focus-within .vgm-bsr-bottom, .vgm-bsr.is-active .vgm-bsr-bottom { transition-delay: 0.38s; }
.vgm-bsr:focus-within .vgm-bsr-star, .vgm-bsr.is-active .vgm-bsr-star { opacity: 1; transform: translateY(0) scale(1); filter: drop-shadow(0 0 3px rgba(251, 188, 4, 0.6)); transition-delay: calc(var(--i) * 70ms); }
@media (hover: hover) {
  .vgm-bsr:hover .vgm-bsr-brand { font-weight: var(--vgm-weight-hover); letter-spacing: var(--vgm-hover-track, inherit); }
  .vgm-bsr:hover .vgm-bsr-top, .vgm-bsr:hover .vgm-bsr-bottom { opacity: 1; transform: translateY(0); }
  .vgm-bsr:hover .vgm-bsr-bottom { transition-delay: 0.38s; }
  .vgm-bsr:hover .vgm-bsr-star { opacity: 1; transform: translateY(0) scale(1); filter: drop-shadow(0 0 3px rgba(251, 188, 4, 0.6)); transition-delay: calc(var(--i) * 70ms); }
}
@media (max-width: 480px) { .vgm-bsr-top, .vgm-bsr-bottom, .vgm-bsr-label { white-space: normal; } .vgm-bsr-top, .vgm-bsr-bottom { max-width: 14em; } }
.vgm-credit[data-vgm-align="right"] .vgm-bsr-top, .vgm-credit[data-vgm-align="right"] .vgm-bsr-bottom { left: auto; right: 0; }
@media (prefers-reduced-motion: reduce) { .vgm-bsr-top, .vgm-bsr-bottom, .vgm-bsr-star { transform: none !important; } .vgm-bsr-star, .vgm-bsr-bottom { transition-delay: 0s !important; } .vgm-bsr-brand { transition: none; } }
@media (forced-colors: active) { .vgm-bsr-star { color: CanvasText !important; } .vgm-bsr-dot { background: CanvasText !important; forced-color-adjust: none; } }
/* install overrides: dark moss footer, centered, with room for the reveal rows
   (§10: the 'Rated ★★★★★' row floats up, so the copyright needs clearance above the credit). */
.footer-credit { padding-block: 2.4rem 3rem; }
.footer-credit .footer-copyright { margin: 0 0 2.6rem; }
.footer-credit .vgm-credit { justify-content: center; margin: 0; }
.footer-credit .vgm-credit, .footer-credit .vgm-bsr-brand, .footer-credit .vgm-bsr-rated, .footer-credit .vgm-bsr-label { color: var(--vgm-footer-color); }

/* --- Page head (gallery / pricing / 404 — moss texture + torn bottom) --- */
.page-head {
  position: relative; isolation: isolate; text-align: center; color: #fff;
  padding-block: clamp(6.5rem, 11vw, 8.5rem) clamp(2.5rem, 6vw, 4rem);
  background-color: #0e1508; background-size: cover; background-position: center;
  background-image: linear-gradient(rgba(8,12,5,.58), rgba(8,12,5,.6)), url("/assets/img/texture/moss-verse.webp");
  background-image: linear-gradient(rgba(8,12,5,.58), rgba(8,12,5,.6)), image-set(url("/assets/img/texture/moss-verse.avif") type("image/avif"), url("/assets/img/texture/moss-verse.webp") type("image/webp"));
}
.page-head h1 { font-size: var(--fs-hero); text-transform: uppercase; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.page-head p { color: rgba(255,255,255,.92); max-width: 60ch; margin-inline: auto; }
.cat-filter { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; justify-content: center; margin-top: 1.25rem; }
.cat-filter a { font-family: var(--font-display); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: #fff; text-decoration: none; border-bottom: 2px solid transparent; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.cat-filter a:hover { border-bottom-color: var(--c-green); color: var(--c-green); }

.page-body { position: relative; background: var(--c-black); }

/* --- Gallery masonry --- */
.gallery-body { padding-block: var(--section-y); }
.gallery-cat { margin-bottom: clamp(2.5rem, 6vw, 4rem); scroll-margin-top: 90px; }
.gallery-cat h2 { font-size: var(--fs-h3); color: var(--c-green); text-transform: uppercase; text-align: center; margin-bottom: 1.5rem; }
.masonry { columns: 4 220px; column-gap: var(--grid-gap); }
.masonry .tile { break-inside: avoid; margin: 0 0 var(--grid-gap); padding: 0; border: 0; background: none; cursor: zoom-in; width: 100%; display: block; }
.tile-pic img { width: 100%; height: auto; transition: transform var(--dur-base) var(--ease-out), filter var(--dur-base); }
.tile:hover .tile-pic img, .tile:focus-visible .tile-pic img { transform: scale(1.03); filter: brightness(1.08); }

/* --- Lightbox --- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lb-img { max-width: 92vw; max-height: 88vh; width: auto; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: none; border: 0; color: #fff; cursor: pointer; font-size: 2.5rem; padding: .5rem 1rem; opacity: .8; }
.lb-close { top: .5rem; right: 1rem; font-size: 3rem; }
.lb-prev { left: .5rem; top: 50%; transform: translateY(-50%); } .lb-next { right: .5rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; color: var(--c-green); }

/* --- Pricing --- */
.pricing-body { padding-block: var(--section-y); }
.page-head-sub { color: rgba(255,255,255,.9); max-width: 62ch; margin: 0 auto; }

/* terms + printable-PDF band */
.price-terms-band {
  display: flex; flex-wrap: wrap; gap: clamp(1.25rem, 3vw, 2.5rem); align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, #16200e, #0e1409);
  border: 1px solid rgba(0,254,0,.16); border-left: 3px solid var(--c-green);
  padding: clamp(1.25rem, 3vw, 2rem); margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.price-terms { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; max-width: 62ch; }
.price-terms li { position: relative; padding-left: 1.6rem; color: var(--text-on-dark-muted); font-size: .95rem; line-height: 1.4; }
.price-terms li::before { content: "▸"; position: absolute; left: 0; top: 0; color: var(--c-green); }
.pdf-btn { flex-shrink: 0; }

/* card grid — North American spans the full row, the rest flow */
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: clamp(1rem, 2.4vw, 1.75rem); align-items: start; }
.price-card--wide { grid-column: 1 / -1; }
.price-card {
  background: linear-gradient(180deg, #14190f, #0d1108);
  border: 1px solid rgba(255,255,255,.08); border-top: 3px solid var(--c-green);
  box-shadow: 0 12px 34px rgba(0,0,0,.45); overflow: hidden; scroll-margin-top: 90px;
}
.price-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem .85rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.price-card-head h2 { font-size: 1.3rem; color: var(--c-green); text-transform: uppercase; margin: 0; }
.price-card-count { font-family: var(--font-display); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); white-space: nowrap; }
.price-card-scroll { overflow-x: auto; }

.price-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.price-table th, .price-table td { padding: .5rem .9rem; text-align: left; }
.price-table th:first-child, .price-table td:first-child { padding-left: 1.25rem; }
.price-table th:last-child, .price-table td:last-child { padding-right: 1.25rem; }
.price-table thead th { font-family: var(--font-display); font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.5); padding-block: .55rem; background: rgba(0,0,0,.3); white-space: nowrap; }
.price-table th.num, .price-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.price-table th[scope="row"] { font-weight: 400; color: #fff; }
.price-table td.num { color: var(--c-green); font-weight: 600; }
.price-table td.na { color: rgba(255,255,255,.25); font-weight: 400; }
.price-table tbody tr { border-top: 1px solid rgba(255,255,255,.05); }
.price-table tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
.price-table tbody tr:hover { background: rgba(0,254,0,.07); }

.price-quote { border: 0; margin: clamp(2.5rem, 6vw, 4rem) auto 1.5rem; max-width: 55ch; text-align: center; }
.price-quote p { font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,.85); font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.4; margin: 0; }
.price-cta { text-align: center; color: var(--text-on-dark-muted); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 3 200px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  /* backdrop */
  .nav-scrim { display: block; position: fixed; inset: 0; z-index: 140; background: rgba(3,5,2,.66); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity var(--dur-base) var(--ease-standard); }
  .nav-scrim.show { opacity: 1; pointer-events: auto; }
  /* slide-in drawer with a rich dark-moss panel + green edge */
  .site-nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); z-index: 150;
    display: flex; flex-direction: column; padding: 1.25rem 1.5rem 1.75rem;
    transform: translateX(100%); transition: transform var(--dur-base) var(--ease-out);
    box-shadow: -18px 0 55px rgba(0,0,0,.6); border-left: 2px solid var(--c-green);
    background-color: #0b0f07; background-size: cover; background-position: center;
    background-image: linear-gradient(rgba(6,10,4,.9), rgba(6,10,4,.95)), url("/assets/img/texture/moss-footer.webp");
    background-image: linear-gradient(rgba(6,10,4,.9), rgba(6,10,4,.95)), image-set(url("/assets/img/texture/moss-footer.avif") type("image/avif"), url("/assets/img/texture/moss-footer.webp") type("image/webp"));
  }
  .site-nav.open { transform: translateX(0); }
  .nav-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-panel-logo { height: 44px; width: auto; }
  .nav-close { background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 6px; cursor: pointer; }
  .nav-close:hover, .nav-close:focus-visible { color: var(--c-green); background: rgba(255,255,255,.08); }
  .site-nav ul { flex-direction: column; gap: 0; margin: .75rem 0; }
  .site-nav li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav ul a { display: block; padding: 1rem 0 1rem .9rem; font-size: 1.2rem; color: #fff; text-shadow: none; border: 0; border-left: 3px solid transparent; transition: color var(--dur-fast), border-color var(--dur-fast); }
  .site-nav ul a:hover, .site-nav ul a[aria-current="page"] { color: var(--c-green); border-left-color: var(--c-green); }
  .nav-panel-foot { display: flex; align-items: center; gap: .85rem; margin-top: auto; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); }
  /* clean outlined call button — icon + number on one line, fills green on tap */
  .nav-call {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: .8rem 1rem; white-space: nowrap; text-decoration: none;
    font-family: var(--font-heading); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
    color: var(--c-green); background: transparent; border: 1.5px solid var(--c-green);
    transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
  }
  .nav-call svg { flex-shrink: 0; }
  .nav-call:hover, .nav-call:focus-visible { background: var(--c-green); color: #0a0f06; }
  .nav-social { display: inline-flex; align-items: center; justify-content: center; color: #fff; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); flex-shrink: 0; }
  .nav-social:hover, .nav-social:focus-visible { color: var(--c-green); border-color: var(--c-green); }
  .hero-grid, .about-grid, .teaser-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-photos { max-width: 460px; margin-inline: auto; width: 100%; }
  .about-photo { max-width: 340px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .masonry { columns: 2 150px; }
  .carousel-arrow.prev { left: -.5rem; } .carousel-arrow.next { right: -.5rem; }
}
@media (max-width: 420px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
}
