* {
    box-sizing: border-box;
}

:root {
    --bg: #050505;
    --bg-soft: #0b0a08;
    --panel: #141217;
    --panel-soft: #19161d;
    --gold: #c59d5f;
    --gold-light: #f3d29a;
    --text: #f6efe5;
    --muted: #cfc4b6;
    --muted-soft: #a99d90;
    --line: rgba(197, 157, 95, 0.28);
    --line-strong: rgba(197, 157, 95, 0.55);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at 80% 5%, rgba(197, 157, 95, 0.16), transparent 32%),
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.05), transparent 24%),
        linear-gradient(180deg, #090806 0%, #050505 52%, #090806 100%);
    color: var(--text);
    margin: 0;
    line-height: 1.75;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: 0.28;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(197, 157, 95, 0.18);
}

.nav {
    max-width: 1240px;
    margin: auto;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.12rem, 2vw, 1.68rem);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.nav-links a {
    color: rgba(246, 239, 229, 0.76);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold-light);
    text-decoration: none;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0.15em;
    bottom: -7px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: 0.2s ease;
}

.nav-links a:hover::after {
    opacity: 1;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
    padding-left: 16px;
    border-left: 1px solid rgba(197, 157, 95, 0.35);
}

.language-switcher a,
.language-switcher span {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(246, 239, 229, 0.65);
}

.language-switcher a:hover,
.language-switcher .active-language {
    color: var(--gold-light);
}

.language-switcher a::after {
    display: none;
}

.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background:
        radial-gradient(circle at top, rgba(197, 157, 95, 0.25), transparent 34%),
        radial-gradient(circle at bottom right, rgba(197, 157, 95, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(17, 17, 22, 0.92), rgba(5, 5, 6, 0.98));
    border-bottom: 1px solid rgba(197, 157, 95, 0.16);
}

.hero-content {
    max-width: 980px;
}

.page-hero {
    text-align: center;
    padding: 105px 20px 76px;
    background:
        radial-gradient(circle at top, rgba(197, 157, 95, 0.22), transparent 32%),
        linear-gradient(135deg, rgba(17, 17, 22, 0.95), rgba(5, 5, 6, 0.98));
    border-bottom: 1px solid rgba(197, 157, 95, 0.18);
}

.page-hero p {
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 12px;
    margin-bottom: 22px;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h1 {
    margin: 0;
    font-size: clamp(44px, 8vw, 88px);
    line-height: 1.02;
    letter-spacing: -1.6px;
}

.page-hero h1 {
    font-size: clamp(38px, 6vw, 66px);
}

.hero-text {
    font-size: 20px;
    color: var(--muted);
    max-width: 760px;
    margin: 28px auto 38px;
}

.hero-buttons,
.contact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    min-height: 52px;
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.95), rgba(243, 210, 154, 0.88));
    color: #0b0b0d;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: 0.22s ease;
    border: 1px solid rgba(243, 210, 154, 0.45);
}

.button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(216, 177, 111, 1), rgba(255, 225, 174, 0.95));
    text-decoration: none;
}

.secondary-button {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid rgba(197, 157, 95, 0.55);
}

.secondary-button:hover {
    background: rgba(197, 157, 95, 0.12);
    color: var(--gold-light);
}

main {
    max-width: 1120px;
    margin: auto;
    padding: 50px 22px;
}

section {
    padding: 62px 0;
}

h2 {
    font-size: clamp(30px, 4vw, 42px);
    margin: 0 0 24px;
    border-bottom: 1px solid rgba(197, 157, 95, 0.35);
    padding-bottom: 14px;
}

h3 {
    margin-top: 0;
    font-size: 24px;
    color: var(--gold-light);
}

p {
    color: var(--muted);
}

.services-grid,
.reviews-grid,
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.card,
.review-card {
    background:
        radial-gradient(circle at top right, rgba(197, 157, 95, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(197, 157, 95, 0.2);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: 0.22s ease;
}

.card:hover,
.review-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
}

.premium-card {
    border-color: rgba(197, 157, 95, 0.68);
    background:
        radial-gradient(circle at top right, rgba(197, 157, 95, 0.24), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
}

.price {
    color: var(--gold-light);
    font-size: 28px;
    font-weight: bold;
    margin: 8px 0 16px;
}

.feature-list {
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    color: var(--muted);
    margin: 10px 0;
    padding-left: 26px;
    line-height: 1.55;
}

.feature-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-light);
    font-size: 13px;
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: bold;
}

.text-link:hover {
    text-decoration: underline;
}

.stars {
    color: var(--gold-light);
    font-size: 20px;
    letter-spacing: 2px;
    margin: 0 0 15px;
}

.review-text {
    font-size: 16px;
    color: #e7ded2;
    margin-bottom: 22px;
}

.review-name {
    color: var(--gold-light);
    font-weight: bold;
    margin-bottom: 0;
}

.podcast-title {
    color: var(--gold-light);
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 18px;
}

.coming-soon {
    display: inline-block;
    margin-top: 15px;
    color: var(--gold-light);
    font-weight: bold;
    border: 1px solid rgba(197, 157, 95, 0.45);
    padding: 10px 18px;
    border-radius: 999px;
}

.podcast-preview {
    text-align: center;
}

.details-box,
.contact-box,
.note-box,
.cta-section {
    background:
        radial-gradient(circle at top right, rgba(197, 157, 95, 0.13), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(197, 157, 95, 0.28);
    border-radius: 24px;
    padding: 30px;
    margin-top: 26px;
    box-shadow: var(--shadow);
}

.details-box,
.contact-box {
    max-width: 720px;
}

.details-box p {
    margin: 7px 0;
}

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

.cta-section p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    word-break: break-word;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 38px 20px;
    background: rgba(5, 5, 6, 0.96);
    border-top: 1px solid rgba(197, 157, 95, 0.2);
}

