/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --slate:    #1A2332;
    --slate2:   #243044;
    --slate3:   #2E3D55;
    --gold:     #C9982A;
    --gold2:    #E8B84B;
    --blue:     #2E6DA4;
    --teal:     #1D9E75;
    --white:    #FFFFFF;
    --off:      #F4F7FB;
    --muted:    #8A9AB5;
    --border:   rgba(255,255,255,.1);
    --radius:   14px;
    --shadow:   0 4px 24px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    background: var(--slate);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center;
    justify-content: center;
    padding: 14px 32px; border-radius: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .9375rem; font-weight: 700;
    text-decoration: none; cursor: pointer;
    border: none; transition: .2s;
    letter-spacing: .02em;
}
.btn--gold {
    background: var(--gold);
    color: var(--slate);
}
.btn--gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,152,42,.35); }
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.3);
}
.btn--outline:hover { border-color: var(--gold2); color: var(--gold2); }
.btn--lg { padding: 16px 40px; font-size: 1rem; }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26,35,50,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: .3s;
}
.nav--scrolled { background: rgba(26,35,50,.98); }
.nav__inner {
    max-width: 1080px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav__logo {
    display: flex; align-items: center;
    gap: 12px; text-decoration: none;
}
.nav__logo-icon { color: var(--gold); font-size: 1.2rem; }
.nav__logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; color: var(--white);
    font-weight: 700; display: block;
    line-height: 1.2;
}
.nav__logo-tag {
    font-size: .65rem; color: var(--gold2);
    text-transform: uppercase; letter-spacing: .1em;
    display: block;
}
.nav__links {
    display: flex; align-items: center; gap: 4px;
}
.nav__link {
    padding: 8px 14px; border-radius: 8px;
    font-size: .875rem; font-weight: 600;
    text-decoration: none; color: var(--muted);
    transition: .15s;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav__cta {
    margin-left: 8px; padding: 9px 22px;
    background: var(--gold); color: var(--slate);
    border-radius: 8px; font-size: .875rem;
    font-weight: 800; text-decoration: none;
    transition: .2s;
}
.nav__cta:hover { background: var(--gold2); transform: translateY(-1px); }
.nav__burger {
    display: none; flex-direction: column;
    gap: 5px; background: none; border: none;
    cursor: pointer; padding: 8px;
}
.nav__burger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: .25s;
}
.nav__mobile {
    display: none; flex-direction: column;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
    padding: 12px 0;
    font-size: 1rem; font-weight: 600;
    color: var(--muted); text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: .15s;
}
.nav__mobile-link:hover { color: var(--white); }
.nav__mobile-cta {
    margin-top: 16px; padding: 14px;
    background: var(--gold); color: var(--slate);
    border-radius: 10px; font-weight: 800;
    text-decoration: none; text-align: center;
    font-size: .9375rem;
}

/* ── Section shared ──────────────────────────────────── */
.section { padding: 96px 0; }
.section__head { text-align: center; margin-bottom: 56px; }
.section__tag {
    display: inline-block;
    font-size: .75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--gold); margin-bottom: 12px;
}
.section__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 700;
    color: var(--white); margin-bottom: 16px;
    line-height: 1.2;
}
.section__sub {
    color: var(--muted); max-width: 560px;
    margin: 0 auto; font-size: 1rem;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    max-width: 1080px; margin: 0 auto;
    position: relative;
}
.hero__bg {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(46,109,164,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 70%, rgba(201,152,42,.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
.hero__badge {
    display: inline-flex; align-items: center;
    gap: 8px;
    background: rgba(201,152,42,.15);
    border: 1px solid rgba(201,152,42,.3);
    color: var(--gold2);
    padding: 6px 16px; border-radius: 20px;
    font-size: .8125rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp .6s ease both;
}
.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900; line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeUp .6s ease .1s both;
}
.hero__sub {
    font-size: 1.125rem; color: var(--muted);
    max-width: 540px; margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeUp .6s ease .2s both;
}
.hero__sub em { color: var(--gold2); font-style: normal; font-weight: 700; }
.hero__actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 28px;
    animation: fadeUp .6s ease .3s both;
}
.hero__langs {
    display: flex; align-items: center; gap: 10px;
    color: var(--muted); font-size: .875rem;
    animation: fadeUp .6s ease .4s both;
}
.hero__lang-sep { opacity: .4; }
.hero__card-wrap {
    display: flex; gap: 16px; margin-top: 64px;
    flex-wrap: wrap;
    animation: fadeUp .6s ease .5s both;
}
.hero__card {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 20px 28px;
    flex: 1; min-width: 140px;
    backdrop-filter: blur(8px);
    transition: .2s;
}
.hero__card:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-2px);
}
.hero__card-icon { color: var(--gold); font-size: .875rem; margin-bottom: 6px; }
.hero__card-stat {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--white); line-height: 1;
}
.hero__card-label { font-size: .8rem; color: var(--muted); margin-top: 4px; }

