:root {
  --ink: #13201d;
  --muted: #5f6f6b;
  --line: #dce8e3;
  --paper: #f7fbf8;
  --white: #ffffff;
  --mint: #d9f5e8;
  --green: #0a8f88;
  --green-dark: #08756f;
  --aqua: #c8f1ee;
  --coral: #f07962;
  --shadow: 0 24px 80px rgba(16, 64, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 10px clamp(16px, 4vw, 48px);
  background: rgba(247, 251, 248, 0.88);
  border-bottom: 1px solid rgba(220, 232, 227, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 212px;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(19, 32, 29, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 20px);
  color: #2a3c38;
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a {
  padding: 10px 0;
}

.nav-action {
  padding: 10px 16px !important;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  min-height: min(650px, calc(100vh - 70px));
  padding: clamp(34px, 5vw, 68px) clamp(18px, 5vw, 64px);
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 55, 52, 0.94), rgba(10, 143, 136, 0.76) 48%, rgba(19, 32, 29, 0.34)),
    url("https://images.unsplash.com/photo-1581093458791-9d15482442f6?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.hero-content {
  max-width: 780px;
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6.4vw, 6.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-brandline {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
  max-width: 980px;
  margin-bottom: 34px;
}

.hero-logo {
  width: clamp(82px, 8vw, 104px);
  height: clamp(82px, 8vw, 104px);
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(19, 32, 29, 0.22);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  overflow-wrap: normal;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-bottom: 20px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-weight: 800;
}

.hero-actions,
.location .section-copy {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  text-align: center;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(19, 121, 91, 0.24);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button.outline {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(19, 121, 91, 0.28);
}

.hero-panel {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  padding: 13px;
  background: rgba(217, 245, 232, 0.54);
  border: 1px solid rgba(220, 232, 227, 0.86);
  border-radius: 8px;
}

.hero-panel span,
.hero-panel strong,
.hero-panel small {
  display: block;
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  margin: 4px 0 2px;
  font-size: 1.08rem;
}

.hero-panel small {
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: auto;
  padding: 22px clamp(16px, 3vw, 34px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.anniversary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 38px);
  align-items: center;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(135deg, #08756f, #0a8f88 58%, #34d6bd);
}

.anniversary-badge {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  width: 112px;
  height: 112px;
  color: #6f4d00;
  background: radial-gradient(circle at 35% 30%, #fff7c8, #f3c94e 52%, #c99018);
  border: 6px solid rgba(255, 241, 168, 0.7);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(92, 65, 0, 0.28);
}

.anniversary-badge strong,
.anniversary-badge span {
  display: block;
  line-height: 0.9;
}

.anniversary-badge strong {
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.anniversary-badge span {
  margin-top: 0;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.anniversary-copy .eyebrow {
  color: #ffd2c9;
}

.anniversary-copy h2 {
  max-width: 720px;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3.5vw, 3.25rem);
}

.anniversary-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.countdown {
  min-width: 190px;
  padding: 16px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.countdown-number,
.countdown-label {
  display: block;
}

.countdown-number {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 900;
}

.countdown-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 800;
}

.section {
  padding: clamp(54px, 7vw, 88px) clamp(18px, 5vw, 64px);
  scroll-margin-top: 84px;
}

.split,
.location,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.contact-info p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-info li,
.footer-links a,
.brand strong,
.brand small {
  overflow-wrap: anywhere;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 210px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(19, 32, 29, 0.06);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
}

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

.featured-service {
  background: linear-gradient(135deg, #e9fff4, #ffffff 68%);
  border-color: rgba(19, 121, 91, 0.28);
}

.health-plans {
  background:
    linear-gradient(135deg, rgba(200, 237, 241, 0.42), rgba(217, 245, 232, 0.56)),
    var(--paper);
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: stretch;
}

.plan-search {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-bottom: 18px;
  color: #2b3d39;
  font-weight: 800;
}

.plan-search input {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(19, 121, 91, 0.22);
  border-radius: 8px;
  font: inherit;
}

.plan-search input:focus {
  outline: 3px solid rgba(19, 121, 91, 0.16);
  border-color: var(--green);
}

.plan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.plan-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  color: #183b34;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(19, 121, 91, 0.16);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(19, 32, 29, 0.06);
}

.plan-list span.is-hidden {
  display: none;
}

.plan-result {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.plan-result.is-match {
  color: var(--green-dark);
}

.plan-result.is-missing {
  color: #94513f;
}

.plan-consult {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.indications {
  background: var(--white);
}

.accordion {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

.accordion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 58px;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font: inherit;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 760;
  text-align: left;
  cursor: pointer;
}

.accordion-item strong {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--green);
  background: var(--mint);
  border-radius: 8px;
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--muted);
  transition: grid-template-rows 180ms ease;
}

.accordion-panel p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.accordion-panel.is-open {
  grid-template-rows: 1fr;
  padding: 0 0 20px;
}

.visit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #12312d, #12715b 56%, #159ab0);
}

.visit-band .eyebrow {
  color: #ffc0b3;
}

.visit-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.location .section-copy {
  flex-direction: column;
}

.location-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-facts span {
  padding: 9px 12px;
  color: var(--green-dark);
  background: var(--mint);
  border: 1px solid rgba(10, 143, 136, 0.16);
  border-radius: 8px;
  font-weight: 800;
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-wrap {
  min-height: 380px;
  overflow: hidden;
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.contact {
  background: var(--white);
}

.contact-info ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  color: var(--muted);
}

.contact-info li + li {
  margin-top: 10px;
}

.contact-info a {
  color: var(--green-dark);
  font-weight: 760;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(19, 32, 29, 0.08);
}

.contact-card p,
.contact-reminder small {
  color: var(--muted);
}

.contact-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-reminder {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-reminder span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: #13201d;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  border-radius: 50%;
}

.site-footer strong,
.site-footer small {
  display: block;
}

.site-footer a,
.footer-links a {
  color: var(--white);
  font-weight: 760;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  color: var(--white);
  background: #128c7e;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(19, 32, 29, 0.26);
  font-weight: 850;
}

.whatsapp-float:hover {
  background: #0d766b;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-card {
  min-height: 152px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(19, 32, 29, 0.06);
}

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

.privacy {
  padding-top: 42px;
  padding-bottom: 42px;
  background: #ecfbf8;
}

.privacy-copy {
  max-width: 860px;
}

.privacy-copy p:not(.eyebrow) {
  color: var(--muted);
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1080px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 68px 12px auto;
    display: grid;
    gap: 4px;
    width: min(360px, calc(100vw - 24px));
    margin-left: auto;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: 160ms ease;
    white-space: normal;
  }

  .nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .nav-action {
    display: inline-flex;
    justify-content: center;
    margin-top: 6px;
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .location,
  .contact,
  .visit-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-panel {
    display: none;
  }

  .hero-content {
    padding-bottom: 0;
  }

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

  .plan-layout {
    grid-template-columns: 1fr;
  }

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

  .anniversary {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .countdown {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-actions {
    display: none;
  }

  .hero-facts {
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-facts span {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.92rem;
  }

  .hero-brandline {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.65rem, 9vw, 2.55rem);
  }

  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
  }

  .service-card {
    min-height: auto;
  }

  .anniversary {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .anniversary-badge {
    width: 92px;
    height: 92px;
  }

  .anniversary-badge strong {
    font-size: 2.45rem;
  }

  .countdown {
    width: 100%;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 12px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(19, 32, 29, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px;
    color: var(--white);
    background: var(--green);
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 850;
    text-align: center;
  }

  body {
    padding-bottom: 82px;
  }
}

@media (max-width: 460px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 10px;
  }

  .hero-logo {
    width: 76px;
    height: 76px;
  }

  .hero-facts span,
  .location-facts span {
    width: 100%;
  }
}