footer p {
    color: var(--muted-soft);
    margin: 0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
}

@media (max-width: 1080px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 22px;
    }

    .nav-links {
        justify-content: flex-start;
        gap: 14px 18px;
    }

    .language-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
}

@media (max-width: 900px) {
    main {
        padding: 38px 18px;
    }

    .services-grid,
    .reviews-grid,
    .info-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .reviews-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 68vh;
        padding: 76px 18px;
    }

    .page-hero {
        padding: 78px 18px 58px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    h1 {
        font-size: clamp(38px, 13vw, 58px);
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 18px;
        margin: 22px auto 30px;
    }

    .button {
        width: 100%;
        max-width: 310px;
        padding: 15px 22px;
        text-align: center;
    }

    main {
        padding: 30px 16px;
    }

    section {
        padding: 44px 0;
    }

    h2 {
        font-size: 29px;
    }

    h3 {
        font-size: 22px;
    }

    .card,
    .review-card,
    .details-box,
    .contact-box,
    .note-box,
    .cta-section {
        padding: 24px;
        border-radius: 18px;
    }

    .price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    body {
        line-height: 1.65;
    }

    .nav {
        padding: 18px 16px;
    }

    .logo {
        white-space: normal;
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 11px;
        letter-spacing: 0.11em;
    }

    .language-switcher a,
    .language-switcher span {
        font-size: 11px;
        letter-spacing: 0.11em;
    }

    .hero {
        min-height: 60vh;
        padding: 62px 16px;
    }

    h1 {
        font-size: 40px;
    }

    .hero-text {
        font-size: 17px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 15.5px;
    }

    .card,
    .review-card,
    .details-box,
    .contact-box,
    .note-box,
    .cta-section {
        padding: 22px;
    }

    .stars {
        font-size: 18px;
    }

    footer {
        padding: 32px 16px;
    }
}

/* Step 1: pricing, booking flow and trust components */
.section-intro {
    max-width: 850px;
}

.service-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(197, 157, 95, 0.38);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(197, 157, 95, 0.08);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.service-subtitle,
.format-note {
    color: var(--muted-soft);
    font-size: 14px;
    margin-top: -10px;
}

.format-note {
    margin-top: 12px;
    font-style: italic;
}

.card > .button {
    margin-top: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.step-card {
    position: relative;
    padding-top: 66px;
}

.step-number {
    position: absolute;
    top: 24px;
    left: 28px;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 157, 95, 0.55);
    border-radius: 50%;
    color: var(--gold-light);
    font-weight: 700;
}

.step-card h3 {
    font-size: 21px;
}

