:root {
    --bg: #f6f1e7;
    --bg-deep: #efe3cf;
    --surface: rgba(255, 251, 245, 0.8);
    --surface-strong: rgba(255, 253, 248, 0.94);
    --surface-dark: rgba(53, 59, 36, 0.9);
    --primary: #4e5537;
    --primary-deep: #394026;
    --secondary: #a7641e;
    --secondary-soft: #d5af7b;
    --text: #34291f;
    --muted: #6f6050;
    --border: rgba(114, 88, 59, 0.12);
    --border-strong: rgba(114, 88, 59, 0.2);
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --shadow-soft: 0 24px 50px rgba(48, 35, 22, 0.08);
    --shadow-strong: 0 32px 70px rgba(34, 24, 12, 0.14);
    --shadow-card: 0 18px 40px rgba(47, 34, 20, 0.08);
    --scroll-progress: 0;
    --section-gap: clamp(4.5rem, 8vw, 7rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.72;
    letter-spacing: -0.01em;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(216, 171, 106, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(78, 85, 55, 0.08), transparent 28%),
        linear-gradient(180deg, #f8f3ea 0%, #f4eee2 42%, #efe5d4 100%);
    max-width: 100%;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

p {
    color: var(--muted);
    text-wrap: pretty;
}

p,
li {
    line-height: 1.72;
}

img {
    max-width: 100%;
}

main,
.navbar,
.footer {
    position: relative;
    max-width: 100%;
    overflow-x: clip;
}

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

.section {
    position: relative;
    padding: var(--section-gap) 0;
}

.section-bridge {
    padding-top: calc(var(--section-gap) * 0.95);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 16px;
    background: var(--secondary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 200;
}

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

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

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(52, 58, 37, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 245, 229, 0.12);
}

.scroll-progress {
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 234, 202, 0.16), rgba(255, 234, 202, 0.96));
    transform-origin: left center;
    transform: scaleX(var(--scroll-progress));
}

.nav-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 84px;
}

.logo {
    display: inline-flex;
    align-items: center;
    color: #f9efdf;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.02em;
    transform: translateY(0);
    transform-origin: left center;
    transition: color 220ms ease, transform 320ms ease, text-shadow 320ms ease;
    animation: logoEntrance 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both, logoFloat 5.8s ease-in-out 1s infinite;
}

.logo:hover,
.logo:focus-visible {
    color: #ffe3bf;
    transform: translateY(-1px);
    text-shadow: 0 0 18px rgba(255, 227, 191, 0.16);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 248, 235, 0.18);
    border-radius: 14px;
    background: rgba(255, 248, 235, 0.06);
    cursor: pointer;
    place-items: center;
    gap: 4px;
}

.nav-toggle-line {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff8eb;
    transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    gap: 1.9rem;
}

.nav-links a {
    position: relative;
    color: #f7efdf;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.2rem 0;
    transition: color 220ms ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.2rem;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
    color: #ffd8a7;
}

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

.btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 999px;
    padding: 0.92rem 1.45rem;
    background: linear-gradient(135deg, #a7641e, #c07a30);
    color: #fff;
    text-decoration: none;
    font-size: 0.97rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    box-shadow: 0 18px 30px rgba(104, 57, 18, 0.18);
    transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease, color 240ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(104, 57, 18, 0.22);
}

.btn:disabled {
    cursor: default;
    opacity: 0.88;
    transform: none;
    box-shadow: 0 12px 20px rgba(104, 57, 18, 0.14);
}

.btn-small {
    padding: 0.76rem 1.08rem;
    font-size: 0.92rem;
}

.btn-ghost {
    background: rgba(255, 247, 235, 0.08);
    color: #fff6e8;
    border: 1px solid rgba(255, 234, 201, 0.32);
    box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: rgba(255, 247, 235, 0.14);
    box-shadow: none;
}

.btn-earth {
    background: linear-gradient(135deg, #394026, #59633b);
    box-shadow: 0 18px 30px rgba(57, 64, 38, 0.2);
}

.hero {
    position: relative;
    padding: clamp(4.2rem, 7vw, 5.9rem) 0 4.3rem;
    color: #fff7ea;
    background:
        radial-gradient(circle at 14% 16%, rgba(246, 203, 144, 0.22), transparent 24%),
        radial-gradient(circle at 86% 82%, rgba(255, 237, 209, 0.12), transparent 26%),
        linear-gradient(145deg, #363d25 0%, #4a5632 42%, #8a6f45 100%);
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
}

.hero-wave-top {
    bottom: -1px;
    height: 92px;
    background:
        radial-gradient(115% 95px at 50% 100%, transparent 60%, rgba(246, 241, 231, 0.98) 61%, rgba(246, 241, 231, 0.98) 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    opacity: 0.5;
    pointer-events: none;
    transition: transform 420ms ease;
}

.hero-glow-left {
    width: 360px;
    height: 360px;
    top: 3rem;
    left: -7rem;
    background: radial-gradient(circle, rgba(248, 212, 160, 0.34), transparent 65%);
    animation: driftGlow 16s ease-in-out infinite;
}

.hero-glow-right {
    width: 420px;
    height: 420px;
    right: -9rem;
    bottom: -5rem;
    background: radial-gradient(circle, rgba(255, 243, 219, 0.24), transparent 68%);
    animation: driftGlow 18s ease-in-out infinite reverse;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
    gap: 1.5rem;
    align-items: start;
}

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

.eyebrow,
.section-kicker,
.card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
}

.eyebrow {
    color: #f6d7ad;
}

.section-kicker {
    color: var(--secondary);
}

.card-kicker {
    color: rgba(88, 70, 48, 0.66);
}

.hero h1 {
    max-width: 15.5ch;
    margin-bottom: 0.8rem;
    color: #fff7ea;
    font-size: clamp(2.05rem, 4vw, 3.55rem);
    line-height: 1.03;
    letter-spacing: -0.03em;
}

.lead {
    max-width: 54ch;
    color: rgba(255, 243, 225, 0.9);
    font-size: 0.98rem;
    line-height: 1.68;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.35rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    margin-top: 0.95rem;
    max-width: 620px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    color: rgba(255, 238, 214, 0.86);
    font-size: 0.9rem;
    white-space: nowrap;
}

.hero-proof span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 0.55rem;
    border-radius: 50%;
    background: rgba(246, 215, 173, 0.9);
}

.hero-visual {
    position: relative;
    min-height: 390px;
}

.hero-orbit {
    position: absolute;
    inset: 5% 6% 6% 6%;
    border: 1px solid rgba(255, 245, 228, 0.18);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
        radial-gradient(circle at 20% 20%, rgba(255, 238, 211, 0.18), transparent 34%);
    transform: rotate(-8deg);
    animation: orbitFloat 9s ease-in-out infinite;
}

.hero-stack {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    gap: 0.85rem;
    min-height: 100%;
}

.hero-card,
.bio-card,
.outcome-card,
.service-card,
.step,
blockquote,
.resource-card,
.faq details,
.authority-card,
.contact-panel,
.contact-form,
.dosha-note {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 248, 239, 0.84));
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.hero-card::before,
.bio-card::before,
.outcome-card::before,
.service-card::before,
.step::before,
blockquote::before,
.resource-card::before,
.authority-card::before,
.contact-panel::before,
.contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.44), transparent 55%);
    opacity: 0;
    transition: opacity 320ms ease;
    pointer-events: none;
}

.hero-card {
    width: min(100%, 352px);
    padding: 1.2rem 1.2rem 1.1rem;
    border-color: rgba(255, 248, 238, 0.46);
    box-shadow: var(--shadow-strong);
}

.hero-card h2 {
    margin-bottom: 0.45rem;
    color: var(--text);
    font-size: clamp(1.38rem, 2vw, 1.85rem);
    line-height: 1.06;
}

.hero-card p,
.bio-card p,
.outcome-card p,
.service-card p,
.step p,
blockquote p,
.resource-card p,
.authority-card p,
.contact-panel p,
.faq p {
    max-width: 36ch;
}

.outcome-card p,
.step p,
.resource-card p,
.contact-panel p,
.authority-card p {
    max-width: none;
}

.hero-card ul {
    display: grid;
    gap: 0.35rem;
    margin: 0.7rem 0 0 0.95rem;
}

.hero-card li {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.56;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.card-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    color: var(--primary-deep);
    background: rgba(78, 85, 55, 0.08);
    font-size: 0.82rem;
    font-weight: 700;
}

.floating-note {
    position: static;
    justify-self: start;
    width: min(100%, 220px);
    padding: 0.72rem 0.78rem;
    border: 1px solid rgba(239, 218, 190, 0.84);
    border-radius: 18px;
    background: rgba(255, 251, 245, 0.92);
    box-shadow: var(--shadow-soft);
    animation: driftCard 8s ease-in-out infinite;
}

.floating-note span {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--secondary);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.floating-note strong {
    color: var(--text);
    line-height: 1.4;
}

.hero-highlights {
    padding: 0.8rem 0 1.5rem;
    background:
        linear-gradient(180deg, rgba(246, 241, 231, 0.98), rgba(247, 242, 234, 0.86));
}

.hero-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
    gap: 0.9rem;
    margin-top: 0;
}

.signal-pill {
    min-width: 0;
    padding: 0.95rem 1rem 1rem;
    border: 1px solid rgba(118, 91, 50, 0.1);
    border-radius: 20px;
    background: rgba(255, 251, 246, 0.74);
    box-shadow: 0 14px 24px rgba(47, 34, 20, 0.05);
    backdrop-filter: blur(10px);
}

.signal-pill strong {
    display: block;
    margin-bottom: 0.22rem;
    color: #4b3a29;
    font-size: 0.95rem;
}

.signal-pill span {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.58;
    overflow-wrap: anywhere;
}

.section-divider {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 78px;
    pointer-events: none;
}

