/* ═══════════════════════════════════════════════════════════════════
   Suhan Cappadocia Hotel & Spa — style.css
   Tasarım dili: "Anadolu Alacakaranlığı" — koyu kahve taş, krem parşömen,
   bakır/altın bezeme. Playfair Display (başlık) + Jost (gövde).
   Mobile-first, saf CSS, hilal + balon çizgi motifleri.
   ═══════════════════════════════════════════════════════════════════ */

/* ───────────── Tasarım belirteçleri ───────────── */
:root {
    --brown: #5A4632;
    --brown-deep: #3E3022;
    --brown-ink: #2B2115;
    --cream: #F5EFE6;
    --cream-soft: #FAF7F1;
    --cream-dark: #EAE1D2;
    --copper: #B08D57;
    --gold: #C9A227;
    --gold-soft: rgba(201, 162, 39, .28);
    --white: #FFFDF9;
    --line: rgba(90, 70, 50, .16);
    --line-light: rgba(245, 239, 230, .18);
    --text: #3B3024;
    --text-soft: #6E604E;
    --text-on-dark: #EFE7DA;
    --text-on-dark-soft: rgba(239, 231, 218, .72);

    --font-display: "Playfair Display", "Georgia", serif;
    --font-body: "Jost", "Segoe UI", sans-serif;

    --shadow-soft: 0 10px 30px -12px rgba(43, 33, 21, .25);
    --shadow-card: 0 18px 40px -18px rgba(43, 33, 21, .35);
    --radius: 3px;

    --container: 1200px;
    --header-h: 76px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ───────────── Sıfırlama & taban ───────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
}

/* Parşömen dokusu — hafif tanecik */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .35;
    background-image: radial-gradient(rgba(90, 70, 50, .05) 1px, transparent 1px);
    background-size: 5px 5px;
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
a { color: var(--brown); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--copper); }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--brown-deep);
    line-height: 1.18;
    margin: 0 0 .6em;
}
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

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

.skip-link {
    position: absolute;
    top: -60px;
    left: 12px;
    z-index: 200;
    background: var(--brown-deep);
    color: var(--cream);
    padding: 10px 18px;
    font-size: .9rem;
    letter-spacing: .04em;
    transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--cream); }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}
.container.narrow { max-width: 860px; }

.site-main { position: relative; z-index: 1; }

/* ───────────── Butonlar ───────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55em;
    padding: .85em 2em;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .3s var(--ease), color .3s var(--ease),
                border-color .3s var(--ease), transform .3s var(--ease),
                box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1.05em 2.6em; font-size: .88rem; }
.btn-block { width: 100%; }

.btn-gold {
    background: linear-gradient(120deg, var(--gold) 0%, var(--copper) 100%);
    color: var(--brown-ink);
    box-shadow: 0 8px 22px -10px rgba(201, 162, 39, .65);
}
.btn-gold:hover {
    color: var(--brown-ink);
    box-shadow: 0 12px 28px -10px rgba(201, 162, 39, .8);
}

.btn-outline {
    border-color: var(--brown);
    color: var(--brown);
    background: transparent;
}
.btn-outline:hover { background: var(--brown); color: var(--cream); }

.btn-outline-light {
    border-color: rgba(245, 239, 230, .65);
    color: var(--cream);
    background: transparent;
}
.btn-outline-light:hover { background: var(--cream); color: var(--brown-deep); }

/* ───────────── Üst bar ───────────── */
.topbar {
    position: relative;
    z-index: 60;
    background: var(--brown-deep);
    color: var(--text-on-dark-soft);
    font-size: .8rem;
    letter-spacing: .06em;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 7px;
}
.topbar-contact { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-on-dark-soft);
}
.topbar-contact a:hover { color: var(--gold); }
.topbar-note {
    display: none;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--copper);
}
.topbar-crescent { display: inline-flex; color: var(--gold); }

