/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #132336;
  --navy-light: #1c334f;
  --accent:     #fffb94;
  --accent-dim: #e8e47a;
  --white:      #ffffff;
  --off-white:  #f5f6f0;
  --text-light: #c8d4e0;
  --text-muted: #7a90a8;
  --radius:     6px;
  --transition: 0.25s ease;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -1px;
}
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo .logo-text span { color: var(--accent); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--accent); background: rgba(255,255,255,0.06); }

/* Social icons + CTA */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 14px;
  padding-left: 14px;
  margin-right: 14px;
  padding-right: 14px;
  border-left: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.nav-socials a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  color: var(--accent);
  transition: color var(--transition), background var(--transition);
}
.nav-socials a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-socials svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }

.btn-schedule {
  margin-left: 10px;
  padding: 9px 20px;
  background: var(--accent);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.btn-schedule:hover { background: var(--white);}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    url('assets/hero_img.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.32) saturate(0.7);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.7) 0%, transparent 60%),
              linear-gradient(to top, rgba(13,27,42,0.9) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.05;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 14px 32px;
  background: var(--accent);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,251,148,0.3);
}
.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,251,148,0.05);
  transform: translateY(-2px);
}

/* Trust bar */
.hero-trust {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: stretch;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-right: none; }
.trust-item + .trust-item { padding-left: 32px; }
.trust-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: rgba(255,251,148,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.trust-icon svg { width: 18px; height: 18px; fill: currentColor; }
.trust-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.trust-value { font-size: 14px; color: var(--white); font-weight: 500; }

/* ─── SECTION SHARED ────────────────────────────────────────── */
section { width: 100%; }
.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 28px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: currentColor;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 600px;
  font-weight: 300;
}

/* Dark sections */
.dark-section { background: var(--navy); color: var(--white); }
.dark-section .section-tag { color: var(--accent); }
.dark-section .section-lead { color: var(--text-light); }

/* Light sections */
.light-section { background: var(--off-white); color: var(--navy); }
.light-section .section-tag { color: var(--navy-light); }

/* ─── WASH & FOLD ───────────────────────────────────────────── */
#wash-fold {
  background: var(--navy);
  color: var(--white);
}
.wf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.wf-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wf-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.wf-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.wf-card-icon {
  width: 44px; height: 44px;
  background: rgba(255,251,148,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}
.wf-card-icon svg { width: 22px; height: 22px; fill: currentColor; }
.wf-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.wf-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }
.wf-cta { margin-top: 36px; }

