:root {
  --bg: #f3f0e8;
  --surface: #fffdf8;
  --surface-2: #f7f3eb;
  --text: #1c2926;
  --muted: #5b6763;
  --line: #dfd8cb;
  --brand: #126459;
  --brand-2: #0c8e74;
  --accent: #d87f42;
  --shadow: 0 18px 46px rgba(17, 38, 34, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-w: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(12, 142, 116, 0.16), transparent 36%),
    radial-gradient(circle at 85% 10%, rgba(216, 127, 66, 0.16), transparent 34%),
    var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-w), 92vw);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 800;
}

.section {
  padding: 56px 0;
}

.display-title {
  font-family: "Prata", serif;
  font-size: clamp(1.65rem, 3.3vw, 2.35rem);
  margin-top: 10px;
  line-height: 1.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(28, 41, 38, 0.08);
  background: rgba(247, 243, 235, 0.86);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.brand {
  font-family: "Prata", serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  transition: color 0.24s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--brand);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  padding: 13px 24px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px rgba(12, 92, 81, 0.3);
}

.btn-ghost {
  color: var(--brand);
  background: rgba(18, 100, 89, 0.08);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(28, 41, 38, 0.16);
  background: transparent;
  padding: 0;
}

.menu-btn span {
  width: 19px;
  height: 2px;
  background: var(--text);
  display: block;
  margin: 4px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav {
  display: none;
}

.hero {
  padding: 76px 0 84px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero h1 {
  font-family: "Prata", serif;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 1.1;
  margin: 14px 0 22px;
}

.hero p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  max-width: 56ch;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  margin-top: 18px;
  color: #4f625e;
  font-size: 0.95rem;
}

.hero-image-wrap {
  position: relative;
  isolation: isolate;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: auto -12% -10% auto;
  width: 220px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(216, 127, 66, 0.45), transparent 72%);
  z-index: -1;
}

.hero-image {
  border-radius: 34px;
  box-shadow: var(--shadow);
  min-height: 440px;
  object-fit: cover;
}

.quick-card {
  margin-top: 22px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 17px;
  color: #3e4f4c;
}

.quick-card strong {
  color: var(--text);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pill-card,
.service-card,
.review,
.step,
.about-card,
.info-card,
.list-card {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(17, 38, 34, 0.05);
}

.pill-card {
  padding: 24px;
  font-weight: 700;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.about-grid > * {
  min-width: 0;
}

.about-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 420px;
}

.about-card h2 {
  font-family: "Prata", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin: 8px 0 14px;
}

.about-card p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.about-photo {
  width: 100%;
  height: 100%;
  max-height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}

.services {
  background: linear-gradient(180deg, rgba(18, 100, 89, 0.05), rgba(18, 100, 89, 0));
}

.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.clinic-photo-slot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2);
  border: 1.5px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clinic-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* placeholder label — remove when real photos are added */
.clinic-photo-slot span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
}

.clinic-photo-slot:has(img) span {
  display: none;
}

@media (max-width: 760px) {
  .clinic-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 28px rgba(16, 52, 47, 0.14);
  border-color: rgba(18, 100, 89, 0.34);
}

.service-card h3 {
  margin-bottom: 9px;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.step {
  padding: 24px;
  background: linear-gradient(165deg, #fffdf9, #f6efe4);
}

.step-index {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.reviews {
  background: var(--surface-2);
}

.insta-section {
  background: var(--surface-2);
}

.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.insta-feed {
  min-height: 220px;
}

.insta-fallback {
  display: block;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  transition: border-color 0.22s, color 0.22s;
}

.insta-fallback:hover {
  border-color: var(--brand-2);
  color: var(--brand);
}

.insta-fallback-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.insta-fallback-inner strong {
  font-size: 1.1rem;
  color: var(--text);
}

.review {
  padding: 24px;
}

.review p {
  color: #40514e;
  font-style: italic;
}

.review strong {
  margin-top: 14px;
  display: inline-block;
  color: var(--text);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  margin-top: 30px;
  align-items: stretch;
}

.location-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.location-card p {
  color: var(--muted);
  margin-top: 8px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-band {
  background: linear-gradient(120deg, #113a34, #126459 48%, #0c8e74);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.cta-band h2 {
  font-family: "Prata", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  margin-top: 30px;
}

.contact-note,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-note p {
  color: var(--muted);
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
}

.field label {
  font-size: 0.92rem;
  color: #3d4f4b;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d5cdc1;
  border-radius: 12px;
  font: inherit;
  padding: 12px 14px;
  background: #fff;
  color: #21322f;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 4px 0 10px;
  font-weight: 700;
  color: var(--muted);
}

.form-status.success {
  color: #0a7b61;
}

.form-status.error {
  color: #9b3b2a;
}

.page-hero {
  padding: 64px 0 26px;
}

.page-title {
  font-family: "Prata", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin-top: 10px;
}

.page-subtitle {
  margin-top: 14px;
  max-width: 70ch;
  color: var(--muted);
}

.info-card,
.list-card {
  padding: 26px;
}

.info-card h3,
.list-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.list-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.list-card li {
  position: relative;
  padding-left: 28px;
}

.list-card li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  position: absolute;
  left: 4px;
  top: 8px;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(28, 41, 38, 0.14);
  padding: 30px 0 42px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #4a5b57;
}

.float-whats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(130deg, #18a164, #0c8e74);
  box-shadow: 0 15px 26px rgba(12, 142, 116, 0.36);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .mobile-nav {
    display: grid;
    gap: 14px;
    padding: 0 0 16px;
    color: #455653;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.25s ease;
  }

  .mobile-nav.is-open {
    max-height: 320px;
    opacity: 1;
  }

  .hero-grid,
  .about-grid,
  .location-grid,
  .contact-grid,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-image {
    min-height: 320px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }
}

@media (min-width: 981px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 44px 0;
  }

  .cards-3,
  .steps {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    min-height: 70px;
  }
}
