/*
Theme Name: Dias Souza Construction
Theme URI: https://diassouzaconstruction.com
Author: Mendes Design Co
Author URI: https://mendesdesignco.com
Description: Custom theme for Dias Souza Construction — Masonry Contractor in Lowell, MA
Version: 3.3
*/

/* v3.3 (v45) — May 2026: opened up services-grid and gallery-mosaic gaps to 12px for visual breathing room */

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Barlow',sans-serif; font-weight:300; background:#fff; color:#1a1a1a; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }

/* ── TOKENS ── */
:root {
  --red:    #a91214;
  --ink:    #1a1a1a;
  --stone:  #f5f3f0;
  --fog:    #e8e5e1;
  --mist:   #9a9590;
  --white:  #ffffff;
  --ease:   cubic-bezier(0.4,0,0.2,1);

  --f-display: 'Cormorant Garamond', serif;
  --f-sans:    'Barlow Condensed', sans-serif;
  --f-body:    'Barlow', sans-serif;

  /* Layout system */
  --max: 1320px;
  --pad: 56px;
  --pad-sm: 24px;
}

/* ── LAYOUT SYSTEM ── */
/* Every section uses .section + .container */
.section        { padding: 96px 0; border-bottom: 1px solid var(--fog); }
.section--dark  { background: var(--ink); }
.section--stone { background: var(--stone); }
.container      { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* Standard two-column split */
.split          { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split--wide    { grid-template-columns: 1.5fr 1fr; gap: 80px; }
.split--reverse { }

/* Section header */
.sec-header     { margin-bottom: 52px; }
.sec-header--center { text-align: center; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--mist);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--red); flex-shrink: 0;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light  { color: rgba(255,255,255,0.6); }
.eyebrow--light::before { background: var(--red); }

.heading-display {
  font-family: var(--f-display);
  font-weight: 300; line-height: 1.0;
  color: var(--ink);
}
.heading-display--light { color: var(--white); }

.heading-sans {
  font-family: var(--f-sans);
  font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; line-height: 1.0;
  color: var(--ink);
}

.body-text {
  font-family: var(--f-body);
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: var(--mist);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 14px 36px;
  transition: all 0.3s var(--ease);
  cursor: pointer; border: none;
}
.btn--dark   { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--red); }
.btn--red    { background: var(--red); color: var(--white); }
.btn--red:hover { background: #7a0d0e; }
.btn--outline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--white); }
.btn--outline:hover { background: var(--red); border-color: var(--red); }
.btn--ghost {
  background: transparent; border: none; padding: 0;
  color: var(--mist); font-family: var(--f-sans);
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.3s;
}
.btn--ghost::after { content: '→'; transition: transform 0.3s; }
.btn--ghost:hover { color: var(--ink); }
.btn--ghost:hover::after { transform: translateX(4px); }
.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { background: var(--red); color: var(--white); }

/* ── NAVIGATION ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 104px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--fog);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; height: 100%;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 48px;
}
.nav-logo { display: block; text-decoration: none; }
.nav-logo img { height: 80px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--f-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--mist);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 20px; justify-content: flex-end; }
.nav-phone {
  font-family: var(--f-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; color: var(--ink);
}
/* Phone icon CTA — mobile only */
.nav-phone-icon { display: none; color: var(--red); align-items: center; justify-content: center; }
.nav-phone-icon svg { width: 22px; height: 22px; display: block; }
/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 1100; position: relative; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: transform 0.3s, opacity 0.2s; transform-origin: center; }
.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--stone);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu[hidden] { display: none; }
.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }

.mobile-menu-inner {
  position: relative;
  max-width: 560px;
  height: 100%;
  margin: 0 auto;
  padding: 24px 28px 32px;
  display: flex; flex-direction: column;
  box-sizing: border-box;
}
.mobile-menu-top {
  display: flex; justify-content: flex-end;
  height: 32px;
  margin-bottom: 32px;
}
.mobile-menu-close {
  width: 32px; height: 32px;
  background: none; border: none; padding: 0;
  cursor: pointer; position: relative;
}
.mobile-menu-close span {
  position: absolute; top: 50%; left: 50%;
  width: 22px; height: 1.5px; background: var(--ink);
  transform-origin: center;
}
.mobile-menu-close span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.mobile-menu-close span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }

