:root {
  --bg: #fffdf8;
  --text: #18231f;
  --muted: #4a5b55;
  --line: #d8ddd7;
  --primary: #0d7a5b;
  --primary-ink: #ffffff;
  --accent: #f2b84b;
  --card: #f8f4ea;
  --card-strong: #e8f4ef;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(24, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(242, 184, 75, 0.2), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(13, 122, 91, 0.14), transparent 35%),
    var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

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

.bg-shape-a {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 30vh;
  background: #ffc45e;
}

.bg-shape-b {
  width: 340px;
  height: 340px;
  right: -140px;
  top: 10vh;
  background: #3ebf9a;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo {
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--primary-ink);
  background: linear-gradient(135deg, #0d7a5b, #3ebf9a);
}

.logo-text {
  font-weight: 700;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-ink);
  background: var(--primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 122, 91, 0.3);
}

.btn-small {
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
  padding: 3.4rem 0 2rem;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-family: "Instrument Serif", Georgia, serif;
  margin-top: 0.4rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-family: "Instrument Serif", Georgia, serif;
}

.lead {
  margin: 1rem 0 1.35rem;
  color: var(--muted);
  max-width: 65ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: min(560px, 62vh);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
}

section {
  padding: 2.3rem 0;
}

.step-grid,
.pricing-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.step-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.step-no {
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.1rem;
}

.price-card ul {
  padding-left: 1.15rem;
  margin: 0.6rem 0 0;
}

.price {
  margin: 0.35rem 0 0;
  font-size: 1.65rem;
  font-weight: 700;
}

.featured {
  background: var(--card-strong);
  border-color: #acd8c8;
  transform: translateY(-6px);
}

.badge {
  display: inline-flex;
  margin: 0 0 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #1f8968;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.faq details {
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.85rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

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

.cta {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7faf8);
  padding: 2rem 1.2rem;
}

.cta p {
  color: var(--muted);
  margin: 0.65rem auto 1rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  margin-top: 2.2rem;
  padding: 1rem 0 2.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--primary);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .step-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .top-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 230px;
  }
}