@font-face {
    font-display: optional;
    font-family: "Fraunces";
    font-style: normal;
    font-weight: 600 800;
    src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
}

@font-face {
    font-display: optional;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
    --cream: #f4ead8;
    --cream-2: #fff8ea;
    --sand: #dfc9a5;
    --sage: #9dae8b;
    --green: #12382f;
    --green-2: #1f5a4a;
    --olive: #6e744f;
    --clay: #ad684c;
    --gold: #a8944f;
    --ink: #1e201a;
    --muted: #6f6b5e;
    --line: rgba(30, 32, 26, 0.14);
    --white: #fffdf7;
    --shadow: 0 24px 70px rgba(34, 48, 39, 0.16);
    --radius-lg: 34px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Manrope", Verdana, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-body);
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(168, 148, 79, 0.18),
            transparent 30rem
        ),
        radial-gradient(
            circle at 85% 0%,
            rgba(157, 174, 139, 0.28),
            transparent 26rem
        ),
        linear-gradient(180deg, var(--cream-2), var(--cream) 48%, #efe2cc);
    min-height: 100vh;
    overflow-x: hidden;
}

body.cookie-modal-open {
    overflow: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.38;
    background-image:
        linear-gradient(rgba(18, 56, 47, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 56, 47, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

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

picture {
    display: block;
}

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

p {
    color: var(--muted);
    font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
    line-height: 1.8;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--green);
    font-family: var(--font-display);
    letter-spacing: -0.045em;
    line-height: 0.98;
}

h1 {
    max-width: 880px;
    font-size: clamp(3.1rem, 7.2vw, 7rem);
}

h2 {
    font-size: clamp(2.25rem, 5vw, 4.65rem);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
}

button,
input {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--green);
    border-radius: 999px;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(1160px, calc(100% - 2rem));
    margin-inline: auto;
}

.section-pad {
    padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid transparent;
    transition:
        background 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 248, 234, 0.86);
    border-color: rgba(18, 56, 47, 0.1);
    box-shadow: 0 18px 50px rgba(18, 56, 47, 0.08);
    backdrop-filter: blur(18px);
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: max-content;
}

.brand img {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(18, 56, 47, 0.12);
}

.brand strong {
    display: block;
    color: var(--green);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(0.6rem, 2vw, 1.55rem);
}

.site-nav a {
    position: relative;
    color: rgba(30, 32, 26, 0.78);
    font-size: 0.88rem;
    font-weight: 800;
}

.site-nav a::after {
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    height: 2px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

.header-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.header-whatsapp-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.95rem;
    height: 2.95rem;
    color: var(--green);
    background: rgba(255, 253, 247, 0.78);
    border: 1px solid rgba(18, 56, 47, 0.16);
    border-radius: 16px;
    transition:
        transform 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.header-whatsapp-icon:hover,
.header-whatsapp-icon:focus-visible {
    color: var(--cream-2);
    background: var(--green);
    transform: translateY(-2px);
}

.header-whatsapp-icon svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.95rem;
    height: 2.95rem;
    color: var(--green);
    background: rgba(255, 253, 247, 0.78);
    border: 1px solid rgba(18, 56, 47, 0.16);
    border-radius: 16px;
    cursor: pointer;
    transition:
        transform 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    color: var(--cream-2);
    background: var(--green);
    transform: translateY(-2px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.2rem;
    padding: 0.9rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: -0.02em;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-2));
    box-shadow: 0 18px 34px rgba(18, 56, 47, 0.24);
}

.btn-ghost {
    color: var(--green);
    background: rgba(255, 253, 247, 0.6);
    border-color: rgba(18, 56, 47, 0.16);
}

.btn-light {
    color: var(--green);
    background: var(--cream-2);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.btn-small {
    min-height: 2.75rem;
    padding: 0.72rem 1.05rem;
    font-size: 0.88rem;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: clamp(2.5rem, 5vw, 4.8rem);
}

.hero::after {
    position: absolute;
    right: -18vw;
    bottom: 3rem;
    z-index: -1;
    width: 45vw;
    max-width: 680px;
    aspect-ratio: 1;
    content: "";
    border: 1px solid rgba(168, 148, 79, 0.28);
    border-radius: 50%;
    box-shadow: inset 0 0 0 42px rgba(168, 148, 79, 0.08);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 360px);
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.6rem);
}

.hero-copy {
    max-width: 600px;
    min-width: 0;
}

.hero h1 {
    max-width: 600px;
    font-size: 3.65rem;
}

