/* ============================================================
   PaneScape — panescape.com
   Palette matches the automated emails exactly (DIGEST_COLORS),
   so site, portal and email all read as one brand.
   Signature: hero panes clear on load (see .pane).
   ============================================================ */

:root {
  /* --- straight from the emails --- */
  --ink:      #1A202C;   /* body text */
  --navy:     #1A4971;   /* primary — headings, dark surfaces */
  --blue:     #2B6CB0;   /* secondary — links, accents */
  --pale:     #EBF4FF;   /* pale blue backgrounds */
  --paper:    #F7FAFC;   /* off-white */
  --muted:    #718096;   /* secondary text */
  --line:     #E2E8F0;   /* borders */
  --white:    #FFFFFF;

  /* --- one accent, used sparingly. Muted brass reads considered;
         bright gold reads discount. --- */
  --brass:    #BD9A5F;
  --brass-dk: #9E7F4A;

  --navy-deep: #123556;  /* gradient floor */

  --wrap: 1140px;
  --gutter: clamp(20px, 5vw, 52px);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

html, body { overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Display type ---------- */
.display {
  overflow-wrap: break-word;
  font-family: 'Archivo', 'Inter', sans-serif;
  font-variation-settings: 'wdth' 108;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
}

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-variation-settings: 'wdth' 110;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 16px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; white-space: nowrap; }
.brand-logo {
  height: 42px; width: 42px; border-radius: 9px;
  object-fit: cover; flex-shrink: 0;
}
.brand-text {
  font-family: 'Archivo', sans-serif;
  font-variation-settings: 'wdth' 110;
  font-weight: 700; font-size: 20px; letter-spacing: -0.015em;
  color: var(--navy);
}
.brand-text span { color: var(--blue); }
.brand-text em {
  font-style: normal; font-weight: 500; font-size: .74em;
  color: var(--muted); letter-spacing: 0;
}

.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  font-size: 15px; color: var(--muted); text-decoration: none;
  font-weight: 500; transition: color .18s ease;
}
.nav a:hover { color: var(--navy); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  font-size: 22px; color: var(--navy); padding: 6px 8px; line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-variation-settings: 'wdth' 106;
  font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  padding: 15px 30px; border-radius: 6px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
  max-width: 100%;
}

.btn-sun { background: var(--brass); color: #1A202C; }
.btn-sun:hover { background: var(--brass-dk); color: var(--white); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.42); }
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: var(--white); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.42); }
.btn-outline:hover { background: rgba(255,255,255,.10); border-color: var(--white); }

.btn-deep { background: var(--navy); color: var(--white); }
.btn-deep:hover { background: var(--ink); }

.btn-sm { padding: 11px 22px; font-size: 13.5px; }

/* ============================================================
   HERO — the signature. Panes clear on load.
   ============================================================ */
.hero {
  position: relative;
  min-height: min(90vh, 760px);
  display: flex; align-items: center;
  background:
    linear-gradient(180deg, rgba(9,32,48,.80) 0%, rgba(12,42,62,.72) 45%, rgba(9,32,48,.86) 100%),
    url('hero.jpg') center 42% / cover no-repeat,
    linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 48%, #245C8A 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 58% 48% at 78% 16%, rgba(189,154,95,.22), transparent 64%);
}

.pane-grid {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr);
  gap: 2px; pointer-events: none;
}
.pane {
  background: linear-gradient(150deg, rgba(255,255,255,.26), rgba(255,255,255,.07));
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 1;
  animation: clearPane 1s cubic-bezier(.33, 0, .18, 1) forwards;
}
@keyframes clearPane {
  to { opacity: 0; backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0); }
}
.pane:nth-child(1)  { animation-delay: .12s }
.pane:nth-child(2)  { animation-delay: .20s }
.pane:nth-child(3)  { animation-delay: .28s }
.pane:nth-child(4)  { animation-delay: .36s }
.pane:nth-child(5)  { animation-delay: .18s }
.pane:nth-child(6)  { animation-delay: .26s }
.pane:nth-child(7)  { animation-delay: .34s }
.pane:nth-child(8)  { animation-delay: .42s }
.pane:nth-child(9)  { animation-delay: .24s }
.pane:nth-child(10) { animation-delay: .32s }
.pane:nth-child(11) { animation-delay: .40s }
.pane:nth-child(12) { animation-delay: .48s }

.mullions {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, transparent calc(25% - 1px), rgba(255,255,255,.11) 25%, transparent calc(25% + 1px)),
    linear-gradient(to right, transparent calc(50% - 1px), rgba(255,255,255,.11) 50%, transparent calc(50% + 1px)),
    linear-gradient(to right, transparent calc(75% - 1px), rgba(255,255,255,.11) 75%, transparent calc(75% + 1px)),
    linear-gradient(to bottom, transparent calc(33.33% - 1px), rgba(255,255,255,.08) 33.33%, transparent calc(33.33% + 1px)),
    linear-gradient(to bottom, transparent calc(66.66% - 1px), rgba(255,255,255,.08) 66.66%, transparent calc(66.66% + 1px));
}

