/* ═══════════════════════════════════════════════════════════════
   PROSPER SHUTTERS & BLINDS — MASTER STYLESHEET
   Design: Sunlit TX · Sky Blue + Gold + Navy
   Fonts: DM Serif Display (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --sky:        #1A8FD1;
  --sky-dark:   #1370A8;
  --sky-light:  #E8F4FC;
  --sky-pale:   #F2F8FD;
  --gold:       #C8860A;
  --gold-dark:  #A06A08;
  --gold-light: #F5E6C0;
  --gold-pale:  #FFFBF2;
  --dark:       #0F1923;
  --navy:       #162535;
  --text:       #2A3540;
  --muted:      #5A6B78;
  --white:      #FFFFFF;
  --off:        #F8FAFB;
  --border:     #DDE4EA;
  --r:          8px;
  --max:        1160px;
  --shadow:     0 4px 28px rgba(15,25,35,.11);
  --shadow-sm:  0 2px 12px rgba(15,25,35,.07);
  --shadow-lg:  0 12px 48px rgba(15,25,35,.16);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
  background: var(--sky);
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  padding: .44rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  letter-spacing: .01em;
}
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; opacity: .9; }
.topbar a:hover { opacity: 1; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 3px solid var(--sky);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 18px rgba(15,25,35,.09);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 68px;
}
.logo { display: flex; flex-direction: column; line-height: 1; gap: .1rem; }
.logo-name { font-family: 'DM Serif Display', serif; font-size: 1.22rem; color: var(--dark); letter-spacing: -.01em; }
.logo-tag { font-size: .63rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--sky); }
.nav-links { display: flex; gap: 0; list-style: none; margin-left: auto; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: .22rem;
  padding: .5rem .9rem;
  font-size: .87rem; font-weight: 500; color: var(--text);
  transition: color .18s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--sky); }
.arr { font-size: .62rem; transition: transform .22s; color: var(--muted); }
.nav-links > li:hover > a .arr { transform: rotate(180deg); }
.dd {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--sky);
  border-radius: 0 0 var(--r) var(--r);
  min-width: 210px;
  box-shadow: var(--shadow);
  z-index: 300;
}
.nav-links > li:hover > .dd { display: block; }
.dd a {
  display: block; padding: .65rem 1.2rem;
  font-size: .85rem; color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.dd a:last-child { border-bottom: none; }
.dd a:hover { background: var(--sky-light); color: var(--sky); }
.nav-phone { font-size: .88rem; font-weight: 700; color: var(--sky); white-space: nowrap; }
.nav-cta {
  background: var(--sky) !important;
  color: #fff !important;
  padding: .5rem 1.3rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--sky-dark) !important; }
@media (max-width: 880px) { .nav-links .hide-mob { display: none; } }
@media (max-width: 600px) { .nav-links > li > a { padding: .5rem .55rem; font-size: .82rem; } }

/* ── TRUST STRIP ─────────────────────────────────────────────── */
.trust { background: var(--sky); padding: 1rem 1.5rem; }
.trust-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: center; gap: 2.2rem; flex-wrap: wrap;
}
.ti { display: flex; align-items: center; gap: .5rem; color: #fff; font-size: .84rem; font-weight: 500; }
.ti .icon { font-size: 1.1rem; flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--dark) 0%, #1A3555 100%);
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,143,209,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(26,143,209,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(200,134,10,.18);
  border: 1px solid rgba(200,134,10,.38);
  color: var(--gold-light);
  border-radius: 50px;
  padding: .28rem 1rem;
  font-size: .73rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.13; letter-spacing: -.02em;
  margin-bottom: .9rem;
  position: relative; z-index: 1;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  color: rgba(180,205,225,.85);
  font-size: 1rem; font-weight: 300;
  max-width: 620px; margin: 0 auto 1.8rem;
  line-height: 1.72;
  position: relative; z-index: 1;
}
.hero-btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  background: var(--sky-pale);
  border-bottom: 1px solid var(--border);
  padding: .6rem 1.5rem;
  font-size: .8rem; color: var(--muted);
}
.breadcrumb .bc-inner { max-width: var(--max); margin: 0 auto; }
.breadcrumb a { color: var(--sky); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 .4rem; opacity: .5; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--off); }
.section-sky { background: var(--sky-pale); }
.section-dark { background: var(--dark); }
.section-gold { background: var(--gold-pale); }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: .71rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sky); margin-bottom: .45rem;
}
h2.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark); letter-spacing: -.02em;
  line-height: 1.2; margin-bottom: .7rem; font-weight: 400;
}
h2.section-title em { font-style: italic; }
h2.section-title.light { color: #fff; }
.section-intro {
  color: var(--muted); font-size: .98rem;
  max-width: 640px; line-height: 1.72; margin-bottom: 2.2rem;
}
.divider { width: 48px; height: 3px; background: var(--sky); border-radius: 2px; margin: .55rem 0 1.1rem; }
.divider-gold { background: var(--gold); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  border-radius: 50px;
  padding: .72rem 1.9rem;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .9rem;
  transition: all .2s; cursor: pointer; border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--sky); color: #fff; }
.btn-primary:hover { background: var(--sky-dark); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.32); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--sky); color: var(--sky); }
.btn-sky-outline { background: transparent; border-color: var(--sky); color: var(--sky); }
.btn-sky-outline:hover { background: var(--sky); color: #fff; }
.btn-sm { padding: .52rem 1.3rem; font-size: .84rem; }

/* ── PRODUCT CARDS ───────────────────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
@media (max-width: 900px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .prod-grid { grid-template-columns: 1fr; } }
.pc {
  border-radius: var(--r); overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s;
  cursor: pointer; display: flex; flex-direction: column;
}
.pc:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pc-img { overflow: hidden; flex-shrink: 0; }
.pc-img img { width: 100%; height: 195px; object-fit: cover; transition: transform .38s; display: block; }
.pc:hover .pc-img img { transform: scale(1.05); }
.pc-body { padding: 1.1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.pc-body h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: .3rem; font-weight: 400; }
.pc-body p { font-size: .83rem; color: var(--muted); line-height: 1.55; flex: 1; }
.pc-tag { display: inline-block; margin-bottom: .5rem; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); }
.pc-link { display: inline-flex; align-items: center; gap: .3rem; font-size: .8rem; font-weight: 600; color: var(--sky); margin-top: .75rem; }
.pc:hover .pc-link { gap: .5rem; }
.pc-wide { grid-column: span 2; }
.pc-wide .pc-img img { height: 225px; }
.pc-feature { background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%); border: none; }
.pc-feature .pc-body h3, .pc-feature .pc-body p, .pc-feature .pc-link, .pc-feature .pc-tag { color: #fff; }
.pc-feature .pc-link { opacity: .85; }
.pc-gold { background: var(--gold-pale); border-color: #e8d088; }
.pc-gold .pc-link { color: var(--gold); }
.price-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gold-pale); border: 1px solid #e8d088;
  color: var(--gold-dark); border-radius: 50px;
  padding: .28rem .85rem; font-size: .76rem; font-weight: 600;
  margin-top: .6rem;
}

/* ── HOW STEPS ───────────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 800px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .how-grid { grid-template-columns: 1fr; } }
.how-step { text-align: center; padding: 2rem 1.4rem; background: var(--white); border-radius: var(--r); border: 1px solid var(--border); }
.step-num {
  width: 54px; height: 54px; background: var(--sky); color: #fff;
  border-radius: 50%;
  font-family: 'DM Serif Display', serif; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 14px rgba(26,143,209,.35);
}
.how-step h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: .45rem; font-weight: 400; }
.how-step p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── SPLIT LAYOUT ────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-rev { grid-template-columns: 1fr 1fr; }
.split-rev .split-img-col { order: -1; }
@media (max-width: 780px) { .split, .split-rev { grid-template-columns: 1fr; } .split-rev .split-img-col { order: 0; } }
.split-img { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.split-img img { width: 100%; height: 420px; object-fit: cover; display: block; }

/* ── CHECK LIST ──────────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .62rem; margin: 1.2rem 0 1.8rem; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .92rem; color: var(--text); line-height: 1.5; }
.check-list li::before { content: '✓'; color: var(--sky); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }

/* ── BENEFIT CARDS ───────────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.2rem; }
@media (max-width: 760px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.8rem 1.5rem;
  border-top: 3px solid var(--sky);
  transition: transform .2s, box-shadow .2s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit-icon { font-size: 2rem; margin-bottom: .8rem; }
.benefit-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: .4rem; font-weight: 400; }
.benefit-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── WHY CARDS (4-up) ────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 2.5rem; }
@media (max-width: 800px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.8rem 1.4rem; text-align: center; border-top: 3px solid var(--sky); transition: transform .2s, box-shadow .2s; }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-icon { font-size: 2rem; margin-bottom: .8rem; }
.why-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--dark); margin-bottom: .4rem; font-weight: 400; }
.why-card p { font-size: .83rem; color: var(--muted); line-height: 1.55; }

/* ── REVIEWS ──────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
@media (max-width: 800px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.7rem; box-shadow: var(--shadow-sm); position: relative; }
.review-card::before { content: '"'; font-family: 'DM Serif Display', serif; font-size: 4.5rem; color: var(--sky-light); position: absolute; top: -.5rem; left: 1rem; line-height: 1; }
.review-stars { color: #F5A623; font-size: 1rem; margin-bottom: .8rem; }
.review-text { font-size: .88rem; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 1rem; position: relative; }
.review-author { font-size: .82rem; font-weight: 700; color: var(--dark); }
.review-location { font-size: .74rem; color: var(--muted); }
.google-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--off); border: 1px solid var(--border); border-radius: 50px; padding: .3rem .9rem; font-size: .78rem; font-weight: 600; color: var(--dark); margin-bottom: 1.6rem; }

/* ── GALLERY STRIP ───────────────────────────────────────────── */
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); height: 240px; }
@media (max-width: 700px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 320px; } }
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .42s; filter: brightness(.82); }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(.95); }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(15,25,35,.8)); color: #fff; font-size: .75rem; font-weight: 600; padding: .6rem .7rem .5rem; opacity: 0; transition: opacity .25s; }
.gallery-item:hover .gallery-label { opacity: 1; }