.hero h1 span {
    display: block;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.1rem;
    color: var(--clay);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    display: inline-block;
    width: 2.2rem;
    height: 1px;
    content: "";
    background: currentColor;
}

.hero-lead {
    max-width: 640px;
    margin: 1.35rem 0 0;
    color: rgba(30, 32, 26, 0.72);
    font-size: clamp(1.02rem, 0.8vw + 0.86rem, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.trust-row {
    position: relative;
    display: inline-grid;
    place-items: center;
    max-width: 100%;
    gap: 0.7rem;
    margin-top: 2rem;
    min-height: 3.35rem;
    min-width: clamp(14.5rem, 21vw, 18rem);
    padding: 0.8rem 1.35rem;
    color: var(--green);
    background: rgba(157, 174, 139, 0.18);
    border: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(18, 56, 47, 0.08);
    overflow: hidden;
}

.trust-item {
    grid-area: 1 / 1;
    color: inherit;
    font-size: 0.96rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    backface-visibility: hidden;
    transform-origin: center;
    will-change: transform, opacity;
    animation: trust-row-rotate 8s ease-in-out infinite;
}

.trust-item:nth-child(1) {
    animation-delay: 0s;
}

.trust-item:nth-child(2) {
    animation-delay: 2s;
}

.trust-item:nth-child(3) {
    animation-delay: 4s;
}

.trust-item:nth-child(4) {
    animation-delay: 6s;
}

@keyframes trust-row-rotate {
    0%,
    18% {
        opacity: 1;
        transform: perspective(900px) rotateX(0deg) translateY(0);
    }

    25% {
        opacity: 0;
        transform: perspective(900px) rotateX(90deg) translateY(-0.85rem);
    }

    25.01%,
    100% {
        opacity: 0;
        transform: perspective(900px) rotateX(-90deg) translateY(0.85rem);
    }
}

.hero-visual {
    position: relative;
    justify-self: end;
    width: min(100%, 360px);
}

.portrait-frame {
    position: relative;
    isolation: isolate;
    padding: 0.75rem;
    background:
        linear-gradient(
            145deg,
            rgba(255, 253, 247, 0.82),
            rgba(223, 201, 165, 0.4)
        ),
        linear-gradient(145deg, rgba(18, 56, 47, 0.1), transparent);
    border: 1px solid rgba(18, 56, 47, 0.14);
    border-radius: 42% 42% 8% 8%;
    box-shadow: var(--shadow);
}

.portrait-frame::before {
    position: absolute;
    inset: 6%;
    z-index: -1;
    content: "";
    border: 1px solid rgba(168, 148, 79, 0.48);
    border-radius: inherit;
    transform: rotate(-5deg);
}

.portrait-frame img {
    width: 100%;
    height: 460px;
    border-radius: 42% 42% 7% 7%;
    object-fit: cover;
    object-position: center 16%;
}

.metrics {
    padding: 1rem 0 3.5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metrics article {
    padding: 1.25rem;
    background: rgba(255, 253, 247, 0.62);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.metrics strong {
    display: block;
    color: var(--green);
    font-size: 1.02rem;
    font-weight: 900;
}

.metrics span {
    display: block;
    margin-top: 0.3rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.split-grid,
.atlas-grid,
.about-grid,
.proof-grid,
.faq-grid,
.cta-grid {
    display: grid;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.split-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.section-copy p:not(.eyebrow) {
    max-width: 700px;
}

.signal-card,
.quote-card,
.results-card,
.info-card,
.post-card,
.blog-panel,
.post-shell {
    background: rgba(255, 253, 247, 0.68);
    border: 1px solid rgba(18, 56, 47, 0.13);
    box-shadow: 0 22px 60px rgba(34, 48, 39, 0.1);
    backdrop-filter: blur(12px);
}

.signal-card {
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
}

.check-list {
    display: grid;
    gap: 0.9rem;
    padding: 0;
    margin: 1.5rem 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--muted);
    line-height: 1.65;
}

.check-list li::before {
    position: absolute;
    top: 0.23rem;
    left: 0;
    display: grid;
    place-items: center;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
    content: "✓";
    background: var(--green-2);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 900;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--green);
    font-weight: 900;
}

.text-link::after {
    content: "->";
    transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(4px);
}

.atlas {
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 8% 0%,
            rgba(168, 148, 79, 0.34),
            transparent 28rem
        ),
        linear-gradient(135deg, #0f2d27, #1d4d41);
}

.atlas h2,
.atlas h3 {
    color: var(--cream-2);
}

.atlas p {
    color: rgba(255, 248, 234, 0.76);
}

.atlas .eyebrow {
    color: var(--sand);
}

.atlas-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: clamp(1.8rem, 4vw, 3rem);
}

.atlas-head {
    max-width: none;
}

.atlas-head-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    grid-template-areas:
        "title media"
        "intro media";
    gap: 1.15rem 1.8rem;
    align-items: start;
}

.atlas-head h2 {
    grid-area: title;
    max-width: 760px;
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.atlas-intro {
    grid-area: intro;
    display: grid;
    gap: 0.95rem;
    max-width: 560px;
    align-self: start;
}

.atlas-intro p {
    margin: 0;
}

.atlas-note {
    grid-column: 1;
    margin: 0;
    max-width: 560px;
    align-self: start;
}

.atlas-side {
    display: grid;
    gap: 1rem;
}

.atlas-media {
    grid-area: media;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 420px;
    min-height: 0;
    justify-self: end;
    align-self: center;
    overflow: hidden;
    background: rgba(255, 253, 247, 0.08);
    border: 1px solid rgba(244, 234, 216, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.atlas-media::before {
    display: none;
}

.atlas-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.atlas-media picture,
.clinic-photo picture,
.post-card-media picture,
.post-hero-media picture {
    width: 100%;
    height: 100%;
}

.atlas-badge {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    left: 0.9rem;
    max-width: none;
    padding: 0.75rem 0.85rem;
    color: var(--green);
    background: rgba(255, 248, 234, 0.92);
    border: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.atlas-badge strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--green);
    font-size: 0.88rem;
    font-weight: 900;
}

.atlas-badge span {
    display: block;
    color: rgba(18, 56, 47, 0.72);
    font-size: 0.77rem;
    line-height: 1.35;
}

.phase-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0;
}

.phase-list article {
    display: grid;
    align-content: start;
    gap: 1rem;
    min-height: 100%;
    padding: clamp(1rem, 2.2vw, 1.25rem);
    background: rgba(255, 253, 247, 0.07);
    border: 1px solid rgba(255, 253, 247, 0.12);
    border-radius: 20px;
}

.phase-list span {
    display: grid;
    place-items: center;
    width: 2.65rem;
    height: 2.65rem;
    color: var(--green);
    background: var(--sand);
    border-radius: 50%;
    font-weight: 900;
}

.phase-list h3 {
    margin-bottom: 0.25rem;
    font-size: 1.28rem;
}

.phase-list p {
    margin: 0;
    font-size: 0.95rem;
}

.proof-grid {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

.quote-card,
.results-card {
    border-radius: var(--radius-lg);
}

.quote-card {
    padding: clamp(1.5rem, 4vw, 2.8rem);
    background: var(--green);
}

.quote-card p {
    margin: 0;
    color: var(--cream-2);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.quote-card span {
    display: block;
    margin-top: 1.5rem;
    color: var(--sand);
    font-weight: 900;
}

.results-card {
    padding: clamp(1.4rem, 3vw, 2.3rem);
}

.fine-print {
    color: rgba(111, 107, 94, 0.76);
    font-size: 0.88rem;
}

.section-heading {
    max-width: 800px;
    margin-bottom: 2rem;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: none;
}

.section-heading-row h2 {
    max-width: 780px;
}

.cards-grid,
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.info-card {
    min-height: 280px;
    padding: 1.35rem;
    border-radius: var(--radius-md);
}

.icon-dot {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.8rem;
    color: var(--white);
    background: var(--clay);
    border-radius: 50%;
    font-weight: 900;
}

.info-card p {
    margin-bottom: 0;
}

.objections {
    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(168, 148, 79, 0.18),
            transparent 22rem
        ),
        rgba(255, 253, 247, 0.44);
}

.objection-grid {
    align-items: stretch;
}

.objection-card {
    min-height: 245px;
}

.about {
    background:
        linear-gradient(90deg, rgba(157, 174, 139, 0.16), transparent),
        rgba(255, 253, 247, 0.34);
}

.about-grid {
    grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.04fr);
    gap: clamp(2.4rem, 5vw, 4.6rem);
}

.about .section-copy {
    max-width: 690px;
}

.about .section-copy h2 {
    max-width: 690px;
    font-size: clamp(2.45rem, 4.25vw, 4.2rem);
    line-height: 1;
}

.about-image {
    position: relative;
}

.about-image::before {
    position: absolute;
    inset: 8% -5% -6% 10%;
    content: "";
    background: rgba(168, 148, 79, 0.14);
    border-radius: var(--radius-lg);
    transform: rotate(-4deg);
}

.about-image img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 420px;
    max-height: 520px;
    object-fit: cover;
    object-position: center 18%;
    border: 0.8rem solid rgba(255, 253, 247, 0.72);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.professional-list {
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 1.4rem 0 0;
    list-style: none;
}

.professional-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.95rem;
    padding: 0.95rem 1rem;
    background: rgba(255, 253, 247, 0.62);
    border: 1px solid rgba(18, 56, 47, 0.11);
    border-radius: 20px;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.professional-list li:hover {
    background: rgba(255, 253, 247, 0.84);
    border-color: rgba(18, 56, 47, 0.2);
    transform: translateY(-1px);
}

.meta-icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--green);
    background: rgba(157, 174, 139, 0.18);
    border: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: 50%;
    flex: 0 0 auto;
}

.meta-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.professional-list strong {
    display: block;
    margin-bottom: 0.16rem;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.professional-list span {
    color: var(--muted);
    line-height: 1.55;
}

.professional-list .meta-icon {
    color: var(--green);
    line-height: 1;
}

.professional-link {
    display: inline;
    color: var(--muted);
    line-height: 1.55;
    text-decoration: underline;
    text-decoration-color: rgba(18, 56, 47, 0.22);
    text-underline-offset: 0.2em;
}

.professional-link:hover,
.professional-link:focus-visible {
    color: var(--green);
    text-decoration-color: currentColor;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.social-row a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.66rem 0.92rem;
    color: var(--green);
    background: rgba(255, 253, 247, 0.5);
    border: 1px solid rgba(18, 56, 47, 0.14);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 900;
    transition:
        transform 180ms ease,
        color 180ms ease,
        background 180ms ease;
}

.social-row a:hover,
.social-row a:focus-visible {
    color: var(--cream-2);
    background: var(--green);
    transform: translateY(-2px);
}

.social-row svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex: 0 0 auto;
}

.clinic {
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(157, 174, 139, 0.2),
            transparent 22rem
        ),
        rgba(255, 253, 247, 0.52);
}

