/* ============================================
   Horizonaventure — Design System
   ============================================ */

:root {
    --c-primary: #444c5c;
    --c-primary-dark: #2f3541;
    --c-primary-deep: #1d222b;
    --c-secondary: #78a5a3;
    --c-accent: #ce5a57;
    --c-gold: #e1b16a;
    --c-gold-soft: #f0d3a4;

    --c-bg: #f6f5f2;
    --c-bg-alt: #ecebe6;
    --c-surface: #ffffff;
    --c-text: #262b34;
    --c-text-soft: #5c6472;
    --c-line: rgba(68, 76, 92, .14);

    --grad-dark: linear-gradient(135deg, #1d222b 0%, #444c5c 55%, #37404f 100%);
    --grad-gold: linear-gradient(120deg, #e1b16a 0%, #f0d3a4 50%, #cf9c4f 100%);
    --grad-teal: linear-gradient(135deg, #78a5a3 0%, #5d8d8b 100%);

    --sh-sm: 0 4px 14px rgba(29, 34, 43, .07);
    --sh-md: 0 14px 38px rgba(29, 34, 43, .11);
    --sh-lg: 0 28px 70px rgba(29, 34, 43, .18);
    --sh-gold: 0 10px 32px rgba(225, 177, 106, .38);

    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 26px;
    --r-pill: 999px;

    --sp-section: clamp(64px, 8vw, 128px);
    --wrap: 1240px;

    --ff-title: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
    --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;

    --tr: .35s cubic-bezier(.4, .12, .2, 1);
    --tr-fast: .22s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-body);
    font-size: 17px;
    line-height: 1.72;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

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

img {
    height: auto;
    object-fit: cover;
}

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

ul,
ol {
    list-style: none;
}

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

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

table {
    border-collapse: collapse;
    width: 100%;
}

:focus-visible {
    outline: 3px solid var(--c-gold);
    outline-offset: 3px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-family: var(--ff-title);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.015em;
    color: var(--c-primary-deep);
}

h1 {
    font-size: clamp(2.3rem, 5.4vw, 4.25rem);
}

h2 {
    font-size: clamp(1.95rem, 3.9vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.1vw, 1.65rem);
}

h4 {
    font-size: 1.15rem;
}

p {
    color: var(--c-text-soft);
}

strong {
    color: var(--c-primary-deep);
    font-weight: 600;
}

/* ---------- Layout ---------- */
.wrap {
    width: min(100% - 40px, var(--wrap));
    margin-inline: auto;
}

.section {
    padding-block: var(--sp-section);
    position: relative;
}

.section--alt {
    background: var(--c-bg-alt);
}

.section--dark {
    background: var(--grad-dark);
    color: #e9eaee;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: #fff;
}

.section--dark p {
    color: rgba(238, 240, 244, .8);
}

.section-head {
    max-width: 760px;
    margin-bottom: clamp(38px, 5vw, 66px);
}

.section-head--center {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-body);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--grad-gold);
    border-radius: 2px;
}

.section--dark .eyebrow {
    color: var(--c-gold);
}

.section-head p {
    margin-top: 18px;
    font-size: 1.06rem;
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: var(--r-pill);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .03em;
    cursor: pointer;
    transition: transform var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast), color var(--tr-fast);
    will-change: transform;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.btn--gold {
    background: var(--grad-gold);
    color: #33291a;
    box-shadow: var(--sh-gold);
}

.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(225, 177, 106, .55);
}

.btn--accent {
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 10px 30px rgba(206, 90, 87, .35);
}

.btn--accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(206, 90, 87, .5);
}

.btn--dark {
    background: var(--c-primary);
    color: #fff;
    box-shadow: var(--sh-sm);
}

.btn--dark:hover {
    background: var(--c-primary-deep);
    transform: translateY(-3px);
}

.btn--ghost {
    border: 1.5px solid rgba(255, 255, 255, .45);
    color: #fff;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: var(--c-gold);
    transform: translateY(-3px);
}

.btn--outline {
    border: 1.5px solid var(--c-primary);
    color: var(--c-primary-deep);
}

