/* ==========================================================================
   Handy Jack — The Home Improvement Pros
   Shared design system + chrome. Owned by the orchestrator.
   Page agents append page-scoped rules under a "page:<slug>" banner ONLY.
   Do NOT edit the token / header / footer sections above those banners.
   ========================================================================== */

:root {
  /* Palette (source: compiled Tailwind tokens — brand-yellow oklch(0.882 0.176 95.5)) */
  --brand-yellow: #f5c518;
  --brand-yellow-soft: rgba(245, 197, 24, 0.5);
  --brand-yellow-10: rgba(245, 197, 24, 0.10);
  --brand-yellow-30: rgba(245, 197, 24, 0.30);
  --header-navy: #0e1420;
  --black: #000000;
  --near-black: #111111;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.90);
  --white-80: rgba(255, 255, 255, 0.80);
  --white-70: rgba(255, 255, 255, 0.70);
  --white-60: rgba(255, 255, 255, 0.60);
  --black-80: rgba(0, 0, 0, 0.80);
  --black-60: rgba(0, 0, 0, 0.60);
  --black-40: rgba(0, 0, 0, 0.40);
  --gray-bg: #f5f5f5;

  /* Type */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Rhythm */
  --maxw: 80rem;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3 { margin: 0; letter-spacing: -0.03em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .wrap { padding-left: 2rem; padding-right: 2rem; } }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ---------- Header / nav (shared chrome) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-navy);
  border-bottom: 2px solid var(--brand-yellow-30);
  box-shadow: 0 4px 30px -10px var(--brand-yellow-soft);
}
.site-header .bar {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  height: 112px;
}
@media (min-width: 640px) { .site-header .bar { padding: 0 2rem; height: 160px; } }

.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--white); }
.brand img {
  height: 96px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(245, 197, 24, 0.45));
  transition: filter 0.3s ease;
}
@media (min-width: 640px) { .brand img { height: 150px; } }
.brand:hover img { filter: drop-shadow(0 0 18px rgba(245, 197, 24, 0.70)); }

.mainnav {
  display: none;
  align-items: center;
  gap: 2rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .mainnav { display: flex; } }
.mainnav a {
  position: relative;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.mainnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--brand-yellow);
  transition: width 0.3s ease;
}
.mainnav a:hover { color: var(--brand-yellow); }
.mainnav a:hover::after { width: 100%; }

.back-home {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 768px) { .back-home { display: inline-flex; } }
.back-home:hover { color: var(--brand-yellow); }

.btn-call {
  background: var(--brand-yellow);
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  padding: 0 1rem;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: 0 0 20px -2px var(--brand-yellow-soft);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 640px) { .btn-call { padding: 0 1.5rem; height: 48px; font-size: 1rem; } }
.btn-call:hover { background: var(--white); box-shadow: 0 0 28px -2px rgba(245, 197, 24, 0.8); }

/* ---------- Footer (shared chrome) ---------- */
.site-footer { background: var(--black); color: var(--white); }
.site-footer .inner { max-width: var(--maxw); margin: 0 auto; padding: 4rem 1rem; }
@media (min-width: 640px) { .site-footer .inner { padding: 4rem 2rem; } }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand-name { font-weight: 900; font-size: 1.25rem; margin-bottom: 1rem; }
.site-footer p { color: var(--white-60); font-size: 0.875rem; line-height: 1.65; margin: 0; }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: 1rem;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--white-70); }
.footer-list a { text-decoration: none; transition: color 0.2s ease; }
.footer-list a:hover { color: var(--brand-yellow); }
.footer-phone { display: block; font-size: 1.5rem; font-weight: 900; text-decoration: none; transition: color 0.2s ease; }
.footer-phone:hover { color: var(--brand-yellow); }
.footer-contact-loc { color: var(--white-70); font-size: 0.875rem; display: flex; align-items: flex-start; gap: 0.5rem; margin-top: 0.75rem; }
.footer-social { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 900; font-size: 0.875rem; text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.footer-social a:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); transform: scale(1.1) rotate(-6deg); }
.legal-box { border: 2px solid var(--brand-yellow); padding: 1.5rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .legal-box { padding: 2rem; } }
.legal-box .legal-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--brand-yellow); margin-bottom: 0.75rem; }
.legal-box p { color: var(--white); font-size: 0.875rem; line-height: 1.65; }
@media (min-width: 640px) { .legal-box p { font-size: 1rem; } }
.copyright { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.2); font-size: 0.875rem; color: var(--white-60); text-align: center; }