.clinic-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.clinic .section-copy h2 {
    max-width: 620px;
    font-size: clamp(2.3rem, 4vw, 3.9rem);
}

.clinic .btn {
    margin-top: 1rem;
}

.clinic-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    grid-template-rows: repeat(2, minmax(180px, 1fr));
    gap: 1rem;
}

.clinic-photo {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    margin: 0;
    background: rgba(18, 56, 47, 0.08);
    border: 0.65rem solid rgba(255, 253, 247, 0.7);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.clinic-photo-large {
    grid-row: span 2;
    min-height: 560px;
}

.clinic-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinic-photo-large img {
    object-position: center;
}

.post-card {
    display: flex;
    min-height: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    flex-direction: column;
}

.post-card:hover .post-card-media img,
.post-card:focus-within .post-card-media img {
    transform: scale(1.05);
}

.post-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.48;
    background: var(--sand);
}

.post-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.post-card-body {
    display: flex;
    flex: 1;
    padding: 1.15rem;
    flex-direction: column;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--clay);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.post-card h3 {
    font-size: 1.55rem;
}

.post-card p {
    margin: 0.8rem 0 1.2rem;
    font-size: 0.95rem;
}

.post-card .text-link {
    margin-top: auto;
}

.faq-grid {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-list details {
    background: rgba(255, 253, 247, 0.72);
    border: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: 18px;
}

.faq-list summary {
    display: flex;
    align-items: center;
    min-height: 3rem;
    cursor: pointer;
    padding: 1.1rem 1.2rem;
    color: var(--green);
    font-weight: 900;
}

.faq-list p {
    margin: 0;
    padding: 0 1.2rem 1.2rem;
}

.cta-band {
    padding: clamp(3rem, 6vw, 5rem) 0;
    color: var(--white);
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(168, 148, 79, 0.4),
            transparent 25rem
        ),
        linear-gradient(135deg, var(--green), #0d261f);
}

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

.cta-band h2 {
    max-width: 870px;
    color: var(--cream-2);
}

.cta-band p {
    color: rgba(255, 248, 234, 0.78);
}

.cta-band .eyebrow {
    color: var(--sand);
}

.site-footer {
    padding: 3.5rem 0 1.35rem;
    background:
        linear-gradient(180deg, rgba(18, 56, 47, 0.28), transparent 42%),
        #0d241f;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(320px, 1fr) minmax(
            140px,
            0.45fr
        );
    align-items: start;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.footer-grid > div {
    min-width: 0;
}

.footer-grid > div:nth-child(2) {
    max-width: 540px;
}

.site-footer h2 {
    margin: 0 0 1rem;
    color: var(--sand);
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.site-footer span,
.brand-footer small {
    color: rgba(255, 248, 234, 0.68);
}

.brand-footer strong {
    color: var(--cream-2);
}

.site-footer a {
    display: block;
    margin-top: 0.65rem;
    font-weight: 800;
    line-height: 1.55;
    transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--sand);
}

.site-footer button {
    display: block;
    margin-top: 0.65rem;
    padding: 0;
    color: rgba(255, 248, 234, 0.68);
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 800;
    line-height: 1.55;
    text-align: left;
    cursor: pointer;
    transition: color 180ms ease;
}

.site-footer button:hover,
.site-footer button:focus-visible {
    color: var(--sand);
}

.site-footer span {
    display: block;
    margin-top: 0.65rem;
}

.site-footer .brand-footer > span {
    margin-top: 0;
}

.site-footer p {
    max-width: 420px;
}

.footer-bottom {
    margin-top: 2.4rem;
    padding-top: 1.15rem;
    text-align: center;
    border-top: 1px solid rgba(255, 248, 234, 0.16);
}

.footer-bottom p {
    max-width: none;
    margin: 0;
    color: rgba(255, 248, 234, 0.62);
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-bottom a {
    display: inline;
    margin-top: 0;
    color: var(--sand);
    font-weight: 900;
}

.privacy-page {
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(157, 174, 139, 0.24),
            transparent 22rem
        ),
        radial-gradient(
            circle at 92% 8%,
            rgba(168, 148, 79, 0.16),
            transparent 18rem
        ),
        linear-gradient(
            180deg,
            rgba(255, 253, 247, 0.42),
            rgba(244, 234, 216, 0.52)
        );
}

.privacy-hero {
    padding-bottom: 1.4rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.48fr);
    align-items: start;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.policy-summary,
.policy-card {
    background: rgba(255, 253, 247, 0.74);
    border: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.policy-summary {
    padding: clamp(1.2rem, 3vw, 1.8rem);
    position: sticky;
    top: 6rem;
}

.policy-summary ul {
    display: grid;
    gap: 0.85rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.policy-summary li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--muted);
    line-height: 1.6;
}

.policy-summary li::before {
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.62rem;
    height: 0.62rem;
    content: "";
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(168, 148, 79, 0.18);
}

.policy-card {
    padding: clamp(1.2rem, 3vw, 2rem);
}

.policy-section {
    padding: 1.1rem 0;
    border-top: 1px solid rgba(18, 56, 47, 0.1);
}

.policy-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.policy-section h2 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}

