/* ===========================================
   VARIABLES & RESET
   =========================================== */
:root {
  --bg:        #f6f1e8;
  --bg-alt:    #ede8dc;
  --dark:      #0f0e0c;
  --dark-2:    #1c1a17;
  --dark-3:    #2a2722;
  --ink:       #111111;
  --ink-soft:  #4a463f;
  --ink-muted: #7a7468;
  --rule:      #d6cfc1;
  --accent:    #e87722;
  --accent-d:  #c45f12;
  --on-dark:   #ede8dc;
  --on-dark-m: #a09890;
  --maxw:      1280px;
  --pad:       clamp(20px, 4vw, 64px);
  --serif:     "Fraunces", Georgia, serif;
  --cond:      "Barlow Condensed", "Arial Narrow", sans-serif;
  --body:      "Instrument Sans", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { }
@media (min-width: 1024px) { html { scroll-behavior: smooth; } }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--body); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; text-decoration: none;
  font-family: var(--cond); font-weight: 700; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform 0.18s, box-shadow 0.18s; cursor: pointer; border: 0;
}
.btn-primary { background: var(--accent); color: #fff; border: 2px solid var(--ink); }
.btn-primary:hover { transform: translate(-3px,-3px); box-shadow: 5px 5px 0 var(--ink); }
.btn-dark { background: var(--ink); color: var(--accent); border: 2px solid var(--ink); }
.btn-dark:hover { transform: translate(-3px,-3px); box-shadow: 5px 5px 0 var(--accent); }
.btn-ghost-light { background: transparent; color: var(--on-dark); border: 2px solid rgba(237,232,220,0.35); padding: 15px 28px; font-family: var(--cond); font-weight: 700; font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: border-color 0.2s, background 0.2s; }
.btn-ghost-light:hover { border-color: var(--on-dark); background: rgba(255,255,255,0.06); }

/* ===========================================
   UTILITY BAR
   =========================================== */
.util-bar { background: var(--dark); color: var(--on-dark-m); font-family: var(--cond); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; border-bottom: 2px solid var(--accent); }
.util-inner { max-width: var(--maxw); margin: 0 auto; padding: 9px var(--pad); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.util-bar a { text-decoration: none; }
.util-tel { color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; }

/* ===========================================
   HEADER / NAV
   =========================================== */
header.site { position: sticky; top: 0; z-index: 100; background: rgba(246,241,232,0.96); border-bottom: 1px solid var(--rule); }
.nav { max-width: var(--maxw); margin: 0 auto; padding: 14px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; font-family: var(--cond); font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links a { text-decoration: none; color: var(--ink); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

.has-dropdown { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; background: none; border: 0; font: inherit; color: inherit; text-transform: inherit; letter-spacing: inherit; padding: 0; }
.caret { width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform 0.2s; margin-top: -2px; }
.has-dropdown:hover .caret, .has-dropdown:focus-within .caret { transform: rotate(225deg); margin-top: 2px; }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px); background: var(--bg); border: 1.5px solid var(--ink); box-shadow: 6px 6px 0 var(--accent); min-width: 300px; padding: 16px 8px 8px; opacity: 0; pointer-events: none; transition: opacity 0.15s, transform 0.15s; z-index: 200; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .dropdown.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 14px; padding: 10px 14px; font-family: var(--body); font-size: 14px; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--ink); text-decoration: none; transition: background 0.15s; }
.dropdown a:hover { background: var(--accent); color: #fff; }
.dropdown a::before { content: ''; display: inline-block; width: 5px; height: 5px; background: var(--accent); flex-shrink: 0; }
.dropdown a:hover::before { background: #fff; }

.nav-cta { font-family: var(--cond); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; background: var(--accent); color: #fff; padding: 10px 20px; border: 1.5px solid var(--ink); transition: transform 0.18s, box-shadow 0.18s; }
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.menu-toggle { display: none; background: var(--ink); border: 0; color: var(--accent); width: 44px; height: 44px; cursor: pointer; font-size: 22px; align-items: center; justify-content: center; }

/* ===========================================
   MOBILE PANEL
   =========================================== */
.mobile-panel { position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); background: var(--dark); color: #fff; padding: 24px; transform: translateX(100%); transition: transform 0.3s cubic-bezier(.7,.1,.3,1); z-index: 300; overflow-y: auto; }
.mobile-panel.open { transform: translateX(0); }
.mobile-close { background: none; border: 0; color: #fff; font-size: 28px; cursor: pointer; margin-bottom: 24px; display: block; }
.mobile-panel a { display: block; padding: 14px 0; color: var(--on-dark); text-decoration: none; border-bottom: 1px solid var(--dark-3); font-family: var(--cond); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 16px; transition: color 0.2s; }
.mobile-panel a:hover { color: var(--accent); }
.mobile-sub { padding-left: 16px; border-left: 2px solid var(--accent); margin: 6px 0; }
.mobile-sub a { font-family: var(--body); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 14px; padding: 8px 0; border-bottom: 0; }
.mobile-ctas { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.mobile-ctas .btn { text-align: center; justify-content: center; }
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 250; }
.scrim.open { opacity: 1; pointer-events: auto; }

/* ===========================================
   HERO (homepage)
   =========================================== */
.hero {
  position: relative;
  background: rgba(15,14,12,0.97);
  border-bottom: 4px solid var(--accent);
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(115deg, rgba(15,14,12,0.88) 0%, rgba(15,14,12,0.72) 52%, rgba(15,14,12,0.55) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.72' numOctaves='4'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.07'/></svg>");
}
.hero-stripe { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--accent); z-index: 2; }
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 9vw, 108px) var(--pad) clamp(64px, 9vw, 112px); display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }

.hero-eyebrow { font-family: var(--cond); font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin: 0 0 22px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ""; display: block; width: 28px; height: 2px; background: var(--accent); flex-shrink: 0; }

h1.hero-h1 { font-family: var(--serif); font-weight: 900; font-size: clamp(46px, 7vw, 96px); line-height: 0.92; letter-spacing: -0.03em; color: var(--on-dark); margin: 0 0 28px; }
h1.hero-h1 em { font-style: italic; font-weight: 300; color: var(--accent); }

.hero-sub { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.65; color: var(--on-dark-m); max-width: 52ch; margin: 0 0 36px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.btn-tel { font-family: var(--cond); font-size: 16px; font-weight: 700; letter-spacing: 0.06em; color: var(--on-dark); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; padding: 15px 4px; transition: color 0.2s; }
.btn-tel::before { content: "↗"; color: var(--accent); }
.btn-tel:hover { color: var(--accent); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--on-dark-m); font-family: var(--cond); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.hero-badges span { display: flex; align-items: center; gap: 6px; }
.hero-badges span::before { content: "✓"; color: var(--accent); font-weight: 900; }

/* ===========================================
   PAGE HERO (interior pages)
   =========================================== */
.page-hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(15,14,12,0.97) 0%, rgba(15,14,12,0.88) 52%, rgba(15,14,12,0.74) 100%),
    url('https://images.unsplash.com/photo-1530124566582-a618bc2615dc?w=900&q=80') center/cover no-repeat;
  border-bottom: 4px solid var(--accent);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.72' numOctaves='4'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.07'/></svg>");
}
.page-hero-stripe { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--accent); z-index: 2; }
.page-hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad) clamp(56px, 8vw, 96px); display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.page-hero-content { }
.page-hero-content .hero-eyebrow { margin-bottom: 18px; }
.page-hero-content h1 { font-family: var(--serif); font-weight: 900; font-size: clamp(38px, 5.5vw, 76px); line-height: 0.95; letter-spacing: -0.03em; color: var(--on-dark); margin: 0 0 24px; }
.page-hero-content h1 em { font-style: italic; font-weight: 300; color: var(--accent); }
.page-hero-content .hero-sub { font-size: clamp(15px, 1.4vw, 17px); }

