/* Alas Garden city Apart otel — mobil öncelikli */
:root {
    --color-bg: #f4f1ea;
    --color-surface: #ffffff;
    --color-ink: #1c1c1c;
    --color-muted: #5c5c5c;
    --color-brand: #1a3d2e;
    --color-brand-light: #2d5c47;
    --color-accent: #c4a35a;
    --color-accent-2: #8b6914;
    --color-accent-soft: rgba(196, 163, 90, 0.15);
    --font-sans: "Outfit", system-ui, sans-serif;
    --font-display: "Fraunces", Georgia, serif;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --shadow: 0 8px 32px rgba(26, 61, 46, 0.08);
    --shadow-hover: 0 16px 48px rgba(26, 61, 46, 0.12);
    --header-h: 72px;
    --site-header-h: 72px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-soft: 0 4px 24px rgba(26, 61, 46, 0.06);
    --shadow-lift: 0 20px 50px rgba(26, 61, 46, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-ink);
    background-color: var(--color-bg);
    background-image:
        radial-gradient(ellipse 120% 80% at 100% 0%, rgba(196, 163, 90, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse 90% 60% at 0% 100%, rgba(26, 61, 46, 0.06) 0%, transparent 45%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

body.site-body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

body.site-body.page--booking {
    background-image:
        radial-gradient(ellipse 120% 80% at 100% 0%, rgba(196, 163, 90, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 90% 60% at 0% 100%, rgba(26, 61, 46, 0.07) 0%, transparent 45%);
}

body.site-body.page--legal {
    background-image:
        radial-gradient(ellipse 100% 70% at 50% -10%, rgba(26, 61, 46, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse 90% 60% at 0% 100%, rgba(26, 61, 46, 0.04) 0%, transparent 45%);
}

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

a {
    color: var(--color-brand-light);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--color-brand);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--color-brand);
    color: #fff;
    font-weight: 600;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.shell {
    width: min(1320px, 100% - 1.5rem);
    margin-inline: auto;
}

.shell--wide {
    width: min(1480px, 100% - 1.25rem);
}

/* Header */
.site-top {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 244, 239, 0.96);
    border-bottom: 1px solid rgba(26, 61, 46, 0.07);
    transition:
        background 0.4s var(--ease-out),
        box-shadow 0.4s var(--ease-out),
        border-color 0.35s ease;
}

.site-top--compact {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(26, 61, 46, 0.09);
    border-bottom-color: rgba(26, 61, 46, 0.1);
}

.site-header {
    background: transparent;
    border: none;
}

.site-header--compact {
    background: transparent;
    box-shadow: none;
    border-bottom-color: transparent;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
    transition: min-height 0.45s var(--ease-out);
}

.site-header--compact .header__inner {
    min-height: 56px;
}

.header__tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    flex-shrink: 0;
    max-width: 100%;
}

.header__langs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    align-items: center;
    max-width: min(100%, 22rem);
}

.header__lang {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--color-muted);
    border: 1px solid transparent;
    line-height: 1.2;
}

.header__lang.is-active {
    color: var(--color-brand);
    border-color: rgba(26, 61, 46, 0.22);
    background: rgba(255, 255, 255, 0.75);
}

.header__lang:hover:not(.is-active) {
    color: var(--color-brand);
}

.header__lang-short {
    display: none;
}

html[dir="rtl"] body.site-body {
    font-family: "Noto Naskh Arabic", var(--font-sans);
}

html[lang^="zh"] body.site-body {
    font-family: "Noto Sans SC", var(--font-sans);
}

.brand {
    display: block;
    line-height: 0;
    transition: transform 0.45s var(--ease-out);
}

.site-header--compact .brand {
    transform: translateY(1px);
}

.brand__img {
    width: min(228px, 54vw);
    height: auto;
    display: block;
    transform-origin: left center;
    transition:
        transform 0.45s var(--ease-out),
        width 0.45s var(--ease-out),
        filter 0.45s var(--ease-out),
        -webkit-filter 0.45s var(--ease-out);
}

@media (min-width: 901px) {
    .brand__img {
        /* Tek PNG: üstte tam renk; kaydırınca koyulaşır (ayrı dosya yok) */
        filter: brightness(1.04) saturate(1.06);
        -webkit-filter: brightness(1.04) saturate(1.06);
    }

    /* Ana sayfa üst bant: logo parlak beyaz değil — marka yeşiline yakın koyu ton */
    body.page--home .site-header:not(.site-header--compact) .brand__img {
        filter: brightness(0) saturate(100%) invert(14%) sepia(38%) saturate(880%) hue-rotate(118deg) brightness(0.93) contrast(1.06);
        -webkit-filter: brightness(0) saturate(100%) invert(14%) sepia(38%) saturate(880%) hue-rotate(118deg) brightness(0.93) contrast(1.06);
    }

    .site-header--compact .brand__img {
        width: min(188px, 48vw);
        transform: none;
        filter: brightness(0.4) contrast(1.2) saturate(0.92);
        -webkit-filter: brightness(0.4) contrast(1.2) saturate(0.92);
    }

    body.page--home .site-header--compact .brand__img {
        filter: brightness(0.38) contrast(1.22) saturate(0.9);
        -webkit-filter: brightness(0.38) contrast(1.22) saturate(0.9);
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-brand);
    border-radius: 1px;
    transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

body.nav-open {
    overflow: hidden;
    touch-action: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list > li > a {
    font-weight: 500;
    color: var(--color-ink);
    text-decoration: none;
    padding: 0.35rem 0;
    position: relative;
}

.site-nav__list > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-brand-light));
    transition: width 0.35s var(--ease-out);
}