/* ───────────── Başlık / navigasyon ───────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 247, 241, .96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--brown-deep);
}
.brand-sub {
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--copper);
}
.brand:hover .brand-name { color: var(--copper); }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 10px;
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
}
.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--brown);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) 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(-7px) rotate(-45deg); }

.header-cta { display: none; }

/* ── Mobil çekmece ── */
.site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    background: var(--cream-soft);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: calc(var(--header-h) + 20px) 22px 30px;
    overflow-y: auto;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .4s var(--ease), visibility 0s linear .4s;
    z-index: 49;
}
.site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .4s var(--ease);
}
body.nav-locked { overflow: hidden; }

.nav-list { display: flex; flex-direction: column; }
.nav-item { border-bottom: 1px solid var(--line); }
.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 2px;
    font-size: .86rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brown-deep);
}
.nav-link:hover { color: var(--copper); }
.nav-link.is-active { color: var(--gold); }
.nav-chevron { color: var(--copper); transition: transform .3s var(--ease); }
.mega-trigger[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.nav-utilities {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

/* ── Mega menüler (mobil: akordiyon) ── */
.mega-panel {
    display: none;
    padding: 4px 0 18px;
}
.has-mega.is-open > .mega-panel { display: block; }
.mega-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: .92rem;
    color: var(--copper);
    margin-bottom: 12px;
}
.mega-rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.mega-room-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.mega-room-card:hover { border-color: var(--copper); box-shadow: var(--shadow-soft); }
.mega-room-img { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-dark); }
.mega-room-img img { width: 100%; height: 100%; object-fit: cover; }
.mega-room-name {
    display: block;
    padding: 8px 10px 0;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--brown-deep);
}
.mega-room-size {
    display: block;
    padding: 0 10px 10px;
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--copper);
}

.mega-links { display: flex; flex-direction: column; }
.mega-links a {
    display: block;
    padding: 9px 2px;
    border-bottom: 1px dashed var(--line);
}
.mega-links li:last-child a { border-bottom: none; }
.mega-link-title {
    display: block;
    font-family: var(--font-display);
    font-size: .98rem;
    font-weight: 600;
    color: var(--brown-deep);
}
.mega-link-desc {
    display: block;
    font-size: .8rem;
    color: var(--text-soft);
}
.mega-links a:hover .mega-link-title { color: var(--gold); }

/* ── Dil seçici ── */
.lang-switch { position: relative; align-self: flex-start; }
.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .14em;
    color: var(--brown);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color .25s var(--ease), color .25s var(--ease);
}
.lang-current:hover { border-color: var(--copper); color: var(--copper); }
.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 170px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 6px;
    display: none;
    z-index: 70;
}
.lang-switch.is-open .lang-menu { display: block; }
.lang-menu a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 12px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    color: var(--brown);
    border-radius: 2px;
}
.lang-menu a:hover { background: var(--cream); }
.lang-menu a.is-current { color: var(--gold); }
.lang-name { font-size: .74rem; color: var(--text-soft); letter-spacing: .04em; }

/* ───────────── Hero kaydırıcı ───────────── */
.hero {
    position: relative;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--brown-deep);
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.1s var(--ease), transform 6s linear;
}
.hero-slide.is-active img { opacity: 1; transform: scale(1); }
.hero-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(43, 33, 21, .55) 0%, rgba(43, 33, 21, .28) 45%, rgba(43, 33, 21, .62) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 96px 130px;
    color: var(--cream);
}
.hero-kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    animation: rise .9s var(--ease) both;
}
.hero-kicker::before, .hero-kicker::after { content: "·"; margin-inline: 10px; color: var(--copper); }
.hero-title {
    font-size: clamp(2.1rem, 6.4vw, 4.2rem);
    font-weight: 600;
    color: var(--cream);
    max-width: 14ch;
    margin-bottom: 18px;
    animation: rise .9s .12s var(--ease) both;
}
.hero-subtitle {
    max-width: 46ch;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: var(--text-on-dark-soft);
    margin-bottom: 30px;
    animation: rise .9s .24s var(--ease) both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; animation: rise .9s .36s var(--ease) both; }

