/* ═══════════════════════════════════════════
   BENCHMARK REMODEL — MASTER STYLESHEET
   A Higher Standard
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Barlow+Condensed:wght@300;400;600;700&family=Barlow:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --navy:     #0D1F3C;
  --gold:     #C9A84C;
  --gold-lt:  #E8C96A;
  --white:    #FFFFFF;
  --off-white:#F7F5F2;
  --beige:    #EDE8E0;
  --gray:     #6B7280;
  --dark:     #1A1A2E;
  --text:     #1C2B3A;
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.1; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(32px, 4vw, 52px); color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 17px; font-weight: 300; color: var(--gray); line-height: 1.7; max-width: 560px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 14px 32px;
  border: none; cursor: pointer; transition: all .25s ease;
  text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #162d52; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,31,60,.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 80px;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.nav-logo svg { height: 52px; width: auto; }
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  padding: 8px 14px; transition: color .2s;
}
.nav-links li a:hover { color: var(--gold); }
.nav-links li a.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 10px 22px; margin-left: 8px;
}
.nav-links li a.nav-cta:hover { background: var(--gold-lt); }
.nav-links li a.active { color: var(--gold); }

/* ── NAV DROPDOWNS ── */
.nav-dropdown { position: relative; }
.nav-dropdown .nav-subnav {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: rgba(13,31,60,.98);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  list-style: none;
  z-index: 1001;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.nav-dropdown:hover .nav-subnav { display: block; }
.nav-subnav li a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}
.nav-subnav li a:hover { color: var(--gold); background: rgba(255,255,255,.04); }
.nav-dd-arrow { font-size: 10px; opacity: .6; margin-left: 2px; }

/* gallery.html uses .has-dropdown / .nav-dropdown (ul) */
.has-dropdown { position: relative; }
.has-dropdown .nav-dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: rgba(13,31,60,.98);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  list-style: none;
  z-index: 1001;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.has-dropdown:hover .nav-dropdown { display: block; }
.has-dropdown .nav-dropdown li a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}
.has-dropdown .nav-dropdown li a:hover { color: var(--gold); background: rgba(255,255,255,.04); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all .3s;
}

.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: var(--navy); z-index: 999; flex-direction: column;
  border-top: 1px solid rgba(201,168,76,.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  padding: 16px 32px; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(255,255,255,.03); }

/* ── PAGE WRAP (offset for fixed nav) ── */
.page-wrap { padding-top: 80px; }

/* ═══════════════════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════════════════ */
.hero-home {
  position: relative; height: 92vh; min-height: 560px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-home-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=85') center/cover no-repeat;
}
.hero-home-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,.90) 0%, rgba(13,31,60,.3) 55%, transparent 100%);
}
.hero-home-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 40px 72px; width: 100%;
}
.hero-home-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 84px); font-weight: 300; line-height: 1.05;
  color: var(--white); margin-bottom: 8px;
}
.hero-home-content h1 strong { font-weight: 700; color: var(--gold); }
.hero-home-content p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 5px; font-weight: 600;
  color: rgba(255,255,255,.6); text-transform: uppercase; margin-bottom: 32px;
}
.hero-home-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy); padding: 0 40px; }
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 40px; border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 22px; }
.trust-text strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 1px; color: var(--gold);
}
.trust-text span { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.55); letter-spacing: .5px; }

/* ── SPLIT IMAGE SECTION (replaces salad dude) ── */
.split-images {
  display: grid; grid-template-columns: 1fr 1fr; height: 520px;
}
.split-img {
  position: relative; overflow: hidden; cursor: pointer;
}
.split-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.split-img:hover img { transform: scale(1.04); }
.split-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,.80) 0%, rgba(13,31,60,.1) 60%, transparent 100%);
  display: flex; align-items: flex-end; padding: 36px;
}
.split-img-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600; color: var(--white);
  border-bottom: 2px solid var(--gold); padding-bottom: 8px;
}
.split-img-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-top: 6px; display: block;
}

