/* =========================================================================
   Hayat Meydan — Premium Landing Page
   Design language: deep navy / charcoal · champagne gold · ivory surfaces
   Tailwind handles layout utilities; this file owns the visual identity.
   ========================================================================= */

:root {
    /* Surfaces */
    --navy-900: #0a111e;
    --navy-800: #0e1828;
    --navy-700: #122036;
    --navy-600: #1a2c47;
    --charcoal: #131a26;

    /* Ivory / beige */
    --ivory: #f7f2e9;
    --ivory-soft: #fbf8f1;
    --beige: #ece3d2;

    /* Champagne gold */
    --gold-400: #e8cf95;
    --gold-500: #d4af6a;
    --gold-600: #c0974a;
    --gold-gradient: linear-gradient(135deg, #e9d3a0 0%, #cfa657 48%, #b8863a 100%);

    /* Text */
    --text-on-dark: #eef1f6;
    --text-on-dark-muted: #9aa6b8;
    --text-on-light: #1c2433;
    --text-on-light-muted: #5d6577;

    /* Lines & glass */
    --hairline: rgba(212, 175, 106, 0.22);
    --hairline-soft: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(18, 32, 54, 0.55);
    --glass-border: rgba(212, 175, 106, 0.25);

    /* Shadows */
    --shadow-soft: 0 18px 50px -24px rgba(0, 0, 0, 0.55);
    --shadow-card: 0 30px 80px -40px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 14px 38px -14px rgba(192, 151, 74, 0.55);

    --radius: 16px;
    --radius-lg: 24px;

    --font-head: "Playfair Display", "Georgia", "Times New Roman", serif;
    --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

    --maxw: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-on-dark);
    background-color: var(--navy-900);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.shell {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: 22px;
}

/* ---- Typography ------------------------------------------------------- */
.display {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
    font-optical-sizing: auto;
    margin: 0;
}

.eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 600;
    margin: 0 0 18px;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold-500);
}

/* ---- Buttons ---------------------------------------------------------- */
.btn {
    --btn-py: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: var(--btn-py) 34px;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.35s ease, background 0.35s ease;
    will-change: transform;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #2a1d06;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px -16px rgba(192, 151, 74, 0.7);
}

.btn-gold:active {
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-on-dark);
    border: 1px solid var(--hairline);
}

.btn-ghost:hover {
    border-color: var(--gold-500);
    color: var(--gold-400);
}

.btn-block {
    width: 100%;
}

.btn i {
    font-size: 0.95em;
}