.hero-controls {
    position: absolute;
    left: 0; right: 0; bottom: 22px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.hero-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    background: rgba(43, 33, 21, .35);
    border: 1px solid var(--line-light);
    border-radius: 50%;
    color: var(--cream);
    cursor: pointer;
    transition: background .3s var(--ease), border-color .3s var(--ease);
}
.hero-arrow:hover { background: var(--copper); border-color: var(--copper); }
.hero-dots { display: flex; gap: 10px; }
.hero-dot {
    width: 26px;
    height: 3px;
    padding: 0;
    background: rgba(245, 239, 230, .35);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background .3s var(--ease), width .3s var(--ease);
}
.hero-dot.is-active { background: var(--gold); width: 40px; }

@keyframes rise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ───────────── Sayfa kahramanları ───────────── */
.page-hero {
    position: relative;
    background:
        radial-gradient(120% 140% at 85% -20%, rgba(201, 162, 39, .22) 0%, transparent 55%),
        linear-gradient(150deg, var(--brown-deep) 0%, var(--brown) 70%);
    color: var(--cream);
    padding-block: 64px 58px;
    overflow: hidden;
}
.page-hero::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, .25);
    pointer-events: none;
}
.page-hero-img { padding-block: 92px 84px; }
.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 33, 21, .68), rgba(62, 48, 34, .55));
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero-title {
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    color: var(--cream);
    margin-bottom: 8px;
}
.page-hero-sub {
    max-width: 52ch;
    color: var(--text-on-dark-soft);
    font-weight: 300;
}

/* ───────────── Bölümler ───────────── */
.section { position: relative; padding-block: 64px; }
.section-cream { background: var(--cream-soft); }
.section-head { max-width: 640px; margin-bottom: 38px; }
.section-kicker {
    display: block;
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 10px;
}
.kicker-light { color: var(--gold); }
.section-title {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    position: relative;
    padding-bottom: 14px;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--copper));
}
.section-foot { margin-top: 36px; }
.lead { font-size: 1.12rem; font-weight: 300; color: var(--text); }
.empty-state {
    text-align: center;
    color: var(--text-soft);
    font-style: italic;
    padding-block: 40px;
}

/* ── Tanıtım ── */
.intro { overflow: hidden; }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: center;
}
.intro-ornament {
    display: none;
    color: var(--copper);
}
.intro-text .section-title { margin-bottom: 20px; }
.intro-text p:not(.section-kicker) { color: var(--text-soft); }
.intro-text .btn { margin-top: 14px; }