/* ── SERVICE TILES ── */
.services-tiles { background: var(--off-white); padding: 80px 40px; }
.tiles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.tile {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; display: block;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile:hover img { transform: scale(1.06); }
.tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.tile-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; font-weight: 700;
  color: var(--gold); text-transform: uppercase; margin-bottom: 6px;
}
.tile-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; color: var(--white);
}

/* ── BEFORE/AFTER SLIDERS ── */
.before-after-section { background: var(--navy); padding: 80px 40px; }
.before-after-section .section-title { color: var(--white); }
.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.ba-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  cursor: ew-resize; user-select: none;
}
.ba-before, .ba-after {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.ba-after { clip-path: inset(0 50% 0 0); transition: clip-path .02s linear; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--gold); transform: translateX(-50%);
  cursor: ew-resize;
}
.ba-handle::after {
  content: '⇔'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: var(--gold); color: var(--navy);
  font-size: 14px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.ba-label {
  position: absolute; bottom: 12px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px;
  background: rgba(0,0,0,.5); color: var(--white);
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }
.ba-caption {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 1px; color: rgba(255,255,255,.5);
  text-align: center; margin-top: 12px;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--off-white); padding: 80px 40px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testi-card {
  background: var(--white); padding: 36px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.testi-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testi-text { font-size: 16px; line-height: 1.7; color: var(--gray); margin-bottom: 24px; }
.testi-author strong { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 1px; color: var(--navy); }
.testi-author span { font-size: 12px; color: var(--gray); display: block; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy); padding: 72px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.08) 0%, transparent 60%);
}
.cta-strip h2 { font-size: clamp(32px,4vw,56px); color: var(--white); margin-bottom: 16px; position: relative; }
.cta-strip p { font-size: 18px; color: rgba(255,255,255,.6); margin-bottom: 36px; position: relative; }
.cta-strip .btn { position: relative; }

/* ── FOOTER ── */
footer {
  background: #060f1e; padding: 64px 40px 0;
  color: rgba(255,255,255,.6);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 20px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12px;
}
.tagline-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; font-weight: 700;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,.3); padding: 6px 14px;
}

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  background: var(--navy); padding: 80px 40px 64px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 70%);
}
.page-hero-content { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.page-hero h1 { font-size: clamp(36px,5vw,64px); color: var(--white); }

/* ═══════════════════════════════════════════
   CONTACT / GET A QUOTE PAGE
═══════════════════════════════════════════ */
.contact-section { background: var(--off-white); padding: 80px 40px; }
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}
.contact-info h2 { font-size: 38px; color: var(--navy); margin-bottom: 24px; }
.contact-info p { font-size: 16px; line-height: 1.8; color: var(--gray); margin-bottom: 36px; }
.contact-detail {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px; height: 44px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail-text strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 2px;
}
.contact-detail-text a, .contact-detail-text span {
  font-size: 16px; font-weight: 400; color: var(--navy);
}