/* ─── PICKUP ────────────────────────────────────────────────── */
#residential { background: var(--off-white); }
.residential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.residential-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  order: -1;
}
.residential-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.residential-img:hover img { transform: scale(1.03); }
.steps-list { margin: 28px 0; display: flex; flex-direction: column; gap: 18px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-num {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.step-text h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 3px; }
.step-text p { font-size: 13.5px; color: #5a6e82; line-height: 1.6; }
.residential-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-dark {
  padding: 13px 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-accent {
  padding: 13px 28px;
  background: var(--accent);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-accent:hover {
  background: var(--navy);
  color: var(--white);
  /* transform: translateY(-2px); */
  box-shadow: 0 6px 20px rgba(255,251,148,0.3);
}

/* ─── BUSINESS ──────────────────────────────────────────────── */
#business { background: var(--navy); color: var(--white); }
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.biz-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.biz-img img { width: 100%; height: 100%; object-fit: cover; }
.biz-features { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.biz-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-light);
}
.biz-feature::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
#testimonials { background: var(--off-white); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .section-lead { margin: 0 auto; }

.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1);
  will-change: transform;
}
.t-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t-stars { display: flex; gap: 3px; }
.t-stars span { color: var(--accent-dim); font-size: 17px; }
.t-stars span:nth-child(-n+5) { color: #f5c518; }
.t-quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  font-style: italic;
  flex: 1;
}
.t-author { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  color: var(--navy);
}
.carousel-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.carousel-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active { background: var(--navy); transform: scale(1.3); }

/* ─── FAQ ───────────────────────────────────────────────────── */
#faq { background: var(--navy); color: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar .section-lead { color: var(--text-light); margin-bottom: 30px; }
.faq-sidebar .btn-outline-accent {
  display: inline-block;
  padding: 12px 26px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.faq-sidebar .btn-outline-accent:hover { background: var(--accent); color: var(--navy); }

.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-plus {
  position: relative;
  width: 12px; height: 12px;
}
.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.faq-plus::before { width: 100%; height: 2px; top: 5px; left: 0; }
.faq-plus::after  { width: 2px; height: 100%; top: 0; left: 5px; }
.faq-item.open .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-q { color: var(--accent); }
.faq-a {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-icon-box {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}
.faq-item.open .faq-icon-box { border-color: var(--accent); background: rgba(255,251,148,0.1); }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #060f18;
  color: var(--text-light);
  padding: 72px 0 0;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-col .nav-logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition);
}
.footer-socials a:hover { color: var(--accent); border-color: var(--accent); }
.footer-socials svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-info-list { display: flex; flex-direction: column; gap: 12px; }
.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-info-item svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-map {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,0.07);
}
.footer-map iframe { display: block; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 13px;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-about-btn {
  padding: 10px 22px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition);
}
.footer-about-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ─── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 12px 28px 20px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  transition: color var(--transition);
}
.mobile-menu a:hover, .mobile-menu button:hover { color: var(--accent); }
.mobile-menu .m-schedule {
  margin-top: 10px;
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius);
  font-size: 14px;
  text-align: center;
  border: none;
}
.mobile-menu .m-socials {
  display: flex;
  gap: 10px;
  padding-top: 14px;
  border-bottom: none !important;
}
.mobile-menu .m-socials a {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px;
  border-radius: var(--radius);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0;
}
.mobile-menu .m-socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wf-grid, .pickup-grid, .business-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .t-card { flex: 0 0 calc(50% - 12px); }
  .pickup-img { order: 0; }
}
@media (max-width: 768px) {
  .nav-links, .nav-socials, .btn-schedule { display: none; }
  .nav-hamburger { display: flex; }
  .hero-trust-inner { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item + .trust-item { padding-left: 0; }
  .wf-cards { grid-template-columns: 1fr; }
  .t-card { flex: 0 0 calc(100% - 0px); }
  .footer-top { grid-template-columns: 1fr; }
  .section-inner { padding: 64px 20px; }
}

/* ── Contact HTML─────────────────────────────────────────────── */
.nav-link-active {
  color: var(--accent) !important;
}
 
/* ── Page Hero (shared sub-page banner) ───────────────────────── */
.contact-hero {
  background: var(--navy);
  padding: 80px 28px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(255,251,148,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.contact-hero .hero-eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}
.contact-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-hero-title em {
  font-style: italic;
  color: var(--accent);
}
.contact-hero-sub {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
}
 
.contact-section {
  background: var(--off-white);
  padding: 80px 0;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
}
 
.contact-info-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.15;
}
.contact-info-lead {
  font-size: 15px;
  color: #5a6e82;
  line-height: 1.7;
  margin-bottom: 32px;
}
 
/* Info cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.info-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.info-card:hover {
  border-color: rgba(13,27,42,0.18);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.info-card-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(13,27,42,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.info-card-icon svg { width: 20px; height: 20px; }
.info-card-body h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-card-body p {
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 6px;
}
.info-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-light);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.info-link:hover { color: var(--accent-dim); }
 
/* Hours grid inside card */
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 4px;
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.6;
}
.hours-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12.5px;
  white-space: nowrap;
  padding-top: 1px;
}
 
/* Schedule nudge */
.contact-schedule-nudge {
  background: var(--navy);
  border-radius: 10px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-schedule-nudge p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-schedule-nudge .btn-primary {
  align-self: flex-start;
}
 
/* ── Form card ────────────────────────────────────────────────── */
.contact-form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 44px 40px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.form-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
 
/* Success & error banners */
.form-success,
.form-error-banner {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}
.form-success.visible,
.form-error-banner.visible {
  display: flex;
}
.form-success {
  background: #eafaf1;
  border: 1px solid #a8dbb9;
  color: #1a6b3a;
}
.form-success svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: #1a6b3a;
  margin-top: 1px;
}
.form-success strong { display: block; font-weight: 600; }
.form-error-banner {
  background: #fff3f3;
  border: 1px solid #f5c0c0;
  color: #b83232;
}
.form-error-banner svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: #b83232;
  margin-top: 1px;
}
 
/* Form layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.req { color: #d94f4f; }
.optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}
 
/* Inputs, textarea, select */
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0adb8; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,27,42,0.08);
}
/* Invalid state after attempted submit */
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #d94f4f;
  box-shadow: 0 0 0 3px rgba(217,79,79,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
 
/* Custom select wrapper */
.select-wrap {
  position: relative;
}
.select-wrap select { padding-right: 36px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}
 
/* Field-level error text */
.field-error {
  font-size: 12px;
  color: #d94f4f;
  min-height: 16px;
  line-height: 1.3;
}
 
/* Submit button */
.btn-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-bottom: 14px;
  position: relative;
}
.btn-submit:hover:not(:disabled) {
  background: var(--navy-light);
    color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,27,42,0.25);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


.btn-submit-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .btn-submit-text { opacity: 0.5; }
.btn-submit.loading .btn-submit-spinner { display: inline-block; }
 
@keyframes spin {
  to { transform: rotate(360deg); }
}
 
.form-privacy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
 
.map-strip {
  line-height: 0;
  border-top: 3px solid var(--navy);
}
 
@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact-form-card {
    padding: 32px 26px;
  }
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .page-hero {
    padding: 60px 20px 52px;
  }
}