.hero-inner { position: relative; z-index: 3; padding: 108px 0; }
.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6.2vw, 76px);
  font-weight: 600;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; display: block; color: #E4C89A; }
.hero-sub {
  color: rgba(255,255,255,.9);
  font-size: clamp(16px, 1.9vw, 19px);
  max-width: 54ch; margin: 26px 0 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: rgba(255,255,255,.86); padding: 20px 0; }
.trust-list {
  display: flex; flex-wrap: wrap; gap: 12px 38px; justify-content: center;
  margin: 0; padding: 0; list-style: none;
  font-size: 13.5px; font-weight: 500; letter-spacing: .01em;
}
.trust-list li::before { content: '—'; color: var(--brass); margin-right: 10px; }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-tint { background: var(--paper); }
.section-head { max-width: 62ch; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--muted); font-size: 17.5px; margin: 18px 0 0; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1px; background: var(--line); }
.service { background: var(--white); padding: 34px 30px; transition: background .2s ease; }
.service:hover { background: var(--pale); }
.service h3 {
  font-family: 'Archivo', sans-serif; font-variation-settings: 'wdth' 106;
  font-size: 18px; font-weight: 600; margin: 0 0 12px; color: var(--navy);
}
.service p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.area {
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  padding: 12px 24px; font-size: 15px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.area:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 34px 30px; }
.stars { color: var(--brass); letter-spacing: 4px; font-size: 14px; margin-bottom: 18px; }
.review p { margin: 0 0 18px; color: var(--ink); font-size: 16.5px; line-height: 1.75; }
.review cite { font-style: normal; font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Closing CTA ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); text-align: center;
  padding: clamp(72px, 10vw, 116px) 0;
}
.cta-band h2 { font-size: clamp(28px, 4.4vw, 48px); color: var(--white); max-width: 20ch; margin: 0 auto; font-weight: 600; }
.cta-band p { color: rgba(255,255,255,.82); margin: 20px auto 36px; max-width: 48ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.68); padding: 64px 0 32px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 40px; }
.site-footer h4 {
  font-family: 'Archivo', sans-serif; font-variation-settings: 'wdth' 106;
  color: var(--white); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; margin: 0 0 16px; font-weight: 600;
}
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; transition: color .18s ease; }
.site-footer a:hover { color: var(--brass); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 16px; opacity: .95; }
.footer-base {
  margin-top: 46px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px; color: rgba(255,255,255,.48);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
}

/* ============================================================
   INTERIOR PAGES
   ============================================================ */
.page-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: clamp(66px, 9vw, 104px) 0 clamp(58px, 8vw, 92px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 88% 8%, rgba(189,154,95,.16), transparent 62%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: #A8C8E8; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 58px); max-width: 18ch; font-weight: 600; }
.page-hero-sub {
  color: rgba(255,255,255,.87); font-size: clamp(16px,2vw,18.5px);
  max-width: 58ch; margin: 22px 0 34px;
}

/* Page headers with a location photo behind them */
.page-hero.photo { background: var(--navy); }
.page-hero.photo::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 55%;
  opacity: .30;
}
.page-hero.photo::after {
  background:
    linear-gradient(180deg, rgba(12,42,62,.72) 0%, rgba(9,32,48,.86) 100%),
    radial-gradient(ellipse 50% 60% at 88% 8%, rgba(189,154,95,.14), transparent 62%);
}
.ph-cape-coral::before       { background-image: url('hdr-cape-coral.jpg'); }
.ph-north-fort-myers::before { background-image: url('hdr-north-fort-myers.jpg'); }
.ph-punta-gorda::before      { background-image: url('hdr-punta-gorda.jpg'); background-position: center 70%; }

/* Hours */
.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15.5px;
}
.hours li:last-child { border-bottom: 0; }
.hours .day { color: var(--muted); }
.hours .time { color: var(--ink); font-weight: 600; }
.hours-note { font-size: 13.5px; color: var(--muted); margin: 12px 0 0; }
@media (max-width: 560px) { .hours li { font-size: 14.5px; } }

/* Two column */
.two-col { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(34px, 6vw, 76px); align-items: start; }
.two-col h2 { font-size: clamp(24px, 3.2vw, 35px); margin: 0 0 24px; }
.prose p { color: var(--muted); margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }

/* Check list */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  position: relative; padding: 13px 0 13px 26px;
  border-bottom: 1px solid var(--line); color: var(--ink); font-size: 16px;
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 21px;
  width: 12px; height: 1px; background: var(--brass);
}

