/* ============================================
   TRINITY McEWAN — Mobile Notary
   Design: Elegant rose & lavender palette
   ============================================ */

:root {
  --rose:        #C4607A;
  --rose-light:  #E8A4BC;
  --rose-pale:   #F7E0E8;
  --rose-dark:   #9A4060;
  --lavender:    #9585B5;
  --lav-light:   #C5BAD9;
  --lav-pale:    #EDE8F6;
  --gold:        #C9A06A;
  --gold-light:  #EDD9B8;
  --bg:          #FEF6F9;
  --bg-white:    #FFFFFF;
  --bg-soft:     #FDF0F5;
  --text:        #2D1B35;
  --text-mid:    #6B5577;
  --text-light:  #A090AD;
  --border:      #EDD5E2;
  --shadow:      0 4px 24px rgba(196, 96, 122, 0.10);
  --shadow-sm:   0 2px 10px rgba(196, 96, 122, 0.08);
  --radius:      14px;
  --radius-lg:   22px;
  --radius-sm:   8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-dark); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--rose); }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 96, 122, 0.30);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--rose);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--rose-pale);
  color: var(--rose-dark);
  transform: translateY(-1px);
}
.btn-emergency-sm {
  background: var(--rose-pale);
  color: var(--rose-dark);
  border-color: var(--rose-light);
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
}
.btn-emergency-sm:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.btn-full { width: 100%; text-align: center; display: block; }

/* ── Section helpers ── */
.section { padding: 5rem 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.section-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}
.section-sub { color: var(--text-mid); font-size: 1.05rem; margin-top: 0.75rem; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 246, 249, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--rose);
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.header-nav-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Click-to-call button — opens the phone dialer on mobile */
.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 2px solid var(--rose);
  white-space: nowrap;
  transition: all 0.18s;
}
.btn-call-header:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: #fff;
  transform: translateY(-1px);
}
.bch-icon { font-size: 0.95rem; line-height: 1; }
.main-nav > a,
.nav-dropdown-toggle {
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: all 0.18s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
}
.main-nav > a:hover, .nav-dropdown-toggle:hover { color: var(--rose); background: var(--rose-pale); }
.nav-emergency {
  color: var(--rose) !important;
  font-weight: 700 !important;
}
.nav-cta {
  background: var(--rose) !important;
  color: #fff !important;
  margin-left: 0.4rem;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--rose-dark) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 210px;
  padding: 0.5rem;
  z-index: 200;
}
.nav-dropdown.active .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.dropdown-menu a:hover { background: var(--rose-pale); color: var(--rose); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
/* Hamburger → X animation */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--rose-pale) 50%, var(--lav-pale) 100%);
}
.hero-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.decor-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.c1 { width: 500px; height: 500px; background: var(--rose-light); top: -150px; right: -100px; }
.c2 { width: 300px; height: 300px; background: var(--lav-light); bottom: -80px; left: -80px; }
.c3 { width: 200px; height: 200px; background: var(--gold-light); top: 50%; left: 40%; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px 280px;
  gap: 2rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-desc { font-size: 1.1rem; color: var(--text-mid); max-width: 520px; margin-bottom: 1.5rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.badge {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  backdrop-filter: blur(4px);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero is a 3-column grid: text · portrait · hours card */
.hours-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hours-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}
.hours-card-body { margin-bottom: 1.5rem; }
.hours-item { padding: 0.75rem 0; }
.hours-item.highlight { background: var(--rose-pale); border-radius: var(--radius-sm); padding: 0.85rem 1rem; margin-top: 0.5rem; }
.hours-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.2rem; }
.hours-time { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--text); }
.hours-time.big { font-size: 1.3rem; color: var(--rose); }
.hours-divider { height: 1px; background: var(--border); }
.hours-card-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 0.75rem; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.5rem 1.5rem;
}
.trust-icon { font-size: 1.1rem; }
.trust-divider { width: 1px; height: 28px; background: var(--border); }

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--rose-light);
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; line-height: 1; }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.service-card p { font-size: 0.93rem; margin-bottom: 1rem; }
.card-link { font-weight: 700; font-size: 0.88rem; color: var(--rose); }
.card-link:hover { color: var(--rose-dark); }

/* ── Hero portrait (above hours card) ── */
.hero-portrait-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hero-portrait {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
  display: block;
}
.hero-portrait-label {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
}

/* ── About photo (replaces monogram) ── */
.about-photo {
  width: 220px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 3px solid var(--rose-light);
  box-shadow: var(--shadow);
  display: block;
}

