@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #073f52;
  --blue-soft: #dceaf0;
  --blue-mid: #0f6a83;
  --ivory: #f8f4ee;
  --warm: #efe6da;
  --gold: #b99a5f;
  --graphite: #34312d;
  --taupe: #766c62;
  --white: #fffdf9;
  --line: rgba(7, 63, 82, 0.18);
  --shadow: 0 28px 80px rgba(7, 63, 82, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--graphite);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

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: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(248, 244, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  gap: 1px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.48em;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--graphite);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.button-primary {
  background: var(--gold);
  color: var(--graphite);
}

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

.button-secondary {
  background: var(--blue);
  color: var(--white);
}

.button-secondary:hover,
.button-ghost:hover {
  background: var(--gold);
  color: var(--graphite);
}

.button-ghost {
  border-color: rgba(255, 253, 249, 0.46);
  color: var(--white);
}

.whatsapp-cta::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 3.5a8.45 8.45 0 0 0-7.25 12.78L3.8 20.5l4.33-1.02a8.45 8.45 0 1 0 3.91-15.98Zm0 1.7a6.75 6.75 0 1 1 0 13.5 6.65 6.65 0 0 1-3.37-.92l-.3-.18-2.23.53.52-2.15-.2-.32a6.75 6.75 0 0 1 5.58-10.46Zm-2.48 3.42c-.17 0-.43.06-.66.32-.23.25-.86.84-.86 2.05 0 1.2.88 2.37 1 2.53.12.17 1.7 2.72 4.2 3.7 2.08.82 2.5.66 2.95.62.45-.04 1.45-.59 1.66-1.17.2-.57.2-1.06.14-1.17-.06-.1-.23-.17-.48-.3-.26-.13-1.5-.74-1.73-.82-.23-.09-.4-.13-.57.13-.17.25-.66.82-.8.98-.15.17-.3.19-.56.07-.25-.13-1.08-.4-2.06-1.27-.76-.68-1.28-1.52-1.43-1.78-.15-.25-.02-.39.11-.52.12-.12.26-.3.39-.45.13-.15.17-.25.26-.42.08-.17.04-.32-.02-.45-.07-.13-.57-1.38-.78-1.88-.2-.48-.41-.42-.57-.43h-.49Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 3.5a8.45 8.45 0 0 0-7.25 12.78L3.8 20.5l4.33-1.02a8.45 8.45 0 1 0 3.91-15.98Zm0 1.7a6.75 6.75 0 1 1 0 13.5 6.65 6.65 0 0 1-3.37-.92l-.3-.18-2.23.53.52-2.15-.2-.32a6.75 6.75 0 0 1 5.58-10.46Zm-2.48 3.42c-.17 0-.43.06-.66.32-.23.25-.86.84-.86 2.05 0 1.2.88 2.37 1 2.53.12.17 1.7 2.72 4.2 3.7 2.08.82 2.5.66 2.95.62.45-.04 1.45-.59 1.66-1.17.2-.57.2-1.06.14-1.17-.06-.1-.23-.17-.48-.3-.26-.13-1.5-.74-1.73-.82-.23-.09-.4-.13-.57.13-.17.25-.66.82-.8.98-.15.17-.3.19-.56.07-.25-.13-1.08-.4-2.06-1.27-.76-.68-1.28-1.52-1.43-1.78-.15-.25-.02-.39.11-.52.12-.12.26-.3.39-.45.13-.15.17-.25.26-.42.08-.17.04-.32-.02-.45-.07-.13-.57-1.38-.78-1.88-.2-.48-.41-.42-.57-.43h-.49Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: linear-gradient(105deg, rgba(5, 45, 60, 0.98) 0%, rgba(7, 63, 82, 0.94) 52%, rgba(185, 154, 95, 0.35) 100%);
  color: var(--white);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow,
.blue .eyebrow,
.final-cta .eyebrow {
  color: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  font-size: clamp(48px, 7vw, 86px);
}

h2 {
  font-size: clamp(36px, 5vw, 58px);
}

h3 {
  font-size: 28px;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 253, 249, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-self: center;
}

.image-card {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  color: var(--graphite);
}

.lead-form h2 {
  color: var(--blue);
  font-size: 32px;
}

.lead-form p {
  margin: -4px 0 4px;
  color: var(--taupe);
  font-size: 14px;
}

.lead-form label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(7, 63, 82, 0.22);
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--ivory);
  color: var(--graphite);
  font: inherit;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--blue);
  color: var(--white);
}

.trust-strip div {
  padding: 22px;
  background: rgba(255, 253, 249, 0.06);
  color: rgba(255, 253, 249, 0.86);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.transformation {
  background:
    radial-gradient(circle at 82% 16%, rgba(185, 154, 95, 0.18), transparent 30%),
    linear-gradient(180deg, var(--blue-soft), var(--ivory));
}

.transformation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.transformation-copy p {
  color: #4f5a5b;
}

.proof-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 30px 0 20px;
}