/* Service detail list */
.detail-list { display: grid; gap: 0; }
.detail-item {
  padding: 42px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: minmax(0,300px) minmax(0,1fr); gap: 34px; align-items: start;
}
.detail-item:first-child { padding-top: 0; }
.detail-item:last-child { border-bottom: 0; }
.detail-item h3 { font-size: clamp(21px, 2.6vw, 28px); margin: 0; font-weight: 600; }
.detail-tag { color: var(--blue); font-size: 14px; font-weight: 500; margin: 8px 0 0; }
.detail-item > p:last-child { color: var(--muted); margin: 0; font-size: 16.5px; }

/* Area cards */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1px; background: var(--line); }
.area-card { background: var(--white); padding: 34px 32px; text-decoration: none; display: block; transition: background .2s ease; }
.area-card:hover { background: var(--pale); }
.area-card h3 { font-size: 21px; margin: 0 0 12px; color: var(--navy); font-weight: 600; }
.area-card p { color: var(--muted); font-size: 15.5px; margin: 0 0 18px; }
.area-link { color: var(--blue); font-weight: 600; font-size: 14px; letter-spacing: .02em; }

/* ============================================================
   BEFORE / AFTER CAROUSEL
   ============================================================ */
.carousel { position: relative; max-width: 900px; margin: 0 auto; }
.carousel-window { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--pale); }
.carousel-track { display: flex; transition: transform .38s cubic-bezier(.4,0,.2,1); }
.carousel-slide { flex: 0 0 100%; margin: 0; cursor: zoom-in; }
.carousel-slide img { width: 100%; height: auto; display: block; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(26,73,113,.90); color: #fff; border: 0;
  font-size: 22px; line-height: 1; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.carousel-btn:hover { background: var(--navy); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-btn[hidden] { display: none; }

.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.carousel-dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: var(--line); cursor: pointer; transition: background .2s ease;
}
.carousel-dot.active { background: var(--brass); }

.carousel-hint { text-align: center; font-size: 13px; color: var(--muted); margin: 12px 0 0; }

/* ============================================================
   PHOTO GRID — small, uniform, whole image always visible
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.shot {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--pale);
  border: 1px solid var(--line);
  cursor: zoom-in;
  position: relative;
  margin: 0;
  transition: border-color .2s ease, transform .2s ease;
}
.shot:hover { border-color: var(--brass); transform: translateY(-2px); }
/* fixed height + contain = uniform tiles, nothing cropped */
.shot img { width: 100%; height: 200px; object-fit: contain; display: block; }

.shot::after {
  content: '⤢';
  position: absolute; right: 8px; bottom: 8px;
  background: rgba(26,73,113,.86); color: #fff;
  width: 27px; height: 27px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.shot:hover::after { opacity: 1; }
.shot span { color: var(--blue); font-size: 13.5px; font-weight: 500; padding: 40px 20px; display: block; text-align: center; }

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 22, 32, .94);
  padding: 24px;
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 88vh;
  width: auto; height: auto; object-fit: contain;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: rgba(255,255,255,.14); border: 0; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.26); }
.lightbox-cap {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.82); font-size: 13.5px; text-align: center;
  max-width: 88%; padding: 0 12px; margin: 0;
}

@media (max-width: 560px) {
  .lightbox { padding: 12px; }
  .lightbox img { max-height: 80vh; }
  .lightbox-close { top: 10px; right: 12px; width: 40px; height: 40px; }
  .shot::after { opacity: .85; }
  .shot img { height: 140px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 19px; }
}

/* FAQ */
.faq-list { display: grid; gap: 0; max-width: 800px; }
.faq { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary {
  cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 17px;
  color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--brass); font-size: 20px; line-height: 1; flex-shrink: 0; font-weight: 400; }
.faq[open] summary::after { content: '−'; }
.faq p { margin: 0 0 22px; color: var(--muted); font-size: 16px; }

/* Contact list */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 20px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); font-weight: 600;
}
.contact-list a, .contact-list span { font-size: 18px; color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--blue); text-decoration: underline; }