.site-nav__list > li > a:hover,
.site-nav__list > li > a.is-active {
    color: var(--color-brand);
}

.site-nav__list > li > a:hover::after,
.site-nav__list > li > a.is-active::after {
    width: 100%;
}

.site-nav__sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    margin: 0;
    padding: 0.5rem 0;
    list-style: none;
    background: var(--color-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.has-sub {
    position: relative;
}

.has-sub:hover .site-nav__sub,
.has-sub:focus-within .site-nav__sub {
    display: block;
}

.site-nav__sub a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--color-ink);
    text-decoration: none;
    font-size: 0.95rem;
}

.site-nav__sub a:hover {
    background: var(--color-accent-soft);
}

.site-nav__cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 901px) {
    .header__inner {
        display: flex;
        align-items: center;
        gap: 0.75rem 1.25rem;
        flex-wrap: nowrap;
    }

    .brand {
        flex: 0 0 auto;
    }

    .site-nav {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
        min-width: 0;
        visibility: visible;
        transform: none;
        position: static;
        overflow: visible;
    }

    .site-nav__panel {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem 1.75rem;
        width: 100%;
    }

    .site-nav__list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header__tools {
        flex: 0 0 auto;
        margin-inline-start: 0;
    }

    .nav-toggle {
        display: none;
    }

    .nav-backdrop {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .header__inner {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.35rem 0.45rem;
    }

    .brand {
        position: relative;
        z-index: 2;
        flex: 0 1 auto;
        min-width: 0;
        max-width: none;
    }

    .brand__img {
        width: auto;
        height: clamp(50px, 14vw, 58px);
        max-width: min(220px, 46vw);
        filter: none;
        -webkit-filter: none;
        transform: none;
    }

    .site-header--compact .brand__img {
        height: clamp(46px, 13vw, 54px);
        max-width: min(204px, 44vw);
    }

    .header__tools {
        flex: 0 0 auto;
        width: auto;
        margin-inline: 0;
        margin-inline-start: auto;
        padding-top: 0;
        border-top: none;
        justify-content: flex-end;
    }

    .header__langs {
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 0.12rem;
        max-width: none;
    }

    .header__lang {
        flex: 0 0 auto;
        font-size: 0.62rem;
        padding: 0.18rem 0.32rem;
        white-space: nowrap;
        line-height: 1;
    }

    .header__lang-full {
        display: none;
    }

    .header__lang-short {
        display: inline;
    }

    .nav-toggle {
        display: flex;
        flex: 0 0 auto;
        margin-inline-start: 0;
        z-index: 130;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 110;
        background: rgba(20, 30, 24, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s var(--ease);
    }

    .nav-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .header__inner > .site-nav {
        position: fixed;
        top: var(--site-header-h, 72px);
        right: 0;
        bottom: 0;
        left: auto;
        width: min(320px, 88vw);
        z-index: 120;
        flex: none;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        background: var(--color-bg);
        transform: translateX(105%);
        transition: transform 0.3s var(--ease);
        overflow-y: auto;
        box-shadow: -12px 0 40px rgba(26, 61, 46, 0.14);
        visibility: hidden;
    }

    .header__inner > .site-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .header__inner > .site-nav .site-nav__panel {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: auto;
        padding: 1.25rem 1.5rem 2rem;
        min-height: 100%;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav__sub {
        display: block;
        position: static;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
    }

    .has-sub:hover .site-nav__sub {
        display: block;
    }

    .site-nav__cta {
        flex-direction: column;
        margin-top: auto;
        padding-top: 1rem;
    }

    .site-nav__cta .btn {
        width: 100%;
        text-align: center;
    }

    .site-nav__list > li > a::after {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.35s var(--ease-out),
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.3s var(--ease-spring),
        box-shadow 0.35s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn--primary {
    background: linear-gradient(145deg, var(--color-brand) 0%, #0f2a1f 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(26, 61, 46, 0.28);
}

.btn--primary:hover {
    background: linear-gradient(145deg, var(--color-brand-light) 0%, var(--color-brand) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26, 61, 46, 0.32);
}

.btn--wa.btn--primary {
    background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn--wa.btn--primary:hover {
    background: linear-gradient(145deg, #2ee676 0%, #25d366 100%);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.55);
    color: var(--color-brand);
    border-color: rgba(26, 61, 46, 0.18);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.btn--accent {
    background: linear-gradient(145deg, #d4b76a 0%, var(--color-accent) 100%);
    color: #1c1c1c;
    box-shadow: 0 6px 20px rgba(196, 163, 90, 0.35);
}

.btn--accent:hover {
    filter: brightness(1.06);
    color: #1c1c1c;
    transform: translateY(-2px);
}

/* Hero + slayt */
.hero {
    position: relative;
    padding: clamp(3.5rem, 10vw, 6rem) 0 clamp(4.5rem, 12vw, 7rem);
    overflow: hidden;
    min-height: min(88vh, 920px);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    touch-action: pan-y pinch-zoom;
}

.hero-slider__slides {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 1.15s var(--ease-out),
        visibility 1.15s linear;
    z-index: 0;
}

.hero-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.08) saturate(1.05);
    transform: scale(1.04);
}

@media (prefers-reduced-motion: no-preference) {
    .hero--motion .hero-slider__slide.is-active img {
        animation: heroKen 22s ease-in-out infinite alternate;
    }
}

@keyframes heroKen {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.12);
    }
}

.hero-slider__ui {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-slider__ui .hero-slider__arrow,
.hero-slider__ui .hero-slider__dots,
.hero-slider__ui .hero-slider__dot {
    pointer-events: auto;
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(15, 30, 24, 0.35);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s var(--ease-spring),
        box-shadow 0.35s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-slider__arrow:hover {
    background: rgba(196, 163, 90, 0.45);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-50%) scale(1.06);
}

.hero-slider__arrow:active {
    transform: translateY(-50%) scale(0.98);
}

.hero-slider__arrow--prev {
    left: clamp(0.75rem, 3vw, 1.75rem);
}

.hero-slider__arrow--next {
    right: clamp(0.75rem, 3vw, 1.75rem);
}

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: clamp(5.5rem, 12vw, 7.5rem);
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    pointer-events: auto;
    max-width: 90%;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition:
        transform 0.35s var(--ease-spring),
        background 0.35s ease,
        border-color 0.35s ease,
        width 0.45s var(--ease-out);
}

.hero-slider__dot:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.35);
}

.hero-slider__dot.is-active {
    width: 2.25rem;
    background: linear-gradient(90deg, var(--color-accent), #e8d5a0);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px rgba(196, 163, 90, 0.55);
}

.hero-slider__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.hero-slider__progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), #fff4d4);
    box-shadow: 0 0 16px rgba(196, 163, 90, 0.6);
    transition: width 0.08s linear;
}

@media (max-width: 640px) {
    .hero-slider__arrow {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.5rem;
    }

    .hero-slider__dots {
        bottom: clamp(4.5rem, 18vw, 6rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slider__slide {
        transition: none;
    }

    .hero--motion .hero-slider__slide.is-active img {
        animation: none;
    }

    .hero-slider__progress {
        display: none;
    }
}

.wave-spacer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 4;
    color: var(--color-bg);
    line-height: 0;
    pointer-events: none;
}

.wave-spacer__svg {
    display: block;
    width: 100%;
    height: clamp(44px, 9vw, 76px);
}

.hero__mesh {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(196, 163, 90, 0.45) 0%, transparent 42%),
        radial-gradient(circle at 85% 70%, rgba(26, 61, 46, 0.5) 0%, transparent 48%),
        radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.25) 0%, transparent 55%);
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        165deg,
        rgba(26, 61, 46, 0.55) 0%,
        rgba(26, 61, 46, 0.25) 40%,
        rgba(0, 0, 0, 0.35) 100%
    );
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    pointer-events: none;
}