/* ── CITY CHIPS ──────────────────────────────────────────────── */
.cities-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.city-chip { background: var(--sky-light); border: 1px solid #bee0f4; color: var(--sky-dark); border-radius: 50px; padding: .36rem 1rem; font-size: .85rem; font-weight: 500; transition: all .2s; }
.city-chip:hover { background: var(--sky); color: #fff; border-color: var(--sky); }
.city-chip.muted { opacity: .65; cursor: default; }

/* ── NEIGHBORHOOD GRID ───────────────────────────────────────── */
.nbhd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.8rem; }
@media (max-width: 800px) { .nbhd-grid { grid-template-columns: repeat(2, 1fr); } }
.nbhd-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.2rem 1.3rem; border-left: 3px solid var(--sky); transition: transform .18s, box-shadow .18s; }
.nbhd-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.nbhd-card h4 { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--dark); margin-bottom: .2rem; font-weight: 400; }
.nbhd-card p { font-size: .78rem; color: var(--muted); line-height: 1.4; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.8rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); background: var(--white); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 1.1rem 1.4rem; background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .93rem; font-weight: 600; color: var(--dark); display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: background .15s; }
.faq-q:hover { background: var(--sky-light); }
.faq-arr { color: var(--sky); transition: transform .26s; font-size: .88rem; flex-shrink: 0; }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease, padding .32s; font-size: .9rem; color: var(--muted); line-height: 1.72; padding: 0 1.4rem; background: var(--sky-pale); }
.faq-item.open .faq-a { max-height: 400px; padding: 1rem 1.4rem 1.2rem; }