.note { margin-top: 34px; color: var(--muted); font-size: 15.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav {
    display: none;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 8px 0;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px var(--gutter); width: 100%; }
  .nav-toggle { display: block; }
  .pane-grid { grid-template-columns: repeat(2, 1fr); }
  .pane:nth-child(n+7) { display: none; }
  .mullions { background:
    linear-gradient(to right, transparent calc(50% - 1px), rgba(255,255,255,.11) 50%, transparent calc(50% + 1px)),
    linear-gradient(to bottom, transparent calc(33.33% - 1px), rgba(255,255,255,.08) 33.33%, transparent calc(33.33% + 1px)),
    linear-gradient(to bottom, transparent calc(66.66% - 1px), rgba(255,255,255,.08) 66.66%, transparent calc(66.66% + 1px));
  }
  .hero { min-height: auto; }
  .hero-inner { padding: 60px 0; }
  .hero h1 { font-size: clamp(30px, 5vw, 40px); }
  .two-col { grid-template-columns: 1fr; }
  .detail-item { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .footer-base { flex-direction: column; gap: 8px; }
}

/* Phones — smaller type, centered, nothing clipped */
@media (max-width: 560px) {
  body { font-size: 15.5px; line-height: 1.65; }

  .header-inner { height: 60px; }
  .nav { top: 60px; }
  .brand-logo { height: 36px; width: 36px; border-radius: 8px; }
  .brand-text { font-size: 15.5px; }
  .brand-text em { font-size: .72em; }
  .site-header .btn-sm { display: none; }

  /* HERO — centered, same feel as the "Ready for a clearer view?" band */
  .hero { min-height: auto; text-align: center; }
  .hero-inner { padding: 38px 0 42px; }
  .hero h1 { font-size: 21px; line-height: 1.3; max-width: 100%; margin: 0 auto; letter-spacing: -0.01em; }
  .hero h1 em { margin-top: 3px; }
  .hero-sub { font-size: 14px; line-height: 1.6; margin: 12px auto 20px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 9px; }

  /* PAGE HEROES — centered too */
  .page-hero { padding: 32px 0 32px; text-align: center; }
  .page-hero h1 { font-size: 20px; line-height: 1.3; max-width: 100%; margin: 0 auto; letter-spacing: -0.01em; }
  .page-hero-sub { font-size: 14px; line-height: 1.6; margin: 11px auto 19px; max-width: 100%; }
  .page-hero .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }

  /* Buttons: full width, smaller text so the phone number never clips */
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; font-size: 13px; padding: 12px 14px; }

  /* SECTION HEADS — centered */
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 30px; text-align: center; margin-left: auto; margin-right: auto; }
  .section-head h2 { font-size: 23px; line-height: 1.25; }
  .section-head p { font-size: 15px; margin-top: 12px; }
  .eyebrow { font-size: 10.5px; letter-spacing: .16em; margin-bottom: 12px; }

  .trust { padding: 15px 0; }
  .trust-list { gap: 7px 18px; font-size: 12.5px; }

  /* Cards centered */
  .service, .area-card { padding: 24px 20px; text-align: center; }
  .service h3, .area-card h3 { font-size: 17px; }
  .service p, .area-card p { font-size: 14.5px; }
  .areas { gap: 8px; justify-content: center; }
  .area { padding: 10px 17px; font-size: 14px; }

  .review { padding: 24px 22px; }
  .review p { font-size: 15px; line-height: 1.7; }

  /* Two-column stacks and centers */
  .two-col { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .two-col h2 { font-size: 22px; margin-bottom: 18px; }
  .check-list li { padding-left: 0; text-align: center; }
  .check-list li::before { display: none; }
  .prose p { font-size: 15px; }

  .detail-item { text-align: center; padding: 28px 0; }
  .detail-item h3 { font-size: 20px; }
  .detail-item > p:last-child { font-size: 15px; }
  .detail-tag { font-size: 13px; }

  .faq { text-align: left; }
  .faq summary { font-size: 15.5px; padding: 16px 0; }
  .faq p { font-size: 15px; }

  .contact-list li { text-align: center; align-items: center; }
  .contact-list a, .contact-list span { font-size: 16.5px; }

  .cta-band { padding: 50px 0; }
  .cta-band h2 { font-size: 24px; line-height: 1.25; }
  .cta-band p { font-size: 15px; margin: 16px auto 26px; }

  .site-footer { padding: 44px 0 24px; text-align: center; }
  .footer-grid { gap: 28px; }
  .footer-base { flex-direction: column; gap: 8px; align-items: center; font-size: 12.5px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .note { font-size: 14.5px; text-align: center; }
}

/* Very small phones */
@media (max-width: 390px) {
  :root { --gutter: 16px; }
  .hero h1 { font-size: 19px; }
  .hero-inner { padding: 32px 0 36px; }
  .page-hero h1 { font-size: 18.5px; }
  .page-hero { padding: 28px 0 28px; }
  .section-head h2 { font-size: 21px; }
  .cta-band h2 { font-size: 22px; }
  .brand-text { font-size: 14.5px; }
  .trust-list { gap: 6px 14px; font-size: 11.5px; }
  .hero-actions .btn, .cta-actions .btn { font-size: 12.5px; padding: 13px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pane { animation: none; opacity: 0; backdrop-filter: none; -webkit-backdrop-filter: none; }
}
