:root {
    --rose-700: #a1105d;
    --rose-600: #c81f77;
    --rose-500: #f13d93;
    --rose-400: #ff7bb6;
    --rose-300: #ffc1de;
    --rose-200: #ffe2ef;
    --plum-900: #2a1024;
    --plum-800: #3c1632;
    --plum-700: #5b244a;
    --gold-500: #d9aa53;
    --gold-300: #f5dec0;
    --cream: #fff8fc;
    --white: #ffffff;
    --ink: #5a3551;
    --ink-soft: #845b77;
    --line: rgba(110, 45, 90, 0.14);
    --shadow-soft: 0 24px 60px rgba(126, 35, 89, 0.12);
    --shadow-strong: 0 32px 90px rgba(96, 16, 64, 0.18);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --transition: 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 24%),
        radial-gradient(circle at 85% 12%, rgba(255, 207, 230, 0.6), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 235, 245, 0.92)),
        linear-gradient(115deg, #fefcff 0%, #fff7fb 48%, #fbe8f1 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.46;
    background:
        linear-gradient(112deg, transparent 22%, rgba(255, 255, 255, 0.95) 28%, transparent 36%),
        linear-gradient(158deg, transparent 46%, rgba(212, 170, 83, 0.12) 51%, transparent 57%),
        linear-gradient(96deg, transparent 68%, rgba(255, 255, 255, 0.85) 73%, transparent 79%);
    mix-blend-mode: screen;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

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

.section-space {
    padding: 112px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(241, 61, 147, 0.15);
    background: rgba(255, 255, 255, 0.72);
    color: var(--rose-700);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.section-heading {
    max-width: 860px;
    margin-bottom: 48px;
}

.section-heading h2,
.signature-copy h2,
.story-card h2,
.contact-copy h2 {
    margin: 18px 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--plum-900);
}

.section-heading p,
.signature-copy p,
.story-card p,
.contact-copy p,
.footer p,
.trust-grid p,
.service-box p {
    font-size: 1.02rem;
    color: var(--ink-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--rose-400));
    box-shadow: 0 18px 40px rgba(200, 31, 119, 0.28);
}

.btn-secondary {
    color: var(--plum-900);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(241, 61, 147, 0.16);
    backdrop-filter: blur(16px);
}

.btn-large {
    padding: 16px 28px;
}

.btn-submit {
    width: 100%;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    background: linear-gradient(135deg, #25d366, #14b556);
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, 0.3);
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.94);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.16);
        opacity: 0;
    }
}

.topbar {
    background: linear-gradient(90deg, var(--plum-900), var(--rose-700));
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}

.topbar-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffe8f4;
    font-weight: 700;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 248, 252, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(255, 248, 252, 0.92);
    border-color: rgba(161, 16, 93, 0.09);
    box-shadow: 0 18px 50px rgba(79, 25, 58, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-seal {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
    background: #12080f;
}

.brand-seal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-copy strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--plum-900);
}

.brand-copy small {
    color: var(--ink-soft);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 700;
}

.nav-menu a {
    position: relative;
    color: var(--plum-800);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-500), var(--gold-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.nav-cta {
    padding: 14px 22px;
}

.desktop-only {
    display: inline-flex;
}

.nav-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(241, 61, 147, 0.14);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--plum-900);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    padding: 96px 0 82px;
    overflow: clip;
}

.marble-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.7;
}

.marble-orb-one {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -40px;
    background: radial-gradient(circle, rgba(255, 200, 225, 0.75), rgba(255, 255, 255, 0));
}

.marble-orb-two {
    width: 340px;
    height: 340px;
    left: -120px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(241, 61, 147, 0.18), rgba(255, 255, 255, 0));
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(620px, 1.12fr);
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    margin: 22px 0 22px;
    max-width: 11ch;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.45rem, 4vw, 4.2rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    color: var(--plum-900);
}

.hero-copy h1 span {
    display: block;
    color: var(--rose-700);
}

