:root {
  --espresso: #2a211b;
  --bronze: #9c7a4d;
  --champagne: #c7a66b;
  --soft-gold: #e2cfa6;
  --nude: #e8dace;
  --pearl: #f7f1e9;
  --paper: #fffaf4;
  --ink: #2a211b;
  --muted: #7c6a5d;
  --line: rgba(156, 122, 77, 0.26);
  --line-dark: rgba(226, 207, 166, 0.24);
  --shadow: 0 22px 70px rgba(42, 33, 27, 0.13);
  --serif: "TeX Gyre Pagella", "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: Lato, "Helvetica Neue", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--espresso);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 4px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
  padding: 16px 7vw;
  border-bottom: 1px solid rgba(156, 122, 77, 0.16);
  background: rgba(247, 241, 233, 0.88);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 241, 233, 0.94);
  box-shadow: 0 12px 40px rgba(42, 33, 27, 0.08);
}

.brand {
  display: inline-grid;
  grid-template-columns: 48px auto;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.05;
}

.brand-text small {
  color: var(--bronze);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(42, 33, 27, 0.78);
  font-size: 0.88rem;
}

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

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--champagne);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--bronze);
  color: var(--paper);
}

.button {
  padding: 0 24px;
}

.button-dark {
  background: var(--espresso);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(42, 33, 27, 0.18);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-dark:hover {
  background: #1f1814;
}

.whatsapp-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.whatsapp-icon::after {
  position: absolute;
  left: 1px;
  bottom: -4px;
  width: 6px;
  height: 6px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(-18deg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--espresso);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(156, 122, 77, 0.16);
}

.hero-copy {
  display: flex;
  min-height: 586px;
  flex-direction: column;
  justify-content: center;
  padding: 62px 7vw 42px;
  background:
    linear-gradient(110deg, rgba(247, 241, 233, 0.98) 0%, rgba(247, 241, 233, 0.94) 70%, rgba(247, 241, 233, 0) 100%),
    radial-gradient(circle at 18% 26%, rgba(226, 207, 166, 0.22), transparent 31%);
}

.hero h1,
.value-band h2,
.protocol-copy h2,
.section-heading h2,
.pricing-content h2,
.care-card h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

.hero h1 {
  max-width: 650px;
  font-size: 4.55rem;
}

.hero-copy > p {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(42, 33, 27, 0.78);
  font-size: 1.03rem;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-meta span {
  position: relative;
  padding-left: 16px;
}

.hero-meta span::before {
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 5px;
  height: 5px;
  background: var(--champagne);
  content: "";
  transform: rotate(45deg);
}

.hero-media {
  position: relative;
  min-height: 586px;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 20%;
  background: linear-gradient(90deg, rgba(247, 241, 233, 0.76), rgba(247, 241, 233, 0));
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}

.hero-seal {
  position: absolute;
  right: 8%;
  bottom: 38px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(199, 166, 107, 0.72);
  border-radius: 50%;
  background: rgba(247, 241, 233, 0.34);
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 2.15rem;
  backdrop-filter: blur(8px);
}

.hero-seal::before,
.hero-seal::after {
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--champagne);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.hero-seal::before {
  top: -5px;
}

.hero-seal::after {
  bottom: -5px;
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

#protocolo,
#procedimentos,
#valores,
#depoimentos,
#faq {
  scroll-margin-top: 96px;
}

.section-number {
  margin: 0 0 12px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.value-band {
  position: relative;
  background: var(--espresso);
  color: var(--paper);
}

.value-band::before {
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  background: var(--champagne);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.value-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr auto;
  align-items: center;
  gap: 54px;
  padding: 56px 0;
}

.value-band h2 {
  max-width: 420px;
  color: var(--champagne);
  font-size: 2.85rem;
}

.value-band p:not(.section-number) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 250, 244, 0.8);
}

.monogram-large {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(199, 166, 107, 0.72);
  border-radius: 50%;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 2rem;
}

.pain-section {
  padding: 68px 0 62px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: 2.7rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pain-grid article {
  min-height: 176px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 28px 30px;
  text-align: center;
}

.pain-grid article + article {
  border-left: 1px solid var(--line);
}

.pain-grid p {
  max-width: 190px;
  margin: 0;
  color: rgba(42, 33, 27, 0.78);
  font-size: 0.94rem;
}

.line-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(199, 166, 107, 0.72);
  border-radius: 50%;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.face-icon::before {
  inset: 11px 9px 9px 11px;
  border: 1px solid var(--bronze);
  border-radius: 50% 48% 44% 50%;
}

.face-icon::after {
  right: 7px;
  top: 17px;
  width: 12px;
  height: 1px;
  background: var(--bronze);
  transform: rotate(-18deg);
}

.shield-icon::before {
  left: 12px;
  top: 9px;
  width: 16px;
  height: 20px;
  border: 1px solid var(--bronze);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transform: perspective(12px) rotateX(8deg);
}

.shield-icon::after {
  left: 18px;
  top: 15px;
  width: 8px;
  height: 4px;
  border-left: 1px solid var(--bronze);
  border-bottom: 1px solid var(--bronze);
  transform: rotate(-45deg);
}

.plan-icon::before {
  left: 10px;
  top: 10px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--bronze);
  box-shadow:
    13px 0 0 -1px var(--pearl),
    13px 0 0 0 var(--bronze),
    0 13px 0 -1px var(--pearl),
    0 13px 0 0 var(--bronze),
    13px 13px 0 -1px var(--pearl),
    13px 13px 0 0 var(--bronze);
}

.spark-icon::before {
  left: 19px;
  top: 8px;
  width: 1px;
  height: 26px;
  background: var(--bronze);
}

.spark-icon::after {
  left: 7px;
  top: 20px;
  width: 26px;
  height: 1px;
  background: var(--bronze);
}

.protocol-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.protocol-media {
  min-height: 570px;
  overflow: hidden;
}

.protocol-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.protocol-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 7vw 70px 66px;
}