.hero__inner > * {
    pointer-events: auto;
}

.hero__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.92;
    margin: 0 0 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 1rem;
    text-wrap: balance;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.88) 50%, #e8dfc8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.2));
}

.hero__lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 38ch;
    margin: 0 auto 2rem;
    opacity: 0.96;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.35);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (prefers-reduced-motion: no-preference) {
    .hero--motion .hero__inner > * {
        animation: heroFadeUp 0.95s var(--ease-out) backwards;
    }

    .hero--motion .hero__eyebrow {
        animation-delay: 0.08s;
    }

    .hero--motion .hero__title {
        animation-delay: 0.2s;
    }

    .hero--motion .hero__lead {
        animation-delay: 0.34s;
    }

    .hero--motion .hero__actions {
        animation-delay: 0.48s;
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(1.75rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .btn--primary {
    background: linear-gradient(145deg, #fff 0%, #f5f0e8 100%);
    color: var(--color-brand);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero .btn--primary:hover {
    background: linear-gradient(145deg, var(--color-accent) 0%, #d4b76a 100%);
    color: #1c1c1c;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.hero .btn--ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
}

.hero .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section--alt {
    background: linear-gradient(180deg, rgba(26, 61, 46, 0.045) 0%, rgba(247, 244, 239, 0) 55%);
}

.section__head {
    text-align: center;
    max-width: 56ch;
    margin: 0 auto 2.75rem;
}

.section__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brand-light);
    font-weight: 600;
    margin: 0 0 0.65rem;
    opacity: 0.95;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.45rem);
    font-weight: 700;
    margin: 0 0 0.85rem;
    line-height: 1.2;
    background: linear-gradient(125deg, var(--color-brand) 0%, var(--color-brand-light) 45%, #1a3d2e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section__desc {
    margin: 0;
    color: var(--color-muted);
}

/* Feature grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.65rem 1.5rem 1.75rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.85);
    overflow: hidden;
    transition:
        transform 0.5s var(--ease-out),
        box-shadow 0.5s var(--ease-out),
        border-color 0.35s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(196, 163, 90, 0.45), rgba(26, 61, 46, 0.12), transparent 60%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.85;
}

@media (prefers-reduced-motion: no-preference) {
    .feature-card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: var(--shadow-lift);
    }
}

.feature-card__icon {
    font-size: 1.85rem;
    margin-bottom: 0.85rem;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(26, 61, 46, 0.12));
}

.feature-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
    color: var(--color-brand);
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-muted);
}

/* Apartment cards */
.apart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

#apartlar {
    scroll-margin-top: calc(var(--site-header-h, 72px) + 1rem);
}

a.apart-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.apart-card {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 61, 46, 0.07);
    transition:
        box-shadow 0.45s var(--ease-out),
        transform 0.45s var(--ease-out);
}

.apart-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.apart-card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-8px);
}