/* ───────────── Oda kartları ───────────── */
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}
.room-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.room-card-media { display: block; position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.room-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.room-card:hover .room-card-media img { transform: scale(1.05); }
.room-card-price {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(43, 33, 21, .82);
    color: var(--gold);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
}
.room-card-body { padding: 22px 24px 26px; }
.room-card-title { font-size: 1.3rem; margin-bottom: 10px; }
.room-card-title a { color: var(--brown-deep); }
.room-card-title a:hover { color: var(--gold); }
.room-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 12px;
}
.room-card-meta li:not(:last-child)::after { content: "·"; margin-inline: 8px; color: var(--line); }
.room-card-excerpt { color: var(--text-soft); font-size: .95rem; }
.room-card-link {
    display: inline-block;
    margin-top: 8px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid transparent;
}
.room-card-link:hover { border-color: var(--gold); color: var(--copper); }
.room-card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ───────────── Hizmet kartları ───────────── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.service-card {
    position: relative;
    display: block;
    min-height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.service-card-media { position: absolute; inset: 0; }
.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    height: 100%;
    min-height: 320px;
    padding: 26px;
    background: linear-gradient(180deg, rgba(43, 33, 21, 0) 30%, rgba(43, 33, 21, .85) 100%);
    color: var(--cream);
}
.service-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
}
.service-card-excerpt {
    font-size: .9rem;
    font-weight: 300;
    color: var(--text-on-dark-soft);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-card-cta {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    transition: letter-spacing .3s var(--ease);
}
.service-card:hover .service-card-cta { letter-spacing: .34em; }

/* ───────────── CTA bandı ───────────── */
.cta-band {
    position: relative;
    background:
        radial-gradient(90% 120% at 10% 0%, rgba(201, 162, 39, .18) 0%, transparent 50%),
        linear-gradient(135deg, var(--brown-deep), var(--brown));
    color: var(--cream);
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    left: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(201, 162, 39, .22);
    border-radius: 50%;
}
.cta-band-inner {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    padding-block: 58px;
}
.cta-band-title {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    color: var(--cream);
    margin-bottom: 10px;
}
.cta-band-text { color: var(--text-on-dark-soft); font-weight: 300; max-width: 54ch; }

/* ───────────── Spa olanakları ───────────── */
.spa-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.spa-feature {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 2px solid var(--copper);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.spa-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.spa-feature-icon { color: var(--gold); display: inline-block; margin-bottom: 14px; }
.spa-feature-title { font-size: 1.12rem; margin-bottom: 6px; }
.spa-feature p { font-size: .92rem; color: var(--text-soft); }
.spa-note {
    margin-top: 30px;
    padding: 14px 18px;
    border-left: 3px solid var(--gold);
    background: rgba(201, 162, 39, .08);
    font-size: .92rem;
    color: var(--text-soft);
    font-style: italic;
}

/* ───────────── Restoran ───────────── */
.rest-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 44px;
}
.rest-highlight {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    position: relative;
}
.rest-highlight::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: 0;
    width: 44px;
    height: 2px;
    background: var(--gold);
}
.rest-highlight svg { color: var(--copper); margin-bottom: 16px; }
.rest-highlight-title { font-size: 1.25rem; margin-bottom: 8px; }
.rest-highlight p { color: var(--text-soft); }
.rest-hours {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
    padding: 30px 26px;
    border: 1px solid var(--gold-soft);
    border-radius: var(--radius);
    background: rgba(201, 162, 39, .06);
}
.rest-hours-title { font-size: 1.2rem; }
.rest-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 6px;
    border-bottom: 1px dashed var(--line);
    font-size: .95rem;
}
.rest-hours-list li:last-child { border-bottom: none; }
.rest-hours-list li span:last-child { color: var(--copper); font-weight: 500; letter-spacing: .08em; }

/* ───────────── Toplantı ───────────── */
.meet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.meet-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
}
.meet-card svg { color: var(--copper); margin-bottom: 14px; }
.meet-card-title { font-size: 1.25rem; margin-bottom: 8px; }
.meet-card p { color: var(--text-soft); }
.meet-halls { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.meet-halls li {
    font-family: var(--font-display);
    font-style: italic;
    font-size: .92rem;
    color: var(--brown-deep);
    border: 1px solid var(--gold-soft);
    background: rgba(201, 162, 39, .07);
    padding: 5px 14px;
    border-radius: 20px;
}

/* ───────────── Hakkımızda olguları ───────────── */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.fact-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 16px;
    transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.fact-card:hover { transform: translateY(-4px); border-color: var(--copper); }
.fact-icon { display: inline-flex; color: var(--gold); margin-bottom: 12px; }
.fact-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brown-deep);
    margin-bottom: 4px;
}
.fact-label { display: block; font-size: .82rem; color: var(--text-soft); letter-spacing: .04em; }


/* ───────────── Kapadokya bölümleri ───────────── */
.cap-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 900px;
}
.cap-num {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--copper);
    opacity: .8;
}
.cap-num-inline {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--copper);
    margin-bottom: 6px;
}
.cap-title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 12px; }
.cap-block p { color: var(--text-soft); }
.cap-activities {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.cap-activity {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cap-activity:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.cap-activity-icon { display: inline-flex; color: var(--gold); margin-bottom: 12px; }
.cap-activity h3 { font-size: 1.1rem; margin-bottom: 6px; }
.cap-activity p { font-size: .92rem; color: var(--text-soft); }
.cap-transport {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.cap-airport {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
}
.cap-airport svg { color: var(--copper); flex: none; margin-top: 3px; }
.cap-airport h3 { font-size: 1.05rem; margin-bottom: 2px; }
.cap-airport p { font-size: .9rem; color: var(--text-soft); }
.cap-transfer { font-style: italic; color: var(--text-soft); }

/* ───────────── Oda detayı ───────────── */
.room-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    background: var(--brown-deep);
    overflow: hidden;
}
.room-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 33, 21, .25) 0%, rgba(43, 33, 21, .72) 100%);
}
.room-hero-content { position: relative; z-index: 2; padding-block: 80px 40px; }