/* Narrow page hero (FAQ, Contact — no form column) */
.page-hero-narrow .page-hero-inner { grid-template-columns: 1fr; max-width: 860px; }

/* Real-photo background layer inside .page-hero */
.page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; pointer-events: none; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(0.38);
}

/* ===========================================
   BREADCRUMB
   =========================================== */
.breadcrumb { margin: 0 0 24px; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; font-family: var(--cond); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-m); }
.breadcrumb li + li::before { content: "/"; margin-right: 4px; opacity: 0.5; }
.breadcrumb a { color: var(--on-dark-m); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--accent); }

/* ===========================================
   QUOTE FORM
   =========================================== */
.quote-card { background: var(--bg); color: var(--ink); padding: 32px; border: 1.5px solid var(--ink); box-shadow: 8px 8px 0 var(--accent); position: relative; }
.quote-tag { position: absolute; top: -14px; left: 24px; background: var(--accent); color: #fff; font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; padding: 5px 14px; text-transform: uppercase; }
.quote-card h2 { font-family: var(--serif); font-weight: 800; font-size: 26px; line-height: 1.1; margin: 6px 0 6px; letter-spacing: -0.02em; }
.quote-card .lead { font-size: 14px; color: var(--ink-soft); margin: 0 0 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.field { display: flex; flex-direction: column; }
.field label { font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea { padding: 11px 13px; border: 1px solid var(--rule); background: var(--bg); font-family: var(--body); font-size: 15px; color: var(--ink); transition: border 0.2s, box-shadow 0.2s; -webkit-appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,119,34,0.2); }
.field-full { grid-column: 1 / -1; }
.form-btn { width: 100%; background: var(--ink); color: var(--accent); border: 0; padding: 16px; font-family: var(--cond); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 15px; cursor: pointer; margin-top: 8px; transition: background 0.2s, color 0.2s; }
.form-btn:hover { background: var(--accent); color: #fff; }
.form-note { font-size: 12px; color: var(--ink-muted); text-align: center; margin: 10px 0 0; }

/* Standalone quote section (below-fold anchor) */
.quote-section { background: var(--bg-alt); border-block: 1px solid var(--rule); }
.quote-section-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.quote-section-text { }
.quote-section-text .section-label { color: var(--accent-d); }
.quote-section-text h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(30px, 4vw, 50px); line-height: 1; letter-spacing: -0.03em; margin: 12px 0 20px; }
.quote-section-text h2 em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.quote-section-text p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; }

/* ===========================================
   TRUST BAR
   =========================================== */
.trust-bar { background: var(--ink); color: var(--on-dark); border-bottom: 3px solid var(--accent); }
.trust-inner { max-width: var(--maxw); margin: 0 auto; padding: 28px var(--pad); display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 42px; height: 42px; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.trust-label strong { display: block; font-family: var(--cond); font-size: 18px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.2; }
.trust-label span { font-size: 12px; color: var(--on-dark-m); letter-spacing: 0.04em; }

/* ===========================================
   SECTION HELPERS
   =========================================== */
.section-label { font-family: var(--cond); font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-d); margin: 0 0 14px; }
.section-label.on-dark { color: var(--accent); }
h2.section-title { font-family: var(--serif); font-weight: 900; font-size: clamp(36px, 5vw, 64px); line-height: 0.95; letter-spacing: -0.03em; margin: 0; }
h2.section-title em { font-style: italic; font-weight: 300; }

/* ===========================================
   SERVICES: FEATURED (DARK)
   =========================================== */
.svcs-featured { background: var(--dark); color: var(--on-dark); border-bottom: 1px solid var(--dark-3); }
.svcs-featured-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 104px) var(--pad); }
.svcs-featured-hd { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 24px; flex-wrap: wrap; }
.svcs-featured-hd h2.section-title { color: var(--on-dark); }
.svcs-featured-hd h2.section-title em { color: var(--on-dark-m); }
.svcs-featured-hd p { font-size: 16px; color: var(--on-dark-m); max-width: 44ch; line-height: 1.6; margin: 0; }

