:root {
  --teal: #0e9488;
  --teal-dark: #0a6b62;
  --teal-deep: #0a2e2b;
  --aqua: #5eead4;
  --aqua-light: #d7f0ec;
  --mint: #f2faf8;
  --ink: #123f3a;
  --muted: #5c7370;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--mint);
  color: var(--ink);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }
img { display: block; }

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #14b8a6);
  color: #fff;
}

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow.light { color: var(--aqua); }
.eyebrow.center { text-align: center; }

.hero-photo, .about-photo, .how-photo, .service-photo {
  border-radius: 16px;
  overflow: hidden;
}
.hero-photo img, .about-photo img, .how-photo img, .service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #dcece9;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  background: var(--teal-deep);
  overflow: hidden;
  padding-bottom: 70px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 60px;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(94,234,212,0.3);
  border-radius: 16px;
  padding: 40px;
}
.hero-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: #fff;
  margin: 14px 0 24px;
  line-height: 1.25;
}
.hero-photo {
  height: 380px;
}
.hero-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 150px;
  text-align: center;
  color: rgba(94,234,212,0.1);
  line-height: 1;
  margin-top: 20px;
  user-select: none;
}
.hero-wordmark.dim { color: rgba(255,255,255,0.05); }

/* About */
.about { background: #fff; padding: 90px 0 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  margin: 10px 0 18px;
}
.body-copy { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.check-list { list-style: none; margin-bottom: 26px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--ink);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.about-photo-wrap { position: relative; }
.about-photo { height: 320px; }
.trust-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(10,46,43,0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}
.trust-badge p { color: var(--muted); font-size: 12px; }
.avatars { display: flex; }
.avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  border: 2px solid #fff;
  margin-left: -10px;
  display: inline-block;
}
.avatar:first-child { margin-left: 0; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 90px 24px 70px;
}
.stats-bar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--teal);
}
.stats-bar p { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Services */
.services { background: var(--mint); padding: 90px 0; }
.section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  margin-top: 6px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 480px;
  margin: 14px auto 50px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(10,46,43,0.06);
}
.service-photo { height: 150px; margin-bottom: 16px; }
.service-card h4 { font-size: 16px; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* How it works */
.how-it-works {
  background: linear-gradient(135deg, var(--aqua-light), #eefcf8);
  padding: 90px 0;
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.how-photo-wrap { position: relative; }
.how-photo { height: 340px; }
.badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(10,46,43,0.18);
}
.badge-float small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: var(--muted);
}
.how-steps h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  margin: 8px 0 30px;
  color: var(--ink);
}
.step {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.step h4 { font-size: 15px; margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--muted); }
.how-steps .btn-primary { margin-top: 10px; }

/* Testimonials */
.testimonials { background: #fff; padding: 90px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--mint);
  border-radius: 14px;
  padding: 26px;
}
.stars { color: #f6b93b; margin-bottom: 12px; font-size: 14px; }
.testimonial-card p { font-size: 14px; color: var(--ink); line-height: 1.6; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer strong { font-size: 13px; display: block; }
.reviewer small { font-size: 12px; color: var(--muted); }

/* Newsletter */
.newsletter {
  position: relative;
  background: var(--teal-deep);
  padding: 80px 0 0;
  overflow: hidden;
  text-align: center;
}
.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #fff;
}
.newsletter p { color: #a7c7c2; margin: 12px 0 26px; font-size: 14px; }
.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid rgba(94,234,212,0.4);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 14px;
}
.subscribe-form input::placeholder { color: #7ba39d; }

/* Footer */
.site-footer { background: var(--teal-deep); padding: 60px 0 0; color: #c3d9d5; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--aqua); }
.footer-brand p { font-size: 13px; margin: 14px 0; color: #8fb0ab; }
.footer-phone { font-weight: 600; color: var(--aqua); text-decoration: none; }
.footer-col h5 { font-size: 13px; margin-bottom: 16px; color: var(--aqua); text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 13px; margin-bottom: 10px; color: #8fb0ab; text-decoration: none; }
.footer-bottom { padding: 24px; text-align: center; font-size: 12px; color: #6e938e; }

@media (max-width: 800px) {
  .nav-links { display: none; }
  .hero-inner, .about-inner, .how-inner { grid-template-columns: 1fr; }
  .service-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-wordmark { font-size: 70px; }
}