/* ---- Top bar ---------------------------------------------------------- */
.topbar {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 20;
    padding-top: 26px;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar__logo img {
    height: auto;
    width: auto;
    max-height: 160px;
    max-width: 260px;
    object-fit: contain;
}

.topbar__cta {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

/* ---- Hero ------------------------------------------------------------- */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(120% 90% at 80% -10%, rgba(212, 175, 106, 0.16), transparent 55%),
        radial-gradient(90% 80% at 0% 110%, rgba(26, 44, 71, 0.85), transparent 60%),
        linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 60%, #070d17 100%);
}

.hero::after {
    /* subtle architectural grid */
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(var(--hairline-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--hairline-soft) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(80% 70% at 70% 30%, #000 0%, transparent 75%);
    opacity: 0.6;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 54px;
    align-items: center;
    width: 100%;
}

.hero__title {
    font-size: clamp(1.5rem, 3.8vw, 2.4rem);
    margin-bottom: 22px;
}

.hero__lead {
    color: var(--text-on-dark-muted);
    font-size: clamp(1.02rem, 2.4vw, 1.18rem);
    max-width: 56ch;
    margin: 0 0 36px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* trust highlights row */
.highlights {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    border-top: 1px solid var(--hairline-soft);
    padding-top: 34px;
}

.highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.highlight__icon {
    flex: none;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(212, 175, 106, 0.1);
    border: 1px solid var(--hairline);
    color: var(--gold-400);
    font-size: 1.15rem;
}

.highlight__title {
    font-weight: 700;
    font-size: 1.4rem;
    font-family: var(--font-head);
    line-height: 1;
    color: var(--text-on-dark);
}

.highlight__text {
    font-size: 0.82rem;
    color: var(--text-on-dark-muted);
    margin-top: 4px;
}

/* hero card (visual anchor) */
.hero__panel {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 34px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-card);
}

.hero__panel h3 {
    font-family: var(--font-head);
    font-size: 1.7rem;
    margin: 0 0 6px;
}

.hero__panel p {
    color: var(--text-on-dark-muted);
    font-size: 0.92rem;
    margin: 0 0 22px;
}

.panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.panel-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-on-dark);
}

.panel-list i {
    color: var(--gold-500);
}

/* ---- Section scaffolding --------------------------------------------- */
.section {
    position: relative;
    padding: clamp(64px, 9vw, 110px) 0;
}

.section--light {
    background:
        radial-gradient(120% 80% at 50% 0%, #fffdf8 0%, var(--ivory) 45%, var(--beige) 120%);
    color: var(--text-on-light);
}

.section--light .eyebrow {
    color: var(--gold-600);
}

.section-head {
    max-width: 720px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-head .display {
    font-size: clamp(2rem, 5vw, 3rem);
}

.section--light .section-head p {
    color: var(--text-on-light-muted);
    font-size: 1.05rem;
    margin-top: 16px;
}

/* intro band */
.intro {
    background: linear-gradient(180deg, #070d17 0%, var(--navy-900) 100%);
    border-top: 1px solid var(--hairline-soft);
    border-bottom: 1px solid var(--hairline-soft);
}

.intro__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.intro__quote {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3.6vw, 2.3rem);
    line-height: 1.4;
    color: var(--text-on-dark);
    margin: 0;
}

.intro__quote span {
    color: var(--gold-400);
}

/* ---- Form ------------------------------------------------------------ */
.form-wrap {
    max-width: 880px;
    margin: 0 auto;
}

.lead-card {
    background: var(--ivory-soft);
    border: 1px solid rgba(192, 151, 74, 0.28);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.lead-card__head {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    padding: 30px clamp(22px, 4vw, 44px);
    border-bottom: 1px solid var(--hairline);
    color: var(--text-on-dark);
}

.lead-card__head h3 {
    font-family: var(--font-head);
    font-size: 1.7rem;
    margin: 0;
}

.lead-card__head p {
    margin: 6px 0 0;
    color: var(--text-on-dark-muted);
    font-size: 0.92rem;
}

.lead-card__body {
    padding: clamp(24px, 4vw, 46px);
}

/* fieldset / step blocks */
.fieldset {
    border: none;
    margin: 0 0 14px;
    padding: 0;
}

.fieldset + .fieldset {
    margin-top: 38px;
    padding-top: 36px;
    border-top: 1px dashed rgba(192, 151, 74, 0.3);
}

.fieldset__legend {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 26px;
    padding: 0;
}

.fieldset__legend .step-no {
    flex: none;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #2a1d06;
    font-size: 0.8rem;
    font-weight: 800;
}

.field {
    margin-bottom: 26px;
}

.field:last-child {
    margin-bottom: 0;
}

.field__label {
    display: block;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--text-on-light);
    margin-bottom: 14px;
}

.field__label .req {
    color: var(--gold-600);
    margin-left: 2px;
}

.field__hint {
    font-size: 0.84rem;
    color: var(--text-on-light-muted);
    margin: -6px 0 14px;
}

/* text inputs / textarea */
.input,
.textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-on-light);
    background: #fff;
    border: 1.5px solid rgba(28, 36, 51, 0.16);
    border-radius: 12px;
    padding: 15px 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.textarea {
    resize: vertical;
    min-height: 116px;
}

.input::placeholder,
.textarea::placeholder {
    color: #9aa1ad;
}

.input:focus,
.textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(212, 175, 106, 0.18);
    background: #fffdf8;
}

/* option cards (radio / checkbox) */
.options {
    display: grid;
    gap: 12px;
}

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

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

.option-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    border-radius: 13px;
    border: 1.5px solid rgba(28, 36, 51, 0.14);
    background: #fff;
    cursor: pointer;
    font-size: 0.97rem;
    color: var(--text-on-light);
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
        background 0.2s ease, transform 0.15s ease;
    user-select: none;
    min-height: 56px;
}