.policy-section p {
    margin: 0;
}

.policy-section ul {
    display: grid;
    gap: 0.65rem;
    padding-left: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
}

.policy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.policy-meta {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.policy-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.policy-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.72rem;
    color: var(--green);
    background: rgba(157, 174, 139, 0.16);
    border: 1px solid rgba(18, 56, 47, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

body.cookie-modal-open .site-header {
    position: relative;
    z-index: 25;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    width: 100%;
    pointer-events: none;
}

.cookie-banner-card {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1.1rem;
    color: var(--green);
    background:
        radial-gradient(
            circle at top right,
            rgba(168, 148, 79, 0.16),
            transparent 10rem
        ),
        rgba(255, 253, 247, 0.96);
    border-top: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: 0;
    box-shadow: 0 -10px 36px rgba(13, 36, 31, 0.12);
    backdrop-filter: blur(16px);
}

.cookie-banner-copy {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner-title {
    margin: 0;
    color: var(--green);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.3;
}

.cookie-banner-text {
    margin: 0;
    color: rgba(18, 56, 47, 0.74);
    font-size: 0.88rem;
    line-height: 1.45;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
}

.cookie-banner-actions .btn {
    flex: 0 0 auto;
    min-height: 2.5rem;
    padding: 0.62rem 0.95rem;
}

.cookie-banner-link {
    display: inline;
    color: var(--green);
    font-size: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(18, 56, 47, 0.22);
    text-underline-offset: 0.18em;
}

.cookie-banner-link:hover,
.cookie-banner-link:focus-visible {
    color: var(--clay);
}

.cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(13, 36, 31, 0.54);
    backdrop-filter: blur(14px);
}

.cookie-modal-backdrop.is-open {
    display: flex;
}

.cookie-modal {
    width: min(760px, 100%);
    max-height: min(88vh, 900px);
    overflow: auto;
    padding: clamp(1.2rem, 3vw, 2rem);
    background: linear-gradient(
        180deg,
        rgba(255, 253, 247, 0.98),
        rgba(255, 248, 234, 0.96)
    );
    border: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: 32px;
    box-shadow: 0 40px 120px rgba(13, 36, 31, 0.35);
}

.cookie-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-right: 6.5rem;
}

.cookie-modal-head h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.cookie-modal-head p {
    max-width: 620px;
    margin: 0.85rem 0 0;
}

.cookie-modal-close {
    flex: 0 0 auto;
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    align-self: flex-start;
}

.cookie-modal-body {
    display: grid;
    gap: 0.7rem;
}

.cookie-category {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    color: var(--green);
    background: rgba(157, 174, 139, 0.12);
    border: 1px solid rgba(18, 56, 47, 0.1);
    border-radius: 20px;
}

.cookie-category strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
}