.choice-box,
.review-highlight {
    background:
        radial-gradient(circle at top right, rgba(197, 157, 95, 0.16), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    border: 1px solid rgba(197, 157, 95, 0.34);
    border-radius: 24px;
    padding: 32px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.review-highlight {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.review-highlight blockquote {
    margin: 10px auto 18px;
    max-width: 760px;
    color: #ece3d7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(21px, 3vw, 30px);
    line-height: 1.55;
}

.payment-reference {
    max-width: 100%;
}

.payment-example {
    display: inline-block;
    padding: 11px 15px;
    border: 1px solid rgba(197, 157, 95, 0.32);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    color: var(--gold-light);
}

.payment-methods .card {
    height: 100%;
}

.compact-section {
    padding-top: 40px;
}

.anchor-target {
    scroll-margin-top: 125px;
}

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

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .choice-box,
    .review-highlight {
        padding: 24px;
        border-radius: 18px;
    }

    .step-card {
        padding-top: 62px;
    }
}

/* Step 2: service clarity, coaching boundaries and review context */
.nav-links a[aria-current="page"] {
    color: var(--gold-light);
}

.nav-links a[aria-current="page"]::after {
    opacity: 1;
}

.availability-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 26px auto 0;
}

.availability-line span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid rgba(197, 157, 95, 0.34);
    border-radius: 999px;
    background: rgba(197, 157, 95, 0.08);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.service-option {
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid rgba(197, 157, 95, 0.22);
}

.service-option h4 {
    margin: 0 0 6px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
}

.service-option p {
    margin: 0;
    color: var(--muted);
}

.policy-box {
    max-width: 900px;
}

.policy-box p + p {
    margin-top: 13px;
}

.review-context {
    display: inline-block;
    align-self: flex-start;
    margin: 0 0 13px;
    padding: 6px 10px;
    border: 1px solid rgba(197, 157, 95, 0.28);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(197, 157, 95, 0.07);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.reviews-grid .review-card {
    display: flex;
    flex-direction: column;
}

.reviews-grid .review-name {
    margin-top: auto;
}

.translation-note {
    margin: 6px 0 0;
    color: var(--muted-soft);
    font-size: 12px;
    font-style: italic;
}

.permission-note {
    max-width: 850px;
    margin: 16px 0 0;
    color: var(--gold-light);
    font-size: 14px;
}

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

.contact-route-grid .card {
    display: flex;
    flex-direction: column;
}

.contact-route-grid .button {
    margin-top: auto;
}

@media (max-width: 980px) {
    .contact-route-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .availability-line {
        gap: 8px;
    }

    .availability-line span {
        font-size: 10px;
        letter-spacing: 0.06em;
    }
}


/* Step 2 completion: process, review and wide-content utilities */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.process-card {
    height: 100%;
}

.review-service {
    margin: -3px 0 14px;
    color: var(--muted-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1.45;
    text-transform: uppercase;
}

.review-permission {
    max-width: 780px;
    margin: 26px auto 0;
    color: var(--muted-soft);
    font-size: 14px;
    text-align: center;
}

.wide-details {
    max-width: 100%;
}

.compact-list {
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}


/* Step 3: privacy, terms and professional disclaimer */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    margin-top: 14px;
}

.footer-links a {
    color: var(--muted-soft);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: none;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.legal-hero p:not(.eyebrow) {
    max-width: 860px;
}

.legal-main {
    max-width: 1040px;
}

.legal-content {
    background:
        radial-gradient(circle at top right, rgba(197, 157, 95, 0.11), transparent 32%),
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
    border: 1px solid rgba(197, 157, 95, 0.25);
    border-radius: 26px;
    padding: 42px 46px;
    box-shadow: var(--shadow);
}

.legal-updated {
    margin: 0 0 34px;
    color: var(--gold-light);
    font-size: 14px;
    letter-spacing: 0.04em;
}

.legal-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(197, 157, 95, 0.18);
}

.legal-section:last-of-type {
    margin-bottom: 0;
}

.legal-section h2 {
    margin: 0 0 15px;
    text-align: left;
    font-size: clamp(24px, 3vw, 32px);
}

.legal-section p:last-child,
.legal-list:last-child {
    margin-bottom: 0;
}

.legal-list {
    margin: 12px 0 0;
    padding-left: 24px;
    color: var(--muted);
}

.legal-list li {
    margin: 9px 0;
    padding-left: 4px;
}

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

.policy-links {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(197, 157, 95, 0.2);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .legal-section {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .legal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-actions .button {
        max-width: none;
    }

    .footer-links {
        gap: 10px 16px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 24px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}


/* Step 5: About-page styles moved from inline HTML into the shared stylesheet */
body.about-page {
    --bg: #050505;
    --bg-soft: #0d0b09;
    --gold: #d8aa61;
    --gold-light: #f3d49a;
    --text: #f6efe5;
    --muted: #c9beb0;
    --line: rgba(216, 170, 97, 0.28);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

body.about-page {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 78% 10%, rgba(216, 170, 97, 0.16), transparent 32%),
                radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.075), transparent 24%),
                linear-gradient(180deg, #090806 0%, #050505 48%, #090806 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
    width: 100%;
}

body.about-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 82%);
    opacity: .35;
    z-index: 0;
}


body.about-page p,
body.about-page h1,
body.about-page h2,
body.about-page h3,
body.about-page small,
body.about-page a {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

body.about-page main {
    position: relative;
    z-index: 1;
}

body.about-page main {
    max-width: 100%;
    overflow-x: hidden;
}

body.about-page .hero {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: calc(100vh - 92px);
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: clamp(34px, 6vw, 84px);
    padding: clamp(48px, 7vw, 96px) 0;
    max-width: 100%;
    overflow-x: hidden;
}

body.about-page .hero-text {
    min-width: 0;
    max-width: 100%;
}

body.about-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 26px;
    color: var(--gold-light);
    letter-spacing: .42em;
    text-transform: uppercase;
    font-size: .78rem;
    max-width: 100%;
}

body.about-page .eyebrow::before,
body.about-page .eyebrow::after {
    content: "";
    width: 44px;
    height: 1px;
    background: var(--gold);
    opacity: .75;
    flex-shrink: 0;
}

body.about-page h1,
body.about-page h2,
body.about-page h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

body.about-page h1 {
    font-size: clamp(3.1rem, 8.6vw, 7.7rem);
    line-height: .9;
    letter-spacing: .06em;
    text-transform: uppercase;
    max-width: 100%;
}

body.about-page h1 span {
    display: block;
    margin-top: .08em;
    color: var(--gold-light);
    text-shadow: 0 0 38px rgba(216, 170, 97, .18);
}

body.about-page .hero-subtitle {
    margin: 28px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.32rem);
    line-height: 1.8;
    color: rgba(246, 239, 229, .82);
    max-width: 630px;
}

body.about-page .hero-line {
    width: 160px;
    max-width: 100%;
    height: 1px;
    margin: 34px 0;
    background: linear-gradient(90deg, var(--gold), transparent);
}

body.about-page .hero-copy {
    max-width: 610px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.95;
}

body.about-page .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
    max-width: 100%;
}

body.about-page .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid rgba(216, 170, 97, .45);
    background: linear-gradient(135deg, rgba(216, 170, 97, .18), rgba(255,255,255,.035));
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .78rem;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

body.about-page .button:hover {
    transform: translateY(-2px);
    border-color: rgba(243, 212, 154, .9);
    background: linear-gradient(135deg, rgba(216, 170, 97, .28), rgba(255,255,255,.06));
}

body.about-page .button.secondary {
    background: rgba(255,255,255,.035);
    color: rgba(246,239,229,.82);
}

body.about-page .portrait-wrap {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

body.about-page .zodiac-glow {
    position: absolute;
    width: min(620px, 98vw);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(216, 170, 97, .16);
    background: radial-gradient(circle, rgba(216,170,97,.14), transparent 58%),
                conic-gradient(from 24deg, transparent, rgba(216,170,97,.20), transparent, rgba(255,255,255,.055), transparent);
    opacity: .78;
    transform: translate(46px, -12px);
}

body.about-page .zodiac-glow::before,
body.about-page .zodiac-glow::after {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px solid rgba(216,170,97,.12);
}

body.about-page .zodiac-glow::after {
    inset: 28%;
    opacity: .8;
}

body.about-page .portrait-card {
    position: relative;
    width: min(470px, 92vw);
    border-radius: 34px;
    padding: 10px;
    background: linear-gradient(145deg, rgba(243,212,154,.60), rgba(255,255,255,.06), rgba(216,170,97,.20));
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 100%;
}

body.about-page .portrait-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 33px;
    border: 1px solid rgba(255,255,255,.12);
    pointer-events: none;
    z-index: 2;
}