.hero-lead {
    max-width: 62ch;
    font-size: 1.08rem;
    color: var(--ink-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.quick-action {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(200, 31, 119, 0.16);
    background: rgba(255, 255, 255, 0.78);
    color: var(--plum-800);
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.quick-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(161, 16, 93, 0.11);
    border-color: rgba(200, 31, 119, 0.3);
}

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

.hero-stats article,
.trust-grid article,
.service-box,
.story-aside article,
.contact-cards article {
    border: 1px solid rgba(161, 16, 93, 0.1);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.hero-stats article {
    padding: 20px;
    border-radius: var(--radius-md);
}

.hero-stats strong {
    display: block;
    font-size: 1.1rem;
    color: var(--plum-900);
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

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

.hero-logo-card {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 0;
    width: min(430px, calc(100% - 210px));
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    border-radius: 40px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 230, 241, 0.7)),
        linear-gradient(120deg, rgba(217, 170, 83, 0.12), rgba(241, 61, 147, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-strong);
}

.hero-logo-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 32px;
    border: 1px solid rgba(217, 170, 83, 0.34);
    pointer-events: none;
}

.hero-logo-frame {
    flex: 1;
    min-height: 0;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(35, 12, 26, 0.94), rgba(82, 18, 54, 0.92));
}

.hero-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-visual-caption {
    padding: 18px 22px;
    border-radius: 24px;
    background: rgba(54, 15, 40, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    box-shadow: 0 18px 36px rgba(55, 12, 39, 0.18);
    backdrop-filter: blur(16px);
}

.hero-visual-caption strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    line-height: 1;
}

.hero-visual-caption span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 239, 246, 0.86);
}

.hero-promo-card {
    position: absolute;
    top: 70px;
    right: 0;
    z-index: 2;
    width: min(190px, 31%);
    padding: 12px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(16px);
}

.hero-promo-card img {
    aspect-ratio: 528 / 790;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(130, 27, 89, 0.2);
}

.trust-strip {
    padding-bottom: 24px;
}

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

.trust-grid article {
    padding: 22px;
    border-radius: 24px;
}

.trust-grid i {
    font-size: 1.3rem;
    color: var(--rose-600);
}

.trust-grid h3 {
    margin: 14px 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    color: var(--plum-900);
}

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

.service-box {
    padding: 28px;
    border-radius: 28px;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(241, 61, 147, 0.14), rgba(217, 170, 83, 0.18));
    color: var(--rose-700);
    font-size: 1.3rem;
}

.service-box h3,
.contact-form h3 {
    margin: 18px 0 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.96;
    color: var(--plum-900);
}

.service-promo-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 222, 238, 0.78)),
        linear-gradient(120deg, rgba(241, 61, 147, 0.12), rgba(217, 170, 83, 0.14));
}

.service-promo-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 22px 42px rgba(130, 27, 89, 0.2);
}

.service-promo-image img {
    aspect-ratio: 1039 / 1280;
    height: 100%;
    object-fit: cover;
}

.service-promo-copy {
    padding: 10px 8px 10px 0;
}

.service-promo-copy .section-kicker {
    background: rgba(255, 255, 255, 0.68);
}

.service-promo-copy .btn {
    margin-top: 18px;
    padding: 14px 20px;
}

.signature-section {
    padding: 28px 0 110px;
}

.signature-grid,
.story-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 30px;
    align-items: stretch;
}

.signature-panel,
.story-card,
.contact-form-wrap {
    position: relative;
    padding: 34px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(64, 16, 48, 0.96), rgba(142, 21, 83, 0.92)),
        linear-gradient(135deg, rgba(217, 170, 83, 0.18), transparent 50%);
    color: var(--white);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.signature-panel::before,
.story-card::before,
.contact-form-wrap::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 26px;
    border: 1px solid rgba(245, 222, 192, 0.32);
    pointer-events: none;
}

.script-accent {
    display: inline-block;
    margin-bottom: 18px;
    font-family: "Parisienne", cursive;
    font-size: 2rem;
    color: #ffe8f3;
}

.signature-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.signature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink-soft);
}

.signature-list i {
    margin-top: 5px;
    color: var(--rose-600);
}

.highlight-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.highlight-grid article {
    padding: 22px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight-grid strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.highlight-grid span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 240, 248, 0.84);
}

.story-card h2,
.story-card p {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.story-card .section-kicker {
    position: relative;
    z-index: 1;
    color: #ffe6f1;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.story-card p + p {
    margin-top: 16px;
}

.story-aside {
    display: grid;
    gap: 18px;
}

.story-aside article {
    padding: 26px;
    border-radius: 28px;
}

.story-aside strong,
.contact-cards strong {
    display: block;
    color: var(--plum-900);
}

.story-aside span,
.contact-cards span {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
}

.academy-section {
    position: relative;
}

.academy-section::before {
    content: "";
    position: absolute;
    inset: 80px 0 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(241, 61, 147, 0.08), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(217, 170, 83, 0.14), transparent 20%);
    pointer-events: none;
}

.academy-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 30px;
    align-items: start;
}