.mobile-menu-eyebrow {
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
  display: inline-block;
  margin-bottom: 24px;
  position: relative;
}
.mobile-menu-eyebrow::after {
  content: ""; display: block;
  width: 28px; height: 1px;
  background: var(--red);
  margin-top: 6px;
}

.mobile-menu-nav { flex: 1; }
.mobile-menu-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 18px;
}
.mobile-menu-nav a {
  font-family: var(--f-display);
  font-size: 38px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  transition: color 0.2s;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus { color: var(--red); }

.mobile-menu-foot {
  border-top: 1px solid var(--fog);
  padding-top: 18px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mobile-menu-phone {
  font-family: var(--f-sans);
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}
.mobile-menu-loc {
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist);
}

/* Hide overlay entirely above mobile breakpoint */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* ── HERO ── */
.hero {
  position: relative; height: 80vh; min-height: 600px; max-height: 820px; overflow: hidden;
  margin-top: 0; padding-top: 104px;
}
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transform: scale(1.04); animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.0); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,8,6,0.62) 0%, rgba(10,8,6,0.22) 40%, rgba(10,8,6,0) 75%),
    linear-gradient(to right, rgba(10,8,6,0.45) 0%, rgba(10,8,6,0) 40%);
}
.hero-body {
  position: absolute; bottom: 56px; left: 56px; right: auto;
  max-width: 560px;
}
.hero-eyebrow {
  font-family: var(--f-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 14px;
  animation: fadeUp 1s 0.3s var(--ease) both;
}
.hero-h1 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(40px, 4.6vw, 64px); line-height: 1.05;
  color: var(--white); letter-spacing: -0.5px; margin-bottom: 28px;
  animation: fadeUp 1s 0.5s var(--ease) both;
}
.hero-h1 em { font-style: italic; color: rgba(255,255,255,0.7); }
.hero-actions { display: flex; align-items: center; gap: 24px; animation: fadeUp 1s 0.7s var(--ease) both; }
.hero-scroll {
  display: none;
  position: absolute; right: var(--pad); bottom: 40px;
  flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-family: var(--f-sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.45); writing-mode: vertical-rl; }
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent); animation: scrollLine 2.5s 1s ease-in-out infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── TRUST BAR ── */
.trust-bar { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-bar-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; gap: 0; overflow-x: auto;
}
.trust-item { display: flex; align-items: center; gap: 10px; padding: 18px 32px; border-right: 1px solid rgba(255,255,255,0.07); white-space: nowrap; }
.trust-item:first-child { padding-left: 0; }
.trust-icon { font-size: 13px; color: var(--red); font-style: normal; }
.trust-text { font-family: var(--f-sans); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.72); }

/* ── STATS ── */
.stats-wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--fog);
  border: 1px solid var(--fog);
}
.stat-box { background: var(--white); padding: 48px 40px; }
.stat-num {
  font-family: var(--f-display); font-size: 56px; font-weight: 300;
  color: var(--ink); line-height: 1; margin-bottom: 10px;
}
.stat-num sup { font-family: var(--f-sans); font-size: 24px; color: var(--red); vertical-align: super; }
.stat-label { font-family: var(--f-sans); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }

/* ── ABOUT ── */
.about-img { position: relative; }
.about-img-frame { aspect-ratio: 16/10; overflow: hidden; }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1px; left: -1px;
  background: var(--red); padding: 22px 28px; color: var(--white); text-align: center;
}
.about-badge-num { font-family: var(--f-display); font-size: 44px; font-weight: 300; line-height: 1; }
.about-badge-text { font-family: var(--f-sans); font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.75; margin-top: 2px; }
.rule { width: 32px; height: 1px; background: var(--red); margin: 20px 0; }
.blockquote { font-family: var(--f-display); font-style: italic; font-size: 17px; line-height: 1.7; color: var(--mist); padding-left: 18px; border-left: 1px solid var(--red); margin: 24px 0 32px; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; background: transparent; }
.svc { background: var(--white); overflow: hidden; }
.svc-img { aspect-ratio: 16/9; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc:hover .svc-img img { transform: scale(1.05); }
.svc-body { padding: 24px 28px 28px; border-top: 2px solid transparent; transition: border-color 0.3s; }
.svc:hover .svc-body { border-top-color: var(--red); }
.svc-name { font-family: var(--f-sans); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ink); margin-bottom: 8px; }
.svc-desc { font-family: var(--f-body); font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--mist); }