.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.feat-card { display: flex; flex-direction: column; padding: 44px 44px 40px; border: 1px solid var(--dark-3); text-decoration: none; color: var(--on-dark); position: relative; overflow: hidden; transition: background 0.2s; background: var(--dark-2); }
.feat-card:hover { background: #22201c; }
.feat-card:hover .feat-num { color: rgba(232,119,34,0.12); }
.feat-card:hover .feat-link { transform: translate(4px,-4px); color: var(--accent); }
.feat-num { font-family: var(--cond); font-size: 80px; font-weight: 900; line-height: 1; color: rgba(255,255,255,0.05); letter-spacing: -0.02em; position: absolute; top: 16px; right: 24px; transition: color 0.25s; user-select: none; pointer-events: none; }
.feat-tag { font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.feat-card h3 { font-family: var(--serif); font-weight: 800; font-size: clamp(26px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 16px; }
.feat-card p { font-size: 15px; line-height: 1.65; color: var(--on-dark-m); margin: 0 0 28px; max-width: 46ch; flex: 1; }
.feat-link { font-family: var(--cond); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-m); display: inline-flex; align-items: center; gap: 8px; transition: transform 0.2s, color 0.2s; align-self: flex-start; }
.feat-link::after { content: "→"; }

/* ===========================================
   SERVICES: LIST (LIGHT)
   =========================================== */
.svcs-list { background: var(--bg); border-bottom: 1px solid var(--rule); }
.svcs-list-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 104px) var(--pad); }
.svcs-list-hd { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; margin-bottom: 48px; }
.svcs-list-hd p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 0; max-width: 48ch; }

.svc-ol { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1.5px solid var(--ink); }
.svc-row { display: flex; align-items: center; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--rule); text-decoration: none; color: var(--ink); transition: background 0.15s; }
.svc-ol > li:nth-child(odd) .svc-row { padding-right: 36px; border-right: 1px solid var(--rule); }
.svc-ol > li:nth-child(even) .svc-row { padding-left: 36px; }
.svc-row:hover { background: var(--bg-alt); }
.svc-row:hover .svc-arrow { color: var(--accent); transform: translate(4px,-4px); }
.svc-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--accent); }
.svc-row-body { flex: 1; }
.svc-row-body h3 { font-family: var(--serif); font-weight: 700; font-size: 20px; line-height: 1.15; margin: 0 0 4px; letter-spacing: -0.01em; }
.svc-row-body p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin: 0; }
.svc-arrow { color: var(--ink-muted); font-size: 20px; flex-shrink: 0; transition: transform 0.2s, color 0.2s; }