.apart-card:hover::after {
    opacity: 1;
}

.apart-card__media {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.apart-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease-out);
}

.apart-card:hover .apart-card__media img {
    transform: scale(1.06);
}

.apart-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.apart-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 0.35rem;
    color: var(--color-brand);
}

.apart-card__price {
    font-size: 0.95rem;
    margin: 0 0 0.45rem;
    color: var(--color-ink);
}

.apart-card__price strong {
    color: var(--color-brand);
    font-weight: 700;
}

.apart-price {
    margin: 0;
    line-height: 1.45;
}

.apart-price--card {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.apart-price--card .apart-price__label {
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-right: 0.25rem;
}

.apart-price--hero {
    margin-top: 1rem;
    font-size: 1.05rem;
    opacity: 0.98;
}

.apart-price--hero .apart-price__amount {
    font-size: 1.35rem;
}

.apart-price--inline {
    margin: 0 0 1.25rem;
    padding: 0.85rem 1rem;
    background: rgba(26, 61, 46, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(26, 61, 46, 0.1);
}

.apart-price--inquiry {
    margin: 0.35rem 0 0;
}

.apart-price--inquiry .apart-price__note {
    display: block;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-muted);
    font-weight: 500;
}

.apart-price--card.apart-price--inquiry .apart-price__note {
    font-size: 0.82rem;
}

.apart-price--hero.apart-price--inquiry {
    margin-top: 0.75rem;
    max-width: 36rem;
}

.apart-price--hero.apart-price--inquiry .apart-price__note {
    font-size: 0.95rem;
}

.apart-price__amount {
    color: var(--color-brand);
    font-weight: 700;
}

.apart-price__period {
    margin-left: 0.2rem;
    opacity: 0.9;
}

.apart-price__note {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--color-muted);
    font-weight: 400;
}

.apart-price--card .apart-price__note {
    display: none;
}

.apart-grid__hint {
    text-align: center;
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.apart-card__meta {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0 0 1rem;
}

.apart-card ul {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.apart-card__link {
    display: inline-block;
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
}

a.apart-card:hover .apart-card__link {
    text-decoration: underline;
}

.apart-content {
    min-width: 0;
}

.apart-content__about {
    margin-top: 2rem;
}

.apart-details {
    margin: 0;
    position: relative;
}

.apart-details__head {
    margin-bottom: 1.35rem;
    position: relative;
    padding-bottom: 0.85rem;
}

.apart-details__head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(220px, 55%);
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-accent), rgba(196, 163, 90, 0.15));
}

.apart-details__title {
    margin: 0 0 0.4rem;
    font-size: clamp(1.25rem, 2.5vw, 1.45rem);
    color: var(--color-brand);
}

.apart-details__intro {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.apart-details__grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
    padding: 1.15rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.55) 0%, rgba(244, 241, 234, 0.35) 100%);
    border: 1px solid rgba(26, 61, 46, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

@media (min-width: 520px) {
    .apart-details__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .apart-details__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.apart-detail-item {
    position: relative;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition:
        transform 0.45s var(--ease-out),
        box-shadow 0.45s var(--ease-out),
        border-color 0.35s ease;
}

.apart-detail-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(196, 163, 90, 0.5), rgba(26, 61, 46, 0.14), transparent 62%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.9;
}

.apart-detail-item::after {
    content: "";
    position: absolute;
    top: -28%;
    right: -18%;
    width: 52%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 163, 90, 0.07) 0%, transparent 68%);
    pointer-events: none;
}

.apart-detail-item--wide {
    grid-column: 1 / -1;
}

@media (prefers-reduced-motion: no-preference) {
    .apart-detail-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lift);
        border-color: rgba(196, 163, 90, 0.35);
    }
}