/* ── QUOTE FORM — Fixed text contrast on beige ── */
.quote-form {
  background: var(--white);
  padding: 48px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.quote-form h3 {
  font-size: 28px; color: var(--navy); margin-bottom: 8px;
}
.quote-form .form-subtitle {
  font-size: 14px; color: var(--gray); margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #D1D5DB;
  padding: 13px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; color: var(--navy); }
.form-group select option { color: var(--navy); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 14px; padding: 16px; }
.form-success {
  display: none; text-align: center; padding: 32px;
  background: #F0FDF4; border: 1px solid #BBF7D0;
}
.form-success p { font-size: 18px; color: #166534; }

/* ── STICKY QUOTE BAR ── */
.quote-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: var(--navy); border-top: 2px solid var(--gold);
}
.quote-bar-trigger {
  width: 100%; padding: 14px 32px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: none; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white);
}
.quote-bar-trigger:hover { color: var(--gold); }
.quote-bar-icon { font-size: 18px; }
.quote-dropdown {
  display: none; background: var(--white);
  padding: 28px 40px; border-top: 1px solid #E5E7EB;
}
.quote-dropdown.open { display: block; }
.qf-row {
  display: flex; gap: 12px; align-items: flex-end;
  max-width: 1200px; margin: 0 auto; flex-wrap: wrap;
}
.qf-group { flex: 1; min-width: 160px; }
.qf-group input,
.qf-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #D1D5DB;
  font-family: 'Barlow', sans-serif;
  font-size: 14px; color: var(--navy);
  background: var(--white); outline: none;
  transition: border-color .2s;
}
.qf-group input::placeholder { color: #9CA3AF; }
.qf-group input:focus,
.qf-group select:focus { border-color: var(--gold); }
.qf-group select { appearance: none; cursor: pointer; }
.qf-group select option { color: var(--navy); }
.qf-submit {
  background: var(--gold); color: var(--navy);
  border: none; padding: 12px 28px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; transition: background .2s; white-space: nowrap;
}
.qf-submit:hover { background: var(--gold-lt); }
.qf-success { text-align: center; color: #166534; font-weight: 500; padding: 8px; }

/* ═══════════════════════════════════════════
   SERVICE AREAS PAGE
═══════════════════════════════════════════ */
.areas-section { background: var(--white); padding: 80px 40px; }
.areas-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 48px;
}
.area-block h3 {
  font-size: 24px; color: var(--navy); margin-bottom: 8px;
  padding-bottom: 12px; border-bottom: 2px solid var(--gold);
}
.area-block .area-desc {
  font-size: 14px; color: var(--gray); margin-bottom: 20px; line-height: 1.6;
}
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--navy);
  background: var(--off-white); border: 1px solid #D1D5DB;
  padding: 6px 14px; transition: all .2s;
}
.area-chip:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.area-chip.primary { background: var(--navy); color: var(--gold); border-color: var(--navy); }

.areas-cta { background: var(--navy); padding: 64px 40px; text-align: center; }
.areas-cta h2 { font-size: 40px; color: var(--white); margin-bottom: 16px; }
.areas-cta p { color: rgba(255,255,255,.6); font-size: 17px; margin-bottom: 32px; }

/* ═══════════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════════ */
.gallery-section { background: var(--off-white); padding: 60px 40px; }
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
  max-width: 1200px; margin-left: auto; margin-right: auto; margin-bottom: 40px;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 10px 24px;
  background: var(--white); color: var(--navy);
  border: 1.5px solid #D1D5DB; cursor: pointer; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy); color: var(--gold); border-color: var(--navy);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px; max-width: 1200px; margin: 0 auto;
}
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,31,60,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; font-weight: 700;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold); padding: 8px 20px;
}

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */
.service-block { padding: 80px 40px; }
.service-block:nth-child(even) { background: var(--off-white); }
.service-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }
.service-img { position: relative; }
.service-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-img-accent {
  position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px;
  background: var(--gold); z-index: -1;
}
.service-content h2 { font-size: 44px; color: var(--navy); margin-bottom: 20px; }
.service-content p { font-size: 16px; line-height: 1.8; color: var(--gray); margin-bottom: 28px; }
.service-features { list-style: none; margin-bottom: 36px; }
.service-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid #E5E7EB;
  font-size: 15px; color: var(--text);
}
.service-features li::before {
  content: '✓'; color: var(--gold); font-weight: 700; font-size: 16px; flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-intro { padding: 80px 40px; }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-content h2 { font-size: 48px; color: var(--navy); margin-bottom: 24px; }
.about-content p { font-size: 16px; line-height: 1.9; color: var(--gray); margin-bottom: 20px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.value-card { padding: 32px; border-left: 3px solid var(--gold); background: var(--off-white); }
.value-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; letter-spacing: 2px; font-weight: 700;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.value-card p { font-size: 14px; line-height: 1.7; color: var(--gray); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 20px; }
  .tiles-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-inner { grid-template-columns: 1fr; }
  .service-inner.reverse { direction: ltr; }
  .about-inner { grid-template-columns: 1fr; }
  .split-images { grid-template-columns: 1fr; height: auto; }
  .split-img { height: 280px; }
  .areas-grid { grid-template-columns: 1fr; }
  .hero-home-content { padding: 0 20px 48px; }
  .trust-bar-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 16px 20px; }
  .qf-row { flex-direction: column; }
  .qf-group { min-width: 100%; }
}
@media (max-width: 600px) {
  .tiles-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px; }
  .areas-section, .services-tiles, .contact-section { padding: 48px 20px; }
}

