:root {
  --navy: #1c2b3a;
  --navy-light: #2c4356;
  --teal: #3ab6c4;
  --teal-dark: #2a97a4;
  --teal-tint: #eaf7f8;
  --bg: #f6f9fa;
  --white: #ffffff;
  --text: #223140;
  --text-light: #5c6b78;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(28, 43, 58, 0.08);
  --max: 1120px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--teal-dark); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
#contact { scroll-margin-top: 100px; }
@media (max-width: 900px) {
  #contact { scroll-margin-top: 190px; }
}
.section--tight { padding: 48px 0; }
.section--alt { background: var(--white); }
.text-center { text-align: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.6em;
  display: block;
}
.lede { font-size: 1.15rem; color: var(--text-light); max-width: 720px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--teal); color: var(--navy); }
.btn--primary:hover { background: var(--teal-dark); color: var(--white); }
.btn--outline { border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--navy); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-light); }
.btn--block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(28, 43, 58, 0.08);
}
.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.site-header .logo img { height: 58px; }
.site-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--teal-dark); }

.nav-dropdown { position: relative; }
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: 0.6;
}
.nav-dropdown[open] summary { color: var(--teal-dark); }
.nav-dropdown[open] summary::after { margin-top: 2px; transform: rotate(225deg); }
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 200px;
  z-index: 60;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.92rem;
}
.nav-dropdown .dropdown-menu a:hover { background: var(--teal-tint); color: var(--teal-dark); }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.02rem;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 33, 46, 0.72), rgba(20, 33, 46, 0.82)), var(--hero-img, none) center/cover no-repeat;
  padding: 96px 0 88px;
}
.hero h1 { color: var(--white); }
.hero .lede { color: rgba(255, 255, 255, 0.92); margin: 0 0 1.6em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero-badges {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.hero-form-wrap .card { margin: 0; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-actions, .hero-badges { justify-content: center; }
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-dark); }

/* Cards / grids */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 0.3em; }
.card .price {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.card ul { padding-left: 0; list-style: none; margin: 16px 0 0; }
.card ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-light);
}
.card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-dark);
  font-weight: 700;
}

/* Service area chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  background: var(--teal-tint);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.chip:hover { background: var(--teal); color: var(--navy); }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { text-align: center; }
.why-item .num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
}
.why-item h4 { margin-bottom: 6px; font-size: 1.05rem; }
.why-item p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { color: var(--text-light); margin: 0; }

/* Two-column band (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Contact */
.contact-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) { .contact-band { grid-template-columns: 1fr; padding: 32px; } }
.contact-band h2 { color: var(--white); }
.contact-band .lede { color: rgba(255, 255, 255, 0.8); }
.contact-info-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-info-list li { margin-bottom: 14px; }
.contact-info-list a { color: var(--white); text-decoration: none; font-weight: 600; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.85);
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(28, 43, 58, 0.14);
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}
.field textarea { resize: vertical; min-height: 100px; }
.card .field label { color: var(--text); }
.contact-form-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
}

/* Sticky mobile call bar */
.sticky-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--teal);
}
.sticky-call a {
  display: block;
  text-align: center;
  padding: 14px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 720px) { .sticky-call { display: block; } body { padding-bottom: 52px; } }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-grid a { color: rgba(255, 255, 255, 0.75); text-decoration: none; display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--teal); }
.footer-logo img { height: 34px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .site-header .container { flex-wrap: nowrap; padding-top: 10px; padding-bottom: 10px; gap: 10px; }
  .site-header .logo img { height: 38px; }
  .header-cta { gap: 8px; }
  .btn--primary { padding: 10px 16px; font-size: 0.9rem; }
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid rgba(28, 43, 58, 0.08);
    box-shadow: var(--shadow);
    padding: 6px 24px 16px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 80;
  }
  .site-nav.open { display: flex; }
  .site-nav > a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(28, 43, 58, 0.06);
    font-size: 0.95rem;
  }
  .nav-dropdown { width: 100%; border-bottom: 1px solid rgba(28, 43, 58, 0.06); }
  .nav-dropdown summary { padding: 12px 4px; font-size: 0.95rem; }
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    min-width: 0;
    width: 100%;
    padding: 0 0 8px 16px;
  }
  .nav-dropdown .dropdown-menu a { padding: 8px 0; font-size: 0.9rem; }
}
@media (max-width: 640px) {
  .header-phone { display: none; }
}