/* ── GALLERY ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 380px 300px;
  gap: 12px;
}
.gal { overflow: hidden; position: relative; cursor: pointer; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gal:hover img { transform: scale(1.04); }
.gal--tall { grid-row: span 2; }
.gal-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.52); color: rgba(255,255,255,0.9);
  font-family: var(--f-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 12px; text-align: center; z-index: 5;
}

/* ── QUOTE BREAK ── */
.quote-break { padding: 72px 0; border-bottom: 1px solid var(--fog); }
.quote-break-inner { max-width: 640px; margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.quote-break p { font-family: var(--f-display); font-style: italic; font-size: clamp(18px,2.5vw,26px); font-weight: 300; line-height: 1.7; color: var(--mist); }
.quote-break-rule { width: 24px; height: 1px; background: var(--red); margin: 20px auto 0; }

/* ── WHY US ── */
.why-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.why-img-side { overflow: hidden; }
.why-img-side img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; filter: brightness(0.9); }
.why-content-side {
  background: var(--ink); padding: 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.why-list { display: flex; flex-direction: column; margin-top: 36px; }
.why-row { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.why-row:last-child { border-bottom: none; }
.why-n { font-family: var(--f-sans); font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--red); padding-top: 3px; min-width: 24px; }
.why-h { font-family: var(--f-sans); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.95); margin-bottom: 5px; }
.why-p { font-family: var(--f-body); font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.72); }
.why-quote { font-family: var(--f-display); font-style: italic; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.55); margin: 24px 0 32px; padding-left: 16px; border-left: 1px solid var(--red); }

/* ── REVIEWS ── */
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.reviews-rating { text-align: right; }
.reviews-stars { font-size: 16px; margin-bottom: 4px; }
.reviews-count { font-family: var(--f-sans); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--fog); }
.review { background: var(--white); padding: 36px 32px; transition: background 0.3s; }
.review:hover { background: var(--stone); }
.review-open { font-family: var(--f-display); font-size: 44px; font-weight: 300; color: #ccc; line-height: 1; margin-bottom: 4px; }
.review-text { font-family: var(--f-body); font-size: 15px; font-weight: 300; line-height: 1.8; color: #555; margin-bottom: 22px; }
.review-rule { width: 24px; height: 1px; background: var(--red); margin-bottom: 14px; }
.review-name { font-family: var(--f-sans); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink); }
.review-detail { font-family: var(--f-sans); font-size: 11px; color: var(--mist); margin-top: 3px; }

/* ── AREAS ── */
.areas-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.area-tag { border: 1px solid var(--fog); background: var(--white); color: var(--ink); padding: 7px 14px; font-family: var(--f-sans); font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.2s; cursor: default; }
.area-tag:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.contact-stack { display: flex; flex-direction: column; gap: 2px; }
.contact-row { background: var(--white); border: 1px solid var(--fog); padding: 20px 24px; display: flex; align-items: center; gap: 16px; transition: background 0.2s; }
.contact-row:hover { background: rgba(169,18,20,0.04); }
.contact-icon { font-size: 16px; color: var(--red); width: 28px; text-align: center; font-style: normal; }
.contact-label { font-family: var(--f-sans); font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--mist); }
.contact-val { font-family: var(--f-sans); font-size: 16px; font-weight: 600; color: var(--ink); margin-top: 2px; }