/* ===========================================
   ABOUT
   =========================================== */
.about { background: var(--bg-alt); border-block: 1px solid var(--rule); }
.about-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 9vw, 112px) var(--pad); display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 7vw, 96px); align-items: center; }
.about-img-wrap { position: relative; max-width: 520px; }
.about-img { aspect-ratio: 4/5; background: linear-gradient(180deg, rgba(15,14,12,0.1) 0%, rgba(232,119,34,0.15) 100%), url('/assets/photos/jake-rene.webp') top center/cover; border: 1.5px solid var(--ink); box-shadow: 10px 10px 0 var(--accent); }
@media (max-width: 640px) { .about-img { background: linear-gradient(180deg, rgba(15,14,12,0.1) 0%, rgba(232,119,34,0.15) 100%), url('/assets/photos/jake-rene-mobile.webp') top center/cover; } }
.about-stamp { position: absolute; bottom: -28px; right: -28px; width: 148px; height: 148px; border-radius: 50%; background: var(--dark); color: var(--accent); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; font-family: var(--cond); font-weight: 700; letter-spacing: 0.05em; line-height: 1.1; text-transform: uppercase; border: 3px solid var(--accent); transform: rotate(-8deg); padding: 12px; }
.about-stamp strong { font-family: var(--serif); font-weight: 900; font-size: 46px; line-height: 0.85; letter-spacing: -0.03em; margin-bottom: 6px; display: block; color: var(--on-dark); }
.about-stamp .stamp-sub { font-size: 10px; line-height: 1.3; }

.about-eyebrow { color: var(--accent-d); }
.about-text h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(34px, 4.5vw, 56px); line-height: 1; letter-spacing: -0.03em; margin: 16px 0 24px; }
.about-text h2 em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.about-text p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
.creds { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 12px; }
.creds li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.45; }
.creds li::before { content: "→"; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===========================================
   REVIEWS
   =========================================== */
.reviews { background: var(--dark); color: var(--on-dark); border-bottom: 3px solid var(--accent); }
.reviews-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 9vw, 112px) var(--pad); }
.reviews-hd { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; margin-bottom: 56px; }
.reviews-hd h2.section-title { color: var(--on-dark); }
.reviews-hd h2.section-title em { color: var(--on-dark-m); }
.reviews-hd p { font-size: 16px; color: var(--on-dark-m); max-width: 46ch; line-height: 1.6; margin: 0; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--dark-3); border: 1px solid var(--dark-3); margin-bottom: 44px; }
.review-card { background: var(--dark-2); padding: 36px 32px; }
.review-stars { color: var(--accent); font-size: 16px; letter-spacing: 3px; margin-bottom: 20px; }
.review-card blockquote { font-family: var(--serif); font-size: 18px; line-height: 1.5; margin: 0 0 24px; color: var(--on-dark); font-weight: 400; font-style: italic; }
.review-card blockquote::before { content: "\201C"; font-size: 52px; line-height: 0; vertical-align: -22px; color: var(--accent); margin-right: 2px; font-style: normal; }
.review-foot { display: flex; align-items: center; gap: 12px; }
.review-av { width: 38px; height: 38px; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 800; font-size: 16px; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 14px; color: var(--on-dark); }
.review-src { font-size: 12px; color: var(--on-dark-m); margin-top: 2px; }
.reviews-more { text-align: center; }
.reviews-more a { font-family: var(--cond); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); text-decoration: none; border-bottom: 1.5px solid var(--accent); padding-bottom: 3px; transition: color 0.2s, border-color 0.2s; }
.reviews-more a:hover { color: #fff; border-color: #fff; }

/* ===========================================
   SERVICE AREA (homepage section)
   =========================================== */
.area { background: var(--bg-alt); border-bottom: 1px solid var(--rule); }
.area-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 9vw, 112px) var(--pad); display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 7vw, 88px); align-items: center; }
.area-text h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(34px, 4.5vw, 56px); line-height: 1; letter-spacing: -0.03em; margin: 16px 0 20px; }
.area-text h2 em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.area-text p { font-size: 17px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 28px; }
.town-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 16px; list-style: none; padding: 0; margin: 0 0 32px; }
.town-grid li { padding: 9px 0; border-bottom: 1px dashed var(--rule); font-size: 14.5px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.town-grid li::before { content: ""; width: 6px; height: 6px; background: var(--accent); flex-shrink: 0; transform: rotate(45deg); }
.area-map { aspect-ratio: 540/380; max-height: 480px; background: var(--bg); border: 1.5px solid var(--ink); box-shadow: 10px 10px 0 var(--accent); position: relative; overflow: hidden; }

/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta { background: var(--accent); color: var(--ink); padding: clamp(64px, 8vw, 104px) var(--pad); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 14px); pointer-events: none; }
.final-cta-inner { max-width: 680px; margin: 0 auto; position: relative; }
.final-cta h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(36px, 5.5vw, 60px); line-height: 1; letter-spacing: -0.03em; margin: 0 0 18px; }
.final-cta p { font-size: 18px; margin: 0 0 36px; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline-inv { font-family: var(--cond); font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); text-decoration: none; padding: 15px 28px; border: 2px solid var(--ink); background: transparent; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; }
.btn-outline-inv:hover { background: rgba(0,0,0,0.08); }