.btn--outline:hover {
    background: var(--c-primary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ---------- Decorative ---------- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-block: 6px 26px;
}

.divider span {
    height: 1px;
    width: 70px;
    background: linear-gradient(90deg, transparent, var(--c-gold));
}

.divider span:last-child {
    background: linear-gradient(90deg, var(--c-gold), transparent);
}

.divider svg {
    width: 22px;
    height: 22px;
    color: var(--c-gold);
}

.chip-suit {
    position: absolute;
    color: rgba(225, 177, 106, .12);
    pointer-events: none;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    background: rgba(29, 34, 43, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(225, 177, 106, .18);
    transition: background var(--tr-fast), box-shadow var(--tr-fast);
}

.site-header.is-scrolled {
    background: rgba(29, 34, 43, .96);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .32);
}

.topbar {
    background: linear-gradient(90deg, #1a1f27, #3a4351);
    border-bottom: 1px solid rgba(225, 177, 106, .16);
    font-size: .82rem;
}

.topbar .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 26px;
    padding-block: 9px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(233, 236, 241, .82);
    transition: color var(--tr-fast);
}

.topbar-item svg {
    width: 15px;
    height: 15px;
    color: var(--c-gold);
    flex: none;
}

a.topbar-item:hover {
    color: var(--c-gold);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 14px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand img {
    width: 46px;
    height: 46px;
    transition: transform var(--tr);
}

.brand:hover img {
    transform: rotate(-12deg) scale(1.06);
}

.brand-name {
    font-family: var(--ff-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .01em;
    line-height: 1.05;
}

.brand-tag {
    display: block;
    font-family: var(--ff-body);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--c-gold);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-list a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--r-pill);
    font-size: .92rem;
    font-weight: 500;
    color: rgba(236, 238, 242, .88);
    position: relative;
    transition: color var(--tr-fast), background var(--tr-fast);
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--grad-gold);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--tr-fast);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
    color: #fff;
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
    width: 22px;
}

.header-cta {
    padding: 12px 26px;
    font-size: .88rem;
}

.burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(225, 177, 106, .35);
    position: relative;
}

.burger span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--c-gold);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: transform var(--tr-fast), opacity var(--tr-fast), top var(--tr-fast);
}

.burger span:nth-child(1) {
    top: 16px;
}

.burger span:nth-child(2) {
    top: 22px;
}

.burger span:nth-child(3) {
    top: 28px;
}

.burger[aria-expanded="true"] span:nth-child(1) {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding-top: clamp(150px, 17vw, 210px);
    padding-bottom: clamp(72px, 9vw, 130px);
    background: var(--grad-dark);
    color: #eceef2;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(225, 177, 106, .3), transparent 46%),
        radial-gradient(circle at 8% 82%, rgba(120, 165, 163, .28), transparent 48%);
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: radial-gradient(circle at 50% 40%, #000, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, #000, transparent 72%);
    z-index: -1;
}

.hero h1 {
    color: #fff;
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: normal;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    color: rgba(232, 235, 240, .84);
    max-width: 620px;
}

.hero--home .hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(225, 177, 106, .42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-gold-soft);
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
}

.hero-badge--pulse {
    animation: pulseGlow 2.8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(225, 177, 106, .35);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(225, 177, 106, 0);
    }
}

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

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.hero-meta div span {
    display: block;
    font-family: var(--ff-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1;
}

.hero-meta div small {
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(230, 233, 238, .66);
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-lg);
    border: 1px solid rgba(225, 177, 106, .3);
    box-shadow: var(--sh-lg);
}

.hero-float {
    position: absolute;
    left: -26px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--sh-md);
}

.hero-float svg {
    width: 30px;
    height: 30px;
    color: var(--c-gold);
    flex: none;
}

.hero-float strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

.hero-float small {
    color: rgba(232, 235, 240, .72);
    font-size: .8rem;
}

/* Inner page hero */
.hero--page {
    text-align: center;
}

.hero--page .hero-inner {
    max-width: 860px;
    margin-inline: auto;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: .82rem;
    color: rgba(230, 233, 238, .7);
    margin-bottom: 20px;
}

.breadcrumbs a:hover {
    color: var(--c-gold);
}

.breadcrumbs span[aria-hidden="true"] {
    color: var(--c-gold);
}

.hero--page p {
    margin-inline: auto;
}

/* ============================================
   GRIDS & CARDS
   ============================================ */
.grid {
    display: grid;
    gap: clamp(20px, 2.6vw, 32px);
}

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

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

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: clamp(26px, 3vw, 38px);
    box-shadow: var(--sh-sm);
    position: relative;
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--tr);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-md);
    border-color: rgba(225, 177, 106, .5);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    margin-bottom: 12px;
}