/* ── CTA ── */
.cta-section { position: relative; height: 440px; overflow: hidden; }
.cta { position: relative; height: 440px; overflow: hidden; }
.cta-img { position: absolute; inset: 0; }
.cta-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-scrim { position: absolute; inset: 0; background: rgba(10,8,6,0.35); }
.cta-body { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.cta-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.cta-h2 { font-family: var(--f-display); font-weight: 300; font-size: clamp(40px,6vw,72px); line-height: 0.95; color: var(--white); margin-bottom: 10px; }
.cta-h2 em { font-style: italic; color: rgba(255,255,255,0.45); }
.cta-content h2 { font-family: var(--f-display); font-weight: 300; line-height: 0.95; color: var(--white); margin-bottom: 10px; }
.cta-content h2 em { font-style: italic; color: rgba(255,255,255,0.45); }
.cta-sub { font-family: var(--f-sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 32px; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 72px 0 36px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.footer-logo img { height: 112px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; display: block; }
.footer-desc { font-family: var(--f-body); font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.65); max-width: 280px; }
.footer-col-title { font-family: var(--f-sans); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a { font-family: var(--f-body); font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.78); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,1); }
.footer-hours { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.footer-hour { display: flex; justify-content: space-between; gap: 12px; font-family: var(--f-body); font-size: 14px; color: rgba(255,255,255,0.78); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-family: var(--f-body); font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45); }
/* MDC Credit */
.mdc-credit { display: inline-flex; align-items: center; gap: 0.75rem; font-family: 'Barlow Condensed',system-ui,sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.mdc-credit-text { color: rgba(255,255,255,0.55); }
.mdc-credit-logo { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; color: var(--white); transition: opacity 0.2s; }
.mdc-credit-logo:hover { opacity: 0.7; }
.mdc-line1 { color: var(--white); }
.mdc-line2 { color: #059669; border-bottom: 1px solid #059669; padding-bottom: 1px; margin-top: 1px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  :root { --pad: var(--pad-sm); }

  /* Nav */
  header { height: 80px; }
  .nav-inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 20px; gap: 0;
  }
  .nav-logo { justify-self: center; }
  .nav-logo img { height: 60px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; justify-self: start; }
  .nav-right { gap: 12px; justify-self: end; }
  .nav-cta-desktop { display: none; }
  .nav-phone-icon { display: inline-flex; }

  /* Hero */
  .hero { height: 88vh; min-height: 560px; padding-top: 80px; }
  .hero-body { left: 20px; right: 20px; bottom: 40px; max-width: none; }
  .hero-h1 { font-size: clamp(40px,9vw,56px); margin-bottom: 22px; line-height: 1.05; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-scroll { display: flex; right: 20px; bottom: 32px; }

  /* Trust */
  .trust-bar-inner { padding: 0 20px; gap: 0; }
  .trust-item { padding: 14px 20px; }

  /* Sections */
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-box { padding: 32px 24px; }
  .stat-num { font-size: 44px; }

  /* Split */
  .split, .split--wide { grid-template-columns: 1fr; gap: 36px; }
  .about-img { order: -1; }
  .about-img-frame { aspect-ratio: 3/2; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
    gap: 4px;
  }
  .gal--tall { grid-row: span 1; }
  .gal:first-child { grid-column: span 2; }

  /* Why */
  .why-split { grid-template-columns: 1fr; }
  .why-img-side { display: none; }
  .why-content-side { padding: 52px 20px; }

  /* Reviews */
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* Areas */
  .areas-split { grid-template-columns: 1fr; gap: 40px; }

  /* CTA */
  .cta-section { height: 340px; }
  .cta-h2 { font-size: clamp(32px,10vw,48px); }

  /* Footer */
  footer { padding: 52px 0 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  :root { --pad: 32px; }
  header { height: 92px; }
  .nav-logo img { height: 68px; }
  .hero { padding-top: 92px; }
  .hero-body { left: 32px; bottom: 40px; }
  .hero-h1 { font-size: clamp(40px,5.5vw,56px); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-mosaic { grid-template-rows: 280px 220px; }
}


/* ════════════════════════════════════════════════════════════
   STEP 1B — HOMEPAGE PREVIEW COMPONENTS
   ──────────────────────────────────────────────────────────── */

/* Link with trailing arrow — used for "Read more →" / "View all →" patterns */
.link-arrow {
  font-family: var(--f-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.link-arrow:hover { color: var(--red); border-color: var(--ink); }
.link-arrow--inline { padding-bottom: 0; border-bottom: none; }
.link-arrow--inline:hover { color: var(--red); }

/* Preview actions — button + secondary link side by side */
.preview-actions {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 8px;
}

/* Service cards as full-card links (no underlines, no color shift on text) */
a.svc.svc--linked {
  text-decoration: none; color: inherit;
  display: block;
  cursor: pointer;
}
a.svc.svc--linked .svc-name,
a.svc.svc--linked .svc-desc { color: inherit; }
a.svc.svc--linked:hover .svc-img img {
  transform: scale(1.04);
}
a.svc.svc--linked .svc-img img {
  transition: transform 0.6s var(--ease);
}

/* Reviews grid 3-column variant for the homepage preview */
.reviews-grid--three { grid-template-columns: repeat(3, 1fr); }

/* Mobile: collapse 3-col reviews to 1-col */
@media (max-width: 768px) {
  .reviews-grid--three { grid-template-columns: 1fr; }
  .preview-actions { gap: 16px; }
  .preview-actions .btn { width: 100%; text-align: center; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reviews-grid--three { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   STEP 2 — INTERIOR PAGES SYSTEM
   ──────────────────────────────────────────────────────────── */

/* ── PAGE HERO — locked at 40vh, ignore any inherited rules ── */
.page-hero {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 40vh !important;
  min-height: 280px !important;
  max-height: 480px !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-top: 104px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
.page-hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}
.page-hero-img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 45% !important;
}
/* About page: shift the crop down so the steps fill the frame and the people/equipment in the top of the source photo are cropped out. */
.page-template-page-about .page-hero-img img {
  object-position: center 70% !important;
}
.page-hero-scrim {
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(to top, rgba(10,8,6,0.62) 0%, rgba(10,8,6,0.28) 50%, rgba(10,8,6,0.15) 100%),
    linear-gradient(to right, rgba(10,8,6,0.42) 0%, rgba(10,8,6,0) 50%) !important;
}
.page-hero-body {
  position: absolute !important;
  bottom: 28px !important;
  left: 56px !important;
  right: auto !important;
  max-width: 720px !important;
  z-index: 2 !important;
}
.page-hero-eyebrow {
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
}
.page-hero-h1 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(28px, 3.2vw, 44px); line-height: 1.05;
  color: var(--white); letter-spacing: -0.5px;
  margin: 0;
}
.page-hero-h1 em { font-style: italic; color: rgba(255,255,255,0.7); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--stone);
  border-bottom: 1px solid var(--fog);
  padding: 18px 0;
}
.breadcrumb-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  font-family: var(--f-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--mist);
}
.breadcrumb-inner a { color: var(--mist); transition: color 0.2s; text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--fog); margin: 0 12px; }
.breadcrumb-current { color: var(--ink); }

/* ── ABOUT PAGE ── */

/* Story section (full bleed image left, content right) */
.story-section { padding: 96px 0; }
.story-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 88px;
  align-items: center;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.story-img-frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.story-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.story-img-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  padding: 14px 20px;
  font-family: var(--f-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink);
  border-left: 2px solid var(--red);
}
.story-content .eyebrow { margin-bottom: 14px; }
.story-content h2 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(36px, 4vw, 58px); line-height: 1.05;
  color: var(--ink); margin-bottom: 8px;
}
.story-content h2 em { font-style: italic; color: var(--mist); }
.story-content .rule { margin: 20px 0 28px; }
.story-content p {
  font-family: var(--f-body); font-size: 16px; font-weight: 300;
  line-height: 1.85; color: var(--mist); margin-bottom: 18px;
}
.story-content .pt-quote {
  font-family: var(--f-display); font-style: italic;
  font-size: 18px; line-height: 1.7;
  color: var(--ink);
  padding: 24px 28px;
  margin: 32px 0;
  background: var(--stone);
  border-left: 3px solid var(--red);
}
.story-content .pt-quote-cite {
  display: block;
  margin-top: 12px;
  font-family: var(--f-sans); font-style: normal;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
}

/* Approach section (full bleed dark, similar to Why Us but unique) */
.approach-section {
  background: var(--ink);
  padding: 96px 0;
}
.approach-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.approach-header {
  max-width: 720px;
  margin-bottom: 64px;
}
.approach-header .eyebrow {
  color: rgba(255,255,255,0.6); margin-bottom: 14px;
}
.approach-header h2 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(36px, 4vw, 58px); line-height: 1.05;
  color: var(--white); margin-bottom: 18px;
}
.approach-header h2 em { font-style: italic; color: rgba(255,255,255,0.55); }
.approach-header p {
  font-family: var(--f-body); font-size: 16px; font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,0.72);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.approach-cell {
  background: var(--ink);
  padding: 36px 32px;
}
.approach-cell-num {
  font-family: var(--f-display); font-weight: 300;
  font-size: 32px; color: var(--red);
  line-height: 1; margin-bottom: 18px;
}
.approach-cell-h {
  font-family: var(--f-sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.95); margin-bottom: 10px;
}
.approach-cell-p {
  font-family: var(--f-body); font-size: 14px; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.65);
}