/* ── Contact sidebar portrait ── */
.sidebar-portrait-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-portrait {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sidebar-portrait-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--border);
  gap: 0.15rem;
}
.sidebar-portrait-caption strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text);
}
.sidebar-portrait-caption span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: linear-gradient(135deg, var(--lav-pale) 0%, var(--rose-pale) 100%); }
.about-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
}
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.about-tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose);
}
.about-content .section-eyebrow { text-align: left; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-highlights {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.75rem 0;
}
.about-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.2rem;
}
.about-highlight strong { font-size: 0.85rem; color: var(--rose); font-weight: 700; }
.about-highlight span  { font-size: 0.82rem; color: var(--text-mid); font-weight: 600; }

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-section { background: #fff; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.area-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.2s;
  text-decoration: none;
}
.area-card:hover {
  background: var(--rose-pale);
  border-color: var(--rose-light);
  color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-pin { font-size: 1rem; }
.area-name { flex: 1; }
.area-arrow { color: var(--text-light); transition: transform 0.2s; }
.area-card:hover .area-arrow { transform: translateX(3px); color: var(--rose); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-soft); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.stars { font-size: 1rem; color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; font-size: 0.95rem; margin-bottom: 1.25rem; }
.testimonial-author { font-weight: 700; font-size: 0.85rem; color: var(--rose); }

/* ============================================
   EMERGENCY CTA BANNER
   ============================================ */
.emergency-cta-section {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 100%);
  padding: 3rem 0;
}
.emergency-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.emergency-cta-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.emergency-cta-icon { font-size: 2.5rem; line-height: 1; }
.emergency-cta-content h2 { color: #fff; margin-bottom: 0.3rem; }
.emergency-cta-content p { color: rgba(255,255,255,0.85); margin: 0; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--lav-pale) 100%);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--text-mid); font-size: 1.05rem; }
.page-hero .section-eyebrow { text-align: center; }

/* Emergency hero */
.emergency-hero {
  background: linear-gradient(135deg, #3D1020 0%, #7A2040 50%, var(--rose) 100%);
  color: #fff;
}
.emergency-hero .section-eyebrow { color: var(--rose-light); }
.emergency-hero h1 { color: #fff; }
.emergency-hero p { color: rgba(255,255,255,0.85); }
.emergency-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

/* ============================================
   SERVICES PAGE — detailed cards
   ============================================ */
.services-detailed { display: flex; flex-direction: column; gap: 2rem; }
.service-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.service-detail-card:hover { box-shadow: var(--shadow); }
.service-detail-card.featured { border-color: var(--rose-light); background: var(--rose-pale); }
.sdc-icon { font-size: 2.5rem; line-height: 1; flex-shrink: 0; margin-top: 0.25rem; }
.sdc-content h2 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.sdc-content ul { padding-left: 1rem; margin-top: 0.75rem; margin-bottom: 0; }
.sdc-content ul li {
  position: relative;
  padding-left: 0.5rem;
  font-size: 0.93rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.sdc-content ul li::before {
  content: '✦';
  position: absolute;
  left: -1rem;
  color: var(--rose-light);
  font-size: 0.6rem;
  top: 0.35rem;
}
.sdc-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--lavender);
  font-style: italic;
}

/* What to have ready */
.info-section { background: var(--lav-pale); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.info-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.info-card h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.info-card p { font-size: 0.9rem; }

/* CTA strip */
.cta-strip { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); padding: 3.5rem 0; }
.cta-strip-inner { text-align: center; }
.cta-strip-inner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-strip-inner p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; }

/* ============================================
   EMERGENCY PAGE
   ============================================ */
.emergency-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.emergency-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.2s;
}
.emergency-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--rose-light); }
.ec-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.emergency-card h3 { margin-bottom: 0.6rem; }
.emergency-card p { font-size: 0.93rem; }