.section-divider-light {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.55), transparent);
}

.section-divider-soft {
    background:
        radial-gradient(120% 72px at 50% 0, rgba(255, 249, 240, 0.95), transparent 66%);
}

.section-divider-dark {
    background:
        radial-gradient(120% 80px at 50% 0, rgba(69, 77, 47, 0.7), transparent 68%);
}

.section-divider-curve {
    background:
        radial-gradient(100% 72px at 50% 0, rgba(255, 252, 246, 0.92), transparent 68%);
}

.section-heading,
.doshas-heading {
    max-width: 760px;
}

.section-intro {
    max-width: 62ch;
    margin-top: 0.15rem;
    font-size: 1.06rem;
    line-height: 1.82;
}

.about h2,
.outcomes h2,
.doshas h2,
.services h2,
.method h2,
.authority h2,
.testimonials h2,
.resources h2,
.faq h2,
.contact h2 {
    margin-bottom: 1rem;
    color: #443625;
    font-size: clamp(2.2rem, 4vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.about-grid,
.contact-shell,
.authority-grid,
.resources-shell,
.method-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: start;
}

.about {
    background:
        linear-gradient(180deg, rgba(250, 246, 239, 0.84), rgba(245, 238, 228, 0.72)),
        radial-gradient(circle at 82% 22%, rgba(78, 85, 55, 0.06), transparent 24%);
}

.about-copy p {
    margin-bottom: 0.95rem;
}

.about-copy a {
    color: var(--secondary);
    font-weight: 700;
    text-decoration-color: rgba(167, 100, 30, 0.28);
    text-underline-offset: 0.18em;
}

.about-copy a:hover {
    text-decoration-color: rgba(167, 100, 30, 0.62);
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.credentials span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.58rem 0.9rem;
    border: 1px solid rgba(118, 91, 50, 0.08);
    border-radius: 999px;
    background: rgba(255, 247, 235, 0.72);
    color: #5a4834;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-visual {
    display: grid;
    gap: 1rem;
}

.practitioner-photo {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(118, 91, 50, 0.14);
    border-radius: 34px;
    box-shadow: var(--shadow-strong);
    background: #d9c5a7;
}

.practitioner-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 34%, rgba(31, 24, 15, 0.68)),
        radial-gradient(circle at top left, rgba(255, 236, 205, 0.24), transparent 34%);
}

.practitioner-photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 900ms ease;
}

.practitioner-photo:hover img {
    transform: scale(1.08);
}

.practitioner-photo figcaption {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.15rem;
    z-index: 1;
    color: #fff4e4;
    font-size: 0.96rem;
    font-weight: 600;
}

.bio-card {
    padding: 1.55rem;
}

.bio-card p,
.bio-card h3,
.service-card p,
.service-card h3 {
    max-width: none;
}

.bio-card h3 {
    margin-bottom: 0.55rem;
    color: #443523;
    font-size: 1.48rem;
    line-height: 1.12;
}

.outcomes {
    background:
        radial-gradient(circle at 12% 16%, rgba(167, 100, 30, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 252, 246, 0.58), rgba(240, 229, 210, 0.74));
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.outcome-card {
    min-height: 0;
    padding: 1.45rem;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.outcome-card span,
.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: var(--secondary);
    background: rgba(167, 100, 30, 0.1);
    font-weight: 800;
}

.outcome-card h3,
.service-card h3,
.step h3,
.resource-card h3,
.authority-card h3 {
    margin-bottom: 0.55rem;
    color: #483928;
    line-height: 1.12;
}

.doshas {
    background:
        radial-gradient(circle at 16% 16%, rgba(167, 100, 30, 0.08), transparent 24%),
        radial-gradient(circle at 86% 24%, rgba(78, 85, 55, 0.08), transparent 24%),
        linear-gradient(180deg, #f6f0e4, #efe3cf);
}

.doshas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem 1.5rem;
    margin-top: 2rem;
}

.dosha-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.1rem;
    min-width: 0;
    padding: 1.1rem 0.2rem 0.2rem;
    border-radius: 32px;
    background: transparent;
    transition: transform 260ms ease;
}

.dosha-image {
    display: grid;
    justify-items: center;
    gap: 0.8rem;
}

.dosha-image img {
    width: min(100%, 188px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 16px 30px rgba(71, 49, 23, 0.14));
    transform: translateY(0);
    transition: transform 520ms ease, filter 520ms ease;
    animation: doshaFloat 7s ease-in-out infinite;
}

.dosha-image span {
    color: #8a6f51;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dosha-content {
    min-width: 0;
    padding: 0.4rem 0.6rem 0;
}

.dosha-label {
    margin-bottom: 0.24rem;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dosha-card h3 {
    margin-bottom: 0.55rem;
    color: #493a29;
    font-size: 1.36rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.dosha-content p {
    overflow-wrap: anywhere;
}

.dosha-card ul {
    display: grid;
    gap: 0.45rem;
    margin: 0.95rem 0 0 1.05rem;
}

.dosha-card li {
    color: var(--muted);
}

.dosha-card:hover {
    transform: translateY(-4px);
}

.dosha-card:hover .dosha-image img {
    transform: translateY(-8px) scale(1.06);
    filter: drop-shadow(0 18px 34px rgba(71, 49, 23, 0.18));
}

.dosha-vata .dosha-image img {
    animation-delay: -0.2s;
}

.dosha-pitta .dosha-image img {
    animation-delay: -1.6s;
}

.dosha-kapha .dosha-image img {
    animation-delay: -2.8s;
}

.dosha-note {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    margin-top: 1.4rem;
    padding: 1rem 1.15rem;
}

.dosha-note strong {
    color: var(--primary-deep);
}

.quiz {
    background:
        radial-gradient(circle at 12% 18%, rgba(167, 100, 30, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 251, 245, 0.84), rgba(245, 236, 222, 0.76));
}

.quiz-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 1.5rem;
    align-items: start;
}

.quiz-intro {
    position: sticky;
    top: 108px;
    max-width: 460px;
}

.quiz-intro p {
    margin-bottom: 1rem;
}

.quiz-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.2rem;
}

.quiz-notes span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.56rem 0.88rem;
    border: 1px solid rgba(118, 91, 50, 0.08);
    border-radius: 999px;
    background: rgba(255, 248, 237, 0.82);
    color: #5e4a35;
    font-size: 0.88rem;
    font-weight: 600;
}

.quiz-panel {
    display: grid;
    gap: 1rem;
}

.dosha-quiz,
.quiz-result {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(255, 247, 236, 0.88));
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.dosha-quiz {
    display: grid;
    gap: 0.95rem;
    padding: 1.25rem;
}

.dosha-quiz fieldset {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
    margin: 0;
    border: 1px solid rgba(118, 91, 50, 0.1);
    border-radius: 22px;
    background: rgba(255, 252, 246, 0.88);
}