/* ═══════════════════════════════════════════
   GALLERY — PROJECT CARDS
═══════════════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card { background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.project-card-img {
  position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}
.project-card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: rgba(13,31,60,.75);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity .3s;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; font-weight: 700;
  text-transform: uppercase; color: rgba(255,255,255,.7);
}
.project-card-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; letter-spacing: 2px; font-weight: 700;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold); padding: 8px 20px;
}
.project-card-meta {
  padding: 16px 20px; display: flex; flex-wrap: wrap;
  align-items: center; gap: 8px;
}
.project-card-label {
  width: 100%; font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: var(--navy); margin-top: 4px;
}

/* Badges */
.lb-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 10px;
}
.lb-badge-type { background: var(--navy); color: var(--gold); }
.lb-badge-city { background: var(--off-white); color: var(--navy); border: 1px solid #D1D5DB; }

/* Before/After project wrap */
.ba-project-wrap { }
.ba-caption-block {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 14px 0 4px;
}
.ba-caption-label {
  width: 100%; font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: rgba(255,255,255,.85);
}
.section-title.light { color: var(--white); }

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(6,15,30,.95);
}
.lightbox-inner {
  position: relative; z-index: 1;
  width: 90vw; max-width: 1100px;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  display: flex; flex-direction: column;
  max-height: 90vh;
}
.lightbox-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 28px; cursor: pointer; line-height: 1; z-index: 2;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-header {
  padding: 20px 52px 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: var(--white);
}
.lightbox-img-wrap {
  position: relative; flex: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; min-height: 300px; background: #060f1e;
}
.lightbox-img {
  max-width: 100%; max-height: 65vh;
  object-fit: contain; display: block;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(13,31,60,.7); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold); font-size: 36px; line-height: 1;
  width: 48px; height: 64px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(201,168,76,.2); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-footer {
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
}
.lightbox-counter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; color: rgba(255,255,255,.4);
  text-transform: uppercase;
}
.lightbox-dots { display: flex; gap: 6px; }
.lb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); cursor: pointer; transition: background .2s;
}
.lb-dot.active { background: var(--gold); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .lightbox-inner { width: 98vw; }
}
@media (max-width: 600px) {
  .projects-grid { grid-template-columns: 1fr; }
  .lightbox-nav { display: none; }
}

/* ═══════════════════════════════════════════
   SERVICE AREAS — TWO COLUMN HERO + MAP
═══════════════════════════════════════════ */
.sa-hero {
  display: grid;
  grid-template-columns: 1fr 520px;
  background: var(--navy);
  min-height: 780px;
  align-items: stretch;
}
.sa-hero-text {
  padding: 80px 56px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sa-hero-text h1 {
  font-size: clamp(36px, 4vw, 58px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0;
}
.sa-hero-map {
  border-left: 3px solid rgba(201,168,76,.3);
  display: flex;
  flex-direction: column;
}
.sa-hero-map #map {
  flex: 1;
  min-height: 720px;
  width: 100%;
}
@media (max-width: 900px) {
  .sa-hero { grid-template-columns: 1fr; min-height: auto; }
  .sa-hero-text { padding: 48px 24px 40px; }
  .sa-hero-map { border-left: none; border-top: 3px solid rgba(201,168,76,.3); }
  .sa-hero-map #map { min-height: 400px; }
}