.card p+.card-list {
    margin-top: 18px;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: rgba(120, 165, 163, .16);
    color: var(--c-secondary);
    margin-bottom: 22px;
    transition: transform var(--tr), background var(--tr), color var(--tr);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.card:hover .card-icon {
    background: var(--grad-gold);
    color: #3a2d18;
    transform: rotate(-8deg) scale(1.05);
}

.card-num {
    font-family: var(--ff-title);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(68, 76, 92, .14);
    line-height: 1;
    margin-bottom: 8px;
}

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

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .95rem;
    color: var(--c-text-soft);
}

.card-list svg {
    width: 18px;
    height: 18px;
    flex: none;
    margin-top: 4px;
    color: var(--c-secondary);
}

.card--dark {
    background: var(--grad-dark);
    border-color: rgba(225, 177, 106, .28);
    color: #e9ebef;
}

.card--dark h3,
.card--dark h4 {
    color: #fff;
}

.card--dark p,
.card--dark .card-list li {
    color: rgba(233, 236, 241, .8);
}

.card--glass {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: none;
}

.card--media {
    padding: 0;
}

.card--media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    transition: transform var(--tr);
}

.card--media:hover img {
    transform: scale(1.05);
}

.card-media-frame {
    overflow: hidden;
}

.card--media .card-body {
    padding: clamp(24px, 2.6vw, 34px);
}

.tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: var(--r-pill);
    background: rgba(206, 90, 87, .1);
    color: var(--c-accent);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tag--gold {
    background: rgba(225, 177, 106, .18);
    color: #a8762a;
}

.tag--teal {
    background: rgba(120, 165, 163, .18);
    color: #4c7876;
}

/* ---------- Split (image + text) ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(34px, 5vw, 76px);
    align-items: center;
}

.split--reverse .split-media {
    order: 2;
}

.split-media {
    position: relative;
}

.split-media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
}

.split-media::after {
    content: "";
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 1px solid rgba(225, 177, 106, .55);
    border-radius: var(--r-lg);
    z-index: -1;
}

.split-body h2 {
    margin-bottom: 20px;
}

.split-body p+p {
    margin-top: 16px;
}

.split-body .btn-row {
    margin-top: 30px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.mini-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.mini-item svg {
    width: 24px;
    height: 24px;
    flex: none;
    color: var(--c-accent);
    margin-top: 3px;
}

.mini-item strong {
    display: block;
    font-size: .98rem;
}

.mini-item small {
    color: var(--c-text-soft);
    font-size: .87rem;
    line-height: 1.55;
    display: block;
}

/* ---------- Stats ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(225, 177, 106, .22);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(225, 177, 106, .28);
}

.stat {
    background: var(--c-primary-deep);
    padding: clamp(28px, 3.4vw, 46px) 22px;
    text-align: center;
    transition: background var(--tr);
}

.stat:hover {
    background: #262c37;
}

.stat svg {
    width: 30px;
    height: 30px;
    color: var(--c-gold);
    margin: 0 auto 14px;
}

.stat b {
    display: block;
    font-family: var(--ff-title);
    font-size: clamp(2.4rem, 4.4vw, 3.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 10px;
    font-size: .8rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(230, 233, 238, .68);
}

/* ---------- Timeline ---------- */
.timeline {
    position: relative;
    display: grid;
    gap: 28px;
    padding-left: 46px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--c-gold), rgba(120, 165, 163, .5), transparent);
}

.timeline li {
    position: relative;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 26px 30px;
    box-shadow: var(--sh-sm);
    transition: transform var(--tr), box-shadow var(--tr);
}

.timeline li:hover {
    transform: translateX(8px);
    box-shadow: var(--sh-md);
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -39px;
    top: 30px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--grad-gold);
    border: 3px solid var(--c-bg);
    box-shadow: 0 0 0 3px rgba(225, 177, 106, .3);
}

.timeline h3 {
    font-size: 1.22rem;
    margin-bottom: 8px;
}

.timeline .step-no {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c-accent);
    display: block;
    margin-bottom: 6px;
}

/* ---------- Testimonials ---------- */
.quote-card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: clamp(26px, 3vw, 36px);
    box-shadow: var(--sh-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: transform var(--tr), box-shadow var(--tr);
}

.quote-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--sh-md);
}

.quote-mark {
    width: 38px;
    height: 38px;
    color: rgba(225, 177, 106, .55);
}