/* Emergency hours card */
.emergency-hours-section { background: var(--rose-pale); }
.emergency-hours-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.ehc-left h2 { margin-bottom: 1rem; }
.ehc-left p { font-size: 0.95rem; }
.emergency-contact-options { margin-top: 1.5rem; }
.hours-block { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem; }
.hours-block h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--text-mid); }
.hours-row-em { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.hours-row-em:last-child { border-bottom: none; }
.hours-row-em .time { font-weight: 700; color: var(--text); }
.hours-row-em.sunday { margin-top: 0.5rem; }
.hours-row-em.sunday .time { color: var(--rose); font-size: 1rem; }
.hours-note-box {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--rose-pale);
  border: 1px solid var(--rose-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.hours-note-box p { font-size: 0.88rem; margin: 0; color: var(--rose-dark); }

/* Steps */
.steps-list { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.step-content p { margin: 0; font-size: 0.93rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.required { color: var(--rose); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; /* ≥16px prevents iOS auto-zoom on focus */
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose-light); background: #fff; box-shadow: 0 0 0 3px rgba(196,96,122,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 0.5rem; }

.success-message {
  text-align: center;
  background: #F0FBF4;
  border: 1px solid #A8DFB8;
  border-radius: var(--radius);
  padding: 3rem 2rem;
}
.success-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.success-message h3 { color: #2E7D52; margin-bottom: 0.75rem; }
.success-message p { color: #4A9068; }

.error-message {
  background: #FFF0F3;
  border: 1px solid var(--rose-light);
  color: var(--rose-dark);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-call-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.sidebar-call-card:hover { transform: translateY(-2px); color: #fff; }
.scc-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.scc-number { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #fff; }
.scc-note { font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--text); }
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 600;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 700; color: var(--text); }
.sunday-row span:last-child { color: var(--rose); }
.highlight span:last-child { color: var(--rose); font-size: 1rem; }
.hours-note { font-size: 0.78rem; color: var(--text-light); margin-top: 0.75rem; font-style: italic; }

.sidebar-areas { display: flex; flex-direction: column; gap: 0.3rem; }
.sidebar-area-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.sidebar-area-link:hover { background: var(--rose-pale); color: var(--rose); }

.emergency-sidebar-card { border-color: var(--rose-light); background: var(--rose-pale); }
.emergency-sidebar-card h3 { color: var(--rose-dark); }
.ec-badge {
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sidebar-list { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-list li { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); }

/* ============================================
   AREA PAGE
   ============================================ */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.area-intro-card {
  background: linear-gradient(135deg, var(--rose-pale), var(--lav-pale));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.area-intro-card h2 { margin-bottom: 1rem; font-size: 1.5rem; }
.area-intro-card p { margin-bottom: 0.75rem; }
.area-intro-card .btn { margin-top: 0.5rem; }

.area-neighborhoods { margin-bottom: 2rem; }
.area-neighborhoods h3 { margin-bottom: 1rem; }
.neighborhood-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.neighborhood-tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-mid);
}

.area-docs { margin-bottom: 2rem; }
.area-docs h3 { margin-bottom: 0.6rem; }
.area-docs > p { font-size: 0.93rem; margin-bottom: 1rem; }
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
}
.doc-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
}
.doc-icon { color: var(--rose); font-weight: 900; }
.docs-note { font-size: 0.83rem; color: var(--text-light); margin-top: 0.75rem; font-style: italic; }
.docs-note a { color: var(--rose); }

.area-why h3 { margin-bottom: 1.25rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.why-item {
  display: flex;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.why-item > span { font-size: 1.75rem; line-height: 1; flex-shrink: 0; }
.why-item strong { display: block; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--text); }
.why-item p { font-size: 0.85rem; margin: 0; }

/* ============================================
   404 PAGE
   ============================================ */
.not-found-section { min-height: 60vh; display: flex; align-items: center; }
.not-found-inner { display: flex; justify-content: center; }
.not-found-content { text-align: center; max-width: 480px; }
.not-found-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.not-found-content h1 { margin-bottom: 0.75rem; }
.not-found-content p { margin-bottom: 2rem; }
.not-found-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-brand .logo-icon { color: var(--rose-light); }
.footer-brand .logo-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.footer-brand p { font-size: 0.88rem; margin-bottom: 1rem; }
.footer-phone {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  transition: color 0.15s;
}
.footer-phone:hover { color: var(--rose-light); }

.footer-links h4,
.footer-areas h4,
.footer-hours h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-links a,
.footer-areas a {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  padding: 0.25rem 0;
  transition: color 0.15s;
}
.footer-links a:hover,
.footer-areas a:hover { color: var(--rose-light); }

.footer-areas { display: flex; flex-direction: column; }
.footer-areas h4 { margin-bottom: 1rem; }

.footer-hours .hours-list { margin-bottom: 0.75rem; }
.footer-hours .hours-row {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}
.footer-hours .hours-row span:last-child { color: rgba(255,255,255,0.9); }
.footer-hours .highlight span:last-child { color: var(--rose-light); }
.footer-hours .sunday-row span:last-child { color: var(--rose-light); }
.hours-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-style: italic; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0.2rem 0; }
.footer-disc { font-size: 0.72rem !important; color: rgba(255,255,255,0.3) !important; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ── 860px: hamburger nav ── */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem;
    gap: 0.15rem;
    box-shadow: 0 8px 32px rgba(45, 27, 53, 0.14);
    z-index: 99;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }

  .main-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    text-align: left;
  }
  .nav-cta {
    margin-left: 0 !important;
    text-align: center !important;
    margin-top: 0.25rem;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg);
    border-radius: var(--radius-sm);
    margin-top: 0.15rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ── 1024px: hero stacks (3-col → single column) ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-portrait-wrap { width: 100%; max-width: 300px; margin: 0 auto; }
  .hero-portrait { height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .hours-card { height: auto; width: 100%; max-width: 440px; margin: 0 auto; justify-content: flex-start; }
}

/* ── 900px: collapse 2-col layouts ── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { flex-direction: row; align-items: flex-start; gap: 1.25rem; }
  .about-photo { width: 160px; height: 200px; flex-shrink: 0; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
  .sidebar-portrait-wrap { grid-column: 1 / -1; }
  .sidebar-portrait { max-height: 220px; }

  .area-layout { grid-template-columns: 1fr; }
  .area-sidebar { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .emergency-hours-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .service-detail-card { flex-direction: column; gap: 0.75rem; padding: 1.5rem; }
  .sdc-icon { margin-top: 0; }
}

/* ── 640px: small tablets / large phones ── */
@media (max-width: 640px) {
  .container { padding: 0 1.1rem; }
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2.25rem; }

  /* Hero */
  .hero { padding: 2.5rem 0 2rem; }
  .hero-portrait { height: auto; aspect-ratio: 3 / 2; }
  .hero-content h1 { margin-bottom: 1rem; }
  .hero-desc { font-size: 1rem; }
  .hero-badges { gap: 0.4rem; }
  .badge { font-size: 0.78rem; padding: 0.3rem 0.75rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { text-align: center; display: block; }

  /* Trust bar: 2×2 grid */
  .trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-divider { display: none; }
  .trust-item { justify-content: flex-start; padding: 0.65rem 1rem; font-size: 0.8rem; }

  /* About */
  .about-visual { flex-direction: column; align-items: center; }
  .about-photo { width: 180px; height: 225px; }
  .about-content h2 { margin-bottom: 1rem; }
  .about-highlights { gap: 0.75rem; }
  .about-highlight { flex: 1 1 calc(50% - 0.375rem); }

  /* Contact */
  .contact-sidebar { display: flex; flex-direction: column; }
  .sidebar-portrait { max-height: 260px; }
  .form-row { grid-template-columns: 1fr; }

  /* Emergency */
  .emergency-cta-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
  .emergency-cta-content { flex-direction: column; align-items: center; gap: 0.75rem; }
  .emergency-cta-content h2 { font-size: 1.4rem; }

  /* Area */
  .area-sidebar { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .area-intro-card { padding: 1.4rem; }

  /* Services */
  .service-detail-card { padding: 1.25rem; }

  /* Emergency page */
  .emergency-hours-card { padding: 1.25rem; }
  .steps-list { padding: 0; }
  .step { gap: 1rem; padding: 1.25rem 0; }
  .step-num { width: 38px; height: 38px; font-size: 1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .site-footer { padding: 2.5rem 0 0; }

  /* Page heros */
  .page-hero { padding: 2.5rem 0 2rem; }
  .cta-strip { padding: 2.5rem 0; }
}

/* ── 480px: small phones ── */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }

  /* Hero portrait stays visible on phones */
  .hero-portrait-wrap { max-width: 260px; }
  .hero-portrait { aspect-ratio: 3 / 2; }
  .hours-card { padding: 1.25rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 1.5rem; }

  /* Info grid */
  .info-grid { grid-template-columns: 1fr; }

  /* Emergency */
  .emergency-scenarios { grid-template-columns: 1fr; }
  .emergency-card { padding: 1.25rem; }

  /* About */
  .about-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .about-photo { width: 150px; height: 188px; }
  .about-highlights { flex-direction: column; gap: 0.6rem; }
  .about-highlight { flex: none; }

  /* Contact */
  .sidebar-card { padding: 1.1rem; }

  /* Footer */
  .footer-bottom { padding: 1.1rem 0; }
}

/* ── 400px: keep header tidy with the call button ── */
@media (max-width: 400px) {
  .logo-sub { display: none; }
  .btn-call-header { padding: 0.5rem 0.85rem; }
  .header-nav-group { gap: 0.5rem; }
}