.apart-detail-item__icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 14px;
    color: var(--color-brand);
    background: linear-gradient(155deg, rgba(26, 61, 46, 0.1) 0%, rgba(45, 92, 71, 0.16) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        0 4px 14px rgba(26, 61, 46, 0.08);
    overflow: hidden;
}

.apart-detail-item__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0.45;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L20 10L10 20L0 10Z' fill='none' stroke='%231a3d2e' stroke-width='0.45' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 11px 11px;
}

.apart-detail-item__icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 0 0 14px 14px;
    background: linear-gradient(90deg, var(--color-accent), rgba(196, 163, 90, 0.35));
    opacity: 0.85;
}

.apart-detail-item__svg {
    position: relative;
    z-index: 1;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(26, 61, 46, 0.12));
}

.apart-detail-item__body {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.apart-detail-item__label {
    margin: 0 0 0.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-brand-light);
}

.apart-detail-item__value {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--color-text);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.gallery a {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s var(--ease);
}

.gallery a:hover img {
    transform: scale(1.05);
}

.gallery__item {
    cursor: zoom-in;
}

/* Gallery lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 3vw, 1.5rem);
}

.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 14, 0.88);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(96vw, 72rem);
    max-height: min(92vh, 52rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    pointer-events: none;
}

.gallery-lightbox__dialog > * {
    pointer-events: auto;
}

.gallery-lightbox__stage {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y pinch-zoom;
}

.gallery-lightbox__img {
    max-width: 100%;
    max-height: min(78vh, 46rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-lightbox__close {
    position: absolute;
    top: -0.25rem;
    right: 0;
    z-index: 3;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(15, 30, 24, 0.55);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s var(--ease-spring);
}

.gallery-lightbox__close:hover {
    background: rgba(196, 163, 90, 0.55);
    transform: scale(1.05);
}

.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(15, 30, 24, 0.45);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s var(--ease-spring);
}

.gallery-lightbox__nav:hover:not(:disabled) {
    background: rgba(196, 163, 90, 0.45);
    transform: translateY(-50%) scale(1.06);
}

.gallery-lightbox__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.gallery-lightbox__nav--prev {
    left: clamp(-0.25rem, -2vw, -2.5rem);
}

.gallery-lightbox__nav--next {
    right: clamp(-0.25rem, -2vw, -2.5rem);
}

html[dir="rtl"] .gallery-lightbox__nav--prev {
    left: auto;
    right: clamp(-0.25rem, -2vw, -2.5rem);
}

html[dir="rtl"] .gallery-lightbox__nav--next {
    right: auto;
    left: clamp(-0.25rem, -2vw, -2.5rem);
}

.gallery-lightbox__counter {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.04em;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .gallery-lightbox__nav--prev {
        left: 0.25rem;
    }

    .gallery-lightbox__nav--next {
        right: 0.25rem;
    }

    html[dir="rtl"] .gallery-lightbox__nav--prev {
        right: 0.25rem;
        left: auto;
    }

    html[dir="rtl"] .gallery-lightbox__nav--next {
        left: 0.25rem;
        right: auto;
    }

    .gallery-lightbox__close {
        top: 0;
        right: 0.25rem;
    }
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.quote {
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
    box-shadow: var(--shadow);
}

.quote__role {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin: 0 0 0.5rem;
}

.quote p {
    margin: 0;
    font-style: italic;
}

.quote footer {
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
}

/* FAQ */
.faq-list details {
    background: var(--color-surface);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(26, 61, 46, 0.08);
}

.faq-list summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list details[open] summary {
    border-bottom: 1px solid rgba(26, 61, 46, 0.08);
}

.faq-list .faq-a {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* Forms */
.form {
    max-width: 520px;
}

.form-row {
    margin-bottom: 1rem;
}

.form-row label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font: inherit;
    border: 1px solid rgba(26, 61, 46, 0.2);
    border-radius: var(--radius);
    background: #fff;
}

.form-row textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 1px;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin: 0.25rem 0 0;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.alert--ok {
    background: rgba(45, 92, 71, 0.12);
    color: var(--color-brand);
}

.alert--err {
    background: rgba(180, 60, 60, 0.1);
    color: #8a2a2a;
}