.quote-card blockquote {
    font-size: 1rem;
    color: var(--c-text-soft);
    line-height: 1.72;
    font-style: italic;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--c-line);
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--grad-teal);
    color: #fff;
    font-weight: 700;
    font-family: var(--ff-title);
    font-size: 1.18rem;
    flex: none;
}

.quote-author strong {
    display: block;
    font-size: .96rem;
}

.quote-author small {
    color: var(--c-text-soft);
    font-size: .82rem;
}

.stars {
    display: flex;
    gap: 3px;
    color: var(--c-gold);
}

.stars svg {
    width: 16px;
    height: 16px;
}

/* ---------- Pull quote ---------- */
.pullquote {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
    padding: clamp(34px, 4vw, 58px);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(225, 177, 106, .35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pullquote q {
    font-family: var(--ff-title);
    font-size: clamp(1.4rem, 2.7vw, 2.05rem);
    line-height: 1.4;
    color: #fff;
    display: block;
    quotes: "«" "»";
}

.pullquote cite {
    display: block;
    margin-top: 22px;
    font-style: normal;
    font-size: .84rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-gold);
}

/* ---------- Info boxes & banners ---------- */
.infobox {
    display: flex;
    gap: 22px;
    padding: clamp(24px, 3vw, 36px);
    border-radius: var(--r-md);
    background: rgba(120, 165, 163, .1);
    border-left: 5px solid var(--c-secondary);
}

.infobox svg {
    width: 30px;
    height: 30px;
    flex: none;
    color: var(--c-secondary);
}

.infobox--accent {
    background: rgba(206, 90, 87, .09);
    border-left-color: var(--c-accent);
}

.infobox--accent svg {
    color: var(--c-accent);
}

.infobox--gold {
    background: rgba(225, 177, 106, .14);
    border-left-color: var(--c-gold);
}

.infobox--gold svg {
    color: #b98a3c;
}

.infobox h3 {
    margin-bottom: 8px;
    font-size: 1.22rem;
}

.offline-banner {
    position: relative;
    border-radius: var(--r-lg);
    padding: clamp(32px, 4.4vw, 62px);
    background:
        linear-gradient(135deg, rgba(206, 90, 87, .96), rgba(163, 60, 58, .96));
    color: #fff;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(206, 90, 87, .32);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(22px, 3vw, 40px);
    align-items: center;
}

.offline-banner::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 34px solid rgba(255, 255, 255, .09);
}

.offline-banner .ob-icon {
    width: 84px;
    height: 84px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .3);
}

.offline-banner .ob-icon svg {
    width: 42px;
    height: 42px;
    color: #fff;
}

.offline-banner h2,
.offline-banner h3 {
    color: #fff;
    margin-bottom: 12px;
}

.offline-banner p {
    color: rgba(255, 255, 255, .92);
    font-size: 1.04rem;
}

.offline-banner p+p {
    margin-top: 10px;
}

.offline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.offline-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .17);
    border: 1px solid rgba(255, 255, 255, .3);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.offline-tags svg {
    width: 15px;
    height: 15px;
}

.venue-notice {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(34px, 4.6vw, 66px) clamp(24px, 4vw, 70px);
    border-radius: var(--r-lg);
    background: var(--c-surface);
    border: 1px solid rgba(225, 177, 106, .5);
    box-shadow: var(--sh-md);
}

.venue-notice::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: var(--grad-gold);
}

.venue-notice::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -140px;
    width: 320px;
    height: 320px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 177, 106, .2), transparent 65%);
    pointer-events: none;
}

.venue-notice>* {
    position: relative;
}

.venue-notice .vn-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: var(--grad-dark);
    border: 1px solid rgba(225, 177, 106, .45);
    box-shadow: var(--sh-gold);
}

.venue-notice .vn-icon svg {
    width: 38px;
    height: 38px;
    color: var(--c-gold);
}

.venue-notice h2 {
    margin: 10px 0 14px;
}

.venue-notice .vn-sub {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--c-text-soft);
}

.venue-notice .vn-warning {
    max-width: 780px;
    margin: 24px auto 0;
    padding: 20px 26px;
    border-radius: var(--r-md);
    background: rgba(206, 90, 87, .1);
    border: 1px solid rgba(206, 90, 87, .34);
    color: #8f2f2d;
    font-weight: 700;
    font-size: 1.02rem;
}