/* ── Services ────────────────────────────────────────── */
.services { background: var(--slate2); }
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px; margin-bottom: 48px;
}
.service-card {
    background: var(--slate3);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius); padding: 28px;
    position: relative; overflow: hidden;
    transition: .25s;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(255,255,255,.14);
}
.service-card--featured {
    border-color: rgba(201,152,42,.35);
    background: rgba(201,152,42,.07);
}
.service-card__accent {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--c, #2E6DA4);
}
.service-card__badge {
    display: inline-block;
    background: var(--gold);
    color: var(--slate);
    font-size: .7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .08em;
    padding: 3px 10px; border-radius: 20px;
    margin-bottom: 12px;
}
.service-card__icon { font-size: 1.75rem; margin-bottom: 12px; }
.service-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
}
.service-card__desc { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }
.service-card__price {
    display: inline-block;
    color: var(--gold2); font-weight: 800;
    font-size: .9375rem;
    background: rgba(201,152,42,.12);
    border: 1px solid rgba(201,152,42,.25);
    padding: 4px 14px; border-radius: 20px;
}
.services__cta { text-align: center; }

/* ── About ───────────────────────────────────────────── */
.about { background: var(--slate); }
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px; align-items: center;
}
.about__visual { position: relative; }
.about__badge-wrap {
    display: flex; flex-direction: column;
    gap: 20px;
}
.about__badge-card {
    background: var(--slate2);
    border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 32px;
    border-left: 4px solid var(--gold);
}
.about__badge-card--offset { margin-left: 32px; border-left-color: var(--blue); }
.about__badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem; color: var(--white);
    font-weight: 700;
}
.about__badge-txt { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.about__text .section__tag { text-align: left; display: block; }
.about__text .section__title { text-align: left; }
.about__p { color: var(--muted); margin-bottom: 18px; line-height: 1.8; }
.about__features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-top: 28px;
}
.about__feature {
    display: flex; align-items: flex-start;
    gap: 10px; font-size: .9rem; color: var(--muted);
}
.about__feature-icon {
    color: var(--teal); font-weight: 900;
    flex-shrink: 0; margin-top: 2px;
}

/* ── Hours ───────────────────────────────────────────── */
.hours { background: var(--slate2); }
.hours__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; max-width: 760px; margin: 0 auto;
}
.hours__card {
    background: var(--slate3);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius); padding: 32px;
}
.hours__card--season {
    border-color: rgba(201,152,42,.25);
    background: rgba(201,152,42,.05);
}
.hours__card-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; color: var(--white);
    font-weight: 700; margin-bottom: 4px;
}
.hours__card-sub { color: var(--gold2); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 24px; }
.hours__rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.hours__row {
    display: flex; justify-content: space-between;
    align-items: center; font-size: .9rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: var(--muted);
}
.hours__row:last-child { border-bottom: none; padding-bottom: 0; }
.hours__row--closed .hours__time { color: rgba(255,255,255,.25); }
.hours__time { font-weight: 700; color: var(--white); }
.hours__note {
    font-size: .8rem; color: var(--gold2);
    background: rgba(201,152,42,.1);
    border-radius: 8px; padding: 8px 12px;
    text-align: center; font-weight: 600;
}

/* ── Contact ─────────────────────────────────────────── */
.contact { background: var(--slate); }
.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.contact__card {
    background: var(--slate2);
    border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    text-align: center; transition: .2s;
}
.contact__card:hover { transform: translateY(-2px); border-color: rgba(201,152,42,.3); }
.contact__icon { font-size: 2rem; margin-bottom: 12px; }
.contact__label { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold2); margin-bottom: 8px; }
.contact__val { color: var(--muted); font-size: .9375rem; line-height: 1.5; }
.contact__val--link {
    color: var(--white); text-decoration: none;
    font-weight: 700; transition: .15s;
}
.contact__val--link:hover { color: var(--gold2); }

/* ── Book CTA ────────────────────────────────────────── */
.book-cta {
    background: linear-gradient(135deg, var(--slate2) 0%, var(--slate3) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
}
.book-cta__inner {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.book-cta__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--white);
    margin-bottom: 8px;
}
.book-cta__sub { color: var(--muted); font-size: .9375rem; margin-bottom: 4px; }
.book-cta__sub strong { color: var(--gold2); }

/* ── Footer ──────────────────────────────────────────── */
.footer { background: var(--slate); padding: 48px 0 32px; border-top: 1px solid var(--border); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem; color: var(--white);
    font-weight: 700;
}
.footer__tagline { color: var(--muted); font-size: .85rem; margin-top: 6px; line-height: 1.6; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a {
    color: var(--muted); text-decoration: none;
    font-size: .875rem; transition: .15s;
}
.footer__links a:hover { color: var(--gold2); }
.footer__copy { color: var(--muted); font-size: .8rem; }
.footer__copy a { color: var(--gold2); text-decoration: none; }

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__burger { display: flex; }
    .hero { padding: 100px 24px 60px; }
    .hero__title { font-size: 3rem; }
    .hero__card-wrap { gap: 12px; }
    .section { padding: 64px 0; }
    .section__title { font-size: 2rem; }
    .about__inner { grid-template-columns: 1fr; gap: 40px; }
    .about__features { grid-template-columns: 1fr; }
    .hours__grid { grid-template-columns: 1fr; }
    .book-cta__inner { flex-direction: column; text-align: center; }
    .services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .btn { width: 100%; }
    .contact__grid { grid-template-columns: 1fr 1fr; }
}

/* ── Scroll fade-in ──────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }