:root {
  --bg: #f6f2ee;
  --ink: #1f2a2e;
  --muted: #5c6b70;
  --accent: #0b7b6a;
  --accent-2: #f2b45b;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(15, 25, 30, 0.12);
  --radius: 18px;
  --max: 1100px;
}

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

body {
  font-family: "Source Serif 4", "Cormorant Garamond", "Times New Roman", serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f6f2ee 0%, #f2efe9 40%, #f9f7f4 100%);
  line-height: 1.6;
}

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

.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.18;
  z-index: -1;
}

.bg-shape--a {
  width: 520px;
  height: 520px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, var(--accent-2), transparent 70%);
}

.bg-shape--b {
  width: 420px;
  height: 420px;
  bottom: -140px;
  right: -80px;
  background: radial-gradient(circle, var(--accent), transparent 65%);
}

.hero {
  padding: 32px 24px 80px;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(11, 123, 106, 0.3);
}

.cta:hover {
  transform: translateY(-2px);
}

.hero-content {
  max-width: var(--max);
  margin: 64px auto 0;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.tag {
  display: inline-block;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 123, 106, 0.3);
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.trust-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.trust-label {
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(145deg, #ffffff, #f5f0ea);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.card-inner h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.checklist {
  list-style: none;
  margin-top: 16px;
}

.checklist li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.card-footer {
  margin-top: 18px;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 80px 24px;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  max-width: 640px;
}

.about-grid,
.services-grid,
.schedule-grid,
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-card,
.service,
.slot,
.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.service {
  border-top: 4px solid var(--accent-2);
}

.schedule {
  background: #fdfaf7;
}

.slot {
  text-align: center;
}

.quote {
  padding: 40px 24px 80px;
}

.quote-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--accent);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.quote-card span {
  display: block;
  margin-top: 12px;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-card .big {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
}

.footer {
  background: #121a1d;
  color: #d8dfe2;
  padding: 40px 24px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
}

.footer .brand {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
}

.footer-note {
  font-size: 0.85rem;
  color: #9aa6ab;
  text-align: right;
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta {
    align-self: center;
  }

  .footer-note {
    text-align: left;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-text,
  .hero-card,
  .about-card,
  .service,
  .slot,
  .contact-card {
    animation: rise 0.7s ease both;
  }

  .hero-card {
    animation-delay: 0.1s;
  }

  .about-card:nth-child(2) {
    animation-delay: 0.12s;
  }

  .about-card:nth-child(3) {
    animation-delay: 0.18s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