/* ===========================================
   FOOTER
   =========================================== */
footer.site { background: var(--dark); color: var(--on-dark-m); padding: 72px var(--pad) 28px; font-size: 14px; border-top: 4px solid var(--accent); }
.foot-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.foot-logo-wrap { background: #fff; padding: 12px 16px; display: inline-block; margin-bottom: 18px; }
.foot-logo-wrap img { height: 44px; width: auto; }
.foot-brand p { line-height: 1.6; margin: 0 0 18px; }
.foot-tel { color: var(--accent); font-family: var(--serif); font-weight: 800; font-size: 24px; text-decoration: none; letter-spacing: -0.01em; display: block; }
.foot-col h4 { font-family: var(--cond); font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-col a { color: var(--on-dark-m); text-decoration: none; transition: color 0.2s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--dark-3); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--on-dark-m); opacity: 0.7; }
.foot-socials { display: flex; gap: 10px; }
.foot-socials a { width: 34px; height: 34px; border: 1px solid var(--dark-3); display: grid; place-items: center; color: var(--on-dark-m); text-decoration: none; font-size: 13px; font-weight: 700; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.foot-socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===========================================
   SERVICE PAGE SPECIFIC
   =========================================== */

/* Intro: 2-col — prose left, scope aside right */
.svc-intro { background: var(--bg); border-bottom: 1px solid var(--rule); }
.svc-intro-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(48px, 6vw, 88px); align-items: start; }
.svc-intro-text h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(28px, 3.5vw, 46px); line-height: 1.05; letter-spacing: -0.02em; margin: 12px 0 20px; }
.svc-intro-text h2 em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.svc-intro-text p { font-size: 17px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 16px; }
.svc-intro-aside { background: var(--bg-alt); border: 1.5px solid var(--ink); padding: 32px; box-shadow: 6px 6px 0 var(--accent); }
.svc-intro-aside h3 { font-family: var(--cond); font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-d); margin: 0 0 16px; }

/* Process: numbered steps on dark */
.svc-process { background: var(--dark); color: var(--on-dark); border-bottom: 1px solid var(--dark-3); }
.svc-process-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); }
.svc-process-hd { margin-bottom: 48px; }
.svc-process-hd h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(30px, 4vw, 52px); line-height: 1; letter-spacing: -0.03em; margin: 12px 0 0; color: var(--on-dark); }
.svc-process-hd h2 em { font-style: italic; font-weight: 300; color: var(--on-dark-m); }
.svc-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px; }
.svc-step { background: var(--dark-2); border: 1px solid var(--dark-3); padding: 36px 32px; position: relative; overflow: hidden; }
.svc-step-num { font-family: var(--cond); font-size: 72px; font-weight: 900; line-height: 1; color: rgba(255,255,255,0.04); letter-spacing: -0.02em; position: absolute; top: 12px; right: 20px; user-select: none; pointer-events: none; }
.svc-step h3 { font-family: var(--serif); font-weight: 700; font-size: 22px; line-height: 1.1; margin: 0 0 12px; color: var(--on-dark); }
.svc-step p { font-size: 14px; line-height: 1.6; color: var(--on-dark-m); margin: 0; }