body.about-page .portrait-card img {
    display: block;
    width: 100%;
    border-radius: 26px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05) saturate(1.02);
}

body.about-page .signature-card {
    position: absolute;
    left: 0;
    bottom: 46px;
    padding: 22px 28px;
    border: 1px solid rgba(216,170,97,.24);
    border-radius: 24px;
    background: rgba(8, 7, 6, .68);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 55px rgba(0,0,0,.35);
    max-width: calc(100% - 20px);
}

body.about-page .signature {
    font-family: "Brush Script MT", "Segoe Script", cursive;
    color: var(--gold-light);
    font-size: 2.4rem;
    line-height: 1;
}

body.about-page .signature-card small {
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: .28em;
    color: rgba(246,239,229,.65);
    font-size: .65rem;
}

body.about-page .content {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0 96px;
    max-width: 100%;
    overflow-x: hidden;
}

body.about-page .section {
    padding: clamp(54px, 7vw, 88px) 0;
    border-top: 1px solid rgba(216,170,97,.13);
    max-width: 100%;
}

body.about-page .section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

body.about-page .section-label {
    margin: 0 0 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .32em;
    font-size: .72rem;
}

body.about-page h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: .045em;
    color: var(--text);
}

body.about-page .split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(30px, 5vw, 72px);
    align-items: start;
}

body.about-page .statement {
    padding: clamp(28px, 4vw, 42px);
    border-radius: 30px;
    border: 1px solid rgba(216,170,97,.20);
    background: linear-gradient(145deg, rgba(216,170,97,.10), rgba(255,255,255,.035)),
                rgba(255,255,255,.025);
    box-shadow: 0 22px 70px rgba(0,0,0,.26);
    max-width: 100%;
    overflow-x: hidden;
}

body.about-page .statement p {
    margin: 0 0 22px;
    color: rgba(246,239,229,.82);
    line-height: 1.95;
    font-size: 1.04rem;
}

body.about-page .statement p:last-child {
    margin-bottom: 0;
}

body.about-page .info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body.about-page .card {
    min-height: 220px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(216,170,97,.17);
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
    box-shadow: 0 18px 55px rgba(0,0,0,.22);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
    min-width: 0;
    max-width: 100%;
}

body.about-page .card:hover {
    transform: translateY(-5px);
    border-color: rgba(216,170,97,.42);
    background: linear-gradient(145deg, rgba(216,170,97,.12), rgba(255,255,255,.04));
}

body.about-page .card h3 {
    color: var(--gold-light);
    font-size: 1.55rem;
    letter-spacing: .08em;
}

body.about-page .card p {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

body.about-page .cta-section {
    text-align: center;
    border-radius: 38px;
    padding: clamp(50px, 7vw, 78px) 26px;
    border: 1px solid rgba(216,170,97,.25);
    background: radial-gradient(circle at 50% 0%, rgba(216,170,97,.18), transparent 42%),
                linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    box-shadow: var(--shadow);
    max-width: 100%;
    overflow-x: hidden;
}

body.about-page .cta-section p {
    max-width: 650px;
    margin: 22px auto 32px;
    color: var(--muted);
    line-height: 1.85;
}

@media (max-width: 980px) {
    body.about-page .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    body.about-page .portrait-wrap {
        min-height: auto;
        padding: 18px 0 60px;
    }

    body.about-page .signature-card {
        left: 16px;
        bottom: 18px;
    }

    body.about-page .split {
        grid-template-columns: 1fr;
    }

    body.about-page .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    body.about-page .hero,
body.about-page .content {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
    }

    body.about-page .hero {
        padding: 70px 0 54px;
        gap: 34px;
    }

    body.about-page .eyebrow {
        letter-spacing: .22em;
        font-size: .72rem;
        gap: 10px;
        line-height: 1.5;
    }

    body.about-page .eyebrow::before,
body.about-page .eyebrow::after {
        width: 22px;
    }

    body.about-page h1 {
        font-size: clamp(3rem, 14vw, 4.35rem);
        line-height: .98;
        letter-spacing: .015em;
        max-width: 100%;
    }

    body.about-page h1 span {
        font-size: inherit;
        max-width: 100%;
    }

    body.about-page .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 100%;
    }

    body.about-page .hero-copy {
        font-size: 1rem;
        line-height: 1.85;
        max-width: 100%;
    }

    body.about-page .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    body.about-page .button {
        width: 100%;
        min-width: 0;
        padding: 16px 18px;
        letter-spacing: .18em;
        line-height: 1.45;
    }

    body.about-page .portrait-wrap {
        padding: 10px 0 42px;
    }

    body.about-page .zodiac-glow {
        transform: none;
        width: min(420px, 92vw);
    }

    body.about-page .portrait-card {
        width: min(360px, 100%);
        border-radius: 28px;
    }

    body.about-page .signature-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: -20px;
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    body.about-page .signature {
        font-size: 2rem;
    }

    body.about-page .signature-card small {
        letter-spacing: .18em;
        line-height: 1.6;
    }

    body.about-page .content {
        padding: 12px 0 72px;
    }

    body.about-page .section {
        padding: 48px 0;
    }

    body.about-page .section-label {
        letter-spacing: .22em;
        line-height: 1.6;
    }

    body.about-page h2 {
        font-size: clamp(1.8rem, 8vw, 2.55rem);
        line-height: 1.12;
        letter-spacing: .02em;
    }

    body.about-page .statement {
        padding: 24px;
        border-radius: 24px;
    }

    body.about-page .statement p {
        font-size: 1rem;
        line-height: 1.85;
    }

    body.about-page .info-grid {
        grid-template-columns: 1fr;
    }

    body.about-page .card {
        padding: 24px;
        border-radius: 24px;
    }

    body.about-page .card h3 {
        font-size: 1.35rem;
    }

    body.about-page .cta-section {
        padding: 44px 22px;
        border-radius: 28px;
    }

    body.about-page .cta-section .hero-actions {
        align-items: stretch;
    }
}