/* Brand statement section (full bleed, generous whitespace) */
.statement-section {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}
.statement-inner {
  max-width: 800px; margin: 0 auto; padding: 0 var(--pad);
}
.statement-eyebrow {
  font-family: var(--f-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 28px;
}
.statement-body {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: clamp(28px, 3vw, 42px); line-height: 1.35;
  color: var(--ink); margin-bottom: 32px;
}
.statement-rule {
  width: 32px; height: 1px;
  background: var(--red);
  margin: 0 auto;
}

/* ── 404 PAGE ── */
.fourohfour {
  min-height: calc(100vh - 104px);
  display: flex; align-items: center; justify-content: center;
  background: var(--stone);
  padding: 96px var(--pad);
  text-align: center;
}
.fourohfour-inner { max-width: 560px; }
.fourohfour-num {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(96px, 14vw, 180px); line-height: 1;
  color: var(--ink); margin-bottom: 8px;
  letter-spacing: -2px;
}
.fourohfour-num em { font-style: italic; color: var(--red); }
.fourohfour-h1 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(28px, 3vw, 42px); line-height: 1.1;
  color: var(--ink); margin-bottom: 20px;
}
.fourohfour-p {
  font-family: var(--f-body); font-size: 16px; font-weight: 300;
  line-height: 1.85; color: var(--mist); margin-bottom: 36px;
  max-width: 460px; margin-left: auto; margin-right: auto;
}
.fourohfour-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