.option-card:hover {
    border-color: var(--gold-500);
    background: #fffdf8;
}

.option-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card .mark {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid rgba(28, 36, 51, 0.28);
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
    background: #fff;
}

.option-card input[type="radio"] ~ .mark {
    border-radius: 50%;
}

.option-card .mark::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1.4);
    background: var(--gold-gradient);
}

.option-card:has(input:checked) {
    border-color: var(--gold-600);
    background: linear-gradient(135deg, #fff8ea, #fdf1d9);
    box-shadow: 0 8px 22px -14px rgba(192, 151, 74, 0.8);
}

.option-card:has(input:checked) .mark {
    border-color: var(--gold-600);
}

.option-card:has(input:checked) .mark::after {
    transform: scale(1);
}

.option-card:has(input:focus-visible) {
    outline: 3px solid rgba(212, 175, 106, 0.5);
    outline-offset: 2px;
}

.option-card .label-text {
    line-height: 1.3;
}

/* errors */
.errorlist {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    color: #b4451f;
    font-size: 0.85rem;
    font-weight: 600;
}

.field--error .input,
.field--error .textarea {
    border-color: #d9694a;
    background: #fff7f4;
}

.form-error-banner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fdeee9;
    border: 1px solid #e9bcaa;
    color: #8c361a;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 28px;
    font-size: 0.92rem;
    font-weight: 600;
}

.form-error-banner i {
    color: #c4502a;
    margin-top: 2px;
}

/* conditional rental block */
.conditional {
    overflow: hidden;
}

.conditional[hidden] {
    display: none;
}

.kvkk-note {
    font-size: 0.82rem;
    color: var(--text-on-light-muted);
    margin-top: 22px;
    line-height: 1.6;
}

.kvkk-note a {
    color: var(--gold-600);
    text-decoration: underline;
}

.form-footer {
    margin-top: 34px;
}

/* honeypot */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---- Footer ---------------------------------------------------------- */
.footer {
    background: #070d17;
    border-top: 1px solid var(--hairline-soft);
    padding: 54px 0 38px;
    color: var(--text-on-dark-muted);
}

.footer__grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
    text-align: center;
}

.footer__logo img {
    height: auto;
    width: auto;
    max-height: 140px;
    max-width: 240px;
    object-fit: contain;
    margin-inline: auto;
}

.footer__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    justify-content: center;
    font-size: 0.92rem;
}

.footer__contact a:hover {
    color: var(--gold-400);
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 24px;
    border-top: 1px solid var(--hairline-soft);
    padding-top: 22px;
    margin-top: 22px;
}

.footer__legal {
    font-size: 0.78rem;
    color: #5b6577;
    margin: 0;
}

.footer__dev {
    font-size: 0.78rem;
    color: #5b6577;
    margin: 0;
}

.footer__dev a {
    color: var(--gold-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__dev a:hover {
    color: var(--gold-400);
    text-decoration: underline;
}

/* ---- Legal pages ----------------------------------------------------- */
.legal-top {
    background: #070d17;
    border-bottom: 1px solid var(--hairline-soft);
    padding: 18px 0;
}

.legal-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.legal {
    padding-top: clamp(48px, 7vw, 80px);
}

.legal__card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--ivory-soft);
    border: 1px solid rgba(192, 151, 74, 0.28);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: clamp(28px, 5vw, 60px);
}

.legal__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 8px 0 28px;
    color: var(--text-on-light);
}

.legal__body {
    color: var(--text-on-light);
    font-size: 1.02rem;
    line-height: 1.8;
}

.legal__body h2,
.legal__body h3 {
    font-family: var(--font-head);
    color: var(--text-on-light);
    margin: 1.6em 0 0.5em;
    line-height: 1.25;
}

.legal__body h2 { font-size: 1.5rem; }
.legal__body h3 { font-size: 1.2rem; }

.legal__body p { margin: 0 0 1.1em; }

.legal__body ul,
.legal__body ol {
    margin: 0 0 1.2em;
    padding-left: 1.3em;
}