.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
.room-detail-main .lead { margin-bottom: 1.2em; }
.room-detail-subtitle {
    font-size: 1.35rem;
    margin-top: 34px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
}
.feature-list svg { color: var(--gold); flex: none; }
.room-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}
.room-thumb {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.room-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.room-thumb:hover img { transform: scale(1.06); }

.room-detail-side { position: sticky; top: calc(var(--header-h) + 20px); }
.room-facts {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 8px 24px;
    margin-bottom: 16px;
}
.room-fact {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px dashed var(--line);
}
.room-fact:last-child { border-bottom: none; }
.room-fact-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); }
.room-fact-value { font-family: var(--font-display); font-weight: 600; color: var(--brown-deep); text-align: right; }
.room-detail-side .btn { margin-bottom: 10px; }

/* ───────────── Galeri ───────────── */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}
.filter-btn {
    padding: 8px 20px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brown);
    border: 1px solid var(--line);
    border-radius: 24px;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.filter-btn:hover { border-color: var(--copper); color: var(--copper); }
.filter-btn.is-active { background: var(--brown); border-color: var(--brown); color: var(--cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.gallery-item {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--cream-dark);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-veil {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 33, 21, .38);
    color: var(--cream);
    opacity: 0;
    transition: opacity .35s var(--ease);
}
.gallery-item:hover .gallery-item-veil,
.gallery-item:focus-visible .gallery-item-veil { opacity: 1; }

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(30, 23, 15, .94);
    padding: 20px;
}
.lightbox[hidden] { display: none; }
.lightbox-figure { max-width: min(1000px, 92vw); text-align: center; }
.lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    margin-inline: auto;
    border-radius: 2px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .6);
}
.lightbox-caption {
    margin-top: 14px;
    color: var(--text-on-dark-soft);
    font-size: .9rem;
    letter-spacing: .06em;
}
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--cream);
    background: none;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    cursor: pointer;
    transition: background .3s var(--ease);
}
.lightbox-close:hover { background: rgba(245, 239, 230, .14); }
.lightbox-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: none;
    color: var(--cream);
    background: rgba(245, 239, 230, .08);
    border: 1px solid var(--line-light);
    border-radius: 50%;
    cursor: pointer;
    transition: background .3s var(--ease);
}
.lightbox-arrow:hover { background: var(--copper); }

/* ───────────── Haberler ───────────── */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.news-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.news-card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 20px 22px 24px; }
.news-card-date {
    display: block;
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 8px;
}
.news-card-title { font-size: 1.15rem; margin-bottom: 8px; }
.news-card-title a { color: var(--brown-deep); }
.news-card-title a:hover { color: var(--gold); }
.news-card-body p { font-size: .93rem; color: var(--text-soft); }
.news-detail-cover { margin-bottom: 30px; }
.news-detail-cover img { width: 100%; border-radius: var(--radius); }
.news-detail-body p { color: var(--text); margin-bottom: 1.3em; }
.news-detail-back { margin-top: 34px; }
.empty-state-block {
    text-align: center;
    padding-block: 50px;
    color: var(--text-soft);
}
.empty-state-block svg { color: var(--copper); margin: 0 auto 18px; }
.empty-state-block p { max-width: 44ch; margin-inline: auto; margin-bottom: 22px; }