/* ── CONTACT FORM ────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: span 2; }
@media (max-width: 600px) { .form-group.full { grid-column: span 1; } }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--dark); }
.form-group label .req { color: var(--sky); margin-left: .15rem; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: .7rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: var(--text);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(26,143,209,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: .5rem; width: 100%; justify-content: center; padding: .9rem; font-size: 1rem; }

/* ── CONTACT INFO CARDS ──────────────────────────────────────── */
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.2rem 1.4rem; }
.contact-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-card h4 { font-size: .82rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-card a, .contact-card p { font-size: .95rem; color: var(--sky); font-weight: 600; }
.contact-card span { font-size: .78rem; color: var(--muted); display: block; margin-top: .15rem; }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--dark) 0%, #1A3555 100%); padding: 5.5rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(26,143,209,.1); top: -250px; right: -200px; pointer-events: none; }
.cta-banner::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(200,134,10,.07); bottom: -150px; left: -100px; pointer-events: none; }
.cta-banner h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; margin-bottom: .8rem; letter-spacing: -.02em; position: relative; font-weight: 400; }
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p { color: rgba(180,205,225,.8); font-size: 1rem; max-width: 540px; margin: 0 auto 2.2rem; line-height: 1.72; position: relative; font-weight: 300; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: #080F18; padding: 3.8rem 1.5rem 1.5rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.8rem; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: span 1; } }
.footer-brand-name { font-family: 'DM Serif Display', serif; color: #fff; font-size: 1.2rem; margin-bottom: .2rem; font-weight: 400; }
.footer-brand-tag { font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .85rem; font-weight: 500; }
.footer-brand p { font-size: .83rem; color: #4a6070; line-height: 1.65; }
.footer-phone { display: block; font-size: 1.1rem; font-weight: 700; color: var(--sky); margin-top: .9rem; }
.footer-head { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .9rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .48rem; }
.footer-links a { font-size: .85rem; color: #4a6070; transition: color .18s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #0d1e30; padding-top: 1.2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .75rem; color: #253545; }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── UTILITIES ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.flex-gap { display: flex; gap: .9rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS — iPhone & narrow viewports
   Keeps desktop layout untouched; tightens spacing, scales type,
   and collapses any 2-column grids (including inline) on phones.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  /* TOPBAR — center & condense the two info lines */
  .topbar {
    font-size: .72rem;
    padding: .4rem .9rem;
    gap: .25rem;
    justify-content: center;
    text-align: center;
    line-height: 1.45;
  }
  .topbar > span { flex: 1 1 100%; }

  /* NAV — compact logo, tighter link spacing */
  .nav-inner { padding: 0 .9rem; height: 62px; gap: .35rem; }
  .logo-name { font-size: 1.05rem; }
  .logo-tag { display: none; }
  .nav-links > li > a { padding: .45rem .4rem; font-size: .78rem; }
  .nav-phone { font-size: .8rem; }
  .nav-cta {
    padding: .44rem 1rem !important;
    font-size: .8rem !important;
  }
  .arr { font-size: .55rem; }

  /* TRUST STRIP — compact icons, tighter wrap */
  .trust { padding: .8rem 1rem; }
  .trust-inner { gap: .65rem 1.4rem; }
  .ti { font-size: .76rem; gap: .35rem; }
  .ti .icon { font-size: .95rem; }

  /* SECTION SPACING */
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }

  /* SECTION TYPOGRAPHY */
  h2.section-title { font-size: 1.6rem; line-height: 1.22; }
  .section-intro { font-size: .92rem; margin-bottom: 1.5rem; }
  .section-label { font-size: .68rem; }

  /* HOMEPAGE HERO */
  .hero { min-height: auto; }
  .hero-content { padding: 2.5rem 1.1rem 2.4rem !important; }
  .hero h1 { font-size: 1.95rem; line-height: 1.18; margin-bottom: .9rem; }
  .hero-sub { font-size: .92rem; line-height: 1.6; margin-bottom: 1.3rem; max-width: none; }
  .hero-badge { font-size: .68rem; padding: .26rem .85rem; margin-bottom: 1rem; }
  .hero-btns { gap: .55rem; margin-bottom: 1.4rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-ql-label { font-size: .65rem; }
  .hero-quicklinks { gap: .35rem; }
  .ql { padding: .32rem .75rem; font-size: .74rem; }

  /* INNER PAGE HERO */
  .page-hero { padding: 2.6rem 1rem 2.4rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero p { font-size: .92rem; margin-bottom: 1.3rem; }
  .hero-eyebrow { font-size: .68rem; padding: .26rem .85rem; }

  /* BREADCRUMB */
  .breadcrumb { padding: .5rem 1rem; font-size: .76rem; }

  /* SPLIT LAYOUT — image height reasonable on phone */
  .split, .split-rev { gap: 2rem; }
  .split-img img { height: 260px; }

  /* PRODUCT CARDS */
  .pc-img img { height: 195px; }
  .pc-wide { grid-column: span 1; }
  .pc-wide .pc-img img { height: 200px; }
  .pc-body { padding: 1rem 1.1rem 1.2rem; }
  .pc-body h3 { font-size: 1.05rem; }

  /* HOW STEPS */
  .how-step { padding: 1.6rem 1.2rem; }
  .step-num { width: 46px; height: 46px; font-size: 1.35rem; margin-bottom: .9rem; }

  /* WHY / BENEFIT CARDS */
  .why-card, .benefit-card { padding: 1.5rem 1.15rem; }

  /* REVIEWS */
  .review-card { padding: 1.4rem 1.3rem 1.5rem; }
  .review-card::before { font-size: 3.4rem; top: -.1rem; left: .6rem; }

  /* GALLERY STRIP — show labels by default on touch */
  .gallery-strip { height: 260px; }
  .gallery-label { opacity: 1; font-size: .7rem; padding: .45rem .5rem .45rem; }

  /* FAQ */
  .faq-q { padding: .9rem 1.05rem; font-size: .88rem; gap: .6rem; }
  .faq-a { font-size: .87rem; padding: 0 1.05rem; }
  .faq-item.open .faq-a { padding: .8rem 1.05rem 1rem; }

  /* CITY CHIPS */
  .cities-row { gap: .5rem; }
  .city-chip { font-size: .8rem; padding: .32rem .85rem; }

  /* CTA BANNER */
  .cta-banner { padding: 3.5rem 1.1rem; }
  .cta-banner p { font-size: .94rem; margin-bottom: 1.6rem; }
  .cta-btns { gap: .6rem; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer { padding: 2.6rem 1.1rem 1.2rem; }
  .footer-grid { gap: 1.8rem; margin-bottom: 1.8rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom p { width: 100%; }

  /* CONTACT CARDS */
  .contact-card { padding: 1rem 1.1rem; gap: .8rem; }
  .contact-card-icon { font-size: 1.4rem; }

  /* Collapse inline 2-column "1fr 1fr" grids (long-form side-by-side blocks) */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.4rem !important;
  }
  /* Tighten short repeat(2,1fr) stat grids without stacking them */
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"] {
    gap: .7rem !important;
  }
  /* Cap inline gaps that were tuned for desktop side-by-side */
  [style*="gap:4rem"] { gap: 1.6rem !important; }
}

/* Very narrow phones (iPhone SE, older Android) */
@media (max-width: 380px) {
  .nav-inner { padding: 0 .7rem; gap: .25rem; }
  .nav-links > li > a { padding: .42rem .3rem; font-size: .74rem; }
  .nav-phone { font-size: .74rem; }
  .nav-cta {
    padding: .4rem .8rem !important;
    font-size: .76rem !important;
  }
  .logo-name { font-size: .96rem; }
  .topbar { font-size: .68rem; padding: .35rem .6rem; }
  .trust-inner { gap: .5rem 1rem; }
  .ti { font-size: .72rem; }
  .hero h1 { font-size: 1.75rem; }
  .page-hero h1 { font-size: 1.6rem; }
  h2.section-title { font-size: 1.45rem; }
}