.proof-points div {
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(7, 63, 82, 0.16);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 50px rgba(7, 63, 82, 0.08);
}

.proof-points strong {
  display: block;
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 2.45vw, 38px);
  line-height: 1.03;
  overflow-wrap: normal;
}

.proof-points span {
  display: block;
  margin-top: 10px;
  color: var(--taupe);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.disclaimer {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 253, 249, 0.7);
  font-size: 14px;
}

.transformation-visual {
  display: grid;
  gap: 18px;
}

.edson-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(7, 63, 82, 0.16);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.edson-before-after figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: var(--blue-soft);
}

.edson-before-after img {
  height: clamp(460px, 48vw, 640px);
  object-fit: cover;
  object-position: center top;
}

.edson-before-after figcaption {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(5, 45, 60, 0.86);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transformation-visual blockquote {
  margin: 0;
  background: var(--blue);
  color: var(--white);
}

.care-shift {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.care-shift article {
  padding: 26px;
  border: 1px solid rgba(7, 63, 82, 0.16);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.82);
}

.care-shift span {
  color: var(--blue-mid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.care-shift h3 {
  margin-top: 12px;
}

.care-shift p {
  margin-bottom: 0;
  color: #5e574f;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.patient-results {
  background: var(--ivory);
}

.patient-results .section-heading p {
  max-width: 780px;
  margin: 18px auto 0;
}

.patient-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 66px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(7, 63, 82, 0.14);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(7, 63, 82, 0.1);
}

.patient-story.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.patient-story.reverse .patient-copy {
  order: 2;
}

.patient-story.reverse .patient-before-after {
  order: 1;
}

.patient-copy h3 {
  color: var(--blue);
  font-size: clamp(32px, 4vw, 48px);
}

.patient-copy blockquote {
  margin: 24px 0;
  background: var(--ivory);
  font-size: clamp(24px, 2.4vw, 32px);
}

.patient-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.patient-before-after figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: var(--blue-soft);
}

.patient-before-after img {
  height: clamp(360px, 38vw, 520px);
  object-fit: cover;
  object-position: center top;
}

.patient-before-after figcaption {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 45, 60, 0.88);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-disclaimer {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 253, 249, 0.76);
  color: var(--taupe);
  font-size: 13px;
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.container.care-shift {
  margin-top: 42px;
}

.container.section-cta {
  margin-top: 48px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.image-card {
  background: var(--blue-soft);
}

.image-card img {
  height: 560px;
  object-fit: cover;
}

.section p {
  color: #5e574f;
}

.blue {
  background: var(--blue);
  color: var(--white);
}

.blue p {
  color: rgba(255, 253, 249, 0.78);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.grid {
  display: grid;
  gap: 18px;
}

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

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

.grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.blue .grid article {
  border-color: rgba(255, 253, 249, 0.14);
  background: rgba(255, 253, 249, 0.08);
}

.grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.blue .grid span {
  background: var(--gold);
  color: var(--graphite);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.doctor {
  background: linear-gradient(135deg, var(--blue-soft), var(--ivory));
}

.lead-small {
  font-weight: 800;
  color: var(--blue) !important;
}

blockquote {
  margin: 28px 0 0;
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 253, 249, 0.72);
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.18;
}

.portrait img {
  object-position: center top;
}

.ivory {
  background: var(--warm);
}

.steps article {
  min-height: 100%;
}

.faq {
  max-width: 900px;
}

details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 800;
}

.final-cta {
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: var(--blue);
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 253, 249, 0.78);
}

.compact {
  align-self: center;
}

.site-footer {
  padding: 34px clamp(20px, 5vw, 72px);
  background: #052d3c;
  color: rgba(255, 253, 249, 0.78);
  text-align: center;
}

.site-footer p {
  margin: 6px 0;
}

.legal {
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    order: 2;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 0 4px;
  }

  .site-header.is-menu-open .nav {
    display: grid;
  }

  .nav a {
    padding: 10px 0;
  }

  .site-header > .button {
    display: none;
  }

  .hero,
  .split,
  .trust-strip,
  .transformation-grid,
  .proof-points,
  .care-shift,
  .patient-story,
  .patient-story.reverse,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .reverse .image-card {
    order: 2;
  }

  .patient-story.reverse .patient-copy,
  .patient-story.reverse .patient-before-after {
    order: initial;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    align-items: center;
  }

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

  .site-header .button {
    width: auto;
  }

  .image-card img {
    height: 360px;
  }

  .edson-before-after {
    grid-template-columns: 1fr;
  }

  .edson-before-after img,
  .patient-before-after img {
    height: 360px;
  }

  .patient-before-after {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 20px;
  }

  .trust-strip div {
    padding: 16px 20px;
  }
}