/* Mobile floating call button */
.fab-call {
  display: flex;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 40;
  width: 64px; height: 64px;
  background: var(--brand-yellow);
  color: var(--black);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
@media (min-width: 768px) { .fab-call { display: none; } }

/* Shared button primitives */
.btn-primary {
  background: var(--brand-yellow);
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px solid var(--brand-yellow);
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.4), box-shadow 0.3s ease, letter-spacing 0.3s ease;
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 20px 60px -10px rgba(245, 197, 24, 0.7); letter-spacing: 0.03em; }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.4), color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.btn-outline:hover { transform: scale(1.04); background: var(--brand-yellow); color: var(--black); border-color: var(--brand-yellow); }

/* ==========================================================================
   Motion — ported from source (plain CSS, no libraries).
   Reveals are on-load (animation-fill-mode: both) so content is ALWAYS
   visible at the end — nothing is hidden by a static stylesheet rule.
   ========================================================================== */

@keyframes neonOn {
  0%   { opacity: 0; text-shadow: none; filter: brightness(0.4); }
  40%  { opacity: 1; }
  55%  { text-shadow: 0 0 4px rgba(245,197,24,0.6), 0 0 20px rgba(245,197,24,0.35); filter: brightness(1.4); }
  60%  { filter: brightness(0.7); }
  70%  { filter: brightness(1.3); text-shadow: 0 0 6px rgba(245,197,24,0.7), 0 0 28px rgba(245,197,24,0.5); }
  100% { opacity: 1; filter: brightness(1); text-shadow: 0 0 6px rgba(245,197,24,0.55), 0 0 24px rgba(245,197,24,0.4); }
}
.neon-on {
  color: #f7c400;
  animation: neonOn 1400ms ease-in-out both;
}

@keyframes revealFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealSlideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes revealZoomIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.reveal { animation: revealFadeUp 700ms cubic-bezier(.2,.7,.2,1) both; }
.reveal-slide-left { animation: revealSlideLeft 700ms cubic-bezier(.2,.7,.2,1) both; }
.reveal-zoom-in { animation: revealZoomIn 700ms cubic-bezier(.2,.7,.2,1) both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.5s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
.anim-float { animation: floatY 6s ease-in-out infinite; }

@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}
.anim-blink { animation: blinkDot 1.6s ease-in-out infinite; }

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
.anim-bounce-arrow { animation: bounceArrow 1.6s ease-in-out infinite; display: inline-block; }

@keyframes spinSlow { to { transform: rotate(360deg); } }
.anim-spin-slow { animation: spinSlow 22s linear infinite; }

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(245, 197, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0); }
}
.anim-pulse-ring { animation: pulseRing 2s ease-out infinite; }

/* Animated underline accent (source: .anim-underline) */
.anim-underline {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(var(--brand-yellow), var(--brand-yellow));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 4px;
  padding-bottom: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .neon-on { color: var(--brand-yellow); text-shadow: none; }
}

/* ==========================================================================
   page: home
   ========================================================================== */

.section-index { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--brand-yellow); margin-bottom: 1rem; }
.section-index-dark { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--black-60); margin-bottom: 1rem; }

/* Hero */
.hero { position: relative; overflow: hidden; border-bottom: 2px solid var(--black); background: var(--black); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.15) 100%); }
.hero-inner { position: relative; color: var(--white); padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 640px) { .hero-inner { padding-top: 9rem; padding-bottom: 9rem; } }
.hero-shape { display: none; position: absolute; pointer-events: none; }
@media (min-width: 768px) { .hero-shape { display: block; } }
.hero-shape-square { top: 4rem; right: 3rem; width: 6rem; height: 6rem; border: 4px solid var(--brand-yellow); border-radius: 2px; }
.hero-shape-dot { bottom: 6rem; right: 8rem; width: 3rem; height: 3rem; background: rgba(245,197,24,0.8); border-radius: 999px; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-eyebrow-line { height: 1px; width: 3rem; background: var(--brand-yellow); }
.hero-eyebrow .eyebrow { color: var(--brand-yellow); }
.hero-h1 { font-size: clamp(3rem, 12vw, 8rem); font-weight: 900; line-height: 0.9; letter-spacing: -0.04em; margin-bottom: 2rem; }
.hero-sub { font-size: clamp(1.5rem, 4vw, 1.875rem); max-width: 42rem; color: var(--white); font-weight: 700; margin: 0 0 1rem; line-height: 1.1; }
.hero-lede { font-size: clamp(1.125rem, 2.5vw, 1.25rem); max-width: 42rem; color: var(--white-80); margin: 0 0 3rem; line-height: 1.65; }
.hero-cta { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }
.hero-btn { font-size: clamp(1.125rem, 2vw, 1.25rem); padding: 0 2.5rem; height: 64px; }
@media (min-width: 640px) { .hero-btn { height: 80px; } }
.hero-scroll { display: none; position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); flex-direction: column; align-items: center; gap: 0.5rem; color: var(--white-60); }
@media (min-width: 768px) { .hero-scroll { display: flex; } }
.hero-scroll-label { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; }
.hero-scroll .anim-bounce-arrow { color: var(--brand-yellow); }

