:root {
    --black: #f9f4eb;
    --black-soft: #1a120f;
    --brand-brown: #4c1e0c;
    --ivory: #1a120f;
    --beige: #a59982;
    --beige-soft: #f4ede2;
    --gold: #a59982;
    --gold-soft: #4c1e0c;
    --muted: #6f6256;
    --line: rgba(76, 30, 12, 0.14);
    --ink-line: rgba(76, 30, 12, 0.14);
    --surface: #fffaf3;
    --surface-strong: #ffffff;
    --content: 1180px;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ivory);
    background: linear-gradient(180deg, #fffaf3 0%, var(--black) 46%, #ffffff 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    letter-spacing: 0;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    z-index: 40;
    top: 16px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 18px;
    border: 1px solid rgba(76, 30, 12, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 250, 243, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(76, 30, 12, 0.11);
    transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(76, 30, 12, 0.18);
}

.brand,
.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.site-header .brand {
    flex: 0 0 auto !important;
    width: auto !important;
    height: auto !important;
    max-width: 160px !important;
}

.brand-logo,
.site-logo,
.header-logo {
    display: block !important;
    width: auto !important;
    height: 42px !important;
    max-width: 160px !important;
    object-fit: contain !important;
    object-position: left center !important;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.brand-mark,
.admin-brand span {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    padding: 9px 12px;
    color: var(--muted);
    border-radius: 4px;
    font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ivory);
    background: rgba(165, 153, 130, 0.18);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
    color: var(--ivory);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 6px auto;
    background: currentColor;
}

.hero {
    min-height: 78svh;
    display: grid;
    align-items: end;
    position: relative;
    overflow: hidden;
    padding: 140px 24px 96px;
    background-image:
        linear-gradient(90deg, rgba(249, 244, 235, 0.98) 0%, rgba(249, 244, 235, 0.9) 46%, rgba(249, 244, 235, 0.52) 100%),
        linear-gradient(0deg, rgba(249, 244, 235, 0.98) 0%, rgba(249, 244, 235, 0.18) 58%),
        var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-content,
.section,
.page-hero,
.booking-layout,
.auth-layout,
.status-page {
    width: min(100%, var(--content));
    margin: 0 auto;
}

.hero-content {
    padding-bottom: 28px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.auth-copy h1,
.status-page h1 {
    margin: 0;
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5.8rem;
    line-height: 0.96;
    font-weight: 500;
}

.hero-quote {
    margin: 24px 0 0;
    max-width: 580px;
    color: var(--beige);
    font-size: 1.35rem;
}

.hero-copy {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.hero-actions,
.location-section,
.auth-form .full {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.94rem;
    cursor: pointer;
}

.btn-primary {
    color: var(--black-soft);
    background: var(--beige);
    border-color: rgba(76, 30, 12, 0.16);
}

.btn-primary:hover {
    background: #b4aa98;
}

.btn-secondary {
    color: var(--brand-brown);
    border-color: rgba(76, 30, 12, 0.22);
    background: rgba(255, 255, 255, 0.56);
}

.btn-secondary:hover {
    border-color: rgba(165, 153, 130, 0.72);
}

.btn.is-disabled {
    pointer-events: none;
    opacity: 0.48;
}

.hero-strip {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    color: var(--beige);
}

.hero-strip span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 250, 243, 0.74);
}

.section {
    padding: 88px 24px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section h2,
.page-hero h1,
.auth-copy h1,
.status-page h1 {
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.2rem;
    line-height: 1.05;
    font-weight: 500;
}

.section h2 {
    margin: 0;
}

.ivory-experience {
    background: var(--black);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.experience-grid article {
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
}

.experience-grid span,
.steps span,
.class-time span {
    color: var(--gold-soft);
    font-weight: 800;
}

.experience-grid h3,
.coach-row h3,
.class-row h2 {
    margin: 12px 0 10px;
    font-size: 1.15rem;
}

.experience-grid p,
.coach-row p,
.class-row p,
.location-section p,
.faq-list p,
.auth-copy p,
.status-page p,
.fine-print {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.coach-list {
    display: grid;
    gap: 14px;
}

.coach-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.coach-row > span {
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--beige);
    color: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
}

.packages-section {
    background: linear-gradient(180deg, #fffaf3 0%, #f9f4eb 100%);
    border-bottom: 1px solid var(--line);
}

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

.package-card {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(76, 30, 12, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 54px rgba(76, 30, 12, 0.08);
}

.package-card h3 {
    margin: 0;
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1.08;
    font-weight: 500;
}

.package-meta,
.package-note {
    margin: 8px 0 0;
    color: var(--muted);
}

.package-price {
    color: var(--brand-brown);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.25rem;
    line-height: 1;
    font-weight: 500;
}

.package-note {
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-weight: 800;
}

.packages-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.how-it-works {
    background: var(--beige-soft);
    color: var(--black-soft);
}

.how-it-works h2,
.how-it-works .eyebrow {
    color: var(--black-soft);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    padding: 22px 0 0;
    border-top: 1px solid var(--ink-line);
}

.steps strong {
    display: block;
    margin: 14px 0 8px;
    font-size: 1.1rem;
}

.steps p {
    margin: 0;
    color: rgba(18, 16, 13, 0.68);
}

.schedule-band,
.location-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.schedule-slots {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.schedule-slots span {
    min-width: 112px;
    padding: 14px 18px;
    text-align: center;
    border: 1px solid rgba(249, 244, 235, 0.18);
    border-radius: 4px;
    background: rgba(249, 244, 235, 0.04);
}

.location-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.location-section h2 {
    max-width: 760px;
    font-size: 2.4rem;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border-top: 1px solid var(--line);
    padding: 18px 0;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
}

.page-hero,
.status-page {
    padding: 150px 24px 64px;
}

.compact-hero,
.booking-hero {
    min-height: 420px;
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
}

.classes-list {
    display: grid;
    gap: 14px;
    padding-top: 24px;
}

.class-row {
    display: grid;
    grid-template-columns: 150px 1fr 140px auto;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.class-time strong,
.class-status strong {
    display: block;
    color: var(--ivory);
    font-size: 1.25rem;
}

.class-status span {
    display: block;
    color: var(--gold-soft);
    font-size: 0.86rem;
    font-weight: 800;
}

.auth-page {
    background:
        linear-gradient(90deg, rgba(249, 244, 235, 0.98), rgba(249, 244, 235, 0.82)),
        url("../img/hero/ivory-studio-hero.png") center/cover fixed;
}

.auth-layout {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    align-items: center;
    padding: 150px 24px 70px;
}

.auth-form {
    display: grid;
    gap: 16px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 243, 0.9);
    backdrop-filter: blur(20px);
}

.wide-form {
    grid-template-columns: repeat(2, 1fr);
}

.auth-form label {
    display: grid;
    gap: 8px;
    color: var(--beige);
    font-size: 0.9rem;
    font-weight: 700;
}

.auth-form input,
.auth-form textarea {
    width: 100%;
    border: 1px solid rgba(76, 30, 12, 0.16);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ivory);
    padding: 13px 14px;
    outline: none;
}

.auth-form input:focus,
.auth-form textarea:focus {
    border-color: rgba(165, 153, 130, 0.72);
}

.auth-form .full,
.wide-form .full {
    grid-column: 1 / -1;
}

.terms-check {
    display: grid;
    align-items: flex-start;
}

.terms-check input {
    width: auto;
    margin-top: 4px;
}

.status-page {
    min-height: 72svh;
    display: grid;
    place-content: center;
    justify-items: start;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto minmax(180px, 1fr);
    gap: 28px;
    padding: 34px 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #fffaf3;
}

.site-footer div {
    display: grid;
    gap: 6px;
}

.footer-logo {
    display: block !important;
    width: auto !important;
    height: 36px !important;
    max-width: 150px !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin-bottom: 6px;
}

.site-footer strong,
.site-footer a {
    color: var(--ivory);
}

.footer-socials {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px !important;
}

.site-footer > div:last-child {
    justify-self: center;
    align-content: start;
    justify-items: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(76, 30, 12, 0.14);
    border-radius: 999px;
    color: var(--brand-brown);
    background: rgba(255, 255, 255, 0.62);
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-social-link:hover {
    border-color: rgba(76, 30, 12, 0.28);
    background: var(--beige-soft);
    transform: translateY(-1px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.legal-page {
    background:
        radial-gradient(circle at top left, rgba(165, 153, 130, 0.24), transparent 32rem),
        var(--black);
}

.legal-hero {
    width: min(100%, 1160px);
    padding-left: 32px;
    padding-right: 32px;
    border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
    max-width: 840px;
}

.legal-hero p {
    max-width: 720px;
}

.legal-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 760px);
    justify-content: center;
    align-items: start;
    gap: 46px;
    width: min(100%, 1160px);
    margin: 0 auto;
    padding: 48px 32px 112px;
}

.legal-index {
    position: sticky;
    top: 112px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 237, 226, 0.48)),
        rgba(255, 255, 255, 0.72);
}

.legal-index .eyebrow {
    margin-bottom: 10px;
}

.legal-index a {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 0;
    border-top: 1px solid rgba(249, 244, 235, 0.09);
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.35;
    transition: color 160ms ease, border-color 160ms ease;
}

.legal-index a:hover {
    color: var(--brand-brown);
    border-top-color: rgba(165, 153, 130, 0.42);
}

.legal-index span,
.legal-block > span {
    color: var(--ivory);
    font-weight: 900;
}

.legal-content {
    display: grid;
    gap: 24px;
    width: 100%;
    max-width: 760px;
}

.legal-block {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 26px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 237, 226, 0.48)),
        rgba(255, 255, 255, 0.72);
}

.legal-block h2 {
    margin: 0 0 16px;
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 1.12;
    font-weight: 500;
}

.legal-block p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.72;
}

.legal-intro {
    color: var(--ivory) !important;
    font-size: 1.05rem;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.terms-check,
.booking-acceptance {
    display: grid;
    align-items: flex-start;
    grid-template-columns: auto 1fr;
    gap: 10px;
    color: var(--beige);
}

.terms-check a,
.booking-acceptance a,
.auth-form a {
    color: var(--ivory);
    border-bottom: 1px solid rgba(249, 244, 235, 0.34);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.floating-action {
    position: fixed;
    z-index: 50;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0;
    line-height: 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.floating-action:hover {
    transform: translateY(-2px);
}

.floating-action::before,
.floating-action::after {
    content: none !important;
    display: none !important;
}

.floating-action svg,
.float-icon {
    width: 24px;
    height: 24px;
    display: block;
    flex: 0 0 auto;
    fill: currentColor;
    pointer-events: none;
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
}

.float-icon path {
    vector-effect: non-scaling-stroke;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

.bot-icon,
.bot-icon path {
    fill: none;
}

.floating-whatsapp,
.whatsapp-float {
    bottom: 20px;
    color: #ffffff;
    background: #25d366;
    border-color: rgba(255, 255, 255, 0.24);
}

.floating-whatsapp:hover,
.whatsapp-float:hover {
    background: #1fbd5a;
}

.floating-ai,
.ai-dock > button {
    bottom: 82px;
    color: var(--gold-soft);
    background: rgba(76, 30, 12, 0.96);
    border-color: rgba(165, 153, 130, 0.54);
    cursor: pointer;
}

.floating-ai[aria-expanded="true"],
.ai-dock > button[aria-expanded="true"] {
    color: var(--black);
    background: var(--gold-soft);
}

.ai-panel {
    position: fixed;
    z-index: 49;
    right: 20px;
    bottom: 142px;
    width: min(300px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(18, 16, 13, 0.96);
}

.ai-panel p {
    margin: 8px 0 0;
    color: var(--muted);
}

@media (max-width: 900px) {
    .site-header {
        left: 12px;
        right: 12px;
        top: 12px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 250, 243, 0.98);
    }

    .site-nav.is-open {
        display: grid;
    }

    .hero {
        min-height: 82svh;
        padding: 122px 18px 88px;
        background-position: center right;
    }

    .hero h1,
    .page-hero h1,
    .auth-copy h1,
    .status-page h1 {
        font-size: 3.3rem;
    }

    .section h2 {
        font-size: 2.35rem;
    }

    .experience-grid,
    .packages-grid,
    .steps,
    .split-section,
    .auth-layout,
    .wide-form,
    .legal-shell {
        grid-template-columns: 1fr;
        width: min(100%, 860px);
        gap: 24px;
    }

    .legal-index {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-index .eyebrow {
        grid-column: 1 / -1;
    }

    .legal-content {
        max-width: none;
    }

    .schedule-band,
    .location-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .schedule-slots {
        justify-content: flex-start;
    }

    .class-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .hero h1,
    .page-hero h1,
    .auth-copy h1,
    .status-page h1 {
        font-size: 2.55rem;
    }

    .section,
    .page-hero,
    .status-page,
    .auth-layout {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-strip {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .auth-form {
        padding: 18px;
    }

    .package-card {
        min-height: auto;
        padding: 20px;
    }

    .package-price {
        font-size: 2rem;
    }

    .site-header .brand {
        max-width: 130px !important;
    }

    .brand-logo,
    .site-logo,
    .header-logo {
        height: 34px !important;
        max-width: 130px !important;
    }

    .footer-logo {
        height: 34px !important;
        max-width: 130px !important;
    }

    .legal-shell {
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 32px;
    }

    .legal-hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .legal-index {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .legal-block {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px;
    }

    .legal-block h2 {
        font-size: 1.45rem;
    }

    .legal-block p {
        line-height: 1.65;
    }

    .floating-action {
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .floating-action svg,
    .float-icon {
        width: 22px;
        height: 22px;
    }

    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }

    .floating-whatsapp,
    .whatsapp-float {
        bottom: 16px;
    }

    .floating-ai,
    .ai-dock > button {
        bottom: 76px;
    }

    .ai-panel {
        right: 16px;
        bottom: 134px;
    }
}

/* =========================================================
Public light theme refinements
========================================================= */

.hero {
    background-image:
        linear-gradient(90deg, rgba(249, 244, 235, 0.98) 0%, rgba(249, 244, 235, 0.9) 46%, rgba(249, 244, 235, 0.52) 100%),
        linear-gradient(0deg, rgba(249, 244, 235, 0.98) 0%, rgba(249, 244, 235, 0.18) 58%),
        var(--hero-image);
}

.section h2,
.page-hero h1,
.auth-copy h1,
.status-page h1,
.class-time strong,
.class-status strong,
.legal-block h2,
.legal-intro,
.legal-index span,
.legal-block > span {
    color: var(--ivory) !important;
}

.split-section,
.location-section,
.faq-list details,
.class-row,
.legal-hero {
    border-color: var(--line);
}

.coach-row > span,
.booking-stepper b {
    color: var(--black-soft);
}

.legal-page {
    background:
        radial-gradient(circle at top left, rgba(165, 153, 130, 0.24), transparent 32rem),
        var(--black);
}

.legal-index,
.legal-block {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 237, 226, 0.48)),
        rgba(255, 255, 255, 0.72);
}

.legal-index a {
    border-top-color: rgba(76, 30, 12, 0.1);
}

.legal-index a:hover {
    color: var(--brand-brown);
}

.terms-check a,
.booking-acceptance a,
.auth-form a {
    border-bottom-color: rgba(76, 30, 12, 0.28);
}

.auth-form p[role="alert"] {
    color: var(--brand-brown);
}

.auth-form input::placeholder,
.auth-form textarea::placeholder {
    color: rgba(26, 18, 15, 0.48);
}

.floating-ai,
.ai-dock > button {
    color: #f9f4eb;
    background: rgba(76, 30, 12, 0.96);
    border-color: rgba(165, 153, 130, 0.62);
}

.floating-ai[aria-expanded="true"],
.ai-dock > button[aria-expanded="true"] {
    color: var(--black-soft);
    background: var(--beige);
}

@media (max-width: 900px) {
    .site-nav {
        background: rgba(255, 250, 243, 0.98);
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .site-footer > div:last-child {
        justify-self: start;
        justify-items: start;
    }
}
