:root {
  --green: #93C2BC;
  --green-dark: #5E9A94;
  --green-light: #E4F2F0;
  --cream: #FBF8F2;
  --cream-soft: #F3EEE4;
  --gold: #C9A45C;
  --ink: #2E332E;
  --muted: #6B7368;

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(46, 51, 46, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
}

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

.ico {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* ===== Navbar ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 51, 46, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-dark);
}

.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}

.brand__logo {
  width: 20px;
  height: 20px;
}

.brand__word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand__word em {
  font-style: normal;
  letter-spacing: 0.12em;
  font-size: 0.85em;
  color: var(--green-dark);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--green);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav__cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  margin: 0 auto;
  transition: all 0.25s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(147, 194, 188, 0.28), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(94, 154, 148, 0.22), transparent 50%),
    linear-gradient(135deg, var(--cream-soft) 0%, var(--cream) 60%, var(--green-light) 130%);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.4), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 24px;
}

.hero__eyebrow {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: var(--ink);
}

.hero__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.hero__stars .ico {
  width: 18px;
  height: 18px;
}

.hero__stars .ico--half {
  opacity: 0.5;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn--ghost:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--green);
  border-radius: 999px;
}

.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
  margin: 6px auto;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== Strip ===== */
.strip {
  background: var(--green-dark);
  color: #fff;
  padding: 22px 0;
}

.strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.strip__icon {
  width: 18px;
  height: 18px;
  color: var(--green-light);
}

.strip__sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.25);
}

/* ===== Sections shared ===== */
section {
  padding: 90px 0;
}

.section__eyebrow {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section__lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about__media-box {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about__copy p {
  color: var(--muted);
  margin-bottom: 20px;
}

.about__list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--ink);
}

.about__list .ico {
  width: 18px;
  height: 18px;
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== Services ===== */
.services {
  background: var(--cream-soft);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.services__cta {
  text-align: center;
}

/* ===== Reviews ===== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.review {
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 28px;
}

.review__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 14px;
}

.review__stars .ico {
  width: 16px;
  height: 16px;
}

.review p {
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.review__author {
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.85rem;
  margin-bottom: 0 !important;
}

.reviews__cta {
  text-align: center;
}

.link--more {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.link--more:hover {
  text-decoration: underline;
}

/* ===== Contact ===== */
.contact {
  background: var(--cream-soft);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.contact__list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 24px 0 32px;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.contact__list .ico {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.contact__list a {
  color: var(--ink);
  text-decoration: none;
}

.contact__list a:hover {
  color: var(--green);
}

.contact__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-dark);
  color: #fff;
  padding: 48px 0 32px;
}

.footer__inner {
  text-align: center;
  display: grid;
  gap: 14px;
  justify-content: center;
}

.brand--footer {
  color: #fff;
  margin: 0 auto;
}

.brand--footer .brand__mark {
  background: #fff;
  color: var(--green-dark);
}

.brand--footer .brand__word em {
  color: var(--green-light);
}

.footer__addr,
.footer__copy {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

/* ===== WhatsApp FAB ===== */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.2s ease;
}

.fab-wa:hover {
  transform: scale(1.08);
}

.fab-wa .ico {
  width: 28px;
  height: 28px;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .nav__links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(46,51,46,0.08);
  }

  .nav__links.is-open {
    transform: translateY(0);
  }

  .nav__burger {
    display: flex;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__media {
    order: 2;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

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

  .strip__row {
    gap: 14px;
  }

  .strip__sep {
    display: none;
  }
}