/* About */
.about { border-bottom: 2px solid var(--black); }
.about-grid { display: grid; gap: 3rem; padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 5fr 7fr; padding-top: 7rem; padding-bottom: 7rem; } }
.about-h2 { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 900; line-height: 0.95; margin-bottom: 2rem; }
.about-lede { font-size: clamp(1.125rem, 2vw, 1.25rem); line-height: 1.65; color: var(--black-80); }
.stat { margin-top: 2.5rem; display: flex; align-items: baseline; gap: 1rem; }
.stat-num { font-size: clamp(4rem, 10vw, 6rem); font-weight: 900; letter-spacing: -0.04em; color: var(--brand-yellow); line-height: 1; }
.stat-label { font-size: 1.125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { display: flex; align-items: center; gap: 1.5rem; padding: 1.25rem 0; border-top: 2px solid var(--black); transition: background 0.3s ease; }
.feature-list li:hover { background: var(--brand-yellow-10); }
.feature-ico { flex-shrink: 0; width: 48px; height: 48px; background: var(--brand-yellow); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; transition: transform 0.3s ease; }
.feature-list li:hover .feature-ico { transform: rotate(-6deg) scale(1.1); }
.feature-name { flex: 1; font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 700; letter-spacing: -0.02em; transition: transform 0.3s ease; }
.feature-list li:hover .feature-name { transform: translateX(4px); }
.feature-num { font-family: var(--font-mono); font-size: 0.875rem; color: var(--black-40); display: none; }
@media (min-width: 640px) { .feature-num { display: inline; } }

/* Services (dark) */
.services { border-bottom: 2px solid var(--black); background: var(--black); color: var(--white); }
.services .wrap { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 640px) { .services .wrap { padding-top: 7rem; padding-bottom: 7rem; } }
.services-h2 { font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 900; line-height: 0.95; margin-bottom: 1.5rem; }
.services-lede { font-size: 1.125rem; color: var(--white-70); max-width: 42rem; margin: 0 0 4rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,0.15); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card { position: relative; background: var(--black); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; min-height: 260px; overflow: hidden; transition: transform 0.5s ease, box-shadow 0.5s ease; }
@media (min-width: 640px) { .svc-card { padding: 2.5rem; } }
.svc-card:hover { transform: scale(1.03); z-index: 2; box-shadow: 0 0 60px -5px rgba(245,197,24,0.55); }
.svc-ico { color: var(--brand-yellow); transition: transform 0.5s ease, filter 0.5s ease; }
.svc-card:hover .svc-ico { transform: scale(1.1) rotate(-6deg); filter: drop-shadow(0 0 12px rgba(245,197,24,0.9)); }
.svc-title { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 700; letter-spacing: -0.02em; }
.svc-body { font-size: 0.95rem; color: var(--white-70); line-height: 1.65; margin: 0; transition: color 0.5s ease; }
.svc-card:hover .svc-body { color: var(--white-90); }

/* Reviews */
.reviews { border-bottom: 2px solid var(--black); background: var(--gray-bg); }
.reviews .wrap { padding-top: 5rem; padding-bottom: 5rem; }
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; }
.reviews-h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1; }
.reviews-rating { display: flex; align-items: center; gap: 0.5rem; }
.stars { color: var(--brand-yellow); letter-spacing: 0.1em; }
.rating-num { font-weight: 900; font-size: 1.125rem; }
/* Slider mirrors the source (≈3 cards visible); the rest stay reachable by
   horizontal scroll so no review is ever hidden by a stylesheet rule. */