.protocol-copy h2 {
  max-width: 610px;
  font-size: 3.2rem;
}

.protocol-copy p {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(42, 33, 27, 0.78);
}

.protocol-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1.3;
}

.signature-line {
  color: var(--bronze) !important;
  font-weight: 700;
}

.protocol-steps {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin-top: 36px;
}

.protocol-steps div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.protocol-steps strong {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.procedures-section {
  padding: 82px 0 86px;
}

.procedure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.44);
}

.procedure-grid article {
  min-height: 296px;
  padding: 34px 28px 30px;
}

.procedure-grid article + article {
  border-left: 1px solid var(--line);
}

.procedure-grid h3 {
  min-height: 58px;
  margin: 0 0 22px;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.22;
}

.procedure-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.procedure-grid li {
  color: rgba(42, 33, 27, 0.82);
  font-size: 0.94rem;
  line-height: 1.35;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  background: var(--espresso);
  color: var(--paper);
}

.pricing-content {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: center;
  padding: 72px 7vw;
}

.pricing-content h2 {
  color: var(--champagne);
  font-size: 2.75rem;
}

.pricing-content > p:not(.section-number):not(.payment-note) {
  margin: 8px 0 28px;
  color: rgba(255, 250, 244, 0.75);
}

.price-table {
  width: min(720px, 100%);
  border-top: 1px solid var(--line-dark);
}

.price-table div {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr 0.8fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 250, 244, 0.85);
  font-size: 0.94rem;
}

.price-table strong {
  color: var(--paper);
  font-weight: 700;
}

.payment-note {
  margin: 18px 0 0;
  color: var(--soft-gold);
  font-size: 0.9rem;
}