/* ───────────── İletişim ───────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
.contact-block {
    padding: 20px 0;
    border-bottom: 1px dashed var(--line);
}
.contact-block:first-child { padding-top: 0; }
.contact-block-title {
    font-size: .8rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 8px;
}
.contact-block p { color: var(--text); }
.contact-map iframe {
    width: 100%;
    min-height: 380px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

/* ───────────── Rezervasyon formu ───────────── */
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}
.reservation-form-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 30px 26px 36px;
    box-shadow: var(--shadow-soft);
}
.reservation-form { display: block; }
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
    display: block;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: .98rem;
    color: var(--text);
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--copper);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-field.has-error input,
.form-field.has-error select { border-color: #A5432E; background: rgba(165, 67, 46, .05); }
.form-error {
    margin-top: 6px;
    font-size: .84rem;
    color: #A5432E;
}
.form-alert {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-left: 3px solid #A5432E;
    background: rgba(165, 67, 46, .08);
    color: #7C3322;
    font-size: .94rem;
}
.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
.form-note { margin-top: 16px; font-size: .85rem; color: var(--text-soft); font-style: italic; }

.form-success {
    text-align: center;
    padding: 30px 10px;
    color: var(--text);
}
.form-success svg { color: var(--gold); margin: 0 auto 16px; }
.form-success h2 { font-size: 1.5rem; }
.form-success p { max-width: 40ch; margin: 0 auto 24px; color: var(--text-soft); }

.reservation-side-card {
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(201, 162, 39, .16) 0%, transparent 55%),
        var(--brown-deep);
    color: var(--text-on-dark);
    border-radius: var(--radius);
    padding: 30px 28px;
}
.reservation-side-title {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 12px;
}
.reservation-side-card p { color: var(--text-on-dark-soft); font-size: .95rem; }
.reservation-side-card a { color: var(--gold); }
.reservation-side-card a:hover { color: var(--cream); }
.reservation-side-hours {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line-light);
    font-size: .88rem;
}

/* ───────────── 404 ───────────── */
.notfound {
    min-height: 62vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(90% 120% at 80% 0%, rgba(201, 162, 39, .14) 0%, transparent 55%),
        linear-gradient(160deg, var(--brown-deep), var(--brown));
}
.notfound-inner {
    text-align: center;
    padding-block: 70px;
    color: var(--cream);
}
.notfound-motif { color: var(--copper); margin: 0 auto 20px; }
.notfound-code {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
    margin-bottom: 12px;
}
.notfound-title { color: var(--cream); font-size: clamp(1.5rem, 4vw, 2.2rem); }
.notfound-text { color: var(--text-on-dark-soft); max-width: 46ch; margin: 0 auto 30px; }
.notfound-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ───────────── Alt bilgi ───────────── */
.site-footer {
    position: relative;
    background: var(--brown-deep);
    color: var(--text-on-dark-soft);
    overflow: hidden;
}
.footer-motif {
    display: block;
    width: min(340px, 80%);
    margin: 0 auto;
    padding-top: 30px;
    color: rgba(201, 162, 39, .55);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 44px 50px;
}
.footer-logo { filter: brightness(0) invert(1); opacity: .92; max-width: 180px; margin-bottom: 16px; }
.footer-about p { font-size: .95rem; max-width: 34ch; }
.footer-title {
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer-links ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.footer-links a { color: var(--text-on-dark-soft); font-size: .93rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact address p { font-size: .93rem; margin-bottom: 10px; }
.footer-contact a { color: var(--text-on-dark-soft); }
.footer-contact a:hover { color: var(--gold); }
.footer-hours { color: var(--copper); }
.social-list { display: flex; gap: 12px; margin-bottom: 22px; }
.social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--text-on-dark-soft);
    border: 1px solid var(--line-light);
    border-radius: 50%;
    transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.social-list a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--line-light); }
.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    padding-block: 20px;
    font-size: .82rem;
    letter-spacing: .04em;
}
.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--copper);
}