/* Page hero small */
.page-hero {
    position: relative;
    padding: clamp(2.25rem, 5vw, 3.5rem) 0;
    overflow: hidden;
    background: linear-gradient(128deg, #143728 0%, var(--color-brand) 42%, #0a1812 100%);
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(196, 163, 90, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.page-hero .shell {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    margin: 0 0 0.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.page-hero p {
    margin: 0;
    opacity: 0.93;
    max-width: 52ch;
    line-height: 1.65;
    font-weight: 400;
}

.page-hero__price {
    margin-top: 1rem;
    font-size: 1.05rem;
    opacity: 0.98;
}

.page-hero--hotel-photo {
    background-image:
        linear-gradient(128deg, rgba(15, 36, 28, 0.92) 0%, rgba(26, 61, 46, 0.82) 45%, rgba(8, 18, 14, 0.94) 100%),
        var(--hero-photo);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero--hotel-photo::before {
    opacity: 0.55;
}

/* Booking channels */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.channel-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.35rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(26, 61, 46, 0.07);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.channel-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.channel-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.channel-card p {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0 0 1rem;
}

.channel-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.channel-links a {
    font-weight: 600;
    text-decoration: none;
}

/* Two column layout */
.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .layout-split {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.site-footer {
    background: var(--color-brand);
    color: rgba(255, 255, 255, 0.88);
    padding: 3rem 0 0;
    margin-top: 2rem;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer__brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    color: #fff;
}

.footer__tag {
    margin: 0 0 1rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer__legal {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.95;
}

.footer__permit-no {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-accent);
}

.footer__h-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer__h-link:hover {
    color: var(--color-accent);
}

.footer__links-all {
    font-weight: 600;
    color: var(--color-accent);
}

.footer__links-all:hover {
    color: #fff;
}

.footer__h {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
    color: var(--color-accent);
}

.footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__links li {
    margin-bottom: 0.4rem;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
}

.footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* FAB — WhatsApp + arama (iOS yeşil) */
.fab-wrap {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border: none;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.fab__icon {
    display: block;
    flex-shrink: 0;
}

.fab:hover {
    transform: scale(1.06);
    color: #fff;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.22),
        0 3px 8px rgba(0, 0, 0, 0.14);
}

.fab:active {
    transform: scale(0.96);
}

.fab--wa {
    background: linear-gradient(180deg, #2ee06a 0%, #25d366 45%, #1da851 100%);
}

.fab--call {
    background: linear-gradient(180deg, #4cd964 0%, #34c759 50%, #28a745 100%);
}

.fab--wa .fab__icon,
.fab--call .fab__icon {
    width: 28px;
    height: 28px;
}

/* Prose */
.prose {
    max-width: 65ch;
}

.prose p {
    margin-top: 0;
}

.prose h2 {
    font-family: var(--font-display);
    color: var(--color-brand);
    margin-top: 2rem;
}

main#main:focus {
    outline: none;
}

/* Kaydırınca yumuşak görünüm */
.reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition:
        opacity 0.7s var(--ease-out),
        transform 0.75s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .feature-card:hover,
    .apart-card:hover,
    .apart-detail-item:hover,
    .review-card:hover,
    .channel-card:hover {
        transform: none;
    }

    .hero--motion .hero__bg img {
        animation: none;
    }

    .hero--motion .hero__inner > * {
        animation: none !important;
    }
}

/* Geniş şerit / kurumsal doluluk */
.section--band {
    position: relative;
    background: linear-gradient(180deg, rgba(26, 61, 46, 0.055) 0%, rgba(196, 163, 90, 0.04) 40%, transparent 100%);
    border-block: 1px solid rgba(26, 61, 46, 0.05);
}

.section--band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 80%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.45), transparent);
    opacity: 0.7;
}

.section__head--row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    text-align: left;
    max-width: none;
    margin-bottom: 2rem;
}

.section__head--row .section__desc {
    max-width: 52ch;
}

.reviews-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 1.25rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition:
        transform 0.45s var(--ease-out),
        box-shadow 0.45s var(--ease-out);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.review-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(145deg, #e8e4dc, #d4cfc4);
}

.review-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease-out);
}

.review-card:hover .review-card__media img {
    transform: scale(1.04);
}

.review-card__body {
    padding: 1.25rem 1.35rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-card__stars {
    color: var(--color-accent);
    letter-spacing: 0.05em;
    font-size: 1rem;
    margin-bottom: 0.65rem;
}

.review-card__text {
    margin: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.55;
    flex: 1;
    color: var(--color-ink);
}

.review-card__foot {
    font-size: 0.88rem;
    color: var(--color-muted);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.65rem;
    margin-top: auto;
}

.review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(26, 61, 46, 0.12);
}

.review-card__thumbs {
    display: flex;
    gap: 0.4rem;
    margin: 0 0 0.75rem;
    flex-wrap: wrap;
}

.review-card__thumbs img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(26, 61, 46, 0.1);
}

.review-card__author {
    font-weight: 600;
    color: var(--color-brand);
}

.review-card__badge {
    display: inline-block;
    margin-left: auto;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-brand-light);
    border: 1px solid rgba(26, 61, 46, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.reviews-source-note,
.reviews-disclaimer {
    margin: 1.25rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-muted, #5a6b62);
    text-align: center;
}

.reviews-source-note {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(26, 61, 46, 0.1);
}

/* Rezervasyon akışı */
.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.booking-step {
    background: var(--color-surface);
    border: 1px solid rgba(26, 61, 46, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow);
}

.booking-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--color-brand);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
}

.booking-step h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: var(--color-brand);
}

.booking-step p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-muted);
}