.cookie-category p {
    margin: 0.3rem 0 0;
    color: rgba(18, 56, 47, 0.75);
    font-size: 0.88rem;
    line-height: 1.48;
}

.cookie-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.66rem;
    color: var(--green);
    background: rgba(223, 201, 165, 0.45);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 900;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 58px;
    height: 34px;
    flex: 0 0 auto;
}

.cookie-switch input {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.cookie-switch span {
    position: absolute;
    inset: 0;
    background: rgba(18, 56, 47, 0.12);
    border: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: 999px;
    transition:
        background 180ms ease,
        border-color 180ms ease;
}

.cookie-switch span::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    content: "";
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(18, 56, 47, 0.16);
    transition: transform 180ms ease;
}

.cookie-switch input:checked + span {
    background: linear-gradient(135deg, var(--green), var(--green-2));
    border-color: transparent;
}

.cookie-switch input:checked + span::after {
    transform: translateX(24px);
}

.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.3rem;
}

.cookie-modal-actions .btn {
    flex: 1 1 160px;
}

.cookie-note {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.page-hero {
    padding: clamp(2.2rem, 4.5vw, 4.7rem) 0 2rem;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
}

.page-hero h1 {
    max-width: 880px;
    font-size: clamp(2.8rem, 5.7vw, 5.45rem);
}

.page-hero .hero-lead {
    max-width: 680px;
    margin-top: 1rem;
}

.blog-panel {
    padding: 1.2rem;
    border-radius: var(--radius-md);
}

.blog-panel strong {
    display: block;
    color: var(--green);
    font-family: var(--font-display);
    font-size: 2rem;
}

.blog-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1rem auto 2rem;
}