.legal__body li { margin-bottom: 0.5em; }

.legal__body a {
    color: var(--gold-600);
    text-decoration: underline;
}

.legal__updated {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px dashed rgba(192, 151, 74, 0.35);
    font-size: 0.85rem;
    color: var(--text-on-light-muted);
}

/* ---- Thank-you page -------------------------------------------------- */
.thanks {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 22px;
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(212, 175, 106, 0.18), transparent 55%),
        linear-gradient(160deg, var(--navy-800), var(--navy-900) 70%, #070d17);
}

.thanks__inner {
    max-width: 640px;
}

.thanks__badge {
    width: 92px;
    height: 92px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2.4rem;
    color: #2a1d06;
    background: var(--gold-gradient);
    box-shadow: var(--shadow-gold);
    animation: pop 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.4) both;
}

.thanks__logo img {
    height: auto;
    width: auto;
    max-height: 160px;
    max-width: 260px;
    object-fit: contain;
    margin: 0 auto 40px;
}

.thanks h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 6vw, 3.2rem);
    margin: 0 0 18px;
    line-height: 1.1;
}

.thanks p {
    color: var(--text-on-dark-muted);
    font-size: 1.08rem;
    margin: 0 0 36px;
}

@keyframes pop {
    from { transform: scale(0.4); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ---- Reveal-on-scroll ------------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---- Responsive ------------------------------------------------------ */
@media (min-width: 768px) {
    .highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .hero {
        padding-top: 170px;
    }
    .hero__grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 64px;
    }
    .highlights {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer__grid {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .footer__logo img {
        margin-inline: 0;
    }
}

/* tablet/mobile: collapse multi-column option grids */
@media (max-width: 700px) {
    .options--cols-2,
    .options--cols-3 {
        grid-template-columns: 1fr;
    }
    .topbar__cta {
        display: none;
    }
    .topbar__logo img {
        max-height: 100px;
    }
}

/* sticky mobile CTA */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(0deg, rgba(7, 13, 23, 0.98), rgba(7, 13, 23, 0.86));
    border-top: 1px solid var(--hairline);
    backdrop-filter: blur(10px);
    transform: translateY(120%);
    transition: transform 0.35s ease;
}

.sticky-cta.is-on {
    transform: none;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* ---- Floating action buttons (WhatsApp + Call) ----------------------- */
.fab-group {
    position: fixed;
    right: 22px;
    bottom: 32px;
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* on mobile sit above the sticky CTA bar (~68px tall) */
@media (max-width: 767px) {
    .fab-group {
        bottom: 88px;
    }
}

.fab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px 0 0;
    height: 52px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 28px -8px rgba(0, 0, 0, 0.55);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.3s ease,
                padding 0.3s ease;
    overflow: hidden;
}

.fab__icon-wrap {
    flex: none;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
}

.fab i {
    flex: none;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
}

.fab__label {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.35s ease, opacity 0.25s ease;
}

.fab:hover .fab__label,
.fab:focus-visible .fab__label {
    max-width: 120px;
    opacity: 1;
}

.fab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 38px -10px rgba(0, 0, 0, 0.6);
}

.fab--whatsapp {
    background: linear-gradient(135deg, #25d366, #128c51);
}

.fab--call {
    background: var(--gold-gradient);
    color: #2a1d06;
}

/* ---- Cookie banner --------------------------------------------------- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.cookie-banner--visible {
    transform: none;
}

.cookie-banner__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 28px;
    padding: 18px 24px calc(18px + env(safe-area-inset-bottom));
    background: rgba(10, 17, 30, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--hairline);
}

.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 240px;
}

.cookie-banner__icon {
    color: var(--gold-400);
    font-size: 1.3rem;
    margin-top: 2px;
    flex: none;
}

.cookie-banner__text p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-on-dark-muted);
    line-height: 1.55;
}

.cookie-banner__text a {
    color: var(--gold-400);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner__reject {
    font-size: 0.85rem;
    padding: 10px 20px;
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-on-dark-muted);
}

.cookie-banner__accept {
    font-size: 0.85rem;
    padding: 10px 24px;
}
