/* ════════════════════════════════════════════════════════════════
   KREW BUILD & DESIGN — BRUTALIST LANDING PAGE STYLESHEET
   Navy (#0F2040) · Gold (#C8A96E) · Cream (#F4ECDE)
   ════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  color: #0F2040;
  background: #F4ECDE;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

:root {
  --navy:       #0F2040;
  --navy-dk:    #08142C;
  --gold:       #C8A96E;
  --gold-br:    #DCBE82;
  --gold-dk:    #8B6F3D;
  --cream:      #F4ECDE;
  --cream-2:    #EBDFC9;
  --white:      #FFFFFF;
  --ink:        #0F2040;
  --muted:      #6B5840;
  --line:       #0F2040;
  --max:        1140px;
  --pad:        clamp(1.5rem, 4vw, 2.5rem);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 7vw, 5.25rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 0.95rem; letter-spacing: 0.05em; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }


/* ════════════════════════════════════════════════════════════════
   STICKY NAV (top bar)
   ════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 2px solid var(--gold);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .top {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--cream);
}
.nav-logo .bot {
  color: var(--gold);
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active { border-bottom-color: var(--gold); }
.nav-phone {
  background: var(--gold);
  color: var(--navy);
  padding: 0.7rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--gold-br); }

.nav-toggle { display: none; background: none; border: none; color: var(--cream); cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 4px 0; }

@media (max-width: 820px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo phone toggle";
  }
  .nav-logo { grid-area: logo; }
  .nav-phone {
    grid-area: phone;
    text-align: center;
    justify-self: center;
  }
  .nav-toggle {
    grid-area: toggle;
    display: block;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy-dk);
    padding: 1rem var(--pad);
    border-bottom: 2px solid var(--gold);
    gap: 0.5rem;
  }
  .nav-links.open a { padding: 0.75rem 0; border-bottom: 1px solid rgba(200,169,110,0.2); }
}


/* ════════════════════════════════════════════════════════════════
   HERO — Large brutalist display type + photo + meta grid
   ════════════════════════════════════════════════════════════════ */
.hero {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}
.hero h1 .alt {
  display: block;
  font-weight: 300;
  color: var(--gold);
}

.hero p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-photo {
  background: var(--navy);
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  max-height: 640px;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Meta grid (stat boxes below hero) */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--navy);
  margin-bottom: 2rem;
  border: 2px solid var(--navy);
}
.meta-cell {
  background: var(--cream);
  padding: 1.5rem 1.75rem;
}
.meta-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 0.5rem;
}
.meta-value {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (max-width: 600px) {
  .hero-meta { grid-template-columns: 1fr; }
}

/* CTA row below hero */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}


/* ════════════════════════════════════════════════════════════════
   BUTTONS — Sharp brutalist rectangles, 2px borders
   ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--gold);
  transition: all 0.15s;
  text-decoration: none;
}
.btn:hover { background: var(--navy-dk); }
.btn-outline { background: transparent; color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-br); border-color: var(--gold-br); }


/* ════════════════════════════════════════════════════════════════
   SECTIONS — Hard borders between sections, no soft transitions
   ════════════════════════════════════════════════════════════════ */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 2px solid var(--navy);
}
.section-dark {
  background: var(--navy);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(244, 236, 222, 0.78); }

/* Section header — headline only (no numbered markers) */
.section-header {
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.0;
  margin: 0;
}
.section-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 2rem;
}
.section-dark .section-lead { color: rgba(244,236,222,0.78); }


/* ════════════════════════════════════════════════════════════════
   COMPARISON BLOCK — 2-column with hard center divider
   ════════════════════════════════════════════════════════════════ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--navy);
  border: 2px solid var(--navy);
}
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  background: var(--cream);
  padding: 2rem 1.75rem;
}
.compare-col.win { background: var(--navy); color: var(--cream); }
.compare-col h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.compare-col.win h3 { color: var(--gold); }
.compare-col ul { list-style: none; }
.compare-col li {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(15,32,64,0.2);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.compare-col.win li {
  color: rgba(244,236,222,0.85);
  border-bottom-color: rgba(244,236,222,0.15);
}
.compare-col li:last-child { border-bottom: none; }
.compare-col li::before {
  content: '×';
  color: var(--muted);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}
.compare-col.win li::before {
  content: '+';
  color: var(--gold);
}
.compare-col .total {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--navy);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.compare-col.win .total {
  border-top-color: var(--gold);
  color: var(--gold);
}


/* ════════════════════════════════════════════════════════════════
   HIDDEN COST BREAKDOWN — Spreadsheet-style 2-column ledger
   ════════════════════════════════════════════════════════════════ */
