:root {
  --navy: #0b2341;
  --navy-2: #102f57;
  --navy-3: #193d70;
  --gold: #d4af37;
  --gold-2: #f3df98;
  --gold-3: #fff5d2;
  --cream: #fcf8ef;
  --white: #ffffff;
  --text: #1f2a37;
  --muted: #5b6574;
  --border: rgba(11, 35, 65, 0.1);
  --shadow-lg: 0 28px 60px rgba(11, 35, 65, 0.14);
  --shadow-md: 0 16px 36px rgba(11, 35, 65, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
  --transition: 260ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.alt-bg {
  background: linear-gradient(180deg, #fff9f0 0%, #fffdf8 100%);
}

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.topbar p {
  margin: 0;
}
.topbar a {
  color: var(--gold-2);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(11, 35, 65, 0.08);
}
.site-header.scrolled {
  box-shadow: 0 14px 34px rgba(11, 35, 65, 0.08);
}
.nav-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
}
.brand-logo {
  width: min(100%, 260px);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.site-nav a {
  position: relative;
  font-weight: 600;
  color: var(--navy);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform var(--transition);
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}
.nav-ctas {
  display: flex;
  gap: 12px;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
}

h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

p { margin: 0 0 16px; }
.lead {
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 700;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}
.section-heading.center {
  text-align: center;
  margin-inline: auto;
}
.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 12px 18px; font-size: 0.95rem; }
.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #f8e7ac 0%, var(--gold) 55%, #b98f15 100%);
  box-shadow: 0 16px 34px rgba(212, 175, 55, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.34);
}
.btn-secondary,
.btn-outline {
  background: rgba(255,255,255,0.92);
  border-color: rgba(11, 35, 65, 0.14);
  color: var(--navy);
}
.btn-secondary:hover,
.btn-outline:hover {
  border-color: rgba(11, 35, 65, 0.28);
  box-shadow: 0 14px 26px rgba(11, 35, 65, 0.09);
}
.btn-block { width: 100%; }

.hero {
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 84px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.18), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(11, 35, 65, 0.08), transparent 24%),
    linear-gradient(180deg, #fffef9 0%, #fbf5e8 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}
.hero-subheadline {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.06rem;
}
.hero-actions,
.center-actions,
.compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.center-actions { justify-content: center; }
.service-pills,
.mini-checklist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
}
.service-pills li,
.mini-checklist span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(11,35,65,0.08);
  box-shadow: 0 10px 22px rgba(11,35,65,0.05);
  font-weight: 700;
  color: var(--navy);
}
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.hero-trust-grid div {
  padding: 18px;
  background: rgba(255,255,255,0.8);
  border-radius: 22px;
  border: 1px solid rgba(11,35,65,0.08);
  box-shadow: 0 12px 26px rgba(11,35,65,0.05);
}
.hero-trust-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}
.hero-trust-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.96));
  border-radius: 34px;
  padding: 18px;
  border: 1px solid rgba(11,35,65,0.08);
  box-shadow: var(--shadow-lg);
}
.hero-card img {
  width: 100%;
  border-radius: 24px;
}
.float-card {
  animation: float 5.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stats-strip {
  background: linear-gradient(180deg, var(--navy) 0%, #08192e 100%);
  color: #fff;
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stats-grid div {
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 1.05rem;
}
.stats-grid span {
  color: rgba(255,255,255,0.82);
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.image-panel,
.image-card,
.contact-form,
.service-card,
.timeline-step,
.contact-card,
.faq-item,
.feature-list article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
.image-panel {
  overflow: hidden;
}
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px rgba(11,35,65,0.1);
  border-color: rgba(212,175,55,0.45);
}
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff6d4, #efd071);
  font-size: 1.55rem;
  margin-bottom: 16px;
}
.service-card p {
  color: var(--muted);
}
.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--navy);
}
.service-card li + li {
  margin-top: 8px;
}
.highlight-card {
  background: linear-gradient(180deg, #fffef9, #fff8df);
}

.feature-list {
  display: grid;
  gap: 16px;
}
.feature-list article {
  padding: 22px 22px 18px;
}
.feature-list p {
  color: var(--muted);
  margin-top: 8px;
}
.image-stack {
  position: relative;
}
.main-image {
  overflow: hidden;
}
.main-image img {
  width: 100%;
  border-radius: 24px;
}
.floating-note {
  position: absolute;
  right: -12px;
  bottom: 28px;
  max-width: 290px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(11,35,65,0.96), rgba(15,40,74,0.94));
  color: #fff;
  box-shadow: 0 18px 32px rgba(11,35,65,0.22);
}
.floating-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
}
.floating-note span {
  color: rgba(255,255,255,0.84);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 16.66%;
  right: 16.66%;
  top: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,175,55,0.2), var(--gold), rgba(212,175,55,0.2));
}
.timeline-step {
  position: relative;
  padding: 34px 28px 28px;
  z-index: 1;
}
.step-number {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f0cf6b);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 14px 28px rgba(212,175,55,0.22);
}
.timeline-step p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
}
.faq-item {
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 800;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  padding: 0 26px 22px;
  margin: 0;
  color: var(--muted);
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-card {
  padding: 18px 20px;
}
.contact-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-card span {
  color: var(--muted);
}
.contact-form {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-full {
  grid-column: 1 / -1;
}
label {
  font-weight: 700;
  color: var(--navy);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(11,35,65,0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(212,175,55,0.85);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}
textarea { resize: vertical; }
.form-note {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.form-success {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 18px;
  background: rgba(212,175,55,0.18);
  color: var(--navy);
  display: grid;
  gap: 10px;
}
.form-success p {
  margin: 0;
}
.form-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 35, 65, 0.9) 0%, rgba(8, 25, 46, 0.95) 100%),
    url('assets/Woman_smiling_in_sunroom_202606112254.jpeg') center/cover no-repeat;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}
.final-cta h2,
.final-cta p,
.final-cta .eyebrow { color: #fff; }
.final-cta .eyebrow { color: var(--gold-2); }

/* Meet Helena & Deep Cleaning Section Image Panel Tweaks */
.image-panel {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
}
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Areas We Serve styling */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 40px 0;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.area-card span {
  font-size: 1.25rem;
}
.areas-footer {
  margin-top: 32px;
}
.areas-footer p {
  color: var(--muted);
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding-bottom: 40px;
}
.footer-brand img {
  width: 240px;
  margin-bottom: 18px;
}
.site-footer h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0 28px;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11,35,65,0.98), rgba(18,48,88,0.98));
  color: #fff;
  box-shadow: 0 20px 40px rgba(11,35,65,0.25);
  border: 1px solid rgba(255,255,255,0.08);
}
.floating-call span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.floating-call strong {
  color: var(--gold-2);
  font-size: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

@media (max-width: 1100px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }
  .site-nav {
    position: fixed;
    inset: 132px 16px auto 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(11,35,65,0.1);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .nav-ctas { display: none; }
  .hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .timeline,
  .stats-grid,
  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before { display: none; }
  .floating-note {
    right: 0;
    bottom: -18px;
    position: relative;
    margin-top: 16px;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .section { padding: 78px 0; }
  .hero { padding-top: 50px; padding-bottom: 70px; }
  .topbar-inner {
    min-height: auto;
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .services-grid,
  .timeline,
  .stats-grid,
  .contact-form,
  .hero-trust-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .field-full { grid-column: auto; }
  .service-pills,
  .mini-checklist,
  .hero-actions { gap: 10px; }
  .nav-shell {
    min-height: 80px;
    gap: 12px;
  }
  .brand-logo { width: 190px; }
  .floating-call {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal,
  .float-card,
  .btn,
  .service-card,
  .site-nav a::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