@media (max-width: 390px) {
    body.about-page .hero,
body.about-page .content {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
    }

    body.about-page h1 {
        font-size: clamp(2.55rem, 13vw, 3.4rem);
        letter-spacing: .005em;
    }

    body.about-page .button {
        font-size: .7rem;
        letter-spacing: .14em;
    }
}


/* Step 5: shared About styling, mobile navigation, accessibility and responsive polish */
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 3000;
    padding: 11px 16px;
    border: 1px solid var(--gold-light);
    border-radius: 10px;
    background: #050505;
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(calc(-100% - 24px));
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
    outline-offset: 4px;
}

.menu-toggle {
    display: none;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 13px;
    border: 1px solid rgba(197, 157, 95, 0.46);
    border-radius: 999px;
    background: rgba(197, 157, 95, 0.08);
    color: var(--gold-light);
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-toggle-icon {
    display: inline-flex;
    width: 20px;
    height: 16px;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.menu-toggle-icon span {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
}

.nav-links a:focus-visible,
.footer-links a:focus-visible,
.text-link:focus-visible {
    border-radius: 4px;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

main,
section,
.nav,
.nav-links,
.services-grid,
.reviews-grid,
.info-grid,
.steps-grid,
.process-grid,
.card,
.review-card,
.details-box,
.contact-box,
.note-box,
.choice-box,
.review-highlight,
.legal-content {
    min-width: 0;
}

h1,
h2,
h3,
h4,
p,
li,
blockquote,
.payment-example,
.payment-reference {
    overflow-wrap: anywhere;
}

.services-grid > .card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.services-grid > .card > .button:last-child {
    align-self: flex-start;
    margin-top: auto;
}

.price {
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.payment-example {
    max-width: 100%;
}

body.about-page .centered-actions {
    justify-content: center;
}

@media (max-width: 1080px) {
    html.js .site-header {
        overflow: visible;
    }

    html.js .nav {
        position: relative;
        min-height: 64px;
        padding: 10px 22px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    html.js .logo {
        max-width: calc(100% - 112px);
        font-size: 1.08rem;
        line-height: 1.25;
        white-space: nowrap;
    }

    html.js .menu-toggle {
        display: inline-flex;
        flex-shrink: 0;
    }

    html.js .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1100;
        max-height: calc(100dvh - 64px);
        margin: 0;
        padding: 10px 22px 18px;
        overflow-y: auto;
        overscroll-behavior: contain;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: rgba(5, 5, 5, 0.985);
        border-top: 1px solid rgba(197, 157, 95, 0.18);
        border-bottom: 1px solid rgba(197, 157, 95, 0.28);
        box-shadow: 0 24px 44px rgba(0, 0, 0, 0.52);
        backdrop-filter: blur(18px);
    }

    html.js .site-header.menu-is-open .nav-links {
        display: flex;
    }

    html.js .nav-links > a {
        display: flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        padding: 11px 2px;
        border-bottom: 1px solid rgba(197, 157, 95, 0.13);
        font-size: 12px;
        line-height: 1.4;
    }

    html.js .nav-links > a::after {
        bottom: 7px;
    }

    html.js .language-switcher {
        width: 100%;
        min-height: 48px;
        margin: 8px 0 0;
        padding: 12px 2px 0;
        border-top: 1px solid rgba(197, 157, 95, 0.22);
        border-left: 0;
        justify-content: flex-start;
    }

    html.js .language-switcher a,
    html.js .language-switcher span {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        padding: 7px 4px;
    }
}

@media (max-width: 768px) {
    .hero-buttons,
    .contact-actions,
    .legal-actions {
        align-items: stretch;
    }

    .hero-buttons .button,
    .contact-actions .button,
    .legal-actions .button {
        width: 100%;
        max-width: none;
    }

    .services-grid > .card > .button:last-child {
        width: 100%;
        max-width: none;
        align-self: stretch;
    }

    .payment-example {
        display: block;
        width: 100%;
    }
}

@media (max-width: 480px) {
    html.js .nav {
        min-height: 60px;
        padding: 8px 16px;
    }

    html.js .logo {
        max-width: calc(100% - 104px);
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    html.js .nav-links {
        max-height: calc(100dvh - 60px);
        padding: 8px 16px 16px;
    }

    .card,
    .review-card,
    .details-box,
    .contact-box,
    .note-box,
    .cta-section,
    .choice-box,
    .review-highlight,
    .legal-content {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 360px) {
    html.js .logo {
        max-width: calc(100% - 64px);
        font-size: 0.92rem;
        letter-spacing: 0.08em;
    }

    .menu-toggle {
        width: 48px;
        padding: 9px;
    }

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

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Offline conversion preview — July 2026 */
.preview-banner {
    position: fixed;
    inset: 0 0 auto;
    z-index: 2500;
    min-height: 36px;
    padding: 7px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #f2d59d;
    color: #1b130a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 0.78rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.preview-banner strong {
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.is-local-preview .site-header {
    top: 36px;
}

.is-local-preview body {
    padding-top: 36px;
}

.conversion-hero {
    max-width: 1380px;
    min-height: 720px;
    margin: 0 auto;
    padding: 70px clamp(24px, 5vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
    align-items: center;
    gap: clamp(44px, 7vw, 110px);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 24% 35%, rgba(197, 157, 95, 0.16), transparent 34%),
        linear-gradient(110deg, rgba(20, 16, 12, 0.7), rgba(5, 5, 5, 0.2));
}

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

.conversion-hero h1 {
    max-width: 820px;
    margin: 16px 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.6rem, 7vw, 7.1rem);
    font-weight: 400;
    line-height: 0.93;
    letter-spacing: -0.055em;
}

.conversion-hero h1 span {
    color: var(--gold-light);
}

.conversion-hero .hero-text {
    max-width: 720px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: clamp(1.03rem, 1.55vw, 1.24rem);
    line-height: 1.72;
}

.hero-profile {
    position: relative;
    width: min(100%, 440px);
    margin: 0 auto;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 210px 210px 24px 24px;
    background: linear-gradient(145deg, rgba(243, 210, 154, 0.14), rgba(0, 0, 0, 0.54));
    box-shadow: var(--shadow);
}

.hero-profile::before {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: -1;
    border: 1px solid rgba(197, 157, 95, 0.14);
    border-radius: 230px 230px 38px 38px;
}

.hero-profile img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 195px 195px 17px 17px;
    filter: saturate(0.88) contrast(1.04);
}

.hero-profile figcaption {
    position: absolute;
    right: -26px;
    bottom: 30px;
    min-width: 260px;
    padding: 18px 22px;
    display: grid;
    gap: 2px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(10, 9, 8, 0.92);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(16px);
}

.hero-profile figcaption strong {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.hero-profile figcaption span {
    color: var(--muted-soft);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-assurances {
    margin: 30px 0 0;
    padding: 22px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    border-top: 1px solid var(--line);
    color: var(--muted-soft);
    font-size: 0.84rem;
    list-style: none;
}

.hero-assurances li::before {
    content: "✦";
    margin-right: 8px;
    color: var(--gold);
}

.proof-strip {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-top: 0;
    background: rgba(15, 13, 12, 0.78);
}

.proof-strip > div {
    min-height: 126px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.proof-strip > div:last-child {
    border-right: 0;
}

.proof-strip strong {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.proof-strip span {
    color: var(--muted-soft);
    font-size: 0.84rem;
}

.split-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
}

.section-label {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.split-intro h2,
.section-heading-row h2,
.experience-section h2,
.booking-intake h2 {
    margin-top: 0;
    font-size: clamp(2.35rem, 4.6vw, 4.5rem);
    line-height: 1.05;
}

.split-intro .statement {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading-row {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 36px;
}

.section-heading-row > p {
    max-width: 540px;
    margin: 0 0 8px;
    color: var(--muted);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.offer-card {
    position: relative;
    min-height: 500px;
    padding: 34px;
    display: flex;
    flex-direction: column;
}

.offer-card h3 {
    margin-bottom: 4px;
    font-size: clamp(1.65rem, 2.6vw, 2.25rem);
}

.offer-card .price {
    margin: 6px 0 18px;
}

.offer-card > .button {
    width: 100%;
    margin-top: auto;
}

.featured-offer {
    border-color: rgba(243, 210, 154, 0.74);
    background:
        radial-gradient(circle at 80% 0%, rgba(243, 210, 154, 0.16), transparent 35%),
        linear-gradient(180deg, rgba(42, 33, 24, 0.9), rgba(18, 15, 16, 0.96));
    transform: translateY(-12px);
}

.recommendation-badge {
    position: absolute;
    top: 0;
    right: 28px;
    padding: 8px 14px;
    color: #17100a;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 0 0 10px 10px;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mini-feature-list {
    margin: 18px 0 26px;
    padding: 18px 0 0;
    display: grid;
    gap: 9px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.88rem;
    list-style: none;
}

.mini-feature-list li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--gold-light);
}

.catalog-link {
    margin: 28px 0 0;
    text-align: center;
}

.experience-section {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(44px, 8vw, 110px);
    align-items: center;
}

.experience-copy > p:not(.section-label) {
    color: var(--muted);
}

.experience-points {
    display: grid;
    gap: 14px;
}

.experience-points .card {
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
}

.experience-points .card > span {
    grid-row: 1 / 3;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
}

.experience-points h3,
.experience-points p {
    margin: 0;
}

.experience-points p {
    color: var(--muted-soft);
}

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

.testimonial-card {
    margin: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(26, 22, 21, 0.9), rgba(12, 11, 12, 0.95));
}

.testimonial-card > p:not(.stars) {
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.62;
}

.testimonial-card footer {
    margin-top: auto;
    padding: 20px 0 0;
    display: grid;
    gap: 2px;
    border-top: 1px solid var(--line);
    background: transparent;
    text-align: left;
}

.testimonial-card footer strong {
    color: var(--gold-light);
}

.testimonial-card footer span {
    color: var(--muted-soft);
    font-size: 0.8rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid var(--line);
    background: var(--line);
}

.process-grid article {
    min-height: 220px;
    padding: 34px;
    background: #0e0c0b;
}

.process-grid article > span {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #15100b;
    background: var(--gold-light);
    border-radius: 50%;
    font-weight: 800;
}

.process-grid h3 {
    margin: 22px 0 8px;
    font-size: 1.35rem;
}

.process-grid p {
    margin: 0;
    color: var(--muted-soft);
}

.focused-cta {
    overflow: hidden;
    position: relative;
}

.focused-cta::after {
    content: "✦";
    position: absolute;
    right: 6%;
    top: 50%;
    color: rgba(243, 210, 154, 0.08);
    font-size: 16rem;
    line-height: 1;
    transform: translateY(-50%);
}

.focused-cta > * {
    position: relative;
    z-index: 1;
}

.booking-hero {
    min-height: 500px;
}

.booking-steps {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    background: rgba(15, 13, 12, 0.82);
}

.booking-steps article {
    min-height: 120px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid var(--line);
}

.booking-steps article:last-child {
    border-right: 0;
}

.booking-steps article > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: #18110b;
    background: var(--gold-light);
    border-radius: 50%;
    font-weight: 800;
}

.booking-steps article div {
    display: grid;
}

.booking-steps strong {
    color: var(--text);
}

.booking-steps small {
    color: var(--muted-soft);
    font-size: 0.8rem;
}

.launch-note {
    margin-top: 26px;
    padding: 16px 20px;
    display: flex;
    gap: 12px 22px;
    border: 1px dashed var(--line-strong);
    border-radius: 12px;
    background: rgba(197, 157, 95, 0.08);
}

.launch-note strong {
    color: var(--gold-light);
    white-space: nowrap;
}

.launch-note span {
    color: var(--muted);
}

.catalog-accordion {
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 13, 14, 0.84);
}

.catalog-accordion summary {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: var(--text);
    cursor: pointer;
    list-style: none;
}

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

.catalog-accordion summary::after {
    content: "+";
    margin-left: auto;
    color: var(--gold-light);
    font-size: 1.45rem;
}

.catalog-accordion[open] summary::after {
    content: "−";
}

.catalog-accordion summary span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
}

.catalog-accordion summary small {
    color: var(--muted-soft);
}

.catalog-list {
    border-top: 1px solid var(--line);
}

.catalog-list article {
    padding: 18px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 78px 94px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(197, 157, 95, 0.14);
}

.catalog-list article:last-child {
    border-bottom: 0;
}

.catalog-list article > div {
    display: grid;
    gap: 2px;
}

.catalog-list article span {
    color: var(--muted-soft);
    font-size: 0.84rem;
}

.catalog-list article > b {
    color: var(--gold-light);
    font-size: 1.05rem;
}

.catalog-list button {
    min-height: 40px;
    color: var(--gold-light);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
}

.catalog-list button:hover {
    color: #16100a;
    background: var(--gold-light);
}

.recommended-row {
    background: rgba(197, 157, 95, 0.07);
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(38px, 7vw, 90px);
    align-items: start;
}

.booking-form-copy {
    position: sticky;
    top: 122px;
}

.booking-form-copy > p:not(.section-label) {
    color: var(--muted);
}

.privacy-promise {
    margin-top: 28px;
    padding: 18px 20px;
    display: grid;
    gap: 4px;
    border-left: 2px solid var(--gold);
    background: rgba(197, 157, 95, 0.07);
}

.privacy-promise strong {
    color: var(--gold-light);
}

.privacy-promise span {
    color: var(--muted-soft);
    font-size: 0.86rem;
}

.booking-form-panel {
    padding: 28px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(28, 23, 21, 0.96), rgba(12, 11, 12, 0.98));
    box-shadow: var(--shadow);
}

.selected-service {
    margin-bottom: 24px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(5, 5, 5, 0.45);
}

.selected-service > span {
    grid-column: 1 / -1;
    color: var(--muted-soft);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.selected-service strong {
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.22rem;
}

.selected-service b {
    color: var(--gold-light);
    font-size: 1.1rem;
}

.intake-form {
    display: grid;
    gap: 18px;
}

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

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

.intake-form label,
.conditional-fields legend {
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 13px 14px;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 9px;
    outline: none;
    background: rgba(5, 5, 5, 0.58);
    font: inherit;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.12);
}

.intake-form select option,
.intake-form select optgroup {
    color: #17110c;
}

.conditional-fields {
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.conditional-fields small {
    color: var(--muted-soft);
}

.consent-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--muted) !important;
    font-weight: 400 !important;
}

.consent-row input {
    width: 18px;
    margin: 4px 0 0;
}

.birth-time-choice {
    margin-top: 14px;
}

.field-hint {
    display: block;
    margin-top: 8px;
    color: var(--muted-soft);
    font-size: 0.76rem;
    font-weight: 400;
    line-height: 1.5;
}

.payment-card {
    max-width: 850px;
    padding: clamp(20px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--bg-card, #171611);
}

.payment-card .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.payment-instruction {
    color: var(--muted-soft);
    font-size: 0.86rem;
}

[data-payment-link][hidden] {
    display: none !important;
}

.form-submit {
    width: 100%;
}

.form-status {
    margin: 0;
    padding: 14px 16px;
    color: #1b130a;
    border-radius: 9px;
    background: var(--gold-light);
    font-weight: 700;
}

.compact-trust-row {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
}

.compact-trust-row article {
    min-height: 140px;
    padding: 25px;
    display: grid;
    align-content: center;
    border-right: 1px solid var(--line);
}

.compact-trust-row article:last-child {
    border-right: 0;
}

.compact-trust-row strong {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.16rem;
}

.compact-trust-row span {
    color: var(--muted-soft);
    font-size: 0.84rem;
}

.payment-preview-grid {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    border-top: 1px solid var(--line);
}

.payment-preview-grid > div {
    padding: 22px;
    border: 1px solid rgba(197, 157, 95, 0.18);
    border-radius: 10px;
    background: rgba(5, 5, 5, 0.32);
}

.payment-preview-grid h3 {
    margin-top: 0;
}

.manual-payment-preview .policy-links {
    text-align: center;
}

button.button {
    font-family: inherit;
    cursor: pointer;
}

@media (max-width: 1080px) {
    .conversion-hero {
        min-height: auto;
        grid-template-columns: 1fr 360px;
        gap: 36px;
    }

    .conversion-hero h1 {
        font-size: clamp(3.3rem, 7.2vw, 5.6rem);
    }

    .hero-profile figcaption {
        right: -8px;
    }

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

    .proof-strip > div:nth-child(2) {
        border-right: 0;
    }

    .proof-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .experience-section,
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-form-copy {
        position: static;
    }
}

@media (max-width: 760px) {
    .preview-banner {
        min-height: 44px;
        padding: 7px 12px;
        gap: 7px;
        flex-direction: column;
        font-size: 0.67rem;
    }

    .preview-banner span {
        text-align: center;
    }

    .is-local-preview .site-header {
        top: 44px;
    }

    .is-local-preview body {
        padding-top: 44px;
    }

    .conversion-hero {
        padding: 52px 18px 44px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .conversion-hero h1 {
        margin-inline: auto;
        font-size: clamp(3.25rem, 15vw, 4.8rem);
    }

    .conversion-hero .hero-buttons,
    .conversion-hero .hero-assurances {
        justify-content: center;
    }

    .hero-profile {
        width: min(86vw, 360px);
        margin-top: 22px;
    }

    .hero-profile figcaption {
        right: 10px;
        bottom: 18px;
        min-width: 220px;
        text-align: left;
    }

    .proof-strip,
    .split-intro,
    .offer-grid,
    .testimonial-grid,
    .process-grid,
    .booking-steps,
    .compact-trust-row,
    .payment-preview-grid {
        grid-template-columns: 1fr;
    }

    .proof-strip > div,
    .proof-strip > div:nth-child(2),
    .compact-trust-row article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-strip > div:last-child,
    .compact-trust-row article:last-child {
        border-bottom: 0;
    }

    .section-heading-row {
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    .featured-offer {
        transform: none;
    }

    .offer-card {
        min-height: auto;
        padding: 28px 22px;
    }

    .experience-points .card {
        grid-template-columns: 42px 1fr;
        padding: 22px 18px;
    }

    .process-grid {
        gap: 1px;
    }

    .booking-steps article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .booking-steps article:last-child {
        border-bottom: 0;
    }

    .launch-note {
        flex-direction: column;
    }

    .catalog-accordion summary {
        padding: 18px;
        flex-wrap: wrap;
    }

    .catalog-accordion summary small {
        width: calc(100% - 28px);
    }

    .catalog-list article {
        padding: 18px;
        grid-template-columns: 1fr auto;
    }

    .catalog-list article > div {
        grid-column: 1 / -1;
    }

    .catalog-list button {
        min-width: 96px;
    }

    .booking-form-panel {
        padding: 20px 16px;
    }

    .form-row,
    .form-row-three {
        grid-template-columns: 1fr;
    }

    .selected-service {
        grid-template-columns: 1fr;
    }

    .selected-service b {
        margin-top: 4px;
    }
}

/* Preserve the original About layout while it shares the global stylesheet. */
body.about-page main {
    margin: 0;
    padding: 0;
}

body.about-page .hero {
    justify-content: normal;
    text-align: left;
    background: none;
    border-bottom: 0;
}

body.about-page .hero-text {
    margin: 0;
    color: inherit;
    font-size: inherit;
}

body.about-page h2 {
    padding-bottom: 0;
    border-bottom: 0;
}

body.about-page .info-grid,
body.about-page .cta-section {
    margin-top: 0;
}

body.about-page .button {
    font-weight: 400;
}


body.about-page main {
    line-height: normal;
}

@media (max-width: 620px) {
    body.about-page .portrait-wrap {
        flex-direction: column;
    }

    body.about-page .portrait-card {
        width: min(360px, 100%);
        margin: 0;
        flex: 0 0 auto;
    }
}

/* Step 5 final accessibility and layout-stability details */
#main-content {
    scroll-margin-top: 88px;
}

#main-content:focus {
    outline: none;
}


/* Astrology & Tarot Studio brand presentation */
.price-currency {
    font-size: 0.48em;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.studio-logo, html.js .studio-logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 4px;
    font-size: clamp(16px, 1.65vw, 23px);
    line-height: 1.2;
    letter-spacing: 0.045em;
}
.studio-logo-subtitle {
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.42em;
}
.conversion-hero .studio-heading {
    font-size: clamp(40px, 4.6vw, 66px);
    line-height: 1.12;
    letter-spacing: -0.025em;
}
.hero .studio-heading {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.12;
}
.studio-heading span { color: var(--gold-light); }
.studio-tagline {
    margin: 22px 0 0;
    color: var(--gold-light);
    font-size: clamp(15px, 1.6vw, 19px);
    line-height: 1.6;
}
.studio-byline {
    margin: 8px 0 22px;
    color: var(--muted);
    font-size: 15px;
    letter-spacing: 0.025em;
}
.studio-footer-brand { font-family: Georgia, 'Times New Roman', serif; }
.studio-footer-brand span { font-family: Inter, Arial, sans-serif; font-size: 12px; }
@media (max-width: 480px) {
    .studio-logo, html.js .studio-logo { font-size: 16px; letter-spacing: 0.02em; }
    .studio-logo-subtitle { font-size: 9px; }
    .conversion-hero .studio-heading { font-size: clamp(34px, 8.8vw, 43px); }
    .studio-tagline { font-size: 15px; }
}
@media (max-width: 360px) {
    .studio-logo, html.js .studio-logo { font-size: 14px; }
}