.venue-notice .offline-tags {
    justify-content: center;
    margin-top: 26px;
}

.venue-notice .offline-tags span {
    background: rgba(68, 76, 92, .07);
    border-color: rgba(68, 76, 92, .18);
    color: var(--c-primary);
}

.theme-block {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
    padding: clamp(30px, 4vw, 58px);
    border-radius: var(--r-lg);
    background: var(--grad-dark);
    border: 1px solid rgba(225, 177, 106, .34);
    box-shadow: var(--sh-lg);
    position: relative;
    overflow: hidden;
}

.theme-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 12%, rgba(225, 177, 106, .28), transparent 52%);
}

.theme-block>* {
    position: relative;
}

.theme-block h2 {
    color: #fff;
}

.theme-block img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-md);
    border: 1px solid rgba(225, 177, 106, .3);
}

/* ---------- Table ---------- */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-line);
    background: var(--c-surface);
    box-shadow: var(--sh-sm);
}

.price-table {
    min-width: 760px;
}

.price-table th,
.price-table td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid var(--c-line);
    font-size: .95rem;
}

.price-table thead th {
    background: var(--c-primary-deep);
    color: #fff;
    font-family: var(--ff-body);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
}

.price-table tbody th {
    font-weight: 600;
    color: var(--c-primary-deep);
}

.price-table tbody tr:hover {
    background: rgba(120, 165, 163, .08);
}

.price-table tbody tr:last-child td,
.price-table tbody tr:last-child th {
    border-bottom: 0;
}

.price-table .yes {
    color: var(--c-secondary);
    font-weight: 700;
}

.price-table .no {
    color: rgba(68, 76, 92, .4);
}

.price-tag {
    font-family: var(--ff-title);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--c-primary-deep);
    line-height: 1;
}

.price-tag sup {
    font-size: 1.1rem;
    font-family: var(--ff-body);
    color: var(--c-text-soft);
}

.price-note {
    font-size: .84rem;
    color: var(--c-text-soft);
    margin-top: 6px;
}

.card--featured {
    border-color: var(--c-gold);
    box-shadow: var(--sh-gold);
    transform: translateY(-10px);
}

.card--featured::before {
    transform: scaleX(1);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -34px;
    transform: rotate(38deg);
    background: var(--grad-gold);
    color: #3a2d18;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 7px 44px;
}

/* ---------- FAQ ---------- */
.faq {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin-inline: auto;
}

.faq-item {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--tr), box-shadow var(--tr);
}

.faq-item.is-open {
    border-color: rgba(225, 177, 106, .6);
    box-shadow: var(--sh-md);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    text-align: left;
    font-family: var(--ff-title);
    font-size: 1.14rem;
    font-weight: 700;
    color: var(--c-primary-deep);
}

.faq-q svg {
    width: 22px;
    height: 22px;
    flex: none;
    color: var(--c-accent);
    transition: transform var(--tr);
}

.faq-item.is-open .faq-q svg {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-a p {
    padding: 0 26px 24px;
    font-size: .97rem;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    border-radius: var(--r-lg);
    padding: clamp(38px, 5vw, 78px);
    background: var(--grad-dark);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 1px solid rgba(225, 177, 106, .3);
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(225, 177, 106, .26), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(120, 165, 163, .26), transparent 45%);
}

.cta>* {
    position: relative;
}

.cta h2 {
    color: #fff;
    max-width: 760px;
    margin-inline: auto;
}

.cta p {
    color: rgba(232, 235, 240, .82);
    max-width: 640px;
    margin: 18px auto 0;
}

.cta .btn-row {
    justify-content: center;
    margin-top: 34px;
}

/* ---------- Prose (legal pages) ---------- */
.prose {
    max-width: 880px;
    margin-inline: auto;
}

.prose h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin-top: 46px;
    margin-bottom: 14px;
    padding-left: 18px;
    border-left: 4px solid var(--c-gold);
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-size: 1.2rem;
    margin-top: 28px;
    margin-bottom: 10px;
}

.prose p {
    margin-bottom: 16px;
}

.prose ul {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.prose ul li {
    position: relative;
    padding-left: 30px;
    color: var(--c-text-soft);
}

.prose ul li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 11px;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: var(--grad-gold);
    transform: rotate(45deg);
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(30px, 4vw, 58px);
    align-items: start;
}

.contact-card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: clamp(26px, 3vw, 40px);
    box-shadow: var(--sh-sm);
}