.academy-copy,
.academy-gallery {
    position: relative;
    z-index: 1;
}

.academy-intro-card,
.academy-course-card,
.academy-media-card,
.academy-video-card {
    border: 1px solid rgba(161, 16, 93, 0.1);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.academy-intro-card {
    padding: 30px;
    border-radius: 30px;
}

.academy-intro-card .script-accent {
    margin-bottom: 10px;
    color: var(--rose-700);
}

.academy-intro-card p {
    font-size: 1.02rem;
    color: var(--ink-soft);
}

.academy-courses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.academy-course-card {
    padding: 24px;
    border-radius: 28px;
}

.academy-course-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(241, 61, 147, 0.14), rgba(217, 170, 83, 0.18));
    color: var(--rose-700);
    font-size: 1.2rem;
}

.academy-course-card h3 {
    margin: 18px 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    line-height: 0.96;
    color: var(--plum-900);
}

.academy-topic-list {
    display: grid;
    gap: 10px;
}

.academy-topic-list li {
    position: relative;
    padding-left: 20px;
    color: var(--ink-soft);
}

.academy-topic-list li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-500), var(--gold-500));
}

.academy-cta {
    margin-top: 24px;
}

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

.academy-media-card,
.academy-video-card {
    overflow: hidden;
    border-radius: 30px;
}

.academy-media-card img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.academy-media-card figcaption,
.academy-video-card p {
    padding: 16px 18px 18px;
    color: var(--ink-soft);
}

.academy-video-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.academy-video-card {
    height: 100%;
}

.academy-video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #12080f;
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-cards article {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
}

.contact-cards i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--gold-500));
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.contact-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.contact-form .script-accent {
    color: #fff1f7;
    margin-bottom: 0;
}

.contact-form h3 {
    margin-top: 0;
    color: var(--white);
}

.contact-form label {
    font-weight: 700;
    color: rgba(255, 244, 249, 0.92);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 238, 246, 0.68);
}

.contact-form select option {
    color: #321326;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.56);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.footer {
    padding: 28px 0 44px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(161, 16, 93, 0.12);
}

.footer strong {
    display: block;
    margin-bottom: 6px;
    color: var(--plum-900);
}

.footer a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--rose-700);
}

@media (max-width: 1120px) {
    .hero-grid,
    .signature-grid,
    .story-grid,
    .academy-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 540px;
        max-width: 580px;
        margin: 0 auto;
        width: 100%;
    }

    .trust-grid,
    .services-grid,
    .academy-courses {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .desktop-only {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        top: 88px;
        left: 20px;
        right: 20px;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        border-radius: 24px;
        background: rgba(255, 248, 252, 0.98);
        border: 1px solid rgba(161, 16, 93, 0.08);
        box-shadow: var(--shadow-strong);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .topbar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-copy h1 {
        max-width: 12ch;
        font-size: clamp(2.2rem, 8vw, 3.8rem);
    }

    .hero-stats,
    .trust-grid,
    .services-grid,
    .highlight-grid,
    .academy-courses,
    .academy-gallery,
    .academy-video-grid {
        grid-template-columns: 1fr;
    }

    .service-promo-card {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .service-promo-copy {
        padding: 4px;
    }

    .section-space {
        padding: 88px 0;
    }

    .signature-panel,
    .story-card,
    .contact-form-wrap {
        padding: 28px;
    }

    .academy-intro-card,
    .academy-course-card {
        padding: 26px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header {
        backdrop-filter: blur(12px);
    }

    .nav {
        min-height: 78px;
    }

    .brand-seal {
        width: 50px;
        height: 50px;
    }

    .brand-copy strong {
        font-size: 1.5rem;
    }

    .brand-copy small {
        font-size: 0.72rem;
    }

    .hero-actions,
    .contact-links {
        flex-direction: column;
    }

    .btn-large,
    .nav-cta {
        width: 100%;
    }

    .hero-visual {
        display: grid;
        gap: 18px;
        min-height: 0;
    }

    .hero-logo-card,
    .hero-promo-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
    }

    .hero-logo-card {
        padding: 18px;
        border-radius: 30px;
    }

    .hero-logo-frame {
        min-height: 300px;
    }

    .hero-promo-card {
        max-width: 320px;
        justify-self: end;
    }

    .hero-visual-caption {
        padding: 16px 18px;
        border-radius: 20px;
    }

    .hero-visual-caption strong {
        font-size: 1.45rem;
    }

    .hero-pills {
        gap: 10px;
    }

    .quick-action {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