.layout-booking {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

@media (max-width: 960px) {
    .layout-booking {
        grid-template-columns: 1fr;
    }
}

.booking-panel {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(26, 61, 46, 0.08);
    box-shadow: var(--shadow);
}

.booking-aside {
    position: sticky;
    top: calc(var(--site-header-h, 72px) + 0.75rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aside-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(26, 61, 46, 0.08);
    box-shadow: var(--shadow);
}

.aside-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--color-brand);
}

.embed-map {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(26, 61, 46, 0.1);
    aspect-ratio: 16 / 10;
    background: #ddd;
}

.embed-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.location-block__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--color-brand);
}

.location-block__address {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--color-text);
}

.location-block__map-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.location-block--compact .location-block__map,
.location-block--compact .embed-map.location-block__map {
    aspect-ratio: 4 / 3;
}

.location-block__hint {
    margin: 0.65rem 0 0;
    font-size: 0.85rem;
}

.location-block__hint a {
    color: var(--color-brand);
    font-weight: 500;
}

/* İletişim */
.contact-section {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.contact-layout {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    align-items: stretch;
}

@media (min-width: 960px) {
    .contact-layout {
        grid-template-columns: minmax(280px, 360px) 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }
}

.contact-panel {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(26, 61, 46, 0.08);
    box-shadow: var(--shadow);
    padding: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
}

.contact-panel__title {
    margin-top: 0;
    margin-bottom: 0.35rem;
}

.contact-panel__brand {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    color: var(--color-muted);
    font-weight: 500;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.contact-card {
    padding: 1rem 1.1rem;
    border-radius: var(--radius);
    background: rgba(26, 61, 46, 0.04);
    border: 1px solid rgba(26, 61, 46, 0.06);
}

.contact-card__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-brand);
    margin-bottom: 0.35rem;
}

.contact-card__value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-ink);
    text-decoration: none;
    line-height: 1.45;
    word-break: break-word;
}

.contact-card__value:hover {
    color: var(--color-brand);
    text-decoration: underline;
}

.contact-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(26, 61, 46, 0.08);
}

.contact-map-wrap {
    min-height: 0;
}

.contact-map-wrap .location-block {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-map-wrap .location-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    margin-bottom: 0.65rem;
}

.contact-map-wrap .location-block__address {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.location-block--featured .location-block__map-wrap {
    flex: 1;
    min-height: clamp(320px, 52vh, 560px);
}

.location-block--featured .embed-map.location-block__map {
    aspect-ratio: auto;
    height: 100%;
    min-height: clamp(320px, 52vh, 560px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

@media (max-width: 959px) {
    .location-block--featured .embed-map.location-block__map {
        min-height: min(420px, 65vh);
    }
}

/* Blog / rehber */
.blog-grid {
    display: grid;
    gap: 1.35rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

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

@media (min-width: 720px) {
    .blog-grid--home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(26, 61, 46, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.45s var(--ease-out),
        box-shadow 0.45s var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.blog-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease-out);
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.04);
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
    padding: 1.15rem 1.2rem 1.25rem;
}

.blog-card__date {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-brand-light);
}

.blog-card__title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
}

.blog-card__title a {
    color: var(--color-brand);
    text-decoration: none;
}

.blog-card__title a:hover {
    color: var(--color-accent-2);
}

.blog-card__excerpt {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--color-muted);
    flex: 1;
}

.blog-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
}

.blog-card__link:hover {
    color: var(--color-accent-2);
}

.blog-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 960px) {
    .blog-layout {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    }
}

.blog-article__lead {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--color-muted);
}

.blog-article__cta {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(26, 61, 46, 0.06), rgba(196, 163, 90, 0.08));
    border: 1px solid rgba(26, 61, 46, 0.08);
}

.blog-article__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.blog-figure {
    margin: 0 0 1.75rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(26, 61, 46, 0.08);
}

.blog-figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-figure figcaption {
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
    color: var(--color-muted);
    background: rgba(26, 61, 46, 0.04);
}

.blog-table-wrap {
    overflow-x: auto;
    margin: 1rem 0;
    border: 1px solid rgba(26, 61, 46, 0.1);
    border-radius: var(--radius-lg);
}

.blog-table {
    width: 100%;
    min-width: 36rem;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.blog-table th,
.blog-table td {
    padding: 0.65rem 0.85rem;
    text-align: left;
    border-bottom: 1px solid rgba(26, 61, 46, 0.08);
}

.blog-table thead th {
    background: rgba(26, 61, 46, 0.06);
    font-weight: 600;
}

.blog-table tbody th[scope="row"] {
    font-weight: 600;
}

.blog-table-note {
    font-size: 0.88rem;
    color: var(--color-muted);
}

.blog-audience {
    display: grid;
    gap: 1rem;
    margin: 1rem 0 1.5rem;
}

@media (min-width: 720px) {
    .blog-audience {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.blog-audience__item {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-lg);
    background: rgba(26, 61, 46, 0.04);
    border: 1px solid rgba(26, 61, 46, 0.08);
}

.blog-audience__item h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.blog-audience__item p {
    margin: 0;
}

.blog-faq {
    display: grid;
    gap: 0.65rem;
    margin: 1rem 0 1.5rem;
}

.blog-faq__item {
    border: 1px solid rgba(26, 61, 46, 0.1);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.85rem;
    background: #fff;
}

.blog-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.blog-faq__item summary::-webkit-details-marker {
    display: none;
}

.blog-faq__item p {
    margin: 0.65rem 0 0;
    color: var(--color-muted);
}

.page-hero__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.92;
}

.page-hero__eyebrow a {
    color: inherit;
    text-decoration: none;
}

.page-hero__eyebrow a:hover {
    text-decoration: underline;
}

.blog-meta {
    margin: 0.75rem 0 0;
    font-size: 0.88rem;
    opacity: 0.88;
}

.blog-aside {
    display: grid;
    gap: 1rem;
}

.blog-aside__box {
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 61, 46, 0.08);
    box-shadow: var(--shadow-soft);
}