.contact-list {
    display: grid;
    gap: 22px;
    margin-top: 26px;
}

.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-ico {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    flex: none;
    display: grid;
    place-items: center;
    background: rgba(68, 76, 92, .08);
    color: var(--c-primary);
    transition: background var(--tr), color var(--tr);
}

.contact-ico svg {
    width: 22px;
    height: 22px;
}

.contact-list li:hover .contact-ico {
    background: var(--grad-gold);
    color: #3a2d18;
}

.contact-list small {
    display: block;
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-text-soft);
    margin-bottom: 3px;
}

.contact-list strong,
.contact-list a {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--c-primary-deep);
}

.contact-list a:hover {
    color: var(--c-accent);
}

.messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.msg-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 13px 24px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: .92rem;
    color: #fff;
    transition: transform var(--tr-fast), box-shadow var(--tr-fast), filter var(--tr-fast);
}

.msg-btn svg {
    width: 20px;
    height: 20px;
}

.msg-btn--whatsapp {
    background: #25d366;
    box-shadow: 0 10px 26px rgba(37, 211, 102, .32);
}

.msg-btn--viber {
    background: #7360f2;
    box-shadow: 0 10px 26px rgba(115, 96, 242, .32);
}

.msg-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
}

.form {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: clamp(26px, 3.2vw, 46px);
    box-shadow: var(--sh-md);
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-primary-deep);
}

.field label .req {
    color: var(--c-accent);
}

.field input,
.field textarea {
    width: 100%;
    padding: 14px 17px;
    border: 1.5px solid var(--c-line);
    border-radius: var(--r-sm);
    background: #fbfbf9;
    font-size: .97rem;
    transition: border-color var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
}

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

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(92, 100, 114, .55);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--c-secondary);
    box-shadow: 0 0 0 4px rgba(120, 165, 163, .18);
}

.field.has-error input,
.field.has-error textarea {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(206, 90, 87, .14);
}

.error-msg {
    display: none;
    font-size: .82rem;
    color: var(--c-accent);
    font-weight: 600;
}

.field.has-error .error-msg {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 26px;
}

.form-foot small {
    font-size: .82rem;
    color: var(--c-text-soft);
    max-width: 330px;
}

.map-frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-md);
    line-height: 0;
}

.map-frame iframe {
    width: 100%;
    height: 460px;
    border: 0;
}

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(20, 24, 31, .68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--tr), visibility var(--tr);
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    width: min(100%, 520px);
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: clamp(32px, 4vw, 52px);
    text-align: center;
    box-shadow: var(--sh-lg);
    border-top: 5px solid var(--c-gold);
    transform: translateY(26px) scale(.96);
    transition: transform var(--tr);
}

.modal.is-open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-ico {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(120, 165, 163, .16);
    color: var(--c-secondary);
    animation: popIn .45s cubic-bezier(.2, .9, .3, 1.3);
}

.modal-ico svg {
    width: 42px;
    height: 42px;
}

@keyframes popIn {
    from {
        transform: scale(.4);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-box h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.modal-box p {
    margin-bottom: 26px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(68, 76, 92, .08);
    transition: background var(--tr-fast), transform var(--tr-fast);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--c-primary);
}

.modal-close:hover {
    background: rgba(206, 90, 87, .16);
    transform: rotate(90deg);
}

.modal-inner {
    position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--c-primary-deep);
    color: rgba(226, 229, 235, .78);
    padding-top: clamp(56px, 6vw, 92px);
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--grad-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr;
    gap: clamp(28px, 3.4vw, 52px);
    padding-bottom: 50px;
}

.footer-brand .brand {
    margin-bottom: 20px;
}

.footer-grid h4 {
    color: #fff;
    font-family: var(--ff-body);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-grid h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--grad-gold);
}

.footer-grid p,
.footer-grid li {
    font-size: .93rem;
    color: rgba(226, 229, 235, .72);
}

.footer-links {
    display: grid;
    gap: 11px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: color var(--tr-fast), transform var(--tr-fast);
}

.footer-links a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: var(--c-gold);
    transform: rotate(45deg);
    opacity: .6;
    transition: opacity var(--tr-fast);
}

.footer-links a:hover {
    color: var(--c-gold);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: grid;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex: none;
    margin-top: 4px;
    color: var(--c-gold);
}

