:root {
    --primary: #c026d3;
    --secondary: #6d28d9;
    --accent: #f6c453;
    --success: #00a884;
    --paper: #09020f;
    --surface: #190a25;
    --ink: #f8ecff;
    --muted: #cdb4dc;
    --line: rgba(246, 196, 83, 0.18);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(82, 21, 111, 0.42), transparent 36rem),
        linear-gradient(45deg, transparent 0 34%, rgba(246, 196, 83, 0.06) 34% 35%, transparent 35% 100%),
        linear-gradient(180deg, #12031c 0%, #09020f 42%, #16051f 100%),
        var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(246, 196, 83, 0.34) 0 1px, transparent 1.5px),
        radial-gradient(circle, rgba(216, 180, 254, 0.22) 0 1px, transparent 1.5px);
    background-position: 0 0, 28px 34px;
    background-size: 74px 74px, 112px 112px;
    opacity: 0.55;
}

body.modal-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

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

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

h1,
h2,
h3,
p,
a,
button,
input,
select,
textarea,
span,
strong {
    overflow-wrap: anywhere;
}

svg {
    width: 1.1em;
    height: 1.1em;
    fill: currentColor;
    flex: 0 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 28px;
    color: #fff;
    background: rgba(31, 9, 30, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(20px);
}

.brand,
.site-nav,
.nav-cta,
.button,
.hero-badge,
    .floating-whatsapp,
    .social-button {
    display: inline-flex;
    align-items: center;
}

.brand {
    gap: 10px;
    min-width: 0;
    font-weight: 900;
}

.brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-mark,
.icon-bubble {
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 999px;
    box-shadow: 0 12px 24px color-mix(in srgb, var(--primary) 35%, transparent);
}

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

.brand-mark svg {
    width: 22px;
    height: 22px;
}

.site-nav {
    gap: 18px;
    font-size: 0.95rem;
    font-weight: 800;
}

.site-nav a:not(.nav-cta) {
    color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover {
    color: #fff;
}

.nav-cta,
.button {
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 900;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-cta,
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--success), color-mix(in srgb, var(--success) 55%, var(--secondary)));
    box-shadow: 0 14px 32px color-mix(in srgb, var(--success) 32%, transparent);
}

.button-ghost {
    color: var(--ink);
    background: rgba(37, 13, 55, 0.82);
    border-color: rgba(246, 196, 83, 0.26);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.button-dark {
    color: #fff;
    background: linear-gradient(135deg, var(--ink), var(--secondary));
}

.button:hover,
.nav-cta:hover,
.social-button:hover,
.floating-action:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(22, 8, 24, 0.78);
    backdrop-filter: blur(18px);
}

.age-gate.is-visible {
    display: grid;
}

.age-dialog {
    width: min(520px, 100%);
    padding: 30px;
    text-align: center;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid rgba(246, 196, 83, 0.28);
    border-radius: 8px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
    animation: modal-pop 300ms ease both;
}

.age-dialog .icon-bubble {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    color: #fff;
}

.age-dialog h2 {
    margin: 0;
    color: var(--accent);
    font-size: 1.8rem;
    line-height: 1.15;
}

.age-dialog p {
    margin: 14px 0 0;
    color: var(--muted);
}

.age-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 22px;
}

.hero {
    position: relative;
    display: grid;
    min-height: 84svh;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(28, 5, 27, 0.96), rgba(141, 18, 91, 0.78) 48%, rgba(23, 10, 34, 0.36)),
        linear-gradient(0deg, rgba(25, 8, 28, 0.52), rgba(25, 8, 28, 0.06));
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 92px 0 92px;
}