.blog-aside__box--cta {
    background: linear-gradient(160deg, rgba(26, 61, 46, 0.06), rgba(196, 163, 90, 0.1));
}

.blog-aside__title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--color-brand);
}

.blog-aside__list {
    margin: 0;
    padding-left: 1.1rem;
}

.blog-aside__list li + li {
    margin-top: 0.45rem;
}

.blog-aside__list a {
    color: var(--color-brand);
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.45;
}

.blog-aside__list a:hover {
    color: var(--color-accent-2);
}

.btn--block {
    display: block;
    width: 100%;
    text-align: center;
}

body.page--blog {
    background-image:
        radial-gradient(ellipse 100% 70% at 50% -10%, rgba(26, 61, 46, 0.05) 0%, transparent 42%),
        radial-gradient(ellipse 90% 60% at 0% 100%, rgba(196, 163, 90, 0.06) 0%, transparent 45%);
}

/* Rezervasyon — flatpickr kurumsal uyum */
.flatpickr-calendar {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 61, 46, 0.12);
    box-shadow: var(--shadow-lift);
    font-family: var(--font-sans);
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: var(--color-brand);
    font-weight: 600;
}

.flatpickr-weekdays {
    background: rgba(26, 61, 46, 0.05);
}

span.flatpickr-weekday {
    color: var(--color-brand-light);
    font-weight: 600;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
    background: var(--color-brand);
    border-color: var(--color-brand);
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--color-brand-light);
    border-color: var(--color-brand-light);
}

.flatpickr-day.today {
    border-color: var(--color-accent);
}

.flatpickr-day:hover {
    background: var(--color-accent-soft);
    border-color: transparent;
}

.form .flatpickr-input[readonly] {
    cursor: pointer;
    background: #fff;
}

.page-hero--notice {
    min-height: clamp(15rem, 36vw, 20rem);
    display: flex;
    align-items: center;
    padding: clamp(2.75rem, 6vw, 4.25rem) 0;
    background-image:
        linear-gradient(128deg, rgba(12, 28, 22, 0.94) 0%, rgba(26, 61, 46, 0.86) 42%, rgba(6, 14, 11, 0.96) 100%),
        var(--hero-photo);
}

.page-hero--notice::before {
    opacity: 0.72;
}

.page-hero--notice .page-hero__eyebrow {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.page-hero--notice h1 {
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.page-hero--notice .page-hero__lead {
    margin: 0;
    max-width: 46ch;
    line-height: 1.7;
    font-size: clamp(1rem, 2.1vw, 1.12rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.site-notice {
    display: grid;
    gap: 1.5rem;
    max-width: 52rem;
    margin: 0 auto;
}

.site-notice__card {
    padding: 1.35rem 1.4rem 1.4rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 241, 234, 0.55) 100%);
    border: 1px solid rgba(196, 163, 90, 0.28);
    box-shadow: var(--shadow-soft);
}

.site-notice__label {
    display: inline-block;
    margin: 0 0 0.65rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(196, 163, 90, 0.16);
    color: var(--color-brand);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-notice__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    color: var(--color-brand);
}

.site-notice__text {
    margin: 0;
    line-height: 1.65;
    color: var(--color-text);
}

.site-notice__text + .site-notice__text {
    margin-top: 0.75rem;
}

.site-notice__text--muted {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.site-notice__help {
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(26, 61, 46, 0.08);
}

.site-notice__help-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    color: var(--color-brand);
}

.site-notice__help-lead {
    margin: 0 0 0.85rem;
    color: var(--color-muted);
    line-height: 1.55;
    font-size: 0.95rem;
}

.site-notice__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

@media (min-width: 640px) {
    .site-notice__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.site-notice__links a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius);
    background: rgba(26, 61, 46, 0.04);
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-notice__links a:hover {
    background: rgba(26, 61, 46, 0.09);
    color: var(--color-brand-light);
}

.site-notice__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.site-notice__cta .btn {
    min-width: 10.5rem;
}

.page--error .site-nav__list > li > a.is-active {
    font-weight: inherit;
}

.page--error .site-nav__list > li > a.is-active::after {
    width: 0;
}