.footer-contact a:hover {
    color: var(--c-gold);
}

.hours {
    display: grid;
    gap: 10px;
}

.hours li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 9px;
    border-bottom: 1px dashed rgba(255, 255, 255, .12);
}

.hours li:last-child {
    border-bottom: 0;
}

.hours b {
    color: #fff;
    font-weight: 600;
}

.hours .closed {
    color: var(--c-accent);
    font-weight: 600;
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 24px;
}

.socials a {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(232, 235, 240, .85);
    transition: transform var(--tr-fast), background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast);
}

.socials a svg {
    width: 20px;
    height: 20px;
}

.socials a:hover {
    transform: translateY(-4px);
    background: var(--grad-gold);
    border-color: transparent;
    color: #33291a;
}

.legal-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 34px;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.legal-box div small {
    display: block;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 4px;
}

.legal-box div span {
    font-size: .94rem;
    color: rgba(232, 235, 240, .85);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 28px;
    padding-block: 24px;
    font-size: .87rem;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.footer-bottom nav a:hover {
    color: var(--c-gold);
}

/* ---------- Back to top ---------- */
.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--grad-gold);
    color: #33291a;
    box-shadow: var(--sh-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.to-top:hover {
    transform: translateY(-4px);
}

.to-top svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22, .8, .3, 1);
}

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

.reveal[data-delay="1"] {
    transition-delay: .1s;
}

.reveal[data-delay="2"] {
    transition-delay: .2s;
}

.reveal[data-delay="3"] {
    transition-delay: .3s;
}

.reveal[data-delay="4"] {
    transition-delay: .4s;
}

.reveal[data-delay="5"] {
    transition-delay: .5s;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-list a {
        padding: 10px 12px;
        font-size: .88rem;
    }
}

@media (max-width: 1024px) {
    body {
        font-size: 16px;
    }

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

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

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

    .hero--home .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 520px;
    }

    .theme-block {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .card--featured {
        transform: none;
    }
}

@media (max-width: 900px) {
    .topbar .wrap {
        justify-content: center;
        gap: 8px 18px;
        font-size: .78rem;
    }

    .burger {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(29, 34, 43, .97);
    }

    .site-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(88vw, 360px);
        z-index: 950;
        background: linear-gradient(165deg, #1d222b, #363f4d);
        border-left: 1px solid rgba(225, 177, 106, .25);
        padding: 104px 28px 40px;
        transform: translateX(105%);
        transition: transform .4s cubic-bezier(.4, .1, .2, 1);
        overflow-y: auto;
        box-shadow: -18px 0 50px rgba(0, 0, 0, .35);
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-list a {
        padding: 15px 18px;
        font-size: 1.02rem;
        border-radius: var(--r-sm);
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .nav-list a::after {
        display: none;
    }

    .nav-list a:hover,
    .nav-list a[aria-current="page"] {
        background: rgba(225, 177, 106, .14);
        color: var(--c-gold);
    }

    .nav-cta {
        display: flex;
        margin-top: 24px;
        width: 100%;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 850;
        background: rgba(15, 18, 23, .6);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--tr), visibility var(--tr);
    }

    .nav-backdrop.is-open {
        opacity: 1;
        visibility: visible;
    }

    .split,
    .grid--2 {
        grid-template-columns: 1fr;
    }

    .split--reverse .split-media {
        order: 0;
    }

    .split-media::after {
        display: none;
    }

    .offline-banner {
        grid-template-columns: 1fr;
    }
}

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

    .nav-backdrop {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --sp-section: 58px;
    }

    .grid--3,
    .grid--4,
    .form-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .legal-box {
        grid-template-columns: 1fr;
    }

    .hero-float {
        left: 12px;
        bottom: 12px;
        padding: 14px 18px;
    }

    .timeline {
        padding-left: 34px;
    }

    .timeline li::before {
        left: -27px;
    }

    .timeline::before {
        left: 8px;
    }

    .map-frame iframe {
        height: 340px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .wrap {
        width: min(100% - 28px, var(--wrap));
    }

    .btn {
        width: 100%;
        padding: 15px 22px;
    }

    .btn-row .btn {
        width: 100%;
    }

    .brand-name {
        font-size: 1.24rem;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .hero-meta {
        gap: 20px;
    }

    .msg-btn {
        width: 100%;
        justify-content: center;
    }

    .ribbon {
        right: -40px;
        font-size: .62rem;
    }
}