.eyebrow {
    margin: 0 0 12px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 820px;
    margin: 0;
    color: var(--accent);
    font-size: clamp(2.35rem, 6vw, 4rem);
    line-height: 1.03;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-copy {
    max-width: 700px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.18rem;
}

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

.hero-badge {
    gap: 9px;
    margin: 24px 0 0;
    padding: 10px 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.stats-band {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(var(--max), calc(100% - 40px));
    margin: -36px auto 0;
    overflow: hidden;
    background: rgba(22, 6, 35, 0.9);
    border: 1px solid rgba(246, 196, 83, 0.2);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.stats-band div {
    padding: 24px;
    border-right: 1px solid var(--line);
}

.stats-band div:last-child {
    border-right: 0;
}

.stats-band strong {
    display: block;
    color: var(--accent);
    font-size: 2.15rem;
    line-height: 1;
}

.stats-band span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-weight: 700;
}

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

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

.section-heading h2,
.guide-copy h2,
.contact-section h2,
.social-section h2 {
    margin: 0;
    color: var(--accent);
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: 0;
    text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.guide-copy p,
.contact-section p {
    color: var(--muted);
    font-size: 1.05rem;
}

.intro-section {
    padding-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 20px;
    margin-top: 34px;
}

.service-card,
.testimonial-card,
.step-card,
.admin-section,
.login-panel,
.status-message {
    background: var(--surface);
    border: 1px solid rgba(246, 196, 83, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-media {
    position: relative;
}

.service-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-media .icon-bubble {
    position: absolute;
    left: 16px;
    bottom: -24px;
    width: 54px;
    height: 54px;
}

.service-card div:not(.service-media) {
    padding: 34px 20px 22px;
}

.service-card h3,
.step-card h3,
.testimonial-card strong {
    margin: 0;
    color: var(--accent);
    font-size: 1.14rem;
}

.service-card p,
.step-card p,
.testimonial-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.guide-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    width: min(1280px, calc(100% - 40px));
    min-height: 560px;
    margin: 20px auto 0;
    overflow: hidden;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(42, 12, 66, 0.96), rgba(18, 4, 28, 0.98)),
        var(--surface);
    border: 1px solid rgba(246, 196, 83, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.guide-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.guide-copy {
    align-self: center;
    padding: 56px;
}

.guide-copy .button {
    margin-top: 16px;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 16px;
    margin-top: 34px;
}

.step-card {
    position: relative;
    min-height: 230px;
    padding: 22px;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, transparent), transparent 62%);
    pointer-events: none;
}

.step-card > * {
    position: relative;
}

.step-card span {
    display: inline-grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin-bottom: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
}

.step-card small {
    position: absolute;
    top: 18px;
    right: 20px;
    color: color-mix(in srgb, var(--primary) 42%, transparent);
    font-size: 2.3rem;
    font-weight: 950;
    line-height: 1;
}

.testimonial-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 14px;
    align-items: center;
    margin-top: 34px;
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.carousel-slide {
    min-width: 100%;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
    min-height: 270px;
    padding: 28px;
    align-items: center;
}

.testimonial-card img {
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--accent) 24%, transparent);
}

.testimonial-card.image-only {
    display: block;
    min-height: 0;
    padding: 18px;
    text-align: center;
}

.testimonial-card.image-only img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 620px;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: contain;
}

.testimonial-card.audio-only {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    min-height: 240px;
    text-align: center;
}

.audio-bubble {
    width: 64px;
    height: 64px;
}

.testimonial-card p,
.testimonial-card audio,
.testimonial-card strong {
    grid-column: 2;
}

