:root {
    --c1: #FFFFFF;
    --c2: #DA042A;
    --c3: #000000;
    --c4: #FFAD00;
    --c5: #737373;
    --accent: #DA042A;
    --accent-dark: #B00321;
    --accent-deep: #8C0219;
    --accent-2: #FFAD00;
    --ink: #101010;
    --ink-2: #1A1A1A;
    --body-c: #6E6E6E;
    --bg: #FBFBFC;
    --card: #ffffff;
    --line: #ECECEC;
    --gold: #FFAD00;
    --grad: linear-gradient(115deg, #DA042A, #A30320);
    --r-lg: 22px;
    --r-md: 14px;
    --shadow-sm: 0 4px 14px rgba(16, 16, 16, .06);
    --shadow-lg: 0 24px 60px -18px rgba(16, 16, 16, .22);
    --ff-head: 'Sora', system-ui, sans-serif;
    --ff-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 86px; overflow-x: hidden; }

body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--body-c);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--ink); line-height: 1.2; }

.container { width: min(1200px, 92%); margin-inline: auto; }
.container.narrow { width: min(820px, 92%); }

.section { padding: 96px 0; position: relative; }
.section-tint { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
#team {
    background:
        radial-gradient(900px 480px at 88% -8%, color-mix(in srgb, var(--gold) 14%, #fff), transparent 72%),
        radial-gradient(760px 420px at 6% 108%, color-mix(in srgb, var(--accent) 7%, #fff), transparent 70%),
        #fff;
}

.sec-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .16em;
    text-transform: uppercase; color: var(--accent);
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
    padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow.light {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.25);
}
.sec-title { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 700; letter-spacing: -.02em; }
.sec-sub { margin-top: 12px; font-size: 17px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 28px; border-radius: 999px; border: 0;
    font-weight: 600; font-size: 15px; letter-spacing: .01em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    will-change: transform;
}
.btn-primary {
    background: var(--grad); color: #fff;
    box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--accent) 65%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px color-mix(in srgb, var(--accent) 70%, transparent); }
.btn:disabled, .btn[disabled], .btn.is-disabled {
    opacity: .5; cursor: not-allowed; box-shadow: none; transform: none;
}
.btn:disabled:hover, .btn[disabled]:hover, .btn.is-disabled:hover { transform: none; }
.btn.shake { animation: btnShake .4s ease; }
@keyframes btnShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}
.btn-ghost {
    background: transparent; color: #E6E9F5;
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-sending { opacity: .65; pointer-events: none; }
.link-btn {
    background: none; border: 0; color: var(--accent);
    font-weight: 600; font-size: 14.5px; padding: 6px 0;
}
.link-btn:hover { text-decoration: underline; }

.alert { padding: 14px 18px; border-radius: 12px; font-size: 14.5px; margin-bottom: 18px; }
.a-ok { background: #E7F8EF; color: #157A46; border: 1px solid #BFE9D2; }
.a-error { background: #FDECEC; color: #B42323; border: 1px solid #F5C6C6; }
.a-warn { background: #FFF6E5; color: #92600A; border: 1px solid #F3DFB3; }

.site-header {
    position: sticky; top: 0; z-index: 90;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -18px rgba(15,23,42,.25); }

.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; object-fit: contain; }
.brand-fallback { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-head); font-weight: 700; font-size: 19px; color: var(--ink); }
.brand-mark {
    display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
    background: var(--grad); color: #fff; font-size: 19px;
}

.site-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-link {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 9px 14px; border-radius: 999px;
    font-weight: 500; font-size: 15px; color: var(--ink);
    transition: background .2s, color .2s;
}
.nav-link:hover { background: color-mix(in srgb, var(--accent) 9%, transparent); color: var(--accent); }
.nav-link svg { width: 14px; height: 14px; transition: transform .25s; }
.drop-btn svg { width: 15px; height: 15px; }

.nav-drop { position: relative; }
.drop-menu {
    position: absolute; top: calc(100% + 10px); left: 50%;
    translate: -50% 0; min-width: 200px;
    background: #fff; border-radius: 14px; border: 1px solid var(--line);
    box-shadow: var(--shadow-lg); padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .25s ease;
}
.nav-drop.open .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop.open > .drop-btn { color: var(--accent); }
.nav-drop.open > .drop-btn svg { transform: rotate(180deg); }
.drop-menu a {
    display: block; padding: 10px 14px; border-radius: 9px;
    font-size: 14.5px; font-weight: 500; color: var(--ink);
}
.drop-menu a:hover { background: color-mix(in srgb, var(--accent) 8%, transparent); color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.burger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px;
    background: none; border: 1px solid var(--line); border-radius: 12px;
}
.burger span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: all .3s; }
.only-mobile { display: none; }
.hide-mobile { display: inline-flex; }

.hero {
    position: relative; overflow: hidden;
    background: radial-gradient(1200px 600px at 80% -10%, color-mix(in srgb, var(--accent) 30%, #0A0A0A) 0%, var(--ink) 55%);
    color: #CBD3EA;
    padding: 110px 0 130px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; animation: float 12s ease-in-out infinite alternate; }
.blob-a { width: 420px; height: 420px; left: -140px; top: 10%; background: color-mix(in srgb, var(--accent) 55%, transparent); }
.blob-b { width: 340px; height: 340px; right: -100px; bottom: -60px; background: color-mix(in srgb, var(--accent-2) 40%, transparent); animation-delay: -4s; }
.blob-c { width: 220px; height: 220px; right: 28%; top: -80px; background: rgba(255,173,0,.28); animation-delay: -8s; }
@keyframes float {
    from { transform: translateY(-24px) scale(1); }
    to { transform: translateY(30px) scale(1.08); }
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}

.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .95fr; align-items: center; gap: 64px; }
.hero-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 600; color: #fff;
    background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.hero-kicker svg { width: 15px; height: 15px; color: var(--accent-2); }
.hero-title {
    color: #fff; font-size: clamp(2.3rem, 5.2vw, 4rem);
    font-weight: 800; letter-spacing: -.03em; margin-bottom: 22px;
}
.grad-text {
    display: block;
    background: linear-gradient(100deg, var(--accent-2), color-mix(in srgb, var(--accent) 40%, #fff));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub { font-size: 17.5px; max-width: 540px; margin-bottom: 36px; color: #AEB8D6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { position: relative; min-height: 420px; }
.hv-card {
    position: absolute; overflow: hidden; border-radius: 20px;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.14);
    animation: float 9s ease-in-out infinite alternate;
}
.hv-card img { width: 100%; height: 100%; object-fit: cover; }
.hv-a { width: 58%; aspect-ratio: 4/5; left: 6%; top: 0; z-index: 2; }
.hv-b { width: 52%; aspect-ratio: 1; right: 2%; top: 16%; animation-delay: -3s; z-index: 1; }
.hv-c { width: 46%; aspect-ratio: 4/3; left: 20%; bottom: 0; animation-delay: -6s; z-index: 3; }
.hv-ring {
    position: absolute; width: 120px; height: 120px; right: 8%; bottom: 6%;
    border: 2px dashed color-mix(in srgb, var(--accent-2) 70%, transparent);
    border-radius: 50%; animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hv-single {
    border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow-lg); animation: float 9s ease-in-out infinite alternate;
}
.hv-single img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.marquee {
    background: var(--grad);
    overflow: hidden; padding: 26px 0;
    transform: rotate(-1.2deg);
    width: calc(100% + 60px);
    margin-inline: -30px;
    margin-top: -54px; position: relative; z-index: 5;
    box-shadow: var(--shadow-lg);
}
.marquee-track { display: flex; width: max-content; animation: scroll-x 26s linear infinite; will-change: transform; }
.marquee-item {
    display: inline-flex; align-items: center; gap: 18px; padding-inline: 18px;
    font-family: var(--ff-head); font-weight: 700; font-size: 17px; line-height: 1.4;
    color: #fff; white-space: nowrap; text-transform: uppercase; letter-spacing: .08em;
}
.marquee-item i { font-style: normal; font-size: 14px; opacity: .8; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 26px; }
.card {
    background: var(--card); border-radius: var(--r-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.service-card {
    position: relative; overflow: hidden;
    padding: 36px 30px;
    transition: transform .35s cubic-bezier(.2,.7,.3,1.2), box-shadow .35s, border-color .35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 30%, transparent); }
.service-icon {
    width: 66px; height: 66px; border-radius: 18px;
    display: grid; place-items: center;
    background: color-mix(in srgb, var(--accent) 11%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
    font-size: 30px; margin-bottom: 22px; overflow: hidden;
}
.service-icon img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 15px; }
.card-glow {
    position: absolute; width: 180px; height: 180px; border-radius: 50%;
    right: -70px; top: -70px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%);
    opacity: 0; transition: opacity .4s;
}
.service-card:hover .card-glow { opacity: 1; }

.gallery-grid {
    columns: 3; column-gap: 22px;
}
.g-item {
    position: relative; display: block; width: 100%;
    border: 0; padding: 0; margin-bottom: 22px;
    break-inside: avoid; border-radius: var(--r-md); overflow: hidden;
    box-shadow: var(--shadow-sm); background: #fff;
}
.g-item img { width: 100%; transition: transform .6s cubic-bezier(.2,.6,.3,1); }
.g-cap {
    position: absolute; inset-inline: 10px; bottom: 10px;
    background: rgba(11,17,32,.72); backdrop-filter: blur(6px);
    color: #fff; font-size: 13.5px; padding: 10px 14px; border-radius: 10px;
    opacity: 0; transform: translateY(10px); transition: all .35s ease;
    text-align: left;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover .g-cap, .g-item:focus-visible .g-cap { opacity: 1; transform: translateY(0); }

.team-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 26px; }
.team-card { text-align: center; padding: 40px 32px; width: min(340px, 100%); display: flex; flex-direction: column; align-items: center; transition: transform .35s, box-shadow .35s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
    width: 128px; height: 128px; border-radius: 50%;
    object-fit: cover; margin: 0 auto 22px;
    border: 4px solid #fff; outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
    box-shadow: var(--shadow-sm);
    display: grid; place-items: center;
}
.team-initials {
    background: var(--grad); color: #fff;
    font-family: var(--ff-head); font-weight: 700; font-size: 38px;
    letter-spacing: .02em;
}
.team-card h3 { font-size: 20px; }
.team-role {
    color: var(--accent); font-weight: 600; font-size: 14px;
    text-transform: uppercase; letter-spacing: .1em; margin: 6px 0 16px;
}
.team-bio { font-size: 14.8px; text-align: left; }
.team-bio.collapsed { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

.schedule-band-wrap { padding-top: 20px; padding-bottom: 40px; }
.schedule-band {
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    background:
        radial-gradient(600px 300px at 90% 0%, rgba(255,255,255,.16), transparent 60%),
        linear-gradient(120deg, var(--accent), color-mix(in srgb, var(--accent) 40%, var(--ink)));
    border-radius: 28px; padding: 64px 60px;
    box-shadow: var(--shadow-lg);
}
.sb-pattern {
    position: absolute; inset: 0; opacity: .5;
    background-image: radial-gradient(rgba(255,255,255,.22) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    mask-image: linear-gradient(100deg, transparent 40%, #000);
    -webkit-mask-image: linear-gradient(100deg, transparent 40%, #000);
}
.sb-copy { position: relative; max-width: 640px; }
.sb-copy h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 12px; letter-spacing: -.01em; }
.sb-copy p { color: rgba(255,255,255,.85); font-size: 16px; }
.sb-copy .eyebrow { margin-bottom: 14px; }
.schedule-band .btn-light { position: relative; flex-shrink: 0; }

.section-dark { background: radial-gradient(1000px 500px at 50% -10%, color-mix(in srgb, var(--accent) 22%, #0A0A0A), var(--ink)); }
.section-dark .sec-title { color: #fff; }
.section-dark .sec-sub { color: #9AA5C4; }
#reviews { padding-top: 40px; padding-bottom: 64px; }
#reviews .sec-head { margin-bottom: 32px; }
.carousel { max-width: 780px; margin-inline: auto; position: relative; }
.car-viewport { overflow: hidden; }
.car-track { display: flex; transition: transform .65s cubic-bezier(.65,.05,.36,1); }
.review-card {
    flex: 0 0 100%; padding: 34px clamp(18px, 5vw, 52px);
    text-align: center;
}
.review-quote { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; background: rgba(255,255,255,.08); color: var(--accent-2); font-size: 26px; margin-bottom: 22px; }
.stars { display: inline-flex; gap: 4px; margin-bottom: 18px; }
.star { color: rgba(255,255,255,.22); width: 20px; height: 20px; }
.star.on { color: var(--gold); }
.review-text { color: #E8ECFA; font-size: clamp(16px, 2vw, 19.5px); line-height: 1.7; margin-bottom: 22px; }
.review-author { color: #fff; font-weight: 600; font-size: 15px; letter-spacing: .02em; }
.review-author::before { content: '— '; color: var(--accent-2); }
.car-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 12px; }
.car-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18);
    font-size: 15px; transition: background .25s, transform .25s;
}
.car-btn:hover { background: var(--accent); transform: scale(1.06); }
.car-dots { display: flex; gap: 8px; }
.car-dot { width: 8px; height: 8px; border-radius: 99px; border: 0; background: rgba(255,255,255,.28); transition: all .3s; }
.car-dot.active { width: 26px; background: var(--accent-2); }

.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .sec-head { text-align: left; margin: 0 0 36px; }
.info-list { display: grid; gap: 20px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ico {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center; font-size: 21px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
}
.info-list strong { display: block; color: var(--ink); font-size: 15px; }
.info-list span, .info-list a { font-size: 14.8px; }
.info-list a:hover { color: var(--accent); }

.contact-form { padding: 38px 36px; display: grid; gap: 18px; }
.map-wrap { margin-top: 44px; border-radius: 18px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line)); box-shadow: 0 22px 60px -32px color-mix(in srgb, var(--accent) 55%, transparent); }
.map-head { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: linear-gradient(100deg, var(--accent), color-mix(in srgb, var(--accent-2) 78%, var(--accent))); color: #fff; }
.map-pin { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.18); flex-shrink: 0; }
.map-pin svg { width: 20px; height: 20px; }
.map-meta strong { display: block; font-size: 15px; letter-spacing: .01em; }
.map-meta span { display: block; font-size: 13px; opacity: .9; margin-top: 2px; }
.site-map { width: 100%; height: 340px; border: 0; display: block; }
.contact-form label { display: block; font-weight: 600; font-size: 14px; color: var(--ink); }
.contact-form em { color: #E5484D; font-style: normal; }
.contact-form input, .contact-form textarea {
    margin-top: 7px; width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--line); border-radius: 12px;
    font-size: 15px; color: var(--ink); background: #FBFBFE;
    transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
    background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp-field { position: absolute !important; left: -9999px; height: 1px; width: 1px; opacity: 0; }

.site-footer { background: #0A0A0A; color: #97A1BF; margin-top: 40px; }
.f-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 48px;
    padding: 72px 0 48px;
}
.f-brand .brand-fallback { color: #fff; margin-bottom: 18px; }
.f-about { font-size: 14.6px; max-width: 380px; margin-bottom: 22px; }
.f-social { display: flex; gap: 10px; }
.soc {
    width: 40px; height: 40px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    color: #C6CEE6; transition: all .25s;
}
.soc:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.f-title {
    color: #fff; font-size: 15px; text-transform: uppercase;
    letter-spacing: .12em; margin-bottom: 20px;
}
.f-links { display: grid; gap: 11px; }
.f-links a { font-size: 14.6px; transition: color .2s, padding-left .2s; }
.f-links a:hover { color: #fff; padding-left: 5px; }
.f-contact { display: grid; gap: 15px; }
.f-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.6px; }
.f-contact li a:hover { color: #fff; }
.f-contact svg { flex-shrink: 0; width: 17px; height: 17px; margin-top: 4px; color: var(--accent-2); }

.f-badges {
    border-top: 1px solid rgba(255,255,255,.09);
    padding: 28px 0;
}
.f-badges-label {
    display: block; font-size: 12px; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: #6B7694; margin-bottom: 14px;
}
.f-badge-row { display: flex; flex-wrap: wrap; gap: 12px; }
.badge-chip {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px; padding: 9px 16px;
    color: #DCE2F2; font-size: 13.8px; font-weight: 500;
    transition: all .25s;
}
.badge-chip:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.badge-chip svg { width: 19px; height: 19px; color: var(--gold); }
.badge-chip img { height: 34px; width: auto; object-fit: contain; }

.f-bottom {
    border-top: 1px solid rgba(255,255,255,.09);
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
    padding: 22px 0; font-size: 13.5px; color: #6B7694;
}
.f-mini { font-family: var(--ff-head); letter-spacing: .04em; }

.to-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 80;
    width: 48px; height: 48px; border-radius: 14px; border: 0;
    background: var(--grad); color: #fff; font-size: 19px;
    box-shadow: 0 12px 26px -8px color-mix(in srgb, var(--accent) 70%, transparent);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: all .35s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.lightbox {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(7, 11, 22, .92); backdrop-filter: blur(8px);
    display: grid; place-items: center;
    opacity: 0; visibility: hidden; transition: opacity .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-body { max-width: 86vw; text-align: center; }
.lb-body img {
    max-width: 86vw; max-height: 78vh;
    border-radius: 14px; box-shadow: var(--shadow-lg);
    margin-inline: auto;
}
.lb-body figcaption { color: #C9D2EC; margin-top: 16px; font-size: 14.5px; }
.lb-count { color: #77829F; font-size: 12.5px; margin-top: 6px; letter-spacing: .1em; }
.lb-close {
    position: absolute; top: 22px; right: 26px;
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08); color: #fff; font-size: 18px;
    display: grid; place-items: center;
}
.lb-close:hover { background: var(--accent); }
.lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
    color: #fff; font-size: 17px;
}
.lb-nav:hover { background: var(--accent); }
.lb-prev { left: 26px; }
.lb-next { right: 26px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.3,1); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
.d1 { --d: 90ms; } .d2 { --d: 180ms; } .d3 { --d: 270ms; }

.page-hero {
    background: radial-gradient(900px 400px at 70% -20%, color-mix(in srgb, var(--accent) 35%, #0A0A0A), var(--ink));
    padding: 84px 0 64px;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); letter-spacing: -.02em; }
.page-content { background: #fff; border-radius: var(--r-lg); padding: 48px clamp(24px, 5vw, 56px); box-shadow: var(--shadow-sm); border: 1px solid var(--line); font-size: 16.5px; }
.page-content h2 { margin: 26px 0 12px; font-size: 24px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { margin-bottom: 14px; }
.page-content ul, .page-content ol { margin: 0 0 14px 22px; }
.page-content img { border-radius: 14px; margin: 18px 0; }
.page-content a { color: var(--accent); font-weight: 500; }
.page-content blockquote {
    border-left: 4px solid var(--accent); padding: 10px 20px;
    background: color-mix(in srgb, var(--accent) 6%, transparent);
    border-radius: 0 12px 12px 0; margin: 18px 0;
}

@media (max-width: 1080px) {
    .hero-inner { grid-template-columns: 1fr; gap: 70px; }
    .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
    .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
    .f-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .burger { display: flex; }
    .hide-mobile { display: none; }
    .only-mobile { display: block; }
    .site-nav {
        position: fixed; inset: 74px 0 auto 0; z-index: 89;
        background: #fff; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        max-height: 0; overflow: hidden; transition: max-height .4s ease;
        display: block;
    }
    body.nav-open .site-nav { max-height: calc(100vh - 74px); overflow-y: auto; }
    .nav-list { flex-direction: column; align-items: stretch; padding: 18px 5vw 26px; gap: 2px; }
    .nav-link { width: 100%; justify-content: space-between; padding: 13px 10px; font-size: 16px; border-radius: 10px; }
    .drop-menu {
        position: static; translate: none; opacity: 1; visibility: hidden;
        transform: none; box-shadow: none; border: 0; padding: 0 0 0 16px;
        display: none; min-width: 0;
    }
    .nav-drop.open .drop-menu { display: block; visibility: visible; }
    .drop-menu a { padding: 11px 12px; }
    .only-mobile .btn { width: 100%; margin-top: 14px; }
    body.nav-open { overflow: hidden; }
    body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.nav-open .burger span:nth-child(2) { opacity: 0; }
    body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .schedule-band { flex-direction: column; text-align: center; padding: 52px 28px; }
    .sb-copy .eyebrow { margin-inline: auto; }
    .gallery-grid { columns: 2; column-gap: 16px; }
}

@media (max-width: 640px) {
    .section { padding: 68px 0; }
    .hero { padding: 78px 0 96px; }
    .hero-visual { min-height: 320px; }
    .hv-a { width: 62%; }
    .marquee { margin-top: -40px; }
    .gallery-grid { columns: 1; }
    .form-row { grid-template-columns: 1fr; }
    .f-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
    .f-bottom { flex-direction: column; text-align: center; }
    .lb-nav { width: 40px; height: 40px; }
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
    .page-content { padding: 34px 22px; }
    .review-card { padding: 34px 18px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
}
.brand-logo-light { background: #fff; padding: 10px 14px; border-radius: 12px; box-shadow: inset 0 0 0 1px rgba(11,17,32,.08); }
.f-contact li { align-items: center; }
.f-contact li > a { display: flex; align-items: center; gap: 12px; }
.f-contact .fico { flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px; display: inline-grid; place-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); color: var(--accent-2); transition: all .25s; }
.f-contact .fico svg { width: 16px; height: 16px; margin: 0; }
.f-contact a:hover { color: #fff; }
.f-contact a:hover .fico { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.22); }
.f-legal { border-top: 1px solid rgba(255,255,255,.09); padding-top: 12px; padding-bottom: 6px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; row-gap: 8px; }
.f-legal a { position: relative; padding: 0 32px; font-size: 12.5px; color: #8A93B0; text-transform: uppercase; letter-spacing: .12em; font-weight: 500; transition: color .2s ease; }
.f-legal a + a::before { content: ''; position: absolute; left: -2px; top: 50%; transform: translateY(-50%); width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.28); }
.f-legal a:hover { color: #fff; }
body.has-tawk .to-top { bottom: 96px; }

.partners-strip { padding: 64px 0 78px; background: #fff; border-top: 1px solid var(--line); }
.ps-label { text-align: center; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: #99A1B9; font-weight: 600; margin-bottom: 30px; }
.partner-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.partner-track { display: flex; width: max-content; animation: scroll-x-rev 30s linear infinite; }
@keyframes scroll-x-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.partner-card { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; margin-right: 64px; cursor: default; }
.partner-card img { height: 52px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1); opacity: .6; transition: all .35s ease; }
.pc-mark { width: 52px; height: 52px; border-radius: 14px; background: #EEF0F7; color: #5C6480; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; font-size: 17px; filter: grayscale(1); opacity: .75; transition: all .35s ease; }
.pc-name { font-family: var(--ff-head); font-weight: 600; font-size: 15px; letter-spacing: .04em; color: #6B7390; filter: grayscale(1); opacity: .85; transition: all .35s ease; text-transform: uppercase; }
.partner-card:hover img { filter: grayscale(0); opacity: 1; transform: translateY(-3px); }
.partner-card:hover .pc-mark { filter: grayscale(0); opacity: 1; background: color-mix(in srgb, var(--accent) 13%, #fff); color: var(--accent); transform: translateY(-3px); }
.partner-card:hover .pc-name { color: var(--ink); opacity: 1; }

.review-cta { text-align: center; margin-top: 34px; }
.btn-outline-light { background: transparent; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35); color: #E6E9F5; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.modal-backdrop { position: fixed; inset: 0; z-index: 150; background: rgba(7,11,22,.68); backdrop-filter: blur(7px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal-card { position: relative; background: #fff; border-radius: 22px; width: min(540px, 100%); max-height: 90vh; overflow-y: auto; padding: 30px 26px; box-shadow: var(--shadow-lg); animation: pop-in .35s cubic-bezier(.2,.7,.3,1.1); scrollbar-width: none; -ms-overflow-style: none; }
.modal-card::-webkit-scrollbar { display: none; }
@keyframes pop-in { from { opacity: 0; transform: translateY(28px) scale(.97); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); display: grid; place-items: center; font-size: 14px; z-index: 2; transition: all .2s; }
.modal-close:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.modal-title { font-family: var(--ff-head); font-size: 22px; color: var(--ink); margin-bottom: 6px; }
.modal-sub { color: var(--body-c); font-size: 14.5px; margin-bottom: 20px; }
.modal-form { display: grid; gap: 13px; }
.modal-form label { display: block; font-weight: 600; font-size: 13px; color: var(--ink); }
.modal-form em { color: #E5484D; font-style: normal; }
.modal-form input, .modal-form select, .modal-form textarea { margin-top: 6px; width: 100%; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 12px; font-size: 14.5px; color: var(--ink); background: #FBFBFE; transition: border-color .2s, box-shadow .2s; }
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 13%, transparent); background: #fff; }
.modal-fineprint { text-align: center; font-size: 12.5px; color: #98A2B3; margin-top: -4px; }

.modal-success { text-align: center; display: grid; gap: 10px; justify-items: center; }
.ms-check { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; font-size: 28px; color: #fff; background: linear-gradient(120deg, #22B573, #0E9F6E); box-shadow: 0 12px 26px -10px rgba(34,181,115,.6); }
#reviewModal .ms-check { background: linear-gradient(120deg, #FFB93B, #F59E0B); box-shadow: 0 12px 26px -10px rgba(245,158,11,.55); }
.ms-check svg { width: 30px; height: 30px; }
.modal-success h3 { font-family: var(--ff-head); font-size: 21px; color: var(--ink); }
.ms-when { font-size: 16.5px; color: var(--ink); }
.ms-note { font-size: 14.5px; max-width: 360px; }
.share-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: 8px 0 4px; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 10px 22px -8px rgba(37,211,102,.55); }
.btn-wa:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-mail { background: var(--ink); color: #fff; }
.btn-ghost-dark { background: transparent; box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink); }
.btn-ghost-dark:hover { border-color: var(--accent); color: var(--accent); }
.btn-mail:hover { transform: translateY(-2px); }
.ms-summary { width: 100%; text-align: left; font-family: ui-monospace, Consolas, monospace; font-size: 12px; line-height: 1.55; background: #F7F7F8; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; white-space: pre-wrap; color: #556077; }

.field-block { display: grid; gap: 8px; }
.flabel-inline { font-weight: 600; font-size: 13.5px; color: var(--ink); }
.flabel-inline em { color: #E5484D; font-style: normal; }
.dp-wrap { position: relative; }
.dp-input { width: 100%; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #FBFBFE; font-size: 15px; color: var(--ink); cursor: pointer; text-align: left; }
.dp-input > svg:first-child { color: var(--accent); }
.dp-input > svg:last-child { margin-left: auto; width: 15px; height: 15px; transition: transform .25s; color: #98A2B3; }
.dp-wrap.open .dp-input { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 12%, transparent); }
.dp-wrap.open .dp-input > svg:last-child { transform: rotate(180deg); }
.cal { position: absolute; top: calc(100% + 8px); left: 0; z-index: 40; width: min(310px, 86vw); background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 14px; animation: pop-in .25s ease; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-title { font-family: var(--ff-head); font-weight: 700; font-size: 15px; color: var(--ink); }
.cal-nav { width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); display: grid; place-items: center; font-size: 13px; }
.cal-nav:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.cal-nav:disabled { opacity: .35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dow { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .06em; color: #98A2B3; padding: 5px 0; text-transform: uppercase; }
.cal-day { aspect-ratio: 1; display: grid; place-items: center; border: 0; background: transparent; border-radius: 9px; font-size: 13.5px; font-weight: 500; color: var(--ink); cursor: pointer; transition: background .15s, color .15s; }
.cal-day:hover:not(:disabled):not(.sel) { background: color-mix(in srgb, var(--accent) 10%, transparent); }
.cal-day.muted { color: transparent; pointer-events: none; }
.cal-day.disabled { color: #C6CBD9; background: none; cursor: not-allowed; }
.cal-day.today { box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--accent) 45%, transparent); }
.cal-day.sel { background: var(--grad); color: #fff; font-weight: 700; }
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.time-chip { padding: 10px 6px; border-radius: 11px; border: 1.5px solid var(--line); background: #FBFBFE; font-size: 13.5px; font-weight: 600; color: var(--body-c); transition: all .18s; }
.time-chip:hover:not(.selected) { border-color: color-mix(in srgb, var(--accent) 45%, transparent); color: var(--accent); }
.time-chip.selected { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 8px 18px -6px color-mix(in srgb, var(--accent) 60%, transparent); }
.star-pick { display: inline-flex; gap: 4px; }
.sp-star { width: 42px; height: 42px; border-radius: 11px; border: 1.5px solid var(--line); background: #FBFBFE; display: grid; place-items: center; color: #D4D8E4; font-size: 19px; transition: all .18s; }
.sp-star.on { color: var(--gold); border-color: #F3D9A4; background: #FFF7E8; }
.sp-star:hover { transform: scale(1.07); }

body.protected { user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
body.protected input, body.protected textarea, body.protected select, body.protected [contenteditable] { user-select: text; -webkit-user-select: text; }
body.protected img { -webkit-user-drag: none; }

@media (max-width: 640px) {
    .modal-card { padding: 28px 20px; }
    .cal { left: 50%; transform: translateX(-50%); }

    .partner-card img { height: 42px; }
}
.page-updated { color: #AAB3CC; font-size: 14px; margin-top: 10px; letter-spacing: .04em; }
.ql-font-sans-serif { font-family: 'Inter', sans-serif !important; }
.ql-font-sora { font-family: 'Sora', sans-serif !important; }
.ql-font-inter { font-family: 'Inter', sans-serif !important; }
.ql-font-serif { font-family: Georgia, serif !important; }
.ql-font-monospace { font-family: Consolas, monospace !important; }
.ql-size-small { font-size: 0.75em !important; }
.ql-size-large { font-size: 1.35em !important; }
.ql-size-huge { font-size: 1.9em !important; }
.page-content video { max-width: 100%; border-radius: 10px; margin: 14px 0; display: block; }
.cap-chars {
    position: relative;
    display: inline-flex; gap: 10px; align-items: center;
    padding: 12px 18px;
    background:
        linear-gradient(115deg, rgba(0,0,0,.06) 1px, transparent 1px),
        linear-gradient(245deg, rgba(0,0,0,.05) 1px, transparent 1px),
        #FFF9EC;
    background-size: 14px 14px, 18px 18px, auto;
    border: 1px dashed #E5C87A;
    border-radius: 10px;
    width: max-content;
    user-select: none;
}
.cap-chars::after {
    content: '';
    position: absolute; left: 6%; right: 6%; top: 52%;
    height: 1.5px; background: rgba(16,24,40,.28);
    transform: rotate(-5deg);
}
.cap-ch {
    font-family: var(--ff-head); font-size: 26px; font-weight: 700;
    display: inline-block; line-height: 1;
    text-shadow: 1px 1px 0 rgba(255,255,255,.7);
    pointer-events: none;
}
.cap-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.cap-refresh {
    border: 0; background: none; color: var(--accent);
    font-size: 12px; font-weight: 600; cursor: pointer;
    padding: 2px 6px; border-radius: 6px;
}
.cap-refresh:hover { background: color-mix(in srgb, var(--accent) 10%, transparent); }
.cap-row { display: flex; align-items: center; gap: 10px; }
.cap-input { width: 120px !important; }
.cap-status { font-family: var(--ff-head); font-size: 20px; font-weight: 700; min-width: 24px; text-align: center; }

/* ---- Opening hours ---- */
.open-badge { display:inline-block; font-size:11px; font-weight:700; padding:2px 9px; border-radius:999px; vertical-align:middle; margin-left:6px; letter-spacing:.02em; }
.open-badge.is-open { background: rgba(26,163,74,.12); color:#0f8a45; }
.open-badge.is-closed { background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); }
.open-badge.is-soon { background: rgba(255,173,0,.16); color:#b97900; }

.hours-week-wrap { margin-top:20px; }
.hw-label { display:block; font-size:11.5px; text-transform:uppercase; letter-spacing:.09em; font-weight:700; color: var(--accent); margin-bottom:10px; }
.hours-week { list-style:none; display:grid; gap:4px; }
.hours-week li { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:8px 12px; border:1px solid var(--line); border-radius:10px; font-size:14px; }
.hours-week li.is-today { background: color-mix(in srgb, var(--accent) 8%, #fff); border-color: color-mix(in srgb, var(--accent) 32%, #fff); }
.hours-week .hw-day { font-weight:600; color: var(--ink); }
.hours-week .hw-day em { font-style:normal; color: var(--accent); font-weight:700; margin-left:4px; }
.hours-week .hw-time { color:#555; font-size:13.5px; text-align:right; }

.holiday-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: rgba(16,16,16,.55); padding: 20px; }
.hm-card { background: #fff; border-radius: 16px; max-width: 420px; width: 100%; padding: 30px 26px; text-align: center; box-shadow: 0 24px 60px -20px rgba(0,0,0,.5); border-top: 4px solid var(--accent); }
.hm-icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 14px; background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); font-size: 26px; }
.hm-icon svg { width: 28px; height: 28px; }
.hm-card h3 { margin: 0 0 8px; font-size: 20px; color: var(--ink); }
.hm-card p { margin: 0 0 22px; color: #555; font-size: 15px; line-height: 1.55; }
.hm-msg { margin: 0 0 22px; color: #555; font-size: 15px; line-height: 1.6; }
.hm-msg p { margin: 0 0 10px; }
.hm-msg p:last-child { margin-bottom: 0; }
.hm-msg ul, .hm-msg ol { text-align: left; margin: 0 0 10px 18px; padding: 0; }
.hm-msg a { color: var(--accent); }
.hm-card .btn { width: 100%; }

/* Offer popup */
.offer-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: rgba(16,16,16,.55); padding: 20px; overflow: auto; opacity: 0; transition: opacity .35s ease; }
.offer-modal.is-show { opacity: 1; }
* { box-sizing: border-box; }

.offer-modal-wrap {
  position: relative;
  width: min(500px, 94vw);
  padding: 8px;
  margin: 0;
  border-radius: 32px;
}

.svg-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.border-line {
  animation: borderMove 8s linear infinite;
}

@keyframes borderMove {
  to { stroke-dashoffset: -224; }
}

.offer-inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 27px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 25px 70px rgba(0,0,0,.25);
}

.offer-top {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at center, var(--accent), var(--accent-2) 55%, var(--gold));
  overflow: hidden;
}

.offer-top::before,
.offer-top::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
}
.offer-top::before { width: 260px; height: 260px; }
.offer-top::after { width: 360px; height: 360px; }

.discount-circle {
  position: relative;
  z-index: 3;
  width: 140px;
  min-height: 140px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  transform: rotate(-5deg);
  box-shadow: 0 15px 40px rgba(0,0,0,.2);
}
.discount-circle strong { font-size: clamp(18px, 6vw, 38px); line-height: 1.05; font-weight: 900; letter-spacing: .5px; }

.offer-close {
  position: absolute;
  z-index: 10;
  right: 15px;
  top: 15px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: white;
  font-size: 25px;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.offer-content { padding: 28px; text-align: center; }

.offer-poster {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  margin-bottom: 16px;
  display: block;
  background: #f3f3f5;
}

.offer-content h2 {
  margin: 15px 0 10px;
  color: #111827;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 900;
}

.offer-content p,
.offer-desc,
.offer-foot {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.offer-desc,
.offer-foot { margin-bottom: 18px; }
.offer-desc > :first-child,
.offer-foot > :first-child { margin-top: 0; }
.offer-desc > :last-child,
.offer-foot > :last-child { margin-bottom: 0; }
.offer-desc p,
.offer-foot p { margin: 0 0 0.8em; }
.offer-desc h1, .offer-foot h1,
.offer-desc h2, .offer-foot h2,
.offer-desc h3, .offer-foot h3 {
  margin: 0.6em 0 0.4em;
  line-height: 1.25;
  color: #111827;
  font-weight: 800;
}
.offer-desc ul, .offer-foot ul,
.offer-desc ol, .offer-foot ol {
  display: inline-block;
  text-align: left;
  margin: 0 0 0.8em;
  padding-left: 1.3em;
}
.offer-desc a, .offer-foot a { color: var(--accent); text-decoration: underline; }

.claim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 25px -8px color-mix(in srgb, var(--accent) 55%, transparent);
  transition: .25s;
}
.claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -10px color-mix(in srgb, var(--accent) 65%, transparent);
}
.claim-btn .cb-ico { display: inline-flex; width: 1.2em; height: 1.2em; flex: 0 0 auto; }
.claim-btn .cb-ico svg { width: 100%; height: 100%; display: block; fill: currentColor; }
.claim-btn .cb-txt { line-height: 1.1; text-align: left; }
.claim-btn--sm { padding: 10px 14px; font-size: 12px; letter-spacing: .5px; gap: 7px; border-radius: 11px; }
.claim-btn--md { padding: 15px; font-size: 14px; }
.claim-btn--lg { padding: 20px 18px; font-size: 17px; letter-spacing: 1.5px; gap: 12px; border-radius: 16px; }

.terms { display: block; margin-top: 12px; color: #94a3b8; font-size: 10px; }

@media(max-width:520px) {
  .offer-top { height: 175px; }
  .discount-circle { width: 115px; min-height: 115px; }
  .discount-circle strong { font-size: 26px; }
  .offer-content { padding: 22px 18px; }
  .offer-content h2 { font-size: 24px; }
}