.ledger {
  border: 2px solid var(--navy);
  background: var(--cream);
}
.ledger-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--navy);
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row.head {
  background: var(--navy);
  color: var(--cream);
}
.ledger-row.total {
  background: var(--cream-2);
  font-weight: 700;
  border-top: 2px solid var(--navy);
}
.ledger-row.total .ledger-cell.win {
  background: var(--gold);
  color: var(--navy);
}
.ledger-cell {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  border-right: 1px solid var(--navy);
}
.ledger-cell:last-child { border-right: none; }
.ledger-row.head .ledger-cell {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ledger-cell.left { color: var(--muted); }
.ledger-cell .price {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.2rem;
  font-size: 0.95rem;
}
.ledger-cell.left .price { color: var(--muted); }
.ledger-cell.win .label-included {
  font-style: italic;
  color: var(--gold-dk);
  font-weight: 600;
}
@media (max-width: 600px) {
  .ledger-row { grid-template-columns: 1fr; }
  .ledger-cell { border-right: none; border-bottom: 1px solid rgba(15,32,64,0.15); }
  .ledger-cell:last-child { border-bottom: none; }
  .ledger-row.head { display: none; }
  .ledger-cell::before {
    content: attr(data-label);
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: 0.3rem;
  }
}


/* ════════════════════════════════════════════════════════════════
   FEATURE GRID — 4 photo+text blocks in 2x2
   ════════════════════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--navy);
  border: 2px solid var(--navy);
}
@media (max-width: 720px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-block {
  background: var(--cream);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.feature-block .photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-dk);
  border-bottom: 2px solid var(--navy);
}
.feature-block .photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-block .body { padding: 1.5rem 1.5rem 1.75rem; }
.feature-block .label {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.feature-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  line-height: 1.1;
}
.feature-block p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}


/* ════════════════════════════════════════════════════════════════
   PROOF GALLERY — Tiled image grid with hard navy gaps
   ════════════════════════════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold);
  border: 2px solid var(--gold);
}
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } }
.gallery .g {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}
.gallery .g img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery .g:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,32,64,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery .g:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ════════════════════════════════════════════════════════════════
   FAQ — Hard-edged accordion
   ════════════════════════════════════════════════════════════════ */
.faq-list { border-top: 2px solid var(--navy); }
.faq-item { border-bottom: 2px solid var(--navy); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  gap: 1.5rem;
}
.faq-q .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.faq-item.open .faq-q .icon::after { content: '−'; }
.faq-item:not(.open) .faq-q .icon::after { content: '+'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 1000px; padding: 0 0 1.5rem; }
.faq-a p { margin-bottom: 0.85rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--ink); font-weight: 700; }


/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS — Bold quote treatment on navy
   ════════════════════════════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold);
  border: 2px solid var(--gold);
}
@media (max-width: 760px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--navy);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.testimonial .mark {
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
  height: 28px;
}
.testimonial p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial .attr {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 1rem;
  border-top: 1px solid rgba(200,169,110,0.25);
}


/* ════════════════════════════════════════════════════════════════
   CONTACT FORM — Sharp, gridded, brutalist
   ════════════════════════════════════════════════════════════════ */
.contact-block {
  background: var(--cream);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2px;
  background: var(--navy);
  border: 2px solid var(--navy);
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--navy);
  color: var(--cream);
  padding: 2.25rem 2rem;
}
.contact-info .label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.contact-info h2 { color: var(--cream); margin-bottom: 1rem; }
.contact-info p { color: rgba(244,236,222,0.75); margin-bottom: 1.5rem; font-size: 0.95rem; }
.contact-info .info-row {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(244,236,222,0.12);
}
.contact-info .info-row:last-child { border: none; }
.contact-info .info-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-info .info-value { font-size: 1rem; font-weight: 500; }
.contact-info .info-value a:hover { color: var(--gold); }

.contact-form {
  background: var(--cream);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form .form-h {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.contact-form .form-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }
.contact-form label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--white);
  border: 2px solid var(--navy);
  font-size: 0.95rem;
  color: var(--ink);
  font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  background: var(--cream-2);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-disclaim { font-size: 0.7rem; color: var(--muted); margin-top: 0.5rem; }
.form-disclaim strong { color: var(--navy); }


/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(244,236,222,0.7);
  padding: 2rem var(--pad);
  text-align: center;
  font-size: 0.8rem;
  border-top: 2px solid var(--gold);
}
.footer .brand { color: var(--gold); font-weight: 700; letter-spacing: 0.18em; margin-bottom: 0.4rem; }
.footer a { color: var(--gold); }


/* ════════════════════════════════════════════════════════════════
   POPUP LEAD FORM
   ════════════════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 44, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.popup-overlay.show { display: flex; animation: popFadeIn 0.3s; }
@keyframes popFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popSlideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.popup-card {
  background: var(--cream);
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  border: 2px solid var(--navy);
  border-top: 8px solid var(--gold);
  animation: popSlideIn 0.3s;
}
.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  z-index: 2;
}
.popup-close:hover { background: var(--gold); color: var(--navy); }
.popup-body { padding: 2rem 1.75rem 1.75rem; }
.popup-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 0.85rem;
}
.popup-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.popup-h {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--ink);
}
.popup-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; }
.popup-form { display: flex; flex-direction: column; gap: 0.85rem; }
.popup-form label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.popup-form input {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--white);
  border: 2px solid var(--navy);
  font-size: 0.95rem;
  color: var(--ink);
  font-family: inherit;
}
.popup-form input:focus { outline: none; background: var(--cream-2); }
.popup-form .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.popup-trust {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem;
  margin-top: 0.85rem; font-size: 0.75rem; color: var(--muted);
}
.popup-trust .pt { display: flex; align-items: center; gap: 0.35rem; }
.popup-trust .pt::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 700;
}
.popup-alt {
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(15,32,64,0.15);
  text-align: center; font-size: 0.85rem; color: var(--muted);
}
.popup-alt a { color: var(--navy); font-weight: 700; }
.popup-alt a:hover { color: var(--gold-dk); }


/* ════════════════════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════════════════════ */
.text-muted { color: var(--muted); }
.bold-italic { font-style: italic; font-weight: 600; }
.divider {
  width: 60px; height: 4px; background: var(--gold); margin: 0 0 1.5rem;
}

