:root {
  --pale-mint: #DDF7F2;
  --soft-aqua: #BFF3EA;
  --deep-teal: #007C7A;
  --dark-teal: #005D5C;
  --dark-navy: #062B3F;
  --white: #FFFFFF;
  --muted: #557486;
  --border: rgba(6, 43, 63, 0.12);
  --shadow: 0 24px 70px rgba(6, 43, 63, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f7fffd 0%, var(--pale-mint) 48%, #ffffff 100%);
  color: var(--dark-navy);
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .25em;
  font-size: 1.05rem;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: var(--dark-navy);
}

.nav-links a:hover { color: var(--deep-teal); }

.nav-cta {
  background: var(--deep-teal);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,124,122,.22);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--dark-navy);
  font-size: 1.7rem;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 46px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-teal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .78rem;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(2.65rem, 7vw, 5.55rem);
  line-height: .94;
  letter-spacing: -.065em;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 650px;
  font-size: 1.18rem;
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
}

.btn.primary {
  color: var(--white);
  background: var(--deep-teal);
  box-shadow: 0 14px 36px rgba(0,124,122,.24);
}

.btn.secondary {
  color: var(--dark-navy);
  background: var(--white);
  border-color: var(--border);
}

.hero-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 38px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-card img {
  width: min(260px, 80%);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 20px;
}

.hero-card h2 {
  font-size: 1.55rem;
  letter-spacing: -.03em;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.65;
}

.trust-strip {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-strip span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  font-weight: 900;
  color: var(--deep-teal);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.about-section h2,
.quote-copy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -.055em;
  line-height: 1;
  margin-bottom: 16px;
}

.section-heading p,
.about-copy p,
.quote-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 46px rgba(6, 43, 63, 0.08);
}

.icon {
  width: 54px;
  height: 54px;
  background: var(--pale-mint);
  color: var(--deep-teal);
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.service-card h3 { font-size: 1.25rem; }

.service-card p { color: var(--muted); line-height: 1.62; }

.work-section {
  background: linear-gradient(135deg, var(--white), var(--pale-mint));
  border-radius: 38px;
  padding: 64px 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.before-after-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(0,124,122,.18);
  box-shadow: 0 18px 45px rgba(6,43,63,.1);
  min-height: 360px;
}

.photo-card.small { min-height: 230px; }

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(6,43,63,.88);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
}

.after-badge {
  background: var(--deep-teal);
}

.about-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.checks span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  font-weight: 800;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  color: var(--dark-navy);
  font-weight: 700;
  line-height: 1.65;
  box-shadow: 0 16px 46px rgba(6, 43, 63, 0.08);
}

.quote-section {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 42px;
  align-items: start;
  background: var(--dark-navy);
  color: var(--white);
  border-radius: 38px;
  padding: 58px;
  box-shadow: var(--shadow);
}

.quote-section .eyebrow,
.quote-section a { color: var(--soft-aqua); }

.quote-section p { color: rgba(255,255,255,.75); }

.contact-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.contact-box p { margin: 0 0 10px; }
.contact-box p:last-child { margin-bottom: 0; }

.quote-form {
  display: grid;
  gap: 14px;
  background: var(--white);
  color: var(--dark-navy);
  border-radius: 28px;
  padding: 26px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--dark-navy);
  background: #f8fffd;
}

textarea { min-height: 118px; resize: vertical; }

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero,
  .about-section,
  .quote-section,
  .before-after-pair {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .gallery-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav { min-height: 70px; }
  .brand span { font-size: .9rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero { padding-top: 52px; }
  .service-grid,
  .gallery-grid,
  .trust-strip,
  .checks {
    grid-template-columns: 1fr;
  }
  .photo-card,
  .photo-card.small {
    min-height: 320px;
  }
  .quote-section,
  .work-section {
    padding: 34px 22px;
    border-radius: 28px;
  }
  .footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