.testimonial-card p {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-card audio {
    width: 100%;
    max-width: 460px;
    margin-top: 12px;
}

.testimonial-card.audio-only audio {
    grid-column: 1;
    max-width: 640px;
}

.testimonial-card strong {
    margin-top: 12px;
    color: var(--primary);
}

.video-section {
    padding-top: 42px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 20px;
    margin-top: 28px;
}

.video-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(246, 196, 83, 0.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.video-card-copy {
    padding: 18px;
}

.video-card-copy h3 {
    margin: 0;
    color: var(--accent);
    font-size: 1.12rem;
}

.video-card-copy p {
    margin: 8px 0 0;
    color: var(--muted);
}

.video-frame {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(109, 40, 217, 0.22), rgba(192, 38, 211, 0.12)),
        #0b0311;
    border: 1px solid rgba(246, 196, 83, 0.22);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.video-empty {
    margin-top: 28px;
}

.video-frame::before {
    content: "";
    display: block;
    aspect-ratio: 16 / 9;
}

.video-frame iframe,
.video-frame video,
.video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-frame iframe,
.video-frame video {
    border: 0;
    object-fit: contain;
}

.video-placeholder {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 26px;
    text-align: center;
}

.video-placeholder .icon-bubble {
    width: 66px;
    height: 66px;
}

.video-placeholder strong {
    color: var(--accent);
    font-size: 1.25rem;
}

.video-placeholder p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
}

.carousel-button {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 14px 32px color-mix(in srgb, var(--primary) 25%, transparent);
}

.carousel-dots {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    background: color-mix(in srgb, var(--primary) 22%, #fff);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.carousel-dots button.is-active {
    width: 30px;
    background: var(--primary);
}

.contact-section,
.social-section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto 56px;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, auto);
    gap: 28px;
    align-items: center;
    padding: 42px;
    color: #fff;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 88%, #000), color-mix(in srgb, var(--secondary) 74%, #000)),
        var(--primary);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-section .eyebrow,
.contact-section p {
    color: rgba(255, 255, 255, 0.86);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.social-section {
    padding: 60px 0 88px;
}

.social-section h2 {
    text-align: center;
}

.social-button-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.social-button {
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    color: #fff;
    background: var(--social-color);
    border-radius: 8px;
    box-shadow: 0 14px 30px color-mix(in srgb, var(--social-color) 28%, transparent);
    font-weight: 900;
}

.site-footer {
    display: block;
    padding: 42px max(220px, calc((100% - var(--max)) / 2)) 48px max(20px, calc((100% - var(--max)) / 2));
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(180deg, rgba(22, 5, 31, 0.96), #07010b),
        #07010b;
    border-top: 1px solid rgba(246, 196, 83, 0.18);
}

.site-footer strong {
    color: #fff;
}

.site-footer p {
    max-width: 780px;
    margin: 8px 0 0;
    font-size: 0.92rem;
}

.site-footer .copyright {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    display: grid;
    gap: 10px;
    justify-items: end;
    max-width: calc(100vw - 36px);
}

.floating-action {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 50px;
    justify-content: center;
    padding: 0 18px;
    color: #fff;
    border-radius: 999px;
    font-weight: 950;
    box-shadow: 0 16px 34px rgba(18, 12, 32, 0.22);
    transition: transform 180ms ease, filter 180ms ease;
    white-space: nowrap;
}

.floating-action.whatsapp {
    background: var(--success);
}

.floating-action.messenger {
    background: #7c2cff;
}

.floating-action.email {
    background: var(--primary);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

.admin-body {
    min-height: 100svh;
    background:
        linear-gradient(135deg, rgba(109, 40, 217, 0.2), transparent 32rem),
        #09020f;
}

.login-panel {
    width: min(440px, calc(100% - 32px));
    margin: 12svh auto;
    padding: 28px;
}

.login-panel h1,
.admin-header h1,
.admin-section h2 {
    margin: 0;
    color: var(--accent);
    line-height: 1.15;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px max(20px, calc((100% - var(--max)) / 2));
    background: rgba(20, 5, 31, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.admin-header-actions,
.section-admin-title {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.section-admin-title {
    align-items: center;
    justify-content: space-between;
}

.admin-header-actions form {
    margin: 0;
}

.admin-shell {
    width: min(var(--max), calc(100% - 32px));
    margin: 28px auto 80px;
}

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

.admin-section {
    display: grid;
    gap: 18px;
    padding: 22px;
}

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

.color-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.admin-form label {
    display: grid;
    gap: 7px;
    color: color-mix(in srgb, var(--ink) 86%, var(--primary));
    font-size: 0.92rem;
    font-weight: 850;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    color: var(--ink);
    background: rgba(10, 2, 16, 0.92);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 12px;
    font-weight: 550;
}

.admin-form input[type="color"] {
    min-height: 48px;
    padding: 4px;
}

.admin-form textarea {
    resize: vertical;
}

.form-error {
    margin: 0;
    color: #b42318;
}

.status-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    color: #a7f3d0;
    border-color: rgba(16, 185, 129, 0.24);
}

.status-message-error {
    color: #fecdd3;
    border-color: rgba(244, 63, 94, 0.34);
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.46), rgba(46, 16, 101, 0.72));
}

.image-admin,
.admin-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) minmax(180px, 260px);
    gap: 14px;
    align-items: end;
}

.image-admin img,
.admin-item img {
    width: 120px;
    height: 92px;
    object-fit: cover;
    border-radius: 8px;
}

.admin-list {
    display: grid;
    gap: 16px;
}

.admin-item {
    position: relative;
    grid-template-columns: 120px repeat(2, minmax(0, 1fr));
    padding: 16px;
    background: rgba(28, 9, 43, 0.9);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.compact-group {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 14px;
    background: rgba(28, 9, 43, 0.9);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.compact-list {
    grid-template-columns: repeat(3, 1fr);
}

.remove-item {
    justify-self: end;
    color: #fff;
    background: #c1121f;
    border: 0;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 900;
}

.repeatable-item.is-deleted {
    display: none;
}

.sticky-save {
    position: sticky;
    bottom: 14px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    background: rgba(12, 2, 18, 0.88);
    border: 1px solid var(--line);
    border-radius: 8px;
    backdrop-filter: blur(14px);
}

.sticky-save .button-primary {
    color: #1a0824;
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 16px 34px rgba(246, 196, 83, 0.28);
}

@keyframes modal-pop {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@media (max-width: 980px) {
    .guide-section,
    .contact-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .contact-actions,
    .footer-links {
        justify-content: flex-start;
    }

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

    .site-nav {
        gap: 12px;
        font-size: 0.9rem;
    }

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

@media (max-width: 760px) {
    .site-header {
        padding: 0 18px;
    }

    .brand span:last-child {
        max-width: min(58vw, 330px);
    }

    .menu-button {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        padding: 16px 18px 20px;
        background: rgba(31, 9, 30, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .hero {
        min-height: 78svh;
    }

    .hero-inner {
        width: min(100% - 28px, var(--max));
        padding: 64px 0 56px;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.45rem);
    }

    .hero-copy {
        font-size: 1rem;
    }

    .button,
    .nav-cta,
    .age-actions .button {
        width: 100%;
        min-height: 48px;
    }

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

    .stats-band,
    .service-grid,
    .step-grid,
    .form-grid,
    .image-admin,
    .admin-item,
    .compact-list,
    .testimonial-carousel {
        grid-template-columns: 1fr;
    }

    .carousel-button {
        display: none;
    }

    .stats-band div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stats-band div:last-child {
        border-bottom: 0;
    }

    .section,
    .guide-section,
    .contact-section,
    .social-section {
        width: min(100% - 28px, var(--max));
    }

    .section {
        padding: 62px 0;
    }

    .section-heading h2,
    .guide-copy h2,
    .contact-section h2,
    .social-section h2 {
        font-size: clamp(1.65rem, 8vw, 1.9rem);
    }

    .guide-copy {
        padding: 34px 20px;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-card img {
        margin: 0 auto;
    }

    .testimonial-card p,
    .testimonial-card audio,
    .testimonial-card strong {
        grid-column: 1;
    }

    .testimonial-card.image-only img {
        max-height: 520px;
    }

    .contact-section {
        margin-bottom: 40px;
        padding: 28px;
    }

    .social-section {
        padding-top: 18px;
        padding-bottom: 52px;
    }

    .social-button-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .social-button {
        justify-content: center;
        width: 100%;
    }

    .site-footer {
        padding-right: 20px;
        padding-bottom: 220px;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }

    .floating-action {
        min-height: 46px;
        padding-inline: 14px;
        font-size: 0.92rem;
    }

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-header-actions,
    .admin-header-actions form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-header {
        min-height: 66px;
        padding-inline: 14px;
    }

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

    .brand span:last-child {
        max-width: 48vw;
        font-size: 0.92rem;
    }

    .site-nav {
        top: 66px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 52px 0 48px;
    }

    .stats-band {
        margin-top: -20px;
    }

    .stats-band div,
    .service-card div:not(.service-media),
    .step-card,
    .testimonial-card,
    .admin-section {
        padding: 18px;
    }

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

    .testimonial-card.image-only {
        padding: 10px;
    }

    .testimonial-card.image-only img {
        max-height: 430px;
    }

    .contact-section {
        padding: 22px;
    }

    .floating-actions {
        left: 12px;
        right: 12px;
        justify-items: stretch;
    }

    .floating-action {
        width: 100%;
    }

    .site-footer {
        padding-bottom: 230px;
    }
}

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

    .button,
    .nav-cta,
    .age-actions .button {
        padding-inline: 12px;
        font-size: 0.92rem;
    }

    .floating-action span {
        font-size: 0.88rem;
    }
}

@media (min-width: 1440px) {
    :root {
        --max: 1280px;
    }

    .hero-inner {
        padding-block: 120px;
    }

    .hero h1 {
        max-width: 900px;
    }
}