.pricing-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.pricing-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 33, 27, 0.28), rgba(42, 33, 27, 0));
  content: "";
  pointer-events: none;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-section {
  padding: 70px 0 34px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.proof-points {
  display: grid;
  gap: 22px;
}

.proof-points div {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.proof-points strong {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 1.52rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.proof-points span {
  color: rgba(42, 33, 27, 0.8);
  font-size: 0.94rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.52);
}

.result-card {
  padding: 18px;
}

.text-only-card {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 30px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.before-after-frame {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(156, 122, 77, 0.18);
  border-radius: 6px;
  background: var(--nude);
}

.before-after-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.before-after-frame figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(226, 207, 166, 0.42);
  border-radius: 3px;
  background: rgba(42, 33, 27, 0.74);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.placeholder-label {
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(156, 122, 77, 0.22);
  border-radius: 3px;
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.avatar-placeholder {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 700;
}

.testimonial-card blockquote {
  margin: 0;
  color: rgba(42, 33, 27, 0.82);
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.34;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.testimonial-card small {
  display: block;
  max-width: 520px;
  margin-top: 2px;
  color: rgba(42, 33, 27, 0.58);
  font-size: 0.76rem;
  line-height: 1.45;
}

.objections-section {
  padding: 34px 0 48px;
}

.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.objection-grid article {
  min-height: 178px;
  padding: 30px;
  text-align: center;
}

.objection-grid article + article {
  border-left: 1px solid var(--line);
}

.objection-grid h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.26rem;
  font-weight: 400;
  line-height: 1.25;
}

.objection-grid p {
  margin: 0;
  color: rgba(42, 33, 27, 0.74);
  font-size: 0.92rem;
}

.care-section {
  padding: 22px 0 72px;
}

.care-card {
  max-width: 640px;
  padding: 42px 46px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(42, 33, 27, 0.96), rgba(42, 33, 27, 0.88)),
    var(--espresso);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.care-card h2 {
  color: var(--champagne);
  font-size: 2.18rem;
}

.care-card p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 250, 244, 0.84);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: 72px 0 88px;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 20px 48px 20px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 13px;
  height: 1px;
  background: var(--bronze);
  content: "";
}

.faq-list summary::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list p {
  max-width: 520px;
  margin: -4px 0 20px;
  color: rgba(42, 33, 27, 0.72);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 8vw;
  align-items: end;
  overflow: hidden;
  padding: 82px 7vw;
  border-top: 1px solid rgba(156, 122, 77, 0.18);
  background:
    linear-gradient(90deg, rgba(232, 218, 206, 0.96) 0%, rgba(232, 218, 206, 0.88) 44%, rgba(232, 218, 206, 0.58) 100%),
    url("assets/hero-editorial.jpg") center 38% / cover;
}

.final-cta::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(156, 122, 77, 0.28);
  content: "";
  pointer-events: none;
}

.final-copy,
.final-ps {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 620px;
  font-size: 3.15rem;
}

.final-copy > p {
  margin: 12px 0 28px;
  color: rgba(42, 33, 27, 0.78);
  font-family: var(--serif);
  font-size: 1.52rem;
}

.limited-note {
  display: inline-block;
  margin-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-ps {
  max-width: 470px;
  justify-self: end;
  padding: 24px 0 4px 28px;
  border-left: 1px solid var(--line);
}

.final-ps p {
  margin: 0;
  color: rgba(42, 33, 27, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 24px 7vw;
  background: var(--espresso);
  color: rgba(255, 250, 244, 0.8);
  font-size: 0.9rem;
}

.site-footer .brand-mark {
  color: var(--champagne);
}

.site-footer .brand-text strong {
  color: var(--paper);
}

.site-footer a:not(.brand) {
  color: var(--paper);
}

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 20px;
    padding-inline: 32px;
  }

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

  .hero-copy {
    min-height: auto;
    padding: 70px 32px 38px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-media::before {
    inset: 0 0 auto 0;
    width: auto;
    height: 25%;
    background: linear-gradient(180deg, var(--pearl), rgba(247, 241, 233, 0));
  }

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

  .protocol-media {
    min-height: 390px;
  }

  .protocol-copy,
  .pricing-content {
    padding: 64px 32px;
  }

  .pricing-image {
    min-height: 360px;
  }

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

  .procedure-grid article:nth-child(3),
  .pain-grid article:nth-child(3) {
    border-left: 0;
  }

  .procedure-grid article:nth-child(n + 3),
  .pain-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

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

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 70px;
    padding: 12px 20px;
  }

  .brand {
    grid-template-columns: 42px auto;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 1.08rem;
  }

  .brand-text small {
    font-size: 0.58rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 8px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--pearl);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    padding: 52px 24px 34px;
  }

  .hero h1 {
    font-size: 3.25rem;
    line-height: 1.02;
  }

  .hero-copy > p {
    font-size: 0.98rem;
  }

  .hero-media {
    min-height: 340px;
  }

  .hero-seal {
    width: 86px;
    height: 86px;
    font-size: 1.6rem;
  }

  .section-shell {
    width: min(var(--max), calc(100% - 40px));
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 0;
  }

  .value-band h2,
  .section-heading h2,
  .pricing-content h2 {
    font-size: 2.25rem;
  }

  .monogram-large {
    width: 82px;
    height: 82px;
  }

  .pain-grid,
  .procedure-grid,
  .testimonial-grid,
  .objection-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid article + article,
  .procedure-grid article + article,
  .objection-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .procedure-grid article:nth-child(n + 3),
  .pain-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .procedure-grid article {
    min-height: auto;
  }

  .procedure-grid h3 {
    min-height: auto;
  }

  .protocol-media {
    min-height: 310px;
  }

  .protocol-copy h2 {
    font-size: 2.35rem;
  }

  .protocol-copy .lead {
    font-size: 1.22rem;
  }

  .price-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .proof-points div {
    grid-template-columns: max-content 1fr;
    gap: 24px;
  }

  .care-card {
    max-width: none;
    padding: 34px 26px;
  }

  .faq-section {
    gap: 24px;
    padding: 58px 0 64px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 66px 24px;
  }

  .final-cta::before {
    inset: 12px;
  }

  .final-cta h2 {
    font-size: 2.45rem;
  }

  .final-copy > p {
    font-size: 1.22rem;
  }

  .limited-note {
    display: block;
    margin: 16px 0 0;
  }

  .final-ps {
    justify-self: stretch;
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-text small {
    display: none;
  }

  .hero-copy {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .hero-media {
    min-height: 260px;
  }

  .hero-seal {
    width: 68px;
    height: 68px;
    right: 22px;
    bottom: 22px;
    font-size: 1.32rem;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
  }

  .section-shell {
    width: min(var(--max), calc(100% - 32px));
  }

  .section-heading h2,
  .value-band h2,
  .pricing-content h2 {
    font-size: 2rem;
  }

  .protocol-copy,
  .pricing-content {
    padding: 52px 18px;
  }

  .protocol-steps div {
    grid-template-columns: 46px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