.reviews-track { display: grid; grid-auto-flow: column; grid-auto-columns: 88%; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; }
@media (min-width: 768px) { .reviews-track { grid-auto-columns: calc((100% - 3rem) / 3); } }
.review-card { scroll-snap-align: start; background: var(--white); border: 1px solid rgba(0,0,0,0.1); padding: 1.75rem; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.review-card p { font-size: 0.95rem; line-height: 1.6; color: var(--black-80); margin: 0; }
.review-card cite { font-style: normal; font-weight: 700; }
.reviews-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; }
.btn-dark { background: var(--black); color: var(--white); text-decoration: none; font-weight: 900; letter-spacing: 0.05em; padding: 0.9rem 1.6rem; display: inline-flex; align-items: center; gap: 0.6rem; transition: background 0.3s ease, color 0.3s ease; }
.btn-dark:hover { background: var(--brand-yellow); color: var(--black); }
.link-google { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Our Work */
.work { border-bottom: 2px solid var(--black); }
.work .wrap { padding-top: 5rem; padding-bottom: 5rem; }
.work-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; }
.work-h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1; }
.work-lede { max-width: 20rem; color: var(--black-60); font-size: 0.95rem; }
.work-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(4, 1fr); } }
.work-card { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; text-decoration: none; background: #222; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-card:hover img { transform: scale(1.06); }
.work-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; gap: 0.25rem; padding: 1rem; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); }
.work-photos { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-yellow); }
.work-cat { font-size: 1.1rem; font-weight: 900; color: var(--white); letter-spacing: -0.02em; }
.work-cta { margin-top: 3rem; display: flex; justify-content: center; }

/* Contact band */
.contact { position: relative; overflow: hidden; background: var(--brand-yellow); border-bottom: 2px solid var(--black); color: var(--black); }
.contact-ring { position: absolute; top: -2.5rem; left: -2.5rem; width: 10rem; height: 10rem; border: 4px solid rgba(0,0,0,0.1); border-radius: 999px; pointer-events: none; }
.contact-blob { position: absolute; bottom: -4rem; right: -4rem; width: 14rem; height: 14rem; border: 4px solid rgba(0,0,0,0.1); pointer-events: none; }
.contact-inner { position: relative; text-align: center; padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 640px) { .contact-inner { padding-top: 7rem; padding-bottom: 7rem; } }
.contact-eyebrow { margin-bottom: 1.5rem; }
.contact-dot { display: inline-block; width: 0.5rem; height: 0.5rem; background: var(--black); border-radius: 999px; margin-right: 0.5rem; vertical-align: middle; }
.contact-h2 { font-size: clamp(2.25rem, 7vw, 3.75rem); font-weight: 900; line-height: 0.95; margin-bottom: 2.5rem; }
.contact-phone { display: inline-block; font-size: clamp(3rem, 11vw, 6rem); font-weight: 900; letter-spacing: -0.04em; text-decoration: none; color: var(--black); transition: transform 0.3s ease; }
.contact-phone:hover { text-decoration: underline; text-underline-offset: 8px; text-decoration-thickness: 4px; transform: scale(1.05); }
.contact-loc { margin-top: 2rem; font-size: clamp(1.125rem, 2vw, 1.25rem); font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.contact-hours { margin-top: 0.5rem; font-size: 1rem; font-weight: 500; opacity: 0.8; }

/* Quote modal (CSS :target) */
.quote-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; }
.quote-modal:target { display: flex; }
.quote-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.quote-panel { position: relative; background: var(--white); width: 100%; max-width: 34rem; padding: 2rem; border-top: 4px solid var(--brand-yellow); box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6); max-height: 90vh; overflow-y: auto; animation: revealZoomIn 300ms ease both; }
.quote-close { position: absolute; top: 0.75rem; right: 1rem; font-size: 2rem; line-height: 1; text-decoration: none; color: var(--black-60); }
.quote-close:hover { color: var(--black); }
.quote-eyebrow { color: var(--black-60); margin-bottom: 0.5rem; }
.quote-h2 { font-size: 1.75rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.quote-sub { font-size: 0.95rem; color: var(--black-80); margin: 0 0 1.5rem; }
.quote-sub a { font-weight: 700; }
.field { display: block; margin-bottom: 1rem; }
.field span { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.35rem; }
.field input, .field textarea { width: 100%; padding: 0.7rem 0.85rem; border: 2px solid rgba(0,0,0,0.15); font-family: inherit; font-size: 1rem; background: var(--white); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand-yellow); }
.quote-submit { width: 100%; height: 56px; font-size: 1.05rem; margin-top: 0.5rem; }
.hp-wrap { position: absolute; left: -9999px; overflow: hidden; height: 0; }