/* ───────────── Masaüstü kırılımları ───────────── */
@media (min-width: 640px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .facts-grid { grid-template-columns: repeat(4, 1fr); }
    .spa-features-grid { grid-template-columns: repeat(2, 1fr); }
    .cap-activities { grid-template-columns: repeat(2, 1fr); }
    .cap-transport { grid-template-columns: repeat(2, 1fr); }
    .room-thumbs { grid-template-columns: repeat(3, 1fr); }
    .topbar-note { display: inline-flex; }
    .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 900px) {
    :root { --header-h: 84px; }
    .section { padding-block: 84px; }
    .nav-toggle { display: none; }
    .header-cta { display: inline-flex; }
    .brand img { width: 54px; height: 54px; }

    .site-nav {
        position: static;
        width: auto;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        overflow: visible;
        transform: none;
        visibility: visible;
        transition: none;
        display: flex;
        align-items: center;
        gap: 22px;
    }
    .nav-list { flex-direction: row; align-items: center; gap: 4px; }
    .nav-item { border-bottom: none; position: relative; }
    .nav-link {
        padding: 26px 14px;
        font-size: .78rem;
        position: relative;
    }
    .nav-link::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 18px;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s var(--ease);
    }
    .nav-link:hover::after,
    .nav-link.is-active::after { transform: scaleX(1); }

    /* Mega menü — masaüstü: hover/focus-within CSS tabanı + JS ile .is-open */
    .mega-panel {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, 12px);
        width: max-content;
        min-width: 320px;
        background: var(--white);
        border: 1px solid var(--line);
        border-top: 2px solid var(--gold);
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: var(--shadow-card);
        opacity: 0;
        visibility: hidden;
        display: block;
        padding: 26px 28px;
        transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
        z-index: 60;
    }
    #mega-rooms { min-width: min(720px, 86vw); left: auto; right: -40px; transform: translateY(12px); }
    #mega-cappadocia { left: auto; right: -40px; transform: translateY(12px); }
    .has-mega:hover > .mega-panel,
    .has-mega:focus-within > .mega-panel,
    .has-mega.is-open > .mega-panel {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        transition-delay: 0s;
    }
    .has-mega:hover > #mega-rooms,
    .has-mega:focus-within > #mega-rooms,
    .has-mega.is-open > #mega-rooms,
    .has-mega:hover > #mega-cappadocia,
    .has-mega:focus-within > #mega-cappadocia,
    .has-mega.is-open > #mega-cappadocia {
        transform: translateY(0);
    }
    /* Hover boşluğu köprüsü — menü kapanmadan imleç panele geçebilsin */
    .mega-panel::before {
        content: "";
        position: absolute;
        top: -14px;
        left: 0;
        right: 0;
        height: 14px;
    }
    .mega-rooms-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .mega-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 26px; }
    .mega-links a { padding: 10px 4px; }

    .nav-utilities {
        flex-direction: row;
        align-items: center;
        margin: 0;
        padding: 0;
        border-top: none;
        gap: 14px;
    }
    .nav-utilities .nav-cta { display: none; }
    .lang-switch { align-self: auto; }

    .intro-grid { grid-template-columns: 160px 1fr; gap: 56px; }
    .intro-ornament { display: block; }
    .rooms-grid-wide { grid-template-columns: 1fr; }
    .room-card-wide {
        display: grid;
        grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    }
    .room-card-wide .room-card-media { aspect-ratio: auto; min-height: 300px; }
    .room-card-wide .room-card-body { padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .spa-features-grid { grid-template-columns: repeat(3, 1fr); }
    .rest-highlights { grid-template-columns: repeat(2, 1fr); }
    .meet-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(3, 1fr); }
    .cap-block { grid-template-columns: 120px 1fr; gap: 30px; }
    .room-detail-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: 56px; }
    .contact-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; }
    .reservation-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: 44px; }
    .footer-grid { grid-template-columns: minmax(0, 4fr) minmax(0, 3fr) minmax(0, 3fr) minmax(0, 3fr); gap: 40px; }
    .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
    .rooms-grid-wide { grid-template-columns: 1fr; }
}

/* ───────────── Hareket azaltma ───────────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