/* Scope checklist */
.svc-scope { background: var(--bg-alt); border-bottom: 1px solid var(--rule); }
.svc-scope-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); }
.svc-scope-hd { margin-bottom: 40px; }
.svc-scope-hd h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(28px, 3.5vw, 46px); line-height: 1.05; letter-spacing: -0.02em; margin: 12px 0 0; }
.svc-scope-hd h2 em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.svc-checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 48px; }
.svc-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; padding: 12px 0; border-bottom: 1px dashed var(--rule); color: var(--ink-soft); }
.svc-checklist li::before { content: "✓"; color: var(--accent); font-weight: 900; font-family: var(--cond); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.svc-checklist li strong { color: var(--ink); }

/* Service areas strip */
.svc-areas { background: var(--bg); border-bottom: 1px solid var(--rule); }
.svc-areas-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 5vw, 64px) var(--pad); }
.svc-areas-inner .section-label { margin-bottom: 16px; }
.svc-areas-inner h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 2.5vw, 32px); margin: 0 0 24px; letter-spacing: -0.01em; }
.town-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.town-pills a { font-family: var(--cond); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 8px 16px; border: 1.5px solid var(--ink); color: var(--ink); transition: background 0.15s, color 0.15s, border-color 0.15s; }
.town-pills a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Related services */
.svc-related { background: var(--dark); color: var(--on-dark); border-bottom: 1px solid var(--dark-3); }
.svc-related-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); }
.svc-related-inner .section-label { color: var(--accent); margin-bottom: 12px; }
.svc-related-inner > h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(28px, 3.5vw, 46px); letter-spacing: -0.02em; margin: 0 0 40px; color: var(--on-dark); }
.svc-related-inner > h2 em { font-style: italic; font-weight: 300; color: var(--on-dark-m); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

/* ===========================================
   FAQ PAGE
   =========================================== */
.faq-body { background: var(--bg); }
.faq-body-inner { max-width: 860px; margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); }
.faq-category { margin-bottom: 64px; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category > h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(28px, 3.5vw, 42px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 36px; padding-bottom: 16px; border-bottom: 2px solid var(--accent); }
.faq-item { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 0; margin-bottom: 0; }
.faq-q { font-family: var(--serif); font-weight: 700; font-size: clamp(18px, 2vw, 22px); line-height: 1.2; color: var(--ink); margin: 0 0 12px; letter-spacing: -0.01em; }
.faq-a { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.faq-a strong { color: var(--ink); }
.faq-a a { color: var(--accent-d); text-decoration: underline; }

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-body { background: var(--bg); border-bottom: 1px solid var(--rule); }
.contact-body-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(48px, 6vw, 88px); align-items: start; }
.contact-info { }
.contact-info-card { background: var(--dark); color: var(--on-dark); padding: 40px; border: 1.5px solid var(--ink); box-shadow: 8px 8px 0 var(--accent); }
.contact-info-card h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(26px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.02em; color: var(--on-dark); margin: 0 0 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail:last-of-type { margin-bottom: 0; }
.contact-detail-icon { width: 38px; height: 38px; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-m); margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { font-size: 17px; color: var(--on-dark); text-decoration: none; display: block; line-height: 1.4; }
.contact-detail-text a:hover { color: var(--accent); }
.contact-hours { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--dark-3); }
.contact-hours h3 { font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
.contact-hours p { font-size: 15px; color: var(--on-dark-m); margin: 0; line-height: 1.6; }
.contact-social { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--dark-3); }
.contact-social h3 { font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
.contact-social-links { display: flex; gap: 10px; }
.contact-social-links a { font-family: var(--cond); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--on-dark-m); padding: 8px 16px; border: 1px solid var(--dark-3); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.contact-social-links a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===========================================
   SCROLL REVEAL
   =========================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ===========================================
   SERVICE AREA OVERVIEW PAGE
   =========================================== */
.sa-map-section { background: var(--bg-alt); border-bottom: 1px solid var(--rule); }
.sa-map-section-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); }
.sa-map-section-hd { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; margin-bottom: 48px; }
.sa-map-section-hd h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(30px, 4vw, 52px); line-height: 1; letter-spacing: -0.03em; margin: 12px 0 0; }
.sa-map-section-hd h2 em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.sa-map-section-hd p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin: 0; max-width: 44ch; }
.sa-map-wrap { aspect-ratio: 540/380; max-height: 520px; background: var(--bg); border: 1.5px solid var(--ink); box-shadow: 10px 10px 0 var(--accent); position: relative; overflow: hidden; }

.sa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.sa-card { display: flex; flex-direction: column; padding: 28px 28px 24px; border: 1px solid var(--rule); text-decoration: none; color: var(--ink); background: var(--bg); transition: background 0.15s, box-shadow 0.15s; position: relative; }
.sa-card:hover { background: var(--ink); color: var(--on-dark); box-shadow: 5px 5px 0 var(--accent); }
.sa-card-county { font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-d); margin: 0 0 8px; transition: color 0.15s; }
.sa-card:hover .sa-card-county { color: var(--accent); }
.sa-card h3 { font-family: var(--serif); font-weight: 800; font-size: clamp(18px, 2vw, 24px); line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 12px; }
.sa-card-link { font-family: var(--cond); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-top: auto; display: inline-flex; align-items: center; gap: 6px; transition: color 0.15s; }
.sa-card:hover .sa-card-link { color: var(--accent); }
.sa-card-link::after { content: "→"; }
.sa-card-hq { border: 1.5px solid var(--accent); background: var(--bg); }
.sa-card-hq .sa-card-county { color: var(--accent); }

/* ===========================================
   TOWN PAGE: About section
   =========================================== */
.area-about { background: var(--bg); border-bottom: 1px solid var(--rule); }
.area-about-inner { max-width: 900px; margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); }
.area-about-inner h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(28px, 3.5vw, 46px); line-height: 1.05; letter-spacing: -0.02em; margin: 12px 0 28px; }
.area-about-inner h2 em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.area-about-inner p { font-size: 17px; color: var(--ink-soft); line-height: 1.75; margin: 0 0 20px; }