/* ── SERVICES PAGE ── */
.services-intro { padding: 88px 0 64px; }
.services-intro-inner {
  max-width: 880px; margin: 0 auto; padding: 0 var(--pad);
  text-align: center;
}
.services-intro-inner .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.services-intro-inner h2 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(36px, 4vw, 56px); line-height: 1.05;
  color: var(--ink); margin-bottom: 22px;
}
.services-intro-inner h2 em { font-style: italic; color: var(--mist); }
.services-intro-inner p {
  font-family: var(--f-body); font-size: 17px; font-weight: 300;
  line-height: 1.75; color: var(--mist);
}

/* Service rows — alternating layout */
.svc-row { padding: 80px 0; border-top: 1px solid var(--fog); }
.svc-row:first-of-type { border-top: 0; }
.svc-row-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 88px;
  align-items: center;
}
.svc-row--reverse .svc-row-inner > .svc-img { order: 2; }
.svc-row--reverse .svc-row-inner > .svc-body { order: 1; }

.svc-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--stone);
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.svc-img:hover img { transform: scale(1.04); }
.svc-img-tag {
  position: absolute; bottom: 0; left: 0;
  background: var(--white);
  padding: 14px 22px;
  font-family: var(--f-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink);
  border-left: 2px solid var(--red);
}

.svc-body { padding-right: 24px; }
.svc-body .eyebrow { margin-bottom: 14px; }
.svc-body h3 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(28px, 3vw, 42px); line-height: 1.08;
  color: var(--ink); margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.svc-body p {
  font-family: var(--f-body); font-size: 16px; font-weight: 300;
  line-height: 1.85; color: var(--mist); margin-bottom: 26px;
}
.svc-list {
  list-style: none; padding: 0; margin: 0 0 32px 0;
}
.svc-list li {
  font-family: var(--f-body); font-size: 15px; font-weight: 400;
  line-height: 1.55; color: var(--ink);
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--fog);
  position: relative;
}
.svc-list li:last-child { border-bottom: 0; }
.svc-list li::before {
  content: "+";
  position: absolute; left: 0; top: 12px;
  color: var(--red); font-weight: 600;
  font-family: var(--f-sans); font-size: 16px;
}
.svc-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); text-decoration: none;
  padding-bottom: 6px; border-bottom: 1px solid var(--red);
  transition: gap 0.2s ease;
}
.svc-cta:hover { gap: 14px; }
.svc-cta span { font-size: 14px; }