.search-field {
    width: min(100%, 460px);
    padding: 0.95rem 1.1rem;
    color: var(--green);
    background: rgba(255, 253, 247, 0.78);
    border: 1px solid rgba(18, 56, 47, 0.16);
    border-radius: 999px;
    outline: none;
}

.search-field:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(31, 90, 74, 0.12);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

.category-pills button {
    padding: 0.64rem 0.85rem;
    color: var(--green);
    background: rgba(255, 253, 247, 0.6);
    border: 1px solid rgba(18, 56, 47, 0.14);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 900;
}

.category-pills button.is-active {
    color: var(--white);
    background: var(--green);
}

.blog-list-section {
    padding-top: 0.5rem;
    padding-bottom: clamp(4rem, 7vw, 7rem);
}

.empty-state {
    padding: 2rem;
    color: var(--muted);
    text-align: center;
    background: rgba(255, 253, 247, 0.7);
    border: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: var(--radius-md);
}

.post-page {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.post-shell {
    overflow: hidden;
    border-radius: clamp(1.4rem, 4vw, 3rem);
}

.post-hero-media {
    position: relative;
    min-height: 380px;
    background: var(--green);
}

.post-hero-media img {
    width: 100%;
    height: min(62vw, 560px);
    object-fit: cover;
}

.post-hero-content {
    padding: clamp(1.4rem, 5vw, 4rem);
}

.post-hero-content h1 {
    max-width: 980px;
    font-size: clamp(2.6rem, 6.5vw, 6rem);
}

.post-content {
    max-width: 780px;
    padding: 0 clamp(1.4rem, 5vw, 4rem) clamp(2.2rem, 6vw, 5rem);
}

.post-content h2 {
    margin: 2.5rem 0 0.9rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.post-content p {
    margin: 1rem 0;
}

.post-content ul {
    display: grid;
    gap: 0.75rem;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.75;
}

.post-content blockquote {
    margin: 2rem 0;
    padding: 1.4rem;
    color: var(--green);
    background: rgba(157, 174, 139, 0.16);
    border-left: 4px solid var(--gold);
    border-radius: 18px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.35;
}

.post-content .highlight {
    margin: 2rem 0;
    padding: 1.2rem;
    color: var(--green);
    background: rgba(168, 148, 79, 0.16);
    border: 1px solid rgba(168, 148, 79, 0.22);
    border-radius: 18px;
    font-weight: 800;
    line-height: 1.7;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.post-tags span {
    padding: 0.46rem 0.7rem;
    color: var(--green);
    background: rgba(18, 56, 47, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.legal-page {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.legal-card {
    max-width: 860px;
    padding: clamp(1.4rem, 4vw, 3rem);
    background: rgba(255, 253, 247, 0.72);
    border: 1px solid rgba(18, 56, 47, 0.12);
    border-radius: var(--radius-lg);
}

.legal-card h1 {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.legal-card h2 {
    margin-top: 2rem;
    font-size: 2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 620ms ease,
        transform 620ms ease;
    transition-delay: var(--delay, 0ms);
}

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

.hero .reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .trust-item {
        opacity: 0;
        transform: none;
        animation: none;
    }

    .trust-item:first-child {
        opacity: 1;
    }
}

@media (max-width: 980px) {
    body {
        padding-top: var(--mobile-header-offset, 5rem);
    }

    .site-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 248, 234, 0.94);
        border-color: rgba(18, 56, 47, 0.1);
        box-shadow: 0 14px 36px rgba(18, 56, 47, 0.08);
        backdrop-filter: blur(16px);
    }

    .header-grid {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .header-cta {
        display: none;
    }

    .header-actions {
        display: inline-flex;
    }

    .header-whatsapp-icon {
        display: inline-flex;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.95rem;
        height: 2.95rem;
        padding: 0;
        color: var(--green);
        background: rgba(255, 253, 247, 0.78);
        border: 1px solid rgba(18, 56, 47, 0.16);
        border-radius: 16px;
        cursor: pointer;
    }

    .menu-toggle::before {
        display: block;
        width: 18px;
        height: 2px;
        content: "";
        background: currentColor;
        border-radius: 999px;
        box-shadow:
            0 -6px 0 currentColor,
            0 6px 0 currentColor;
    }

    .menu-toggle span {
        display: none;
    }

    .site-nav {
        position: fixed;
        top: var(--mobile-header-offset, 5rem);
        right: 1rem;
        left: 1rem;
        display: none;
        padding: 1rem;
        background: rgba(255, 248, 234, 0.96);
        border: 1px solid rgba(18, 56, 47, 0.12);
        border-radius: 24px;
        box-shadow: var(--shadow);
        flex-direction: column;
        backdrop-filter: blur(16px);
        z-index: 40;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.75rem;
    }

    .hero-grid,
    .split-grid,
    .atlas-grid,
    .atlas-head-grid,
    .about-grid,
    .clinic-grid,
    .proof-grid,
    .faq-grid,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 360px;
        margin-inline: auto;
    }

    .atlas-head-grid {
        grid-template-areas:
            "title"
            "media"
            "intro"
            "note";
    }

    .atlas-head h2 {
        max-width: none;
    }

    .atlas-media {
        max-width: none;
        justify-self: stretch;
    }

    .atlas-note {
        grid-column: auto;
    }

    .metrics-grid,
    .cards-grid,
    .post-grid,
    .phase-list {
        grid-template-columns: 1fr 1fr;
    }

    .about-image img {
        min-height: 320px;
    }

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

    .clinic-photo-large {
        min-height: 440px;
    }

    .cta-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .blog-controls {
        align-items: stretch;
        flex-direction: column;
    }

    .category-pills {
        justify-content: flex-start;
    }

    .policy-summary {
        position: static;
    }

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

@media (max-width: 640px) {
    .container {
        width: calc(100vw - 1rem);
        max-width: calc(100vw - 1rem);
    }

    .section-pad {
        padding: 4rem 0;
    }

    .brand span {
        display: none;
    }

    .header-grid {
        width: 100%;
        gap: 0.5rem;
        grid-template-columns: auto auto;
    }

    .header-actions {
        position: fixed;
        top: 0.85rem;
        right: 0.5rem;
        z-index: 60;
        flex-shrink: 0;
        gap: 0.35rem;
    }

    .header-whatsapp-icon {
        display: inline-flex !important;
    }

    .menu-toggle {
        position: static;
        top: auto;
        right: auto;
        z-index: auto;
        display: inline-flex !important;
    }

    .header-whatsapp-icon,
    .menu-toggle {
        width: 2.75rem;
        height: 2.75rem;
        min-width: 2.75rem;
        border-radius: 15px;
    }

    .hero {
        padding-top: 2.2rem;
    }

    .hero-copy,
    .hero-lead {
        width: calc(100vw - 1rem);
        max-width: calc(100vw - 1rem);
    }

    .hero-lead {
        max-width: 31ch;
    }

    .hero h1 {
        max-width: calc(100vw - 1rem);
        font-size: 2.1rem;
    }

    .trust-row {
        display: grid;
        width: 100%;
        max-width: none;
        min-width: 0;
        padding: 0.85rem 1rem;
    }

    .hero-actions,
    .btn,
    .section-heading-row,
    .post-nav {
        width: 100%;
    }

    .hero-actions,
    .section-heading-row,
    .post-nav {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .metrics-grid,
    .cards-grid,
    .post-grid,
    .phase-list,
    .clinic-gallery {
        grid-template-columns: 1fr;
    }

    .portrait-frame {
        border-radius: 32px;
    }

    .portrait-frame img {
        height: 420px;
        border-radius: 26px;
        object-position: center 16%;
    }

    .phase-list article {
        grid-template-columns: 1fr;
    }

    .atlas-media {
        max-width: none;
    }

    .atlas-badge {
        right: 0.85rem;
        left: 0.85rem;
        max-width: none;
    }

    .professional-list li {
        grid-template-columns: 1fr;
    }

    .about-image img {
        min-height: 280px;
    }

    .clinic-photo,
    .clinic-photo-large {
        grid-row: auto;
        min-height: 300px;
        border-width: 0.45rem;
    }

    .post-hero-media {
        min-height: 240px;
    }

    .post-hero-media img {
        height: 300px;
    }

    .cookie-banner {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.65rem;
        width: auto;
    }

    .cookie-banner-card {
        display: block;
        padding: 0.9rem 0.85rem 0.8rem;
        border: 1px solid rgba(18, 56, 47, 0.12);
        border-radius: 24px;
        box-shadow: 0 18px 42px rgba(13, 36, 31, 0.18);
    }

    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        margin-top: 0.8rem;
    }

    .cookie-banner-copy {
        display: block;
    }

    .cookie-banner-title {
        font-size: 0.94rem;
        line-height: 1.2;
    }

    .cookie-banner-text {
        margin-top: 0.35rem;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .cookie-banner-actions .btn {
        width: 100%;
        min-height: 2.45rem;
        padding: 0.58rem 0.8rem;
        font-size: 0.81rem;
    }

    .cookie-banner-actions [data-cookie-settings-open] {
        grid-column: 1 / -1;
    }

    .cookie-modal {
        padding: 0.95rem;
        border-radius: 28px;
    }

    .cookie-modal-head {
        margin-bottom: 0.9rem;
        padding-right: 4.8rem;
    }

    .cookie-category {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding: 0.8rem 0.85rem;
    }

    .cookie-modal-head h2 {
        max-width: none;
        font-size: 2.2rem;
        line-height: 0.95;
    }

    .cookie-modal-head p {
        margin-top: 0.55rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .cookie-modal-close {
        min-height: 2.25rem;
        padding: 0.45rem 0.9rem;
        font-size: 0.82rem;
        width: auto;
    }

    .cookie-modal-body {
        gap: 0.55rem;
    }

    .cookie-category strong {
        font-size: 0.96rem;
    }

    .cookie-category p {
        font-size: 0.84rem;
        line-height: 1.42;
    }

    .cookie-pill {
        padding: 0.38rem 0.6rem;
        font-size: 0.72rem;
    }

    .cookie-switch {
        width: 54px;
        height: 32px;
    }

    .cookie-switch span::after {
        width: 24px;
        height: 24px;
    }

    .cookie-switch input:checked + span::after {
        transform: translateX(22px);
    }

    .policy-actions .btn {
        width: 100%;
    }

    .privacy-hero {
        padding-bottom: 0.75rem;
    }

    .policy-actions {
        gap: 0.6rem;
    }

    .policy-meta {
        margin-top: 0.8rem;
        font-size: 0.86rem;
    }

    .policy-chip-row {
        gap: 0.45rem;
        margin-top: 0.8rem;
    }

    .policy-chip {
        padding: 0.42rem 0.62rem;
        font-size: 0.73rem;
    }

    .policy-summary {
        padding: 1rem 0.95rem;
        border-radius: 24px;
    }

    .policy-summary ul {
        gap: 0.7rem;
        margin-top: 0.75rem;
    }

    .policy-summary li {
        padding-left: 1.2rem;
        line-height: 1.5;
    }
}