/* Town services dark section (3x3 grid) */
.town-svcs { background: var(--dark); color: var(--on-dark); border-bottom: 1px solid var(--dark-3); }
.town-svcs-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); }
.town-svcs-inner .section-label { color: var(--accent); }
.town-svcs-inner > h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(28px, 3.5vw, 48px); line-height: 1; letter-spacing: -0.03em; margin: 0 0 44px; color: var(--on-dark); }
.town-svcs-inner > h2 em { font-style: italic; font-weight: 300; color: var(--on-dark-m); }
.town-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

/* ===========================================
   VIDEO REEL (about page)
   =========================================== */
.video-reel { padding: clamp(48px,7vw,96px) var(--pad); }
.video-reel-inner { max-width: var(--maxw); margin: 0 auto; }
.video-reel h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(28px,4vw,48px); line-height: 1; letter-spacing: -0.03em; margin: 0 0 clamp(24px,3vw,40px); }
.video-reel h2 em { font-style: italic; font-weight: 300; color: var(--accent); }
.video-wrap { border: 1.5px solid var(--ink); box-shadow: 8px 8px 0 var(--accent); background: var(--ink); line-height: 0; }
.reel-player { width: 100%; max-height: 540px; object-fit: contain; display: block; background: #000; }

/* ===========================================
   PROSE SECTIONS (about page)
   =========================================== */
.prose-section { padding: clamp(48px, 7vw, 88px) var(--pad); }
.prose-section.alt { background: var(--bg-alt); }
.prose-section-inner { max-width: 760px; margin: 0 auto; }
.prose-section h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 20px; }
.prose-section h2 em { font-style: italic; font-weight: 300; color: var(--accent); }
.prose-section p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 16px; }
.prose-section p:last-child { margin-bottom: 0; }
.prose-section .creds { margin-top: 28px; }

/* ===========================================
   REVIEWS PAGE — supplemental
   =========================================== */
.reviews-note { text-align: center; font-family: var(--cond); font-size: 13px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--on-dark-m); margin: 0 0 32px; }
.google-review-cta { background: var(--dark-2); color: var(--on-dark); padding: clamp(48px, 6vw, 72px) var(--pad); text-align: center; border-top: 3px solid var(--accent); border-bottom: 1px solid var(--dark-3); }
.google-review-cta-inner { max-width: 580px; margin: 0 auto; }
.google-review-cta h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(26px, 3.5vw, 42px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 14px; color: var(--on-dark); }
.google-review-cta h2 em { font-style: italic; font-weight: 300; color: var(--accent); }
.google-review-cta p { font-size: 16px; color: var(--on-dark-m); margin: 0 0 28px; }
.reviews-seo { background: var(--bg-alt); padding: clamp(28px, 3.5vw, 44px) var(--pad); border-top: 1px solid var(--rule); }
.reviews-seo-inner { max-width: 760px; margin: 0 auto; }
.reviews-seo p { font-size: 15px; line-height: 1.7; color: var(--ink-muted); margin: 0; }

/* ===========================================
   GALLERY PAGE
   =========================================== */
.gallery-section { background: var(--bg); border-bottom: 1px solid var(--rule); }
.gallery-section-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad); }

.gallery-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1.5px solid var(--ink);
}
.gallery-filter {
  font-family: var(--cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 18px; border: 1.5px solid var(--rule);
  background: transparent; color: var(--ink);
  cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.gallery-filter:hover { background: var(--bg-alt); border-color: var(--ink); }
.gallery-filter.active { background: var(--ink); color: var(--accent); border-color: var(--ink); }

.gallery-count {
  font-family: var(--cond); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 24px;
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.gallery-card {
  display: flex; flex-direction: column;
  border: 1.5px solid var(--ink); background: var(--bg);
  transition: box-shadow 0.18s, transform 0.18s; position: relative;
}
.gallery-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--accent); }
.gallery-card[hidden] { display: none; }

.gallery-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--dark-2); }
.gallery-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-card:hover .gallery-media img { transform: scale(1.04); }

.gallery-cat {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--accent); color: #fff;
  font-family: var(--cond); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 12px; pointer-events: none;
}

.gallery-video-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--dark); color: var(--accent);
  font-family: var(--cond); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--accent);
}

.gallery-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,14,12,0.45);
}
.gallery-play-btn {
  width: 60px; height: 60px;
  background: var(--accent); border: 3px solid #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; padding-left: 5px;
  transition: transform 0.2s, background 0.2s;
}
.gallery-card:hover .gallery-play-btn { transform: scale(1.1); background: var(--accent-d); }

.gallery-info { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.gallery-info h3 {
  font-family: var(--serif); font-weight: 700; font-size: 17px;
  line-height: 1.25; margin: 0; letter-spacing: -0.01em; color: var(--ink);
}
.gallery-info p { font-size: 13px; line-height: 1.5; color: var(--ink-soft); margin: 0; }
.gallery-info-meta {
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); margin-top: 2px;
}