/* ── INTERIOR PAGES — RESPONSIVE ── */
@media (max-width: 768px) {
  .page-hero { padding-top: 80px !important; height: 40vh !important; min-height: 220px !important; max-height: 320px !important; }
  .page-hero-body { left: 20px !important; right: 20px !important; bottom: 20px !important; max-width: none !important; }
  .page-hero-h1 { font-size: clamp(24px, 6vw, 36px); }
  .breadcrumb-inner { padding: 0 20px; font-size: 10px; }
  .breadcrumb-sep { margin: 0 8px; }

  .story-section { padding: 56px 0; }
  .story-split { grid-template-columns: 1fr; gap: 48px; padding: 0 20px; }

  .approach-section { padding: 56px 0; }
  .approach-grid { grid-template-columns: 1fr; }

  .statement-section { padding: 64px 0; }

  .fourohfour { padding: 64px 20px; }
  .fourohfour-actions { flex-direction: column; }
  .fourohfour-actions .btn { width: 100%; text-align: center; }

  /* Services page mobile */
  .services-intro { padding: 56px 0 40px; }
  .svc-row { padding: 56px 0; }
  .svc-row-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .svc-row--reverse .svc-row-inner > .svc-img { order: 1; }
  .svc-row--reverse .svc-row-inner > .svc-body { order: 2; }
  .svc-body { padding-right: 0; }
  .svc-img { aspect-ratio: 4/3; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .page-hero { padding-top: 92px !important; }
  .page-hero-body { left: 32px !important; }
  .story-split { grid-template-columns: 1fr; gap: 56px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-row-inner { gap: 56px; }
}
/* ══════════════════════════════════════════════════════════════
   GALLERY PAGE — append to end of style.css before any final
   responsive/media-only blocks. v2.5 / page-gallery.php
   ══════════════════════════════════════════════════════════════ */

/* ── GALLERY INTRO ── */
.gal-intro {
  padding: 96px var(--pad) 56px;
  background: var(--white);
}
.gal-intro-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.gal-intro-h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  color: var(--ink);
  margin: 18px 0 20px;
  font-weight: 300;
}
.gal-intro-h2 em {
  font-style: italic;
  color: var(--red);
}
.gal-intro-sub {
  max-width: 620px;
  margin: 0 auto;
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.6;
}

/* ── FILTER CHIPS ── */
.gal-filter {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fog);
  padding: 18px var(--pad);
}
.gal-filter-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gal-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--fog);
  background: var(--white);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.gal-chip:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-1px);
}
.gal-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.gal-chip.is-active .gal-chip-count {
  background: var(--red);
  color: var(--white);
}
.gal-chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: var(--fog);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  font-family: var(--f-body);
  letter-spacing: 0;
  transition: all 0.25s var(--ease);
}

/* ── MASONRY GRID ── */
.gal-section {
  padding: 56px var(--pad) 96px;
  background: var(--stone);
}
.gal-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gal-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--ink);
  cursor: pointer;
  overflow: hidden;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  grid-row: span 1;
  transition: transform 0.4s var(--ease);
}
.gal-tile--tall {
  grid-row: span 2;
}
.gal-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
}
.gal-tile:hover img {
  transform: scale(1.06);
}
.gal-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  background: linear-gradient(
    to top,
    rgba(10, 8, 6, 0.78) 0%,
    rgba(10, 8, 6, 0.32) 45%,
    rgba(10, 8, 6, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.gal-tile:hover .gal-tile-overlay,
.gal-tile:focus-visible .gal-tile-overlay {
  opacity: 1;
}
.gal-tile-cat {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease) 0.05s;
}
.gal-tile-caption {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.15;
  color: var(--white);
  font-weight: 400;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease) 0.1s;
}
.gal-tile:hover .gal-tile-cat,
.gal-tile:hover .gal-tile-caption,
.gal-tile:focus-visible .gal-tile-cat,
.gal-tile:focus-visible .gal-tile-caption {
  transform: translateY(0);
}
.gal-tile:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* Subtle red corner tick — gives each tile a small premium signature */
.gal-tile::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.gal-tile:hover::after,
.gal-tile:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.gal-empty {
  max-width: var(--max);
  margin: 60px auto;
  text-align: center;
  color: var(--mist);
  font-family: var(--f-body);
  font-size: 16px;
}

/* ── LIGHTBOX ── */
/* CRITICAL: when [hidden] attribute is set, force display:none.
   Without this, the .gal-lightbox div (position:fixed; inset:0;) covers the
   entire viewport invisibly and eats clicks on nav, footer, every link. */