/* ════════════════════════════════════════════════════════════════
   VALUE TILES — 2x2 promise grid on the navy section
   Replaces the old .testimonial-grid in the section-dark area
   ════════════════════════════════════════════════════════════════ */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gold);
  border: 2px solid var(--gold);
  margin-top: 1rem;
}
@media (max-width: 720px) { .value-grid { grid-template-columns: 1fr; } }

.value-tile {
  background: var(--navy);
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.value-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 4px;
  background: var(--gold);
}

.value-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  color: var(--gold) !important;
  line-height: 1.15 !important;
  margin-top: 1.25rem !important;
  margin-bottom: 0.75rem !important;
}

.value-sub {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(244, 236, 222, 0.85);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   REVIEWS — Real Google reviews from clients of the team behind KREW
   2x2 grid on dark navy section
   ════════════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gold);
  border: 2px solid var(--gold);
  margin-top: 1rem;
}
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }

.review {
  background: var(--navy);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.review::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 4px;
  background: var(--gold);
}

.review-stars {
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.review-quote {
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(244, 236, 222, 0.92);
  margin-bottom: 1.5rem;
  flex: 1;
}

.review-attr {
  border-top: 1px solid rgba(200, 169, 110, 0.25);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.review-source {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.reviews-footnote {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.65rem;
  font-style: italic;
  color: rgba(244, 236, 222, 0.45);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* Small disclaimer line under the '$7,500' meta value */
.meta-disclaimer {
  font-size: 0.7rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 0.45rem;
  max-width: 22ch;
}

/* ════════════════════════════════════════════════════════════════
   LIGHTBOX — click-to-enlarge for gallery photos
   ════════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 44, 0.96);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem 4.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.show { display: flex; opacity: 1; }

.lightbox-content {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  border: 2px solid var(--gold);
  object-fit: contain;
  background: var(--navy-dk);
}
.lightbox-caption {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding-top: 0.25rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  z-index: 1102;
}
.lightbox-close:hover { background: var(--gold-br); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  z-index: 1102;
  transition: background 0.15s, color 0.15s;
}
.lightbox-nav:hover { background: var(--gold); color: var(--navy); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* Mobile adjustments */
@media (max-width: 700px) {
  .lightbox { padding: 1rem; }
  .lightbox-img { max-height: 75vh; }
  .lightbox-close { width: 40px; height: 40px; top: 1rem; right: 1rem; font-size: 1.4rem; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* Hover cue on gallery tiles to signal clickability */
.gallery .g.lightbox-trigger { cursor: zoom-in; }

/* Ventilation card photo — shift crop toward top so the vent grills stay visible */
.feature-block .photo.photo-vent img {
  object-position: center 30%;
}

/* Gallery footnote — reference disclosure, matches reviews-footnote style */
.gallery-footnote {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .gallery-footnote {
    font-size: 0.65rem;
  }
}


/* ─────────────────────────────────────────────
   MEET KEENAN SECTION
   ───────────────────────────────────────────── */

.about-keenan {
  background: var(--cream);
  padding: 6rem 0;
  border-top: 3px solid var(--navy);
}

.about-keenan__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Photo */
.about-keenan__photo-wrap {
  position: relative;
}

.about-keenan__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--navy);
  filter: grayscale(15%);
}

.about-keenan__photo-rule {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin-top: 1.5rem;
}

/* Copy */
.about-keenan__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-br);
  margin: 0 0 1.25rem;
}

.about-keenan__heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 2rem;
}

.about-keenan__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1.25rem;
  font-weight: 400;
}

.about-keenan__body:last-of-type {
  margin-bottom: 2.25rem;
}

/* Signature lockup */
.about-keenan__sig {
  border-top: 2px solid var(--navy);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-keenan__sig-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.about-keenan__sig-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 820px) {
  .about-keenan__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-keenan__photo {
    aspect-ratio: 4 / 3;
    object-position: center 20%;
  }

  .about-keenan__photo-rule {
    display: none;
  }

  .about-keenan {
    padding: 4rem 0;
  }
}


/* ─────────────────────────────────────────────
   ABOUT PAGE — HERO
   ───────────────────────────────────────────── */

.about-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
  border-bottom: 3px solid var(--gold);
}

.about-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.about-hero__h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin: 0;
}

@media (max-width: 820px) {
  .about-hero {
    padding: 3.5rem 0 3rem;
  }
}