/* ===========================================
   LIGHTBOX
   =========================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(14px, 2vw, 32px) clamp(60px, 8vw, 100px);
  background: rgba(15,14,12,0.96);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }

.lightbox-stage {
  position: relative; z-index: 2;
  max-width: 960px; width: 100%;
  display: flex; flex-direction: column;
  max-height: 94vh;
}

.lightbox-media {
  background: var(--dark-2);
  border: 1.5px solid rgba(237,232,220,0.12);
  box-shadow: 8px 8px 0 var(--accent);
  position: relative; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-media img { max-height: 64vh; width: 100%; object-fit: contain; display: block; }
.lightbox-media video { max-height: 64vh; width: 100%; display: block; background: #000; }

.lightbox-caption {
  background: var(--dark-2);
  border: 1.5px solid rgba(237,232,220,0.12); border-top: 0;
  padding: 16px 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: start;
}
.lightbox-caption-text { min-width: 0; }
.lb-cat {
  font-family: var(--cond); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 4px;
}
.lb-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(15px, 2vw, 20px); line-height: 1.2;
  color: var(--on-dark); margin: 0 0 4px; letter-spacing: -0.01em;
}
.lb-desc { font-size: 13px; color: var(--on-dark-m); margin: 0; line-height: 1.5; }
.lb-meta {
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-m); opacity: 0.6; margin-top: 6px; display: block;
}
.lb-counter {
  font-family: var(--cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-m); white-space: nowrap; padding-top: 2px;
}

.lightbox-close {
  position: fixed; top: 16px; right: 16px; z-index: 3;
  width: 46px; height: 46px;
  background: var(--accent); border: 2px solid var(--accent);
  color: #fff; font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-close:hover { background: var(--accent-d); border-color: var(--accent-d); }

.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px;
  background: rgba(15,14,12,0.6); border: 1.5px solid rgba(237,232,220,0.2);
  color: var(--on-dark); font-size: 20px;
  font-family: var(--cond); font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lightbox-prev:disabled, .lightbox-next:disabled { opacity: 0.2; cursor: default; pointer-events: none; }

.lb-video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: rgba(15,14,12,0.55);
}
.lb-video-placeholder .lb-play {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent); border: 4px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; padding-left: 6px;
}
.lb-video-placeholder span {
  font-family: var(--cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-m);
}

@media (max-width: 640px) {
  .lightbox { padding: 8px 8px 8px 8px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lb-desc { display: none; }
  .lightbox-close { top: 8px; right: 8px; }
}

/* ===========================================
   RESPONSIVE: 1024px
   =========================================== */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .quote-card { max-width: 560px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .svcs-featured-hd { flex-direction: column; align-items: flex-start; }
  .feat-grid { grid-template-columns: 1fr; }
  .svcs-list-hd { grid-template-columns: 1fr; gap: 12px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 100%; }
  .reviews-hd { grid-template-columns: 1fr; gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .area-inner { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  /* Interior pages */
  .page-hero-inner { grid-template-columns: 1fr; }
  .svc-intro-inner { grid-template-columns: 1fr; }
  .svc-steps { grid-template-columns: 1fr 1fr; }
  .svc-checklist { grid-template-columns: 1fr; gap: 0; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .quote-section-inner { grid-template-columns: 1fr; }
  .contact-body-inner { grid-template-columns: 1fr; }
  /* Service area */
  .sa-map-section-hd { grid-template-columns: 1fr; gap: 12px; }
  .sa-grid { grid-template-columns: repeat(3, 1fr); }
  .town-svc-grid { grid-template-columns: 1fr 1fr; }
  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================================
   RESPONSIVE: 640px
   =========================================== */
@media (max-width: 640px) {
  .util-inner { justify-content: center; text-align: center; }
  .logo-img { height: 42px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-inner { grid-template-columns: 1fr; }
  .feat-card { padding: 28px 24px; }
  .svc-ol { grid-template-columns: 1fr; }
  .svc-ol > li:nth-child(odd) .svc-row { padding-right: 0; border-right: 0; }
  .svc-ol > li:nth-child(even) .svc-row { padding-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .town-grid { grid-template-columns: 1fr 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
  .sa-grid { grid-template-columns: 1fr 1fr; }
  .town-svc-grid { grid-template-columns: 1fr; }
  .about-stamp { width: 112px; height: 112px; bottom: -18px; right: -10px; }
  .about-stamp strong { font-size: 34px; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  /* Interior pages */
  .svc-checklist li { display: block; padding-left: 24px; position: relative; }
  .svc-checklist li::before { position: absolute; left: 0; top: 13px; }
  .svc-steps { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .page-hero-content h1 { font-size: clamp(34px, 8vw, 56px); }
  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 6px; }
  .gallery-filter { font-size: 11px; padding: 7px 14px; }
}