.gal-lightbox[hidden] {
  display: none !important;
}
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 6, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease);
}
.gal-lightbox.is-open {
  background: rgba(10, 8, 6, 0.96);
}
.gal-lb-stage {
  position: relative;
  max-width: 92vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gal-lightbox.is-open .gal-lb-stage {
  opacity: 1;
  transform: scale(1);
}
.gal-lb-stage img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.gal-lb-meta {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s var(--ease) 0.15s;
  pointer-events: none;
  max-width: 90vw;
}
.gal-lightbox.is-open .gal-lb-meta { opacity: 1; }
.gal-lb-cat {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.gal-lb-caption {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 4px;
}
.gal-lb-count {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}
.gal-lb-close,
.gal-lb-prev,
.gal-lb-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.gal-lb-close:hover,
.gal-lb-prev:hover,
.gal-lb-next:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}
.gal-lb-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.gal-lb-prev,
.gal-lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.gal-lb-prev { left: 24px; }
.gal-lb-next { right: 24px; }

/* ── RESPONSIVE: GALLERY ── */
@media (max-width: 980px) {
  .gal-intro { padding: 64px var(--pad-sm) 40px; }
  .gal-section { padding: 40px var(--pad-sm) 72px; }
  .gal-filter { padding: 14px var(--pad-sm); }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .gal-tile-caption { font-size: 18px; }
}

@media (max-width: 560px) {
  .gal-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gal-tile--tall { grid-row: span 1; } /* single column negates tall */
  .gal-chip {
    padding: 8px 14px;
    font-size: 12px;
  }
  .gal-chip-count {
    min-width: 20px;
    height: 20px;
    font-size: 10px;
  }
  .gal-filter-inner { gap: 6px; }
  .gal-lb-close,
  .gal-lb-prev,
  .gal-lb-next {
    width: 40px;
    height: 40px;
  }
  .gal-lb-prev { left: 12px; }
  .gal-lb-next { right: 12px; }
  .gal-lb-close { top: 16px; right: 16px; }
  .gal-lb-caption { font-size: 17px; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE — page-contact.php
   ══════════════════════════════════════════════════════════════ */

.contact-section {
  padding: 96px var(--pad) 96px;
  background: var(--white);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

/* ── FORM COLUMN ── */
.contact-h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  font-weight: 300;
  color: var(--ink);
  margin: 18px 0 20px;
}
.contact-h2 em { font-style: italic; color: var(--red); }
.contact-sub {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 540px;
  margin: 0 0 48px;
}

/* ── FORM ── */
.contact-form { display: block; }
.form-row { margin-bottom: 22px; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: block; }
.form-label {
  display: block;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-req { color: var(--red); }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--fog);
  background: var(--stone);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  border-radius: 0;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}
.form-field textarea { resize: vertical; min-height: 140px; }

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%231a1a1a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 12px;
  padding-right: 44px;
  cursor: pointer;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--mist);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(169, 18, 20, 0.08);
}

/* Honeypot — visually hidden, accessible to bots */
.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit row */
.form-row--submit {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  border: 0;
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.form-submit-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.form-submit:hover .form-submit-arrow { transform: translateX(4px); }
.form-submit:disabled { opacity: 0.6; cursor: progress; }
.form-fineprint {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--mist);
  margin: 0;
}

/* ── SUCCESS STATE ── */
.contact-success {
  padding: 48px 40px;
  background: var(--stone);
  border-left: 3px solid var(--red);
  margin-top: 8px;
  animation: contactFade 0.45s var(--ease);
}
@keyframes contactFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.contact-success-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}
.contact-success-h {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  margin: 0 0 12px;
}
.contact-success-p {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}
.contact-success-p a { color: var(--red); border-bottom: 1px solid var(--red); }
.contact-success-p a:hover { background: var(--red); color: var(--white); }

/* ── INFO COLUMN ── */
.contact-info-card {
  background: var(--ink);
  color: var(--white);
  padding: 44px 40px;
  position: sticky;
  top: 120px;
}
.contact-info-block {
  padding: 22px 0;
}
.contact-info-block:first-child { padding-top: 0; }
.contact-info-block:last-child { padding-bottom: 0; }
.contact-info-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.contact-info-eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.contact-info-big {
  display: block;
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.2s var(--ease);
}
.contact-info-big:hover { color: var(--red); }
.contact-info-meta {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}
.contact-info-link {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
  word-break: break-word;
}
.contact-info-link:hover { color: var(--red); border-color: var(--red); }
.contact-info-addr {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.contact-info-text {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.contact-info-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--f-body);
  font-size: 14px;
}
.contact-info-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.85);
}
.contact-info-hours li span:first-child {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--f-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

/* ── RESPONSIVE: CONTACT ── */
@media (max-width: 980px) {
  .contact-section { padding: 64px var(--pad-sm) 72px; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info-card {
    position: static;
    padding: 36px 32px;
  }
  .contact-info-big { font-size: 30px; }
}

@media (max-width: 560px) {
  .form-row--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-success { padding: 36px 28px; }
  .contact-success-h { font-size: 26px; }
  .contact-info-card { padding: 32px 24px; }
  .form-row--submit { gap: 16px; }
  .form-submit {
    width: 100%;
    justify-content: center;
  }
}