.dosha-quiz legend {
    padding: 0 0.3rem;
    color: #473828;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.dosha-quiz label {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    padding: 0.78rem 0.82rem;
    border: 1px solid rgba(118, 91, 50, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: #5f4a35;
    cursor: pointer;
    transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.dosha-quiz label:hover {
    transform: translateY(-1px);
    border-color: rgba(167, 100, 30, 0.2);
    box-shadow: 0 12px 22px rgba(79, 57, 31, 0.06);
}

.dosha-quiz input[type="radio"] {
    margin-top: 0.12rem;
    accent-color: #b06d2b;
    transform: scale(1.05);
}

.dosha-quiz label:has(input:checked) {
    border-color: rgba(167, 100, 30, 0.34);
    background: rgba(255, 246, 232, 0.96);
    box-shadow: 0 0 0 4px rgba(167, 100, 30, 0.08);
}

.quiz-actions {
    display: grid;
    gap: 0.45rem;
    padding-top: 0.2rem;
}

.quiz-actions p,
.quiz-feedback {
    font-size: 0.89rem;
}

.quiz-feedback {
    min-height: 1.2rem;
    color: #9b4f34;
    font-weight: 600;
}

.quiz-result {
    padding: 1.35rem;
}

.quiz-result h3 {
    margin-bottom: 0.55rem;
    color: #443523;
    font-size: 1.5rem;
    line-height: 1.14;
}

.quiz-result-name {
    color: var(--secondary);
}

.quiz-result-copy {
    margin-bottom: 0.85rem;
}

.quiz-result-list {
    display: grid;
    gap: 0.5rem;
    margin: 0 0 1rem 1.05rem;
}

.quiz-result-list li {
    color: var(--muted);
}

.quiz-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.services {
    background:
        linear-gradient(180deg, rgba(250, 246, 239, 0.78), rgba(245, 236, 223, 0.62));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.service-note {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    margin-top: 1.1rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(118, 91, 50, 0.12);
    border-radius: 22px;
    background: rgba(255, 250, 243, 0.72);
}

.service-note strong {
    color: var(--primary-deep);
    white-space: nowrap;
}

.service-card {
    min-height: 0;
    padding: 1.5rem;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.method {
    background:
        radial-gradient(circle at 82% 18%, rgba(167, 100, 30, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(239, 230, 211, 0.82), rgba(246, 241, 232, 0.62));
}

.method-copy {
    max-width: 520px;
}

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

.step {
    min-height: 0;
    padding: 1.45rem;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.step span {
    color: #fff;
    background: linear-gradient(145deg, var(--secondary), #c57f34);
    box-shadow: 0 12px 20px rgba(167, 100, 30, 0.18);
}

.authority {
    color: #fff7ea;
    background:
        linear-gradient(135deg, rgba(57, 64, 38, 0.98), rgba(79, 87, 56, 0.94)),
        radial-gradient(circle at top right, rgba(255, 225, 189, 0.14), transparent 34%);
}

.authority h2,
.authority h3 {
    color: #fff8eb;
}

.authority p,
.authority li {
    color: rgba(255, 240, 220, 0.82);
}

.authority .section-kicker {
    color: #f4c58c;
}

.authority-card {
    padding: 1.6rem;
    border-color: rgba(255, 246, 231, 0.16);
    background: rgba(255, 248, 235, 0.08);
    box-shadow: 0 18px 36px rgba(19, 14, 8, 0.12);
}

.authority-card ul {
    display: grid;
    gap: 0.7rem;
    margin: 0 0 1rem 1.2rem;
}

.testimonials {
    background:
        linear-gradient(180deg, rgba(251, 248, 243, 0.85), rgba(246, 238, 225, 0.68));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.testimonial-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.3rem;
}

.testimonial-metrics article {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(118, 91, 50, 0.12);
    border-radius: 22px;
    background: rgba(255, 251, 246, 0.72);
    box-shadow: 0 14px 28px rgba(47, 34, 20, 0.05);
}

.testimonial-metrics strong {
    display: block;
    margin-bottom: 0.28rem;
    color: #483928;
    font-size: 1rem;
}

.testimonial-metrics span {
    color: var(--muted);
    font-size: 0.92rem;
}

blockquote {
    padding: 1.45rem;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

blockquote p {
    color: #5d4d39;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    color: #493b2b;
    font-style: normal;
    font-weight: 700;
}

.resources {
    background:
        radial-gradient(circle at 84% 16%, rgba(78, 85, 55, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(247, 243, 236, 0.85), rgba(255, 252, 246, 0.62));
}

.resources-intro {
    position: sticky;
    top: 108px;
    max-width: 460px;
}

.resources-intro p {
    margin-bottom: 1.2rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.resource-card {
    padding: 1.55rem;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.resource-card span {
    display: inline-flex;
    margin-bottom: 0.7rem;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.resource-card h3 {
    font-size: 1.34rem;
}

.faq {
    background:
        linear-gradient(180deg, rgba(249, 244, 237, 0.85), rgba(243, 236, 226, 0.72));
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 1.5rem;
    align-items: start;
}

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

.faq details {
    padding: 1rem 1.05rem;
    transition: border-color 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.faq details[open] {
    border-color: rgba(167, 100, 30, 0.24);
    background: rgba(255, 252, 246, 0.95);
    box-shadow: var(--shadow-soft);
}

.faq summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #493a29;
    font-weight: 700;
    cursor: pointer;
}

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

.faq summary::after {
    content: '+';
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--secondary);
    background: rgba(167, 100, 30, 0.08);
    transition: transform 240ms ease, background-color 240ms ease;
}

.faq details[open] summary::after {
    transform: rotate(45deg);
    background: rgba(167, 100, 30, 0.14);
}

.faq p {
    margin-top: 0.75rem;
}

.cta-band {
    background:
        linear-gradient(180deg, rgba(248, 242, 233, 0.86), rgba(242, 233, 216, 0.82)),
        radial-gradient(circle at 84% 24%, rgba(167, 100, 30, 0.08), transparent 26%);
}

.cta-band-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 1.4rem;
    align-items: center;
    padding: 1.7rem;
    border: 1px solid rgba(118, 91, 50, 0.14);
    border-radius: 34px;
    background:
        linear-gradient(140deg, rgba(255, 252, 247, 0.9), rgba(250, 243, 232, 0.84)),
        radial-gradient(circle at top right, rgba(214, 177, 127, 0.14), transparent 36%);
    box-shadow: var(--shadow-soft);
}

.cta-band-copy p:last-child {
    max-width: 48ch;
}

.cta-band-actions {
    display: grid;
    gap: 0.8rem;
    justify-items: start;
    padding: 1.1rem 1.15rem;
    border: 1px solid rgba(118, 91, 50, 0.1);
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.72);
}

.cta-band-actions p {
    max-width: 28ch;
    font-size: 0.94rem;
}

.contact {
    background:
        linear-gradient(180deg, rgba(247, 243, 235, 0.65), rgba(241, 232, 214, 0.95)),
        radial-gradient(circle at bottom left, rgba(78, 85, 55, 0.08), transparent 24%);
}

.contact-panel,
.contact-form {
    min-height: 100%;
    padding: 1.6rem;
}

.contact-points {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.45rem;
}

.contact-points div {
    padding-top: 0.95rem;
    border-top: 1px solid rgba(118, 91, 50, 0.12);
}

.contact-points strong,
.contact-points span {
    display: block;
}

.contact-points strong {
    color: var(--text);
}

.contact-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.2rem;
}

.contact-assurance span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.5rem 0.82rem;
    border: 1px solid rgba(118, 91, 50, 0.1);
    border-radius: 999px;
    background: rgba(255, 249, 239, 0.75);
    color: #5b4833;
    font-size: 0.88rem;
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 0.95rem;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
}

.contact-form label span {
    color: #493b2a;
    font-size: 0.94rem;
    font-weight: 700;
}

.field-hint {
    color: #85705a;
    font-size: 0.82rem;
    line-height: 1.45;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(118, 91, 50, 0.14);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--text);
    background: rgba(255, 255, 255, 0.74);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
    border-color: #b85f43;
    box-shadow: 0 0 0 4px rgba(184, 95, 67, 0.1);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(167, 100, 30, 0.12);
    transform: translateY(-1px);
}

.form-actions {
    display: grid;
    gap: 0.45rem;
}

.form-microcopy {
    font-size: 0.88rem;
    line-height: 1.5;
}

.form-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.form-feedback {
    min-height: 1.2rem;
    color: #335b22;
    font-weight: 600;
}

.form-feedback.is-error {
    color: #9b4f34;
}

.footer {
    background: #3a4029;
    color: #efe6d6;
    padding: 2.4rem 0;
}

.footer-shell {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer p {
    color: rgba(239, 230, 214, 0.8);
}

.footer-mark {
    margin-bottom: 0.3rem;
    color: #f5ebdb;
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 278px;
    padding: 0.86rem 1rem;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #2e6e3f, #1d8b4d);
    box-shadow: 0 18px 34px rgba(30, 88, 48, 0.24);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(30, 88, 48, 0.32);
}

.whatsapp-float.is-ready::after {
    content: '';
    position: absolute;
    top: 0.55rem;
    right: 0.65rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b7f4c8;
    box-shadow: 0 0 0 5px rgba(183, 244, 200, 0.16);
}

.whatsapp-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #1f6e3f;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.whatsapp-float strong,
.whatsapp-float small {
    display: block;
    line-height: 1.2;
}

.whatsapp-float strong {
    font-size: 0.98rem;
}

.whatsapp-float small {
    margin-top: 0.18rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
}

.back-to-top {
    position: fixed;
    right: 1.2rem;
    bottom: 6.4rem;
    z-index: 89;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(118, 91, 50, 0.16);
    border-radius: 50%;
    background: rgba(255, 251, 245, 0.86);
    color: #5a4935;
    box-shadow: 0 18px 28px rgba(47, 34, 20, 0.1);
    backdrop-filter: blur(12px);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    box-shadow: 0 22px 36px rgba(47, 34, 20, 0.14);
    transform: translateY(-2px);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"] {
    transform: translate3d(20px, 34px, 0);
}

[data-reveal="right"] {
    transform: translate3d(-20px, 34px, 0);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero-card:hover,
.bio-card:hover,
.outcome-card:hover,
.service-card:hover,
.step:hover,
blockquote:hover,
.resource-card:hover,
.authority-card:hover,
.contact-panel:hover,
.contact-form:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(167, 100, 30, 0.22);
}

.hero-card:hover::before,
.bio-card:hover::before,
.outcome-card:hover::before,
.service-card:hover::before,
.step:hover::before,
blockquote:hover::before,
.resource-card:hover::before,
.authority-card:hover::before,
.contact-panel:hover::before,
.contact-form:hover::before {
    opacity: 1;
}

@keyframes driftGlow {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes orbitFloat {
    0%,
    100% {
        transform: rotate(-8deg) translateY(0);
    }

    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
}

@keyframes driftCard {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes doshaFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .about-grid,
    .contact-shell,
    .authority-grid,
    .resources-shell,
    .quiz-shell,
    .method-grid,
    .faq-shell {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 1.8rem;
    }

    .hero-copy {
        max-width: none;
    }

    .hero h1 {
        max-width: 12ch;
    }

    .hero-visual {
        min-height: 430px;
    }

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

    .resources-intro {
        position: static;
        max-width: none;
    }

    .quiz-intro {
        position: static;
        max-width: none;
    }

    .cta-band-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .nav-shell {
        grid-template-columns: 1fr auto;
        gap: 0.7rem 1rem;
        min-height: 72px;
        padding: 0.75rem 0;
    }

    .nav-toggle {
        display: grid;
        justify-self: end;
    }

    .nav-links {
        grid-column: 1 / -1;
        display: grid;
        max-height: 0;
        overflow: hidden;
        gap: 0.1rem;
        opacity: 0;
        transition: max-height 280ms ease, opacity 220ms ease, padding 220ms ease;
    }

    .nav-links.is-open {
        max-height: 420px;
        padding-top: 0.35rem;
        opacity: 1;
    }

    .nav-links a {
        display: block;
        padding: 0.72rem 0;
        border-bottom: 1px solid rgba(255, 248, 235, 0.12);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-shell > .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

}

@media (max-width: 760px) {
    .container {
        width: min(100% - 1.35rem, 1180px);
    }

    .section {
        padding: 3.7rem 0;
    }

    .hero {
        padding: 4.1rem 0 3.4rem;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2.15rem, 9.8vw, 3.2rem);
    }

    .lead,
    .section-intro {
        font-size: 0.97rem;
        line-height: 1.68;
    }

    .hero-cta,
    .credentials,
    .contact-assurance {
        flex-direction: column;
        align-items: stretch;
    }

    .credentials span,
    .contact-assurance span,
    .btn,
    .btn-ghost,
    .btn-small {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        gap: 0.45rem;
        margin-top: 0.85rem;
    }

    .hero-proof span {
        white-space: normal;
        font-size: 0.88rem;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-orbit {
        inset: 0.4rem;
        border-radius: 28px;
        transform: rotate(-3deg);
    }

    .hero-card {
        width: 100%;
        padding: 1.2rem;
    }

    .floating-note {
        position: static;
        margin-top: 0.2rem;
        max-width: none;
    }

    .hero-metrics,
    .outcomes-grid,
    .doshas-grid,
    .services-grid,
    .steps,
    .testimonials-grid,
    .testimonial-metrics,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .quiz-notes,
    .quiz-result-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quiz-result-actions .btn,
    .quiz-result-actions .btn-ghost,
    .quiz-result-actions .btn-earth {
        width: 100%;
    }

    .about h2,
    .outcomes h2,
    .doshas h2,
    .quiz h2,
    .services h2,
    .method h2,
    .authority h2,
    .testimonials h2,
    .resources h2,
    .faq h2,
    .contact h2 {
        font-size: clamp(1.95rem, 9vw, 2.8rem);
    }

    .practitioner-photo,
    .practitioner-photo img {
        min-height: 300px;
    }

    .dosha-card {
        padding-top: 0.4rem;
    }

    .dosha-image img {
        width: min(100%, 170px);
    }

    .dosha-note {
        display: grid;
    }

    .service-note {
        display: grid;
    }

    .dosha-quiz,
    .quiz-result {
        padding: 1.05rem;
    }

    .dosha-quiz fieldset {
        padding: 0.9rem;
        border-radius: 18px;
    }

    .contact-panel,
    .contact-form {
        padding: 1.25rem;
    }

    .contact-points {
        gap: 0.7rem;
        margin-top: 1.15rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.88rem 0.92rem;
    }

    .service-note strong {
        white-space: normal;
    }

    .contact-panel,
    .contact-form,
    .bio-card,
    .outcome-card,
    .service-card,
    .step,
    .resource-card,
    .dosha-quiz,
    .quiz-result,
    .authority-card,
    blockquote,
    .faq details,
    .hero-card {
        border-radius: 22px;
    }

    .footer {
        padding-bottom: 5rem;
    }

    .footer-shell {
        flex-direction: column;
    }

    .cta-band-shell,
    .cta-band-actions {
        border-radius: 24px;
    }

    .back-to-top {
        right: 0.9rem;
        bottom: 5.8rem;
    }
}

@media (max-width: 520px) {
    .logo {
        max-width: 205px;
        font-size: 1.22rem;
    }

    .hero {
        padding-top: 3.4rem;
    }

    .hero-card-footer {
        align-items: flex-start;
    }

    .card-chip {
        width: 100%;
        justify-content: center;
    }

    .practitioner-photo,
    .practitioner-photo img {
        min-height: 240px;
    }

    .whatsapp-float {
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.65rem;
        max-width: none;
        justify-content: center;
        border-radius: 18px;
        padding: 0.72rem 0.8rem;
    }

    .whatsapp-float small {
        display: none;
    }

    .back-to-top {
        right: 0.75rem;
        bottom: 5.2rem;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 1.1rem, 1180px);
    }

    .nav-shell {
        min-height: 66px;
        gap: 0.55rem 0.8rem;
        padding: 0.58rem 0;
    }

    .nav-links a {
        padding: 0.64rem 0;
        font-size: 0.92rem;
    }

    .nav-shell > .btn {
        padding: 0.82rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 3.1rem 0 3rem;
    }

    .eyebrow,
    .section-kicker,
    .card-kicker {
        margin-bottom: 0.82rem;
        letter-spacing: 0.14em;
        font-size: 0.72rem;
    }

    .hero h1 {
        font-size: clamp(1.95rem, 10.2vw, 2.45rem);
        line-height: 1.04;
    }

    .lead,
    .section-intro {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .hero-cta {
        gap: 0.7rem;
        margin-top: 1.1rem;
    }

    .btn,
    .btn-ghost,
    .btn-small {
        padding: 0.84rem 1rem;
        font-size: 0.92rem;
    }

    .hero-proof span {
        font-size: 0.84rem;
    }

    .hero-visual {
        min-height: 320px;
    }

    .hero-orbit {
        inset: 0.2rem;
        border-radius: 24px;
    }

    .hero-card,
    .contact-panel,
    .contact-form,
    .bio-card,
    .resource-card,
    .service-card,
    .outcome-card,
    .step,
    .quiz-result,
    .dosha-quiz,
    .faq details,
    blockquote {
        padding: 1rem;
    }

    .floating-note {
        width: 100%;
        padding: 0.68rem 0.74rem;
    }

    .contact-points div {
        padding-top: 0.78rem;
    }

    .field-hint,
    .form-note,
    .form-microcopy,
    .quiz-actions p,
    .quiz-feedback {
        font-size: 0.84rem;
    }

    .dosha-quiz fieldset {
        padding: 0.82rem;
    }

    .dosha-quiz label {
        padding: 0.72rem 0.74rem;
        gap: 0.62rem;
    }
}

@media (max-width: 390px) {
    .container {
        width: min(100% - 1rem, 1180px);
    }

    .section {
        padding: 3.25rem 0;
    }

    .logo {
        max-width: 185px;
        font-size: 1.12rem;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        padding: 2.9rem 0 2.8rem;
    }

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

    .lead,
    .section-intro {
        font-size: 0.92rem;
    }

    .hero-card h2,
    .quiz-result h3,
    .bio-card h3 {
        font-size: 1.28rem;
    }

    .hero-card li,
    .dosha-quiz legend,
    .contact-form label span {
        font-size: 0.92rem;
    }

    .whatsapp-float {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        padding: 0.68rem 0.72rem;
    }

    .back-to-top {
        right: 0.68rem;
        bottom: 4.95rem;
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 1ms !important;
        transition-delay: 0ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Layout fixes */
.hero {
    min-height: auto;
    align-items: center;
    padding: 7.2rem 0 4.2rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 3rem;
    align-items: end;
}

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

.hero h1 {
    max-width: 13ch;
    font-size: 4.9rem;
    line-height: 0.98;
}

.hero-visual {
    justify-self: end;
    width: 100%;
    max-width: 420px;
}

.hero-card {
    max-width: none;
    padding: 1.35rem;
}

.hero-card ul {
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.hero-card li {
    padding-top: 0.55rem;
}

.hero-card-footer {
    display: none;
}

.hero-proof {
    margin-top: 1rem;
}

.signal-pill,
.outcome-card,
.service-card,
.step,
.resource-card,
blockquote,
.contact-panel,
.contact-form {
    border-color: rgba(64, 56, 46, 0.09);
}

.section {
    padding-top: 5.8rem;
    padding-bottom: 5.8rem;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        justify-self: start;
        max-width: 680px;
    }

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

@media (max-width: 760px) {
    .hero {
        padding: 5.2rem 0 3.2rem;
    }

    .hero h1 {
        max-width: 12ch;
        font-size: 3.25rem;
    }

    .hero-visual {
        max-width: none;
    }

    .hero-card {
        padding: 1.05rem;
    }

    .section {
        padding-top: 4.1rem;
        padding-bottom: 4.1rem;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: 2.55rem;
    }

    .lead {
        font-size: 0.98rem;
    }
}

/* Refined visual pass */
:root {
    --bg: #f7f4ee;
    --bg-deep: #e6ded0;
    --surface: rgba(255, 254, 250, 0.84);
    --surface-strong: rgba(255, 254, 250, 0.96);
    --surface-dark: rgba(34, 47, 38, 0.94);
    --primary: #31483a;
    --primary-deep: #223126;
    --secondary: #9b6335;
    --secondary-soft: #c69a6d;
    --text: #2f2a24;
    --muted: #6f665b;
    --border: rgba(64, 56, 46, 0.11);
    --border-strong: rgba(64, 56, 46, 0.2);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --shadow-soft: 0 18px 44px rgba(44, 35, 24, 0.08);
    --shadow-strong: 0 28px 70px rgba(28, 24, 18, 0.16);
    --shadow-card: 0 14px 34px rgba(44, 35, 24, 0.08);
    --section-gap: clamp(4.8rem, 7vw, 7.8rem);
}

body {
    letter-spacing: 0;
    background:
        linear-gradient(180deg, #fbfaf6 0%, #f4efe7 46%, #e8dece 100%);
}

h1,
h2,
h3,
h4,
p,
li,
.btn,
.logo,
.nav-links a {
    letter-spacing: 0;
}

.navbar {
    background: rgba(34, 49, 38, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-shell {
    min-height: 74px;
}

.logo {
    color: #fff8ee;
    font-size: 1.48rem;
    animation: none;
}

.nav-links {
    gap: 1.55rem;
}

.nav-links a {
    color: rgba(255, 248, 238, 0.84);
    font-size: 0.9rem;
    font-weight: 600;
}

.btn {
    border-radius: 10px;
    background: #8d5a32;
    box-shadow: 0 14px 30px rgba(91, 54, 28, 0.18);
}

.btn:hover,
.btn:focus-visible {
    box-shadow: 0 18px 36px rgba(91, 54, 28, 0.22);
}

.btn-ghost {
    color: #fff8ef;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.32);
}

.btn-earth {
    background: #31483a;
}

.hero {
    min-height: min(760px, calc(100vh - 74px));
    display: grid;
    align-items: end;
    padding: clamp(7rem, 10vw, 10rem) 0 clamp(3.2rem, 6vw, 5rem);
    background:
        linear-gradient(90deg, rgba(24, 32, 25, 0.82) 0%, rgba(24, 32, 25, 0.62) 42%, rgba(24, 32, 25, 0.2) 100%),
        linear-gradient(180deg, rgba(24, 32, 25, 0.18), rgba(24, 32, 25, 0.72)),
        url("https://images.unsplash.com/photo-1593811167562-9cef47bfc4d7?q=80&w=1800&auto=format&fit=crop") center / cover;
}

.hero-glow,
.hero-wave,
.hero-orbit {
    display: none;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.94fr);
    gap: 2rem;
    align-items: end;
}

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

.eyebrow,
.section-kicker,
.card-kicker {
    letter-spacing: 0.12em;
    font-size: 0.74rem;
}

.eyebrow {
    color: #e8caa7;
}

.hero h1 {
    max-width: 12ch;
    margin-bottom: 1.05rem;
    color: #fffaf2;
    font-size: clamp(3rem, 7.4vw, 6.8rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.lead {
    max-width: 56ch;
    color: rgba(255, 248, 238, 0.9);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-cta {
    margin-top: 1.7rem;
}

.hero-proof {
    margin-top: 1.2rem;
}

.hero-proof span {
    color: rgba(255, 245, 231, 0.86);
}

.hero-visual {
    min-height: 0;
    max-width: 760px;
}

.hero-stack {
    display: block;
    min-height: 0;
}

.hero-card {
    width: 100%;
    max-width: 720px;
    padding: 1.15rem 1.25rem;
    border-radius: 14px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 252, 246, 0.9);
    box-shadow: 0 20px 56px rgba(20, 18, 14, 0.18);
}

.hero-card h2 {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.hero-card p,
.hero-card li {
    color: #63594e;
}

.hero-card ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0.95rem 0 0;
    list-style: none;
}

.hero-card li {
    padding-top: 0.65rem;
    border-top: 1px solid rgba(64, 56, 46, 0.12);
}

.hero-card-footer {
    margin-top: 1rem;
}

.floating-note {
    display: none;
}

.hero-highlights {
    padding: 1.2rem 0 2rem;
    background: #fbfaf6;
}

.signal-pill {
    border-radius: 12px;
    background: #fffdf8;
    box-shadow: none;
}

.section {
    padding: var(--section-gap) 0;
}

.section-divider {
    display: none;
}

.about,
.outcomes,
.doshas,
.services,
.method,
.testimonials,
.resources,
.faq,
.cta-band,
.contact {
    background: transparent;
}

.section-heading,
.doshas-heading {
    max-width: 820px;
}

.about h2,
.outcomes h2,
.doshas h2,
.services h2,
.method h2,
.authority h2,
.testimonials h2,
.resources h2,
.faq h2,
.contact h2 {
    color: #302a22;
    font-size: clamp(2.15rem, 4.2vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0;
}

.hero-card,
.bio-card,
.outcome-card,
.service-card,
.step,
blockquote,
.resource-card,
.faq details,
.authority-card,
.contact-panel,
.contact-form,
.dosha-note,
.service-note,
.dosha-quiz,
.quiz-result,
.cta-band-shell,
.cta-band-actions {
    border-radius: 14px;
    background: rgba(255, 254, 250, 0.9);
    box-shadow: 0 12px 32px rgba(44, 35, 24, 0.07);
}

.hero-card::before,
.bio-card::before,
.outcome-card::before,
.service-card::before,
.step::before,
blockquote::before,
.resource-card::before,
.authority-card::before,
.contact-panel::before,
.contact-form::before {
    display: none;
}

.hero-card:hover,
.bio-card:hover,
.outcome-card:hover,
.service-card:hover,
.step:hover,
blockquote:hover,
.resource-card:hover,
.authority-card:hover,
.contact-panel:hover,
.contact-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 54px rgba(44, 35, 24, 0.12);
}

.practitioner-photo {
    border-radius: 18px;
}

.dosha-card {
    border-radius: 16px;
}

.dosha-content {
    border-radius: 14px;
}

.authority {
    color: #f7efe2;
    background: #24352a;
}

.authority h2,
.authority-card h3 {
    color: #fff8ec;
}

.authority p,
.authority-card li {
    color: rgba(255, 246, 232, 0.78);
}

.authority-card {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.cta-band-shell {
    background:
        linear-gradient(135deg, rgba(36, 53, 42, 0.95), rgba(92, 79, 58, 0.92)),
        url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?q=80&w=1400&auto=format&fit=crop") center / cover;
}

.cta-band-shell h2,
.cta-band-shell .section-kicker {
    color: #fff8ec;
}

.cta-band-shell p {
    color: rgba(255, 246, 232, 0.82);
}

.cta-band-actions {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
}

.footer {
    background: #1f2e25;
}

@media (max-width: 980px) {
    .nav-shell {
        min-height: 70px;
    }

    .hero {
        min-height: auto;
        padding-top: 6.2rem;
    }

    .hero h1 {
        max-width: 10.8ch;
    }

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

@media (max-width: 760px) {
    .hero {
        padding: 5.2rem 0 3rem;
        background-position: 58% center;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(2.85rem, 14vw, 4.6rem);
    }

    .hero-card {
        padding: 1rem;
    }

    .hero-card-footer {
        align-items: flex-start;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: clamp(2.55rem, 13.5vw, 3.5rem);
    }

    .hero-proof {
        gap: 0.3rem;
    }
}

*,
*::before,
*::after {
    letter-spacing: 0 !important;
}

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

.about h2,
.outcomes h2,
.doshas h2,
.services h2,
.method h2,
.authority h2,
.testimonials h2,
.resources h2,
.faq h2,
.contact h2 {
    font-size: 3.6rem;
}

.hero-card h2 {
    font-size: 1.62rem;
}

.lead {
    font-size: 1.08rem;
}

@media (max-width: 1100px) {
    .hero h1 {
        font-size: 4.8rem;
    }

    .about h2,
    .outcomes h2,
    .doshas h2,
    .services h2,
    .method h2,
    .authority h2,
    .testimonials h2,
    .resources h2,
    .faq h2,
    .contact h2 {
        font-size: 3.05rem;
    }
}

@media (max-width: 760px) {
    .hero h1 {
        font-size: 3.65rem;
    }

    .about h2,
    .outcomes h2,
    .doshas h2,
    .services h2,
    .method h2,
    .authority h2,
    .testimonials h2,
    .resources h2,
    .faq h2,
    .contact h2 {
        font-size: 2.45rem;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: 2.85rem;
    }

    .about h2,
    .outcomes h2,
    .doshas h2,
    .services h2,
    .method h2,
    .authority h2,
    .testimonials h2,
    .resources h2,
    .faq h2,
    .contact h2 {
        font-size: 2.05rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 1ms !important;
        transition-delay: 0ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Premium editorial system */
:root {
    --premium-max: 1200px;
    --premium-reading: 740px;
    --premium-section: 9rem;
    --premium-inner: 4.5rem;
}

html {
    scroll-padding-top: 96px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.82;
    color: var(--text);
    background: var(--bg);
}

h1,
h2,
h3,
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

p,
li {
    line-height: 1.82;
}

.container {
    width: min(var(--premium-max), calc(100% - 3rem));
}

.navbar {
    background: rgba(34, 49, 38, 0.86);
    backdrop-filter: blur(20px);
}

.nav-shell {
    min-height: 88px;
}

.logo {
    font-size: 1.55rem;
    font-weight: 500;
}

.nav-links {
    gap: 2rem;
}

.nav-links a {
    font-size: 0.86rem;
    font-weight: 500;
}

.btn {
    min-height: 52px;
    padding: 0.9rem 1.55rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 700ms cubic-bezier(0.16, 1, 0.3, 1), background-color 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero {
    min-height: calc(100vh - 88px);
    align-items: end;
    padding: 9rem 0 5rem;
}

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

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

.hero h1 {
    max-width: 12ch;
    margin-bottom: 1.5rem;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.04;
}

.lead {
    max-width: 680px;
    font-size: 1.18rem;
    line-height: 1.75;
}

.hero-cta {
    gap: 1rem;
    margin-top: 2.2rem;
}

.hero-proof {
    gap: 1.4rem;
    margin-top: 1.6rem;
}

.hero-proof span {
    font-size: 0.9rem;
}

.hero-visual {
    max-width: 760px;
    justify-self: start;
}

.hero-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 20px 56px rgba(28, 24, 18, 0.12);
}

.hero-card h2 {
    margin-bottom: 0.8rem;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.15;
}

.hero-card p {
    max-width: 620px;
}

.hero-card ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.6rem;
}

.hero-card li {
    font-size: 0.95rem;
    line-height: 1.65;
}

.hero-highlights {
    padding: 4rem 0 0;
}

.hero-metrics,
.outcomes-grid,
.services-grid,
.steps,
.resources-grid,
.testimonials-grid {
    gap: 1.4rem;
}

.signal-pill,
.outcome-card,
.service-card,
.step,
.resource-card,
.faq details,
.contact-panel,
.contact-form,
blockquote,
.bio-card,
.authority-card,
.dosha-note,
.service-note,
.dosha-quiz,
.quiz-result {
    border-radius: 10px;
    border-color: var(--border);
    background: var(--surface-strong);
    box-shadow: 0 10px 30px rgba(44, 35, 24, 0.045);
}

.signal-pill {
    padding: 1.6rem;
}

.signal-pill strong {
    margin-bottom: 0.45rem;
    font-size: 1rem;
}

.section {
    padding: var(--premium-section) 0;
}

.section-heading,
.doshas-heading,
.quiz-intro,
.method-copy,
.resources-intro {
    max-width: var(--premium-reading);
}

.section-intro {
    max-width: var(--premium-reading);
    font-size: 1.12rem;
    line-height: 1.82;
}

.about h2,
.outcomes h2,
.doshas h2,
.quiz h2,
.services h2,
.method h2,
.authority h2,
.testimonials h2,
.resources h2,
.faq h2,
.contact h2 {
    margin-bottom: 1.3rem;
    font-size: 3.3rem;
    font-weight: 300;
    line-height: 1.08;
}

.eyebrow,
.section-kicker,
.card-kicker,
.resource-card span {
    margin-bottom: 1.2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em !important;
}

.about-grid,
.contact-shell,
.authority-grid,
.resources-shell,
.method-grid,
.quiz-shell {
    gap: 5rem;
}

.about-copy p,
.resources-intro p,
.method-copy p,
.contact-panel p {
    max-width: var(--premium-reading);
}

.credentials {
    gap: 0.8rem;
    margin-top: 2rem;
}

.credentials span,
.contact-assurance span {
    min-height: 42px;
    border-radius: 8px;
}

.practitioner-photo {
    min-height: 560px;
    border-radius: 10px;
    box-shadow: 0 24px 64px rgba(44, 35, 24, 0.12);
}

.practitioner-photo img {
    min-height: 560px;
}

.bio-card,
.outcome-card,
.service-card,
.step,
.resource-card,
.contact-panel,
.contact-form,
.authority-card {
    padding: 2rem;
}

.outcome-card span,
.step span {
    width: auto;
    height: auto;
    margin-bottom: 1.8rem;
    border-radius: 0;
    background: transparent;
    font-size: 0.78rem;
}

.outcome-card h3,
.service-card h3,
.step h3,
.resource-card h3,
.authority-card h3 {
    margin-bottom: 0.9rem;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.18;
}

.doshas-grid {
    gap: 2rem;
    margin-top: 3rem;
}

.dosha-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-strong);
    transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), border-color 800ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.dosha-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 22px 54px rgba(44, 35, 24, 0.08);
}

.dosha-image img {
    width: min(100%, 220px);
    filter: drop-shadow(0 18px 34px rgba(44, 35, 24, 0.1));
}

.dosha-content {
    padding: 1.8rem 0 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dosha-content h3 {
    font-size: 2rem;
    font-weight: 400;
}

.dosha-content p,
.dosha-content li {
    font-size: 1rem;
}

.dosha-note,
.service-note {
    margin-top: 2.8rem;
    padding: 1.4rem 1.6rem;
}

.quiz-shell {
    align-items: start;
}

.dosha-quiz,
.quiz-result {
    padding: 2rem;
}

.dosha-quiz fieldset {
    padding: 1.4rem;
    border-radius: 10px;
}

.dosha-quiz label {
    border-radius: 8px;
}

.authority {
    padding: 9rem 0;
}

.testimonial-metrics {
    gap: 1rem;
    margin: 3rem 0 2rem;
}

.testimonial-metrics article {
    padding: 1.5rem;
    border-radius: 10px;
}

.testimonials-grid {
    margin-top: 2.2rem;
}

blockquote {
    padding: 2.4rem;
}

blockquote p {
    color: #4c4238;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.28;
}

blockquote cite {
    margin-top: 1.8rem;
    font-size: 0.88rem;
}

.faq-shell {
    gap: 5rem;
}

.faq details {
    padding: 1.5rem 1.6rem;
}

.faq summary {
    font-size: 1rem;
}

.cta-band-shell {
    padding: 4rem;
    border-radius: 12px;
}

.cta-band-actions {
    padding: 1.8rem;
    border-radius: 10px;
}

.contact-panel,
.contact-form {
    padding: 2.4rem;
}

.contact-points {
    gap: 1.2rem;
    margin-top: 2rem;
}

.contact-form {
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    min-height: 54px;
    border-radius: 8px;
}

.footer {
    padding: 5rem 0;
}

.footer-shell {
    align-items: end;
    gap: 3rem;
}

.footer-mark {
    margin-bottom: 0.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 400;
}

[data-reveal] {
    transition:
        opacity 850ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1100px) {
    :root {
        --premium-section: 7rem;
    }

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

    .about h2,
    .outcomes h2,
    .doshas h2,
    .quiz h2,
    .services h2,
    .method h2,
    .authority h2,
    .testimonials h2,
    .resources h2,
    .faq h2,
    .contact h2 {
        font-size: 2.9rem;
    }

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

    .about-grid,
    .contact-shell,
    .authority-grid,
    .resources-shell,
    .method-grid,
    .quiz-shell,
    .faq-shell {
        gap: 3rem;
    }
}

@media (max-width: 760px) {
    :root {
        --premium-section: 5.4rem;
    }

    body {
        font-size: 1rem;
    }

    .container {
        width: min(100% - 1.4rem, var(--premium-max));
    }

    .nav-shell {
        min-height: 72px;
    }

    .hero {
        min-height: auto;
        padding: 5.8rem 0 3.8rem;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: 3.15rem;
    }

    .lead {
        font-size: 1rem;
    }

    .hero-card,
    .bio-card,
    .outcome-card,
    .service-card,
    .step,
    .resource-card,
    .contact-panel,
    .contact-form,
    .authority-card,
    blockquote,
    .dosha-card,
    .dosha-quiz,
    .quiz-result {
        padding: 1.4rem;
    }

    .hero-metrics {
        gap: 0.8rem;
    }

    .about h2,
    .outcomes h2,
    .doshas h2,
    .quiz h2,
    .services h2,
    .method h2,
    .authority h2,
    .testimonials h2,
    .resources h2,
    .faq h2,
    .contact h2 {
        font-size: 2.35rem;
    }

    .practitioner-photo,
    .practitioner-photo img {
        min-height: 360px;
    }

    blockquote p {
        font-size: 1.45rem;
    }

    .cta-band-shell {
        padding: 2rem;
    }

    .footer {
        padding: 4rem 0 6rem;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 1.1rem, var(--premium-max));
    }

    .logo {
        font-size: 1.22rem;
    }

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

    .about h2,
    .outcomes h2,
    .doshas h2,
    .quiz h2,
    .services h2,
    .method h2,
    .authority h2,
    .testimonials h2,
    .resources h2,
    .faq h2,
    .contact h2 {
        font-size: 2rem;
    }

    .hero-proof {
        gap: 0.45rem;
    }

    .signal-pill,
    .hero-card,
    .bio-card,
    .outcome-card,
    .service-card,
    .step,
    .resource-card,
    .contact-panel,
    .contact-form,
    .authority-card,
    blockquote,
    .dosha-card {
        border-radius: 9px;
    }
}

/* Premium refinement v2 */
:root {
    --premium-section: 10rem;
    --premium-reading: 720px;
}

body {
    font-size: 1.12rem;
}

.hero {
    min-height: 92vh;
    padding: 8.5rem 0 5.5rem;
    background:
        linear-gradient(90deg, rgba(24, 32, 25, 0.86) 0%, rgba(24, 32, 25, 0.58) 44%, rgba(24, 32, 25, 0.18) 100%),
        linear-gradient(180deg, rgba(24, 32, 25, 0.08), rgba(24, 32, 25, 0.72)),
        url("https://images.unsplash.com/photo-1600618528240-fb9fc964b853?q=80&w=1800&auto=format&fit=crop") center / cover;
}

.hero-grid {
    min-height: calc(92vh - 14rem);
    display: grid;
    align-content: end;
}

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

.hero h1 {
    max-width: 11.5ch;
    font-size: 5.65rem;
    line-height: 1;
}

.lead {
    max-width: 590px;
    font-size: 1.12rem;
}

.hero-card {
    max-width: 640px;
    margin-top: 0.5rem;
    padding: 1.8rem 2rem;
    background: rgba(255, 254, 250, 0.88);
}

.hero-card h2 {
    font-size: 2.25rem;
}

.hero-card p {
    max-width: 560px;
}

.hero-card ul {
    gap: 1rem;
}

.btn {
    min-height: 56px;
    padding: 1rem 1.85rem;
}

.hero-cta .btn:first-child,
.cta-band .btn,
.contact-form .btn {
    background: #24352a;
    color: #fff8ec;
}

.hero-cta .btn:first-child:hover,
.cta-band .btn:hover,
.contact-form .btn:hover {
    box-shadow: 0 18px 42px rgba(20, 32, 24, 0.22);
}

.hero-highlights {
    padding: 5rem 0 0;
}

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

.signal-pill {
    padding: 2rem;
}

.outcomes {
    background: #fbfaf6;
}

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

.outcomes-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    margin-top: 4rem;
}

.outcome-card {
    min-height: 260px;
    padding: 2.4rem;
}

.outcome-card:first-child {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 540px;
}

.outcome-card:first-child h3 {
    max-width: 9ch;
    font-size: 2.7rem;
}

.about {
    background: var(--bg);
}

.about-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
}

.about-copy {
    max-width: 680px;
}

.about-copy p {
    max-width: 620px;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.credentials span {
    min-height: 64px;
    justify-content: flex-start;
    border-radius: 10px;
}

.credential-feature {
    grid-column: 1 / -1;
    min-height: 112px !important;
    padding: 1.5rem 1.65rem !important;
    color: #fff8ec !important;
    background: #24352a !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem !important;
    font-weight: 400 !important;
    line-height: 1.22;
}

.practitioner-photo {
    min-height: 620px;
}

.practitioner-photo img {
    min-height: 620px;
}

.bio-card {
    margin-top: -4.2rem;
    margin-left: 3rem;
    z-index: 2;
}

.doshas {
    background: #f4efe7;
}

.doshas-heading {
    margin-inline: auto;
    text-align: center;
}

.doshas-heading .section-intro {
    margin-inline: auto;
}

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

.dosha-card {
    padding: 2.4rem 2rem;
    min-height: 100%;
}

.dosha-image img {
    width: min(100%, 240px);
}

.dosha-content h3 {
    font-size: 2.25rem;
}

.quiz {
    background: #fbfaf6;
}

.quiz-shell {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
}

.services .section-heading {
    max-width: 860px;
}

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

.service-card {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.method {
    background: #f4efe7;
}

.method-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.steps {
    display: grid;
    gap: 1rem;
}

.step {
    display: grid;
    grid-template-columns: 70px minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: start;
}

.step h3,
.step p {
    margin: 0;
}

.authority {
    padding: 10rem 0;
}

.authority-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.testimonials {
    background: #fbfaf6;
}

.testimonials .section-heading {
    max-width: 900px;
}

.testimonial-metrics {
    display: none;
}

.testimonials-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 1rem;
    margin-top: 4rem;
}

blockquote {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
}

blockquote:first-child {
    min-height: 460px;
}

blockquote::after {
    content: "“";
    position: absolute;
    top: 1rem;
    right: 1.8rem;
    color: rgba(155, 99, 53, 0.16);
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    line-height: 1;
}

blockquote p {
    position: relative;
    z-index: 1;
    font-size: 2rem;
}

blockquote:first-child p {
    font-size: 2.45rem;
}

.resources-shell {
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
}

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

.resource-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.resource-card span {
    margin: 0;
}

.faq {
    background: #f4efe7;
}

.faq-shell {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.cta-band-shell {
    min-height: 420px;
    align-items: end;
}

.contact {
    background: #fbfaf6;
}

.contact-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.footer-shell {
    min-height: 160px;
}

@media (max-width: 1100px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .outcomes-grid,
    .doshas-grid,
    .services-grid,
    .testimonials-grid,
    .quiz-shell,
    .method-grid,
    .resources-shell,
    .faq-shell,
    .contact-shell,
    .about-grid,
    .authority-grid {
        grid-template-columns: 1fr;
    }

    .outcome-card:first-child {
        grid-row: auto;
        min-height: 340px;
    }

    .service-card {
        min-height: 260px;
    }

    .step {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .step p {
        grid-column: 2;
    }

    .bio-card {
        margin: 1rem 0 0;
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: 90vh;
        padding: 6rem 0 3rem;
    }

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

    .hero-card {
        padding: 1.35rem;
    }

    .credentials,
    .resource-card {
        grid-template-columns: 1fr;
    }

    .credential-feature {
        min-height: auto !important;
        font-size: 1.35rem !important;
    }

    .practitioner-photo,
    .practitioner-photo img {
        min-height: 420px;
    }

    blockquote,
    blockquote:first-child {
        min-height: auto;
        padding: 2rem;
    }

    blockquote p,
    blockquote:first-child p {
        font-size: 1.65rem;
    }

    .cta-band-shell {
        min-height: auto;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: 2.72rem;
    }

    .hero-card h2,
    .dosha-content h3 {
        font-size: 1.78rem;
    }
}

/* Premium refinement v3 */
body {
    font-family: 'Manrope', sans-serif;
}

h1,
h2,
h3,
.logo,
blockquote p,
.credential-feature,
.footer-mark {
    font-family: 'Libre Caslon Display', 'Cormorant Garamond', serif !important;
}

.navbar {
    background: rgba(34, 49, 38, 0.78);
}

.hero {
    min-height: 94vh;
    padding: 10rem 0 6rem;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(24, 32, 25, 0.88) 0%, rgba(24, 32, 25, 0.58) 38%, rgba(24, 32, 25, 0.08) 100%),
        linear-gradient(180deg, rgba(24, 32, 25, 0.02), rgba(24, 32, 25, 0.66)),
        url("https://images.unsplash.com/photo-1600618528240-fb9fc964b853?q=80&w=1800&auto=format&fit=crop") center / cover;
}

.hero-grid {
    min-height: auto;
    max-width: 980px;
    align-content: center;
}

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

.hero h1 {
    max-width: 10.6ch;
    font-size: 6.4rem;
    font-weight: 400;
    line-height: 0.96;
}

.lead {
    max-width: 540px;
    font-size: 1.08rem;
}

.hero-cta {
    margin-top: 2.6rem;
}

.hero-proof {
    margin-top: 2rem;
}

.hero-visual {
    display: none;
}

.hero-highlights {
    padding: 6rem 0 0;
}

.signal-pill {
    padding: 2.3rem;
    background: transparent;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none;
}

.signal-pill strong {
    font-family: 'Libre Caslon Display', 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
}

.outcomes .section-heading,
.services .section-heading,
.testimonials .section-heading {
    max-width: 980px;
}

.outcomes .section-heading h2,
.services .section-heading h2,
.testimonials .section-heading h2 {
    max-width: 12ch;
    font-size: 4.2rem;
}

.about h2,
.doshas h2,
.quiz h2,
.method h2,
.authority h2,
.resources h2,
.faq h2,
.contact h2 {
    font-size: 3.8rem;
}

.about-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
    gap: 6rem;
}

.credential-feature {
    min-height: 136px !important;
    font-size: 2.05rem !important;
}

.credentials span:not(.credential-feature) {
    background: transparent;
    border-radius: 0;
    border-width: 0 0 1px;
}

.doshas-grid {
    gap: 1.8rem;
}

.dosha-card {
    padding: 3rem 2.2rem;
    box-shadow: none;
}

.dosha-card:hover {
    box-shadow: 0 24px 56px rgba(44, 35, 24, 0.07);
}

.services-grid {
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-card {
    border-width: 0 1px 0 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.service-card:last-child {
    border-right: 0;
}

.testimonials-grid {
    grid-template-columns: 1.35fr 0.85fr 0.85fr;
    gap: 0;
    border: 1px solid var(--border);
}

blockquote {
    border: 0;
    border-right: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

blockquote:last-child {
    border-right: 0;
}

blockquote p {
    font-size: 2.2rem;
    line-height: 1.18;
}

blockquote:first-child p {
    font-size: 2.85rem;
}

.contact-shell {
    gap: 6rem;
}

.contact-panel {
    background: transparent;
    border-width: 0;
    box-shadow: none;
}

.contact-form {
    box-shadow: 0 22px 58px rgba(44, 35, 24, 0.08);
}

[data-reveal] {
    transform: translateY(28px);
    transition:
        opacity 820ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1100px) {
    .hero h1 {
        font-size: 5rem;
    }

    .about-grid,
    .contact-shell {
        gap: 3.5rem;
    }

    .services-grid,
    .testimonials-grid {
        gap: 1rem;
        border: 0;
    }

    .service-card,
    blockquote {
        border: 1px solid var(--border);
        border-radius: 10px;
        background: var(--surface-strong);
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: 92vh;
        padding: 7rem 0 4rem;
    }

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

    .lead {
        max-width: 28rem;
    }

    .outcomes .section-heading h2,
    .services .section-heading h2,
    .testimonials .section-heading h2,
    .about h2,
    .doshas h2,
    .quiz h2,
    .method h2,
    .authority h2,
    .resources h2,
    .faq h2,
    .contact h2 {
        font-size: 2.55rem;
    }

    .credential-feature {
        font-size: 1.55rem !important;
    }

    blockquote p,
    blockquote:first-child p {
        font-size: 1.85rem;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: 3rem;
    }
}

/* Compact premium rhythm */
:root {
    --premium-section: 6.8rem;
    --section-gap: 5.8rem;
}

body {
    line-height: 1.7;
}

p,
li {
    line-height: 1.68;
}

.nav-shell {
    min-height: 76px;
}

.hero {
    min-height: 76vh;
    padding: 6.2rem 0 3.6rem;
}

.hero-grid {
    min-height: auto;
}

.hero h1 {
    max-width: 11.2ch;
    margin-bottom: 1rem;
    font-size: 5.35rem;
}

.lead {
    font-size: 1.04rem;
    line-height: 1.65;
}

.hero-cta {
    margin-top: 1.65rem;
}

.hero-proof {
    margin-top: 1.05rem;
}

.btn {
    min-height: 52px;
    padding: 0.88rem 1.55rem;
}

.hero-highlights {
    padding: 3.2rem 0 0;
}

.section {
    padding-top: var(--premium-section);
    padding-bottom: var(--premium-section);
}

.section-intro {
    margin-top: 0;
    line-height: 1.7;
}

.about h2,
.outcomes h2,
.doshas h2,
.quiz h2,
.services h2,
.method h2,
.authority h2,
.testimonials h2,
.resources h2,
.faq h2,
.contact h2,
.outcomes .section-heading h2,
.services .section-heading h2,
.testimonials .section-heading h2 {
    margin-bottom: 0.85rem;
    font-size: 3.35rem;
    line-height: 1.03;
}

.eyebrow,
.section-kicker,
.card-kicker,
.resource-card span {
    margin-bottom: 0.75rem;
}

.hero-metrics,
.outcomes-grid,
.services-grid,
.steps,
.resources-grid,
.testimonials-grid {
    gap: 0.9rem;
}

.signal-pill {
    padding: 1.35rem 1.4rem;
}

.outcomes-grid {
    margin-top: 2.4rem;
}

.outcome-card {
    min-height: 210px;
    padding: 1.65rem;
}

.outcome-card:first-child {
    min-height: 430px;
}

.outcome-card:first-child h3 {
    font-size: 2.35rem;
}

.about-grid,
.contact-shell,
.authority-grid,
.resources-shell,
.method-grid,
.quiz-shell,
.faq-shell {
    gap: 3.2rem;
}

.about-copy p {
    margin-bottom: 0.7rem;
}

.credentials {
    margin-top: 1.3rem;
    gap: 0.7rem;
}

.credentials span {
    min-height: 52px;
    padding: 0.52rem 0.75rem;
}

.credential-feature {
    min-height: 92px !important;
    padding: 1.15rem 1.25rem !important;
    font-size: 1.72rem !important;
}

.practitioner-photo,
.practitioner-photo img {
    min-height: 470px;
}

.bio-card {
    margin-top: -2.6rem;
}

.bio-card,
.outcome-card,
.service-card,
.step,
.resource-card,
.contact-panel,
.contact-form,
.authority-card {
    padding: 1.45rem;
}

.outcome-card span,
.step span {
    margin-bottom: 1rem;
}

.outcome-card h3,
.service-card h3,
.step h3,
.resource-card h3,
.authority-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.52rem;
}

.doshas-grid {
    gap: 0.9rem;
    margin-top: 2rem;
}

.dosha-card {
    padding: 1.55rem 1.25rem;
}

.dosha-image img {
    width: min(100%, 180px);
}

.dosha-image {
    gap: 0.5rem;
}

.dosha-content {
    padding-top: 1.05rem;
}

.dosha-content h3 {
    margin-bottom: 0.45rem;
    font-size: 1.75rem;
}

.dosha-content p,
.dosha-content li {
    font-size: 0.95rem;
    line-height: 1.55;
}

.dosha-content ul {
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.dosha-note,
.service-note {
    margin-top: 1.5rem;
    padding: 1rem 1.1rem;
}

.dosha-quiz,
.quiz-result {
    padding: 1.35rem;
}

.dosha-quiz fieldset {
    padding: 1rem;
}

.services-grid {
    margin-top: 2.5rem;
}

.service-card {
    min-height: 250px;
}

.step {
    grid-template-columns: 54px minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem;
}

.authority {
    padding: 6.8rem 0;
}

.testimonials-grid {
    margin-top: 2.5rem;
}

blockquote {
    min-height: 260px;
    padding: 2rem;
}

blockquote:first-child {
    min-height: 330px;
}

blockquote::after {
    top: 0.5rem;
    right: 1.2rem;
    font-size: 5.6rem;
}

blockquote p {
    font-size: 1.72rem;
}

blockquote:first-child p {
    font-size: 2.1rem;
}

blockquote cite {
    margin-top: 1.1rem;
}

.resource-card {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 1.3rem;
}

.faq details {
    padding: 1.1rem 1.2rem;
}

.cta-band-shell {
    min-height: 320px;
    padding: 2.7rem;
}

.cta-band-actions {
    padding: 1.25rem;
}

.contact-panel,
.contact-form {
    padding: 1.65rem;
}

.contact-points {
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.contact-form {
    gap: 0.85rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    min-height: 50px;
    padding: 0.78rem 0.9rem;
}

.footer {
    padding: 2.8rem 0 3.2rem;
}

.footer-shell {
    min-height: auto;
    gap: 1.5rem;
}

.footer-mark {
    margin-bottom: 0.25rem;
    font-size: 1.32rem;
}

@media (max-width: 1100px) {
    :root {
        --premium-section: 5.8rem;
    }

    .hero {
        min-height: 74vh;
    }

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

    .outcome-card:first-child {
        min-height: 280px;
    }

    .service-card {
        min-height: 210px;
    }
}

@media (max-width: 760px) {
    :root {
        --premium-section: 4.3rem;
    }

    .hero {
        min-height: 78vh;
        padding: 5.2rem 0 2.8rem;
    }

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

    .hero-cta {
        margin-top: 1.25rem;
    }

    .hero-highlights {
        padding-top: 2.4rem;
    }

    .about h2,
    .outcomes h2,
    .doshas h2,
    .quiz h2,
    .services h2,
    .method h2,
    .authority h2,
    .testimonials h2,
    .resources h2,
    .faq h2,
    .contact h2,
    .outcomes .section-heading h2,
    .services .section-heading h2,
    .testimonials .section-heading h2 {
        font-size: 2.35rem;
    }

    .practitioner-photo,
    .practitioner-photo img {
        min-height: 320px;
    }

    .bio-card {
        margin-top: 0.8rem;
    }

    .dosha-card {
        padding: 1.15rem;
    }

    .dosha-image img {
        width: min(100%, 150px);
    }

    blockquote,
    blockquote:first-child {
        min-height: auto;
        padding: 1.45rem;
    }

    blockquote p,
    blockquote:first-child p {
        font-size: 1.45rem;
    }

    .cta-band-shell {
        min-height: auto;
        padding: 1.65rem;
    }

    .footer {
        padding: 2.5rem 0 5.2rem;
    }
}

@media (max-width: 430px) {
    .hero {
        min-height: 76vh;
    }

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

    .lead {
        font-size: 0.96rem;
    }
}

/* Benefits card redesign */
.outcomes {
    background:
        radial-gradient(circle at 88% 12%, rgba(155, 99, 53, 0.045), transparent 22%),
        #fbfaf6;
}

.outcomes .section-heading {
    max-width: 780px;
    margin-left: 0;
}

.outcomes .section-heading h2 {
    max-width: 16ch;
    font-size: 3rem;
    line-height: 1.08;
}

.outcomes-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
}

.outcome-card,
.outcome-card:first-child {
    min-height: 260px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: start;
    padding: 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(64, 56, 46, 0.1);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 254, 250, 0.94), rgba(255, 254, 250, 0.86));
    box-shadow: 0 10px 24px rgba(44, 35, 24, 0.035);
}

.outcome-card::before {
    display: block;
    content: "";
    position: absolute;
    right: -1.8rem;
    bottom: -2rem;
    width: 9rem;
    height: 9rem;
    border: 1px solid rgba(155, 99, 53, 0.1);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(155, 99, 53, 0.06), transparent 58%);
    opacity: 1;
    pointer-events: none;
}

.outcome-card::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 3.8rem;
    height: 3.8rem;
    opacity: 0.1;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 48%, #24352a 49%, #24352a 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, #24352a 49%, #24352a 51%, transparent 52%);
    border-radius: 50%;
}

.outcome-card:nth-child(2)::after {
    border: 1px solid #24352a;
    background:
        linear-gradient(135deg, transparent 46%, #24352a 48%, #24352a 52%, transparent 54%);
}

.outcome-card:nth-child(3)::after {
    background:
        radial-gradient(circle at 65% 35%, transparent 34%, #24352a 36%, #24352a 40%, transparent 42%);
}

.outcome-card:nth-child(4)::after {
    border-radius: 999px;
    background:
        linear-gradient(90deg, transparent 46%, #24352a 47%, #24352a 53%, transparent 54%),
        radial-gradient(circle, #24352a 10%, transparent 12%);
}

.outcome-card span {
    position: relative;
    z-index: 1;
    margin-bottom: 1.15rem;
    color: rgba(47, 42, 36, 0.46);
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
}

.outcome-card span::after {
    content: "";
    display: block;
    width: 2.2rem;
    height: 1px;
    margin-top: 0.72rem;
    background: rgba(155, 99, 53, 0.28);
}

.outcome-card h3,
.outcome-card:first-child h3 {
    position: relative;
    z-index: 1;
    max-width: 12ch;
    margin-bottom: 0.65rem;
    color: #302a22;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.08;
}

.outcome-card p {
    position: relative;
    z-index: 1;
    align-self: end;
    max-width: 28ch;
    margin-top: 1.2rem;
    color: #6f665b;
    font-size: 0.95rem;
    line-height: 1.58;
}

.outcome-card:hover {
    transform: translateY(-3px);
    border-color: rgba(155, 99, 53, 0.22);
    box-shadow: 0 18px 34px rgba(44, 35, 24, 0.06);
}

@media (max-width: 1100px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .outcome-card,
    .outcome-card:first-child {
        min-height: 230px;
    }

    .outcome-card h3,
    .outcome-card:first-child h3 {
        font-size: 1.85rem;
    }
}

@media (max-width: 760px) {
    .outcomes .section-heading h2 {
        font-size: 2.35rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .outcome-card,
    .outcome-card:first-child {
        min-height: 0;
        padding: 1.2rem;
    }

    .outcome-card h3,
    .outcome-card:first-child h3 {
        max-width: 16ch;
        font-size: 1.75rem;
    }

    .outcome-card p {
        max-width: none;
        margin-top: 0.8rem;
    }
}

@media (max-width: 430px) {
    .outcomes .section-heading h2 {
        font-size: 2rem;
    }

    .outcome-card h3,
    .outcome-card:first-child h3 {
        font-size: 1.55rem;
    }
}

/* Method section fix */
.method {
    background: #f4efe7;
}

.method-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 3rem;
    align-items: start;
}

.method-copy {
    position: sticky;
    top: 108px;
}

.method-copy h2 {
    max-width: 12ch;
    margin-bottom: 0.85rem;
    font-size: 3.05rem;
}

.method-copy .section-intro {
    max-width: 34rem;
    font-size: 1rem;
}

.steps {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(64, 56, 46, 0.12);
}

.step {
    display: grid;
    grid-template-columns: 4.25rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
    min-height: 0;
    padding: 1.45rem 0;
    border: 0;
    border-bottom: 1px solid rgba(64, 56, 46, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.step::before {
    display: none;
}

.step span {
    grid-row: 1 / 3;
    width: 2.6rem;
    height: 2.6rem;
    margin: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(155, 99, 53, 0.24);
    border-radius: 50%;
    color: #9b6335;
    background: rgba(255, 254, 250, 0.55);
    font-size: 0.8rem;
    font-weight: 600;
}

.step h3 {
    margin: 0 0 0.3rem;
    color: #302a22;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.12;
}

.step p {
    grid-column: 2;
    max-width: 40rem;
    margin: 0;
    color: #6f665b;
    font-size: 0.98rem;
    line-height: 1.62;
}

.step:hover {
    transform: none;
    border-color: rgba(155, 99, 53, 0.24);
    box-shadow: none;
}

@media (max-width: 900px) {
    .method-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .method-copy {
        position: static;
    }

    .method-copy h2 {
        max-width: 16ch;
        font-size: 2.45rem;
    }
}

@media (max-width: 520px) {
    .step {
        grid-template-columns: 3.2rem minmax(0, 1fr);
        gap: 0.85rem;
        padding: 1.2rem 0;
    }

    .step span {
        width: 2.25rem;
        height: 2.25rem;
    }

    .step h3 {
        font-size: 1.42rem;
    }
}