/* ==========================================================================
   page: gallery
   ========================================================================== */

.gal-hero { background: var(--black); color: var(--white); border-bottom: 2px solid var(--black); }
.gal-hero .wrap { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 640px) { .gal-hero .wrap { padding-top: 5rem; padding-bottom: 5rem; } }
.gal-h1 { font-size: clamp(3rem, 9vw, 5.5rem); font-weight: 900; line-height: 0.9; letter-spacing: -0.04em; margin-bottom: 1.5rem; }
.gal-lede { max-width: 34rem; color: var(--white-70); font-size: clamp(1rem, 2vw, 1.125rem); line-height: 1.65; }

.gal-body .wrap { padding-top: 4rem; padding-bottom: 4rem; }
.gal-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
.gal-card { position: relative; overflow: hidden; background: #111; color: var(--white); min-height: 360px; display: flex; align-items: stretch; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.gal-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.5); }
.gal-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: transform 0.5s ease, opacity 0.4s ease; }
.gal-card:hover img { transform: scale(1.05); opacity: 0.7; }
.gal-card-body { position: relative; z-index: 1; width: 100%; display: flex; flex-direction: column; justify-content: flex-end; gap: 0.5rem; padding: 1.75rem; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 55%, transparent 100%); }
.gal-photos { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-yellow); }
.gal-cat { font-size: clamp(1.4rem, 3vw, 1.75rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; }
.gal-desc { font-size: 0.9rem; color: var(--white-80); margin: 0; line-height: 1.5; }
.gal-link { margin-top: 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-yellow); }

.gal-cta { background: var(--brand-yellow); color: var(--black); border-top: 2px solid var(--black); }
.gal-cta-inner { text-align: center; padding-top: 4rem; padding-bottom: 4rem; }
.gal-cta-h2 { font-size: clamp(2rem, 6vw, 3rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 1rem; }
.gal-cta-phone { display: inline-block; font-size: clamp(2.25rem, 8vw, 4rem); font-weight: 900; letter-spacing: -0.04em; text-decoration: none; color: var(--black); }
.gal-cta-phone:hover { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 3px; }
.gal-cta-actions { margin-top: 2rem; display: flex; justify-content: center; }

/* Gallery card as button */
button.gal-card { width: 100%; font: inherit; color: var(--white); text-align: left; border: 0; cursor: pointer; -webkit-appearance: none; appearance: none; }
button.gal-card:focus-visible { outline: 3px solid var(--brand-yellow); outline-offset: 3px; }

/* ===== Lightbox ===== */
.lb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.lb[hidden] { display: none; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.92); animation: lb-fade 0.2s ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lb-stage { position: relative; z-index: 1; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 4.5rem 1rem; }
.lb-figure { margin: 0; max-width: min(1100px, 92vw); max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lb-img { max-width: 100%; max-height: 78vh; width: auto; height: auto; object-fit: contain; border: 2px solid rgba(255, 255, 255, 0.08); background: #111; animation: lb-fade 0.2s ease; }
.lb-caption { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 0.25rem 1rem; text-align: center; }
.lb-title { font-size: 1rem; font-weight: 800; letter-spacing: -0.01em; color: var(--white); }
.lb-counter { font-family: 'Roboto Mono', monospace; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; color: var(--brand-yellow); }
.lb-close, .lb-nav { position: absolute; display: inline-flex; align-items: center; justify-content: center; border: 0; background: rgba(0, 0, 0, 0.5); color: var(--white); cursor: pointer; transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.lb-close:hover, .lb-nav:hover { background: var(--brand-yellow); color: var(--black); }
.lb-close:focus-visible, .lb-nav:focus-visible { outline: 3px solid var(--brand-yellow); outline-offset: 2px; }
.lb-close { top: 1rem; right: 1rem; width: 3rem; height: 3rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 3.25rem; height: 3.25rem; }
.lb-nav:hover { transform: translateY(-50%) scale(1.05); }
.lb-prev { left: 0.75rem; }
.lb-next { right: 0.75rem; }
@media (min-width: 640px) { .lb-close { top: 1.5rem; right: 1.5rem; } .lb-prev { left: 1.5rem; } .lb-next { right: 1.5rem; } }
