:root {
    --brand-bg: #0f0810;
    --brand-bg-soft: #160d14;
    --brand-surface: rgba(28, 14, 24, 0.94);
    --brand-surface-soft: rgba(255, 255, 255, 0.04);
    --brand-surface-strong: rgba(18, 10, 17, 0.96);
    --brand-primary: #8a3a72;
    --brand-primary-strong: #a95688;
    --brand-secondary: #d7b57b;
    --brand-text: #f7f1f4;
    --brand-muted: #cdbdca;
    --brand-muted-strong: #a891a2;
    --brand-border: rgba(215, 181, 123, 0.16);
    --brand-border-soft: rgba(255, 255, 255, 0.08);
    --brand-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif !important;
    color: var(--brand-text);
    background:
        radial-gradient(circle at top, rgba(138, 58, 114, 0.22), transparent 36%),
        linear-gradient(180deg, #0f0810 0%, #140b13 100%);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(6, 3, 7, 0.66);
    backdrop-filter: blur(6px);
    z-index: 1040;
}

img {
    display: block;
    max-width: 100%;
}

a,
button,
input,
textarea,
select {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--brand-secondary);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.6em;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

p {
    margin: 0 0 1rem;
    line-height: 1.78;
    color: var(--brand-muted);
}

ul {
    margin: 0;
    padding: 0;
}

.container {
    width: min(calc(100% - 32px), 1280px);
    margin: 0 auto;
}

.welcome-modal {
    display: none !important;
}

header,
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    border-bottom: 1px solid rgba(215, 181, 123, 0.12);
    background: linear-gradient(180deg, rgba(15, 8, 16, 0.96), rgba(15, 8, 16, 0.9));
    backdrop-filter: blur(22px) saturate(150%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

header.is-scrolled,
.site-header.is-scrolled {
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
}

header .container,
.site-header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px;
    min-height: 96px;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    width: 72px;
    height: 72px;
    padding: 10px;
    object-fit: contain;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(215, 181, 123, 0.14);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

header .nav,
header .desktop-nav,
.site-header .nav,
.site-header .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin-left: auto;
    flex: 1 1 auto;
    min-width: 0;
}

.menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    list-style: none;
}

.menu > li {
    position: relative;
    list-style: none;
}

.menu > li > a,
.desktop-nav > a,
.nav > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-text) !important;
    text-decoration: none;
    font-size: 0.98rem !important;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
}

.menu > li > a::after,
.desktop-nav > a::after,
.nav > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary-strong));
    transition: width 0.25s ease;
}

.menu > li > a:hover::after,
.menu > li > a.is-active::after,
.dropdown.is-active > a::after,
.desktop-nav > a:hover::after,
.nav > a:hover::after {
    width: 100%;
}

.menu > li > a.is-active,
.dropdown.is-active > a,
.mobile-menu a.is-active,
.mobile-nav a.is-active {
    color: #fff !important;
}

.dropdown-arrow,
.mobile-dropdown-arrow,
.mobile-arrow {
    font-size: 0.78rem;
    transition: transform 0.2s ease;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 230px;
    padding: 12px;
    list-style: none;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(26, 14, 24, 0.98), rgba(16, 8, 14, 0.98));
    border: 1px solid var(--brand-border);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li + li {
    margin-top: 6px;
}

.dropdown-menu a {
    display: block;
    padding: 11px 14px;
    border-radius: 14px;
    color: #f2e8ef !important;
    text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.is-active {
    background: rgba(164, 79, 132, 0.16);
}

.rezervasyon-btn,
.hero-rezervasyon-btn,
.newsletter-btn,
.mobile-rezervasyon,
.mobile-rezervasyon-btn,
.btn-primary,
.room-btn-book,
.reservation-submit,
.detail-actions a:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #fff !important;
    background: linear-gradient(135deg, #723157, #a44f84) !important;
    box-shadow: 0 16px 34px rgba(114, 49, 87, 0.24);
    cursor: pointer;
}

.rezervasyon-btn:hover,
.hero-rezervasyon-btn:hover,
.newsletter-btn:hover,
.mobile-rezervasyon:hover,
.mobile-rezervasyon-btn:hover,
.btn-primary:hover,
.room-btn-book:hover,
.reservation-submit:hover,
.detail-actions a:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(114, 49, 87, 0.34);
}

.btn-secondary,
.room-btn-secondary,
.detail-actions .ghost,
.reservation-preview__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    color: var(--brand-text) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.btn-secondary:hover,
.room-btn-secondary:hover,
.detail-actions .ghost:hover,
.reservation-preview__whatsapp:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08) !important;
}

.hamburger,
.mobile-hamburger {
    display: none;
    width: 52px;
    height: 52px;
    padding: 14px 12px;
    border: 1px solid rgba(215, 181, 123, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1110;
}

.hamburger span,
.mobile-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.mobile-menu,
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1060;
    width: min(100%, 390px);
    height: 100vh;
    padding: 104px 18px 24px;
    background: linear-gradient(180deg, rgba(15, 8, 16, 0.98), rgba(20, 10, 18, 0.96));
    border-left: 1px solid var(--brand-border);
    box-shadow: -28px 0 60px rgba(0, 0, 0, 0.34);
    transform: translateX(105%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
}

.mobile-menu.active,
.mobile-nav.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu ul,
.mobile-nav ul,
.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.mobile-menu ul li,
.mobile-nav ul li,
.mobile-menu-list li {
    list-style: none;
}

.mobile-menu a,
.mobile-nav a,
.mobile-menu-list a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 14px 18px !important;
    border-radius: 18px;
    text-decoration: none;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a:hover,
.mobile-nav a:hover,
.mobile-menu-list a:hover {
    background: rgba(138, 58, 114, 0.18);
    border-color: rgba(215, 181, 123, 0.18);
}

.mobile-submenu {
    display: none;
    padding-top: 8px;
    gap: 8px;
}

.mobile-dropdown.open .mobile-submenu {
    display: grid;
}

.mobile-dropdown.open .mobile-dropdown-arrow,
.mobile-dropdown.open .mobile-arrow,
.mobile-dropdown-arrow.is-open,
.mobile-arrow.is-open {
    transform: rotate(90deg);
}

main {
    padding-top: 112px;
}

.page-home main {
    padding-top: 0;
}

.home-hero {
    position: relative;
    padding: 160px 0 88px;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 8, 16, 0.92) 0%, rgba(15, 8, 16, 0.7) 48%, rgba(15, 8, 16, 0.84) 100%),
        url('gorseller/r2.jpeg') center/cover no-repeat;
    opacity: 0.38;
}

.home-hero > * {
    position: relative;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: center;
}

.home-hero__grid > *,
.reservation-layout > *,
.contact-shell > *,
.detail-hero > *,
.page-callout > div,
.info-banner > div {
    min-width: 0;
}

.home-hero__content h1 {
    margin-top: 18px;
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 5vw, 5.1rem);
}

.home-hero__content p {
    max-width: 760px;
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.hero-stat,
.hero-panel-card,
.value-card,
.legal-card,
.feature-card,
.trust-card,
.empty-state,
.contact-card,
.contact-map-card,
.reservation-preview,
.reservation-form-card,
.detail-gallery,
.detail-summary,
.detail-section,
.footer-column {
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-border-soft);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: var(--brand-shadow);
    backdrop-filter: blur(16px);
}

.hero-stat {
    padding: 18px 20px;
}

.hero-stat strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1rem;
}

.hero-stat span {
    color: var(--brand-muted);
    font-size: 0.94rem;
}

.hero-panel-card {
    overflow: hidden;
}

.hero-panel-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.hero-panel-copy {
    padding: 28px;
}

.hero-note-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.page-hero {
    padding: 34px 0 12px;
}

.page-hero .container {
    display: grid;
    gap: 14px;
}

.page-hero h1 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    margin: 0;
}

.page-intro {
    max-width: 920px;
    margin: 0;
    color: var(--brand-muted);
}

.soft-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(215, 181, 123, 0.1);
    border: 1px solid rgba(215, 181, 123, 0.22);
    color: var(--brand-secondary);
    font-size: 0.92rem;
    font-weight: 600;
}

.section-shell {
    padding: 24px 0 88px;
}

.section-shell--muted {
    background: rgba(255, 255, 255, 0.015);
}

.section-head {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
    text-align: center;
}

.section-head--left {
    text-align: left;
}

.section-head__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-secondary);
    font-size: 0.78rem;
    font-weight: 700;
}

.section-head h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin: 0;
}

.page-hero h1,
.home-hero__content h1,
.section-head h2,
.page-intro,
.room-card-summary,
.value-card p,
.legal-card p,
.feature-card p,
.trust-card p,
.contact-item p {
    overflow-wrap: anywhere;
}

.page-callout,
.info-banner {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px 20px;
    margin-bottom: 28px;
    border-radius: var(--radius-md);
    background: rgba(138, 58, 114, 0.12);
    border: 1px solid rgba(138, 58, 114, 0.24);
}

.page-callout i,
.info-banner i {
    margin-top: 2px;
    color: var(--brand-secondary);
}

.page-callout p,
.info-banner p {
    margin-bottom: 0;
}

.value-grid,
.legal-grid,
.contact-legal-grid,
.legal-highlight,
.footer-trust-grid,
.detail-cta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.value-card,
.legal-card,
.feature-card,
.trust-card,
.contact-card {
    padding: 24px;
}

.value-card i,
.legal-card i,
.feature-card i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    color: var(--brand-secondary);
    background: rgba(215, 181, 123, 0.09);
    border: 1px solid rgba(215, 181, 123, 0.18);
}

.room-grid,
.rooms-modern-grid-system {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.room-grid--listing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.single-room-card,
.room-card,
.oda-card,
.oda-sayfasi-kart {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border-radius: 28px;
    border: 1px solid rgba(215, 181, 123, 0.14);
    background: linear-gradient(180deg, rgba(29, 15, 26, 0.98), rgba(13, 8, 12, 0.98));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.single-room-card:hover,
.room-card:hover,
.oda-card:hover,
.oda-sayfasi-kart:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 181, 123, 0.24);
    box-shadow: 0 34px 74px rgba(0, 0, 0, 0.42);
}

.room-card-media,
.oda-image,
.oda-sayfasi-ana-resim-kap {
    position: relative;
    background: #090509;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.room-card-media::after,
.oda-image::after,
.oda-sayfasi-ana-resim-kap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 5, 9, 0.04) 32%, rgba(10, 5, 9, 0.82) 100%);
}

.room-card-img,
.oda-image img,
.oda-sayfasi-ana-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(18, 129, 68, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.room-card-content,
.oda-content,
.oda-sayfasi-detay {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    flex: 1 1 auto;
}

.room-card-head {
    display: grid;
    gap: 12px;
}

.room-card-title,
.oda-content h3,
.oda-sayfasi-baslik {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    line-height: 1.18;
}

.room-card-summary {
    margin: 0;
    font-size: 0.97rem;
}

.room-card-specs,
.oda-kapasite,
.oda-sayfasi-ikon-bilgi {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.room-card-specs span,
.oda-sayfasi-ikon-bilgi span,
.detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--brand-text);
    font-size: 0.9rem;
}

.room-card-feature-list {
    display: grid;
    gap: 10px;
    margin: 0;
    list-style: none;
}

.room-card-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--brand-text);
}

.room-card-feature-list li::before {
    content: "✦";
    color: var(--brand-secondary);
}

.stay-notes,
.room-card-note-list,
.room-detail-note-list,
.rez-sayfasi-note-list,
.hero-note-list {
    display: grid;
    gap: 10px;
}

.stay-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stay-note i {
    margin-top: 3px;
    color: var(--brand-secondary);
}

.room-card-btns,
.oda-sayfasi-butonlar,
.detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: auto;
    align-items: stretch;
}

.room-btn-secondary,
.room-btn-book,
.room-btn-wa,
.detail-actions a {
    width: 100%;
    min-height: 62px;
    border-radius: 18px;
    padding: 14px 18px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    text-wrap: balance;
}

.room-btn-wa,
.detail-actions .wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    background: linear-gradient(135deg, #21bf61, #17954a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(33, 191, 97, 0.18);
}

.room-card-btns .room-btn-wa {
    grid-column: 1 / -1;
}

.detail-actions .ghost {
    grid-column: 1 / -1;
}

.empty-state {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 40px 24px;
    text-align: center;
}

.empty-state__icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(215, 181, 123, 0.1);
    border: 1px solid rgba(215, 181, 123, 0.2);
    color: var(--brand-secondary);
    font-size: 1.6rem;
}

.empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.form-alert,
.newsletter-feedback,
.availability-message {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--brand-text);
}

.form-alert {
    margin-bottom: 20px;
}

.form-alert--error,
.newsletter-feedback.is-error,
.availability-message.is-unavailable {
    color: #ffb0bc;
    border-color: rgba(255, 125, 150, 0.28);
    background: rgba(120, 26, 44, 0.22);
}

.form-alert--success,
.newsletter-feedback.is-success,
.availability-message.is-available {
    color: #b7f1c9;
    border-color: rgba(80, 194, 124, 0.26);
    background: rgba(21, 92, 49, 0.24);
}

.reservation-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
}

.reservation-preview,
.reservation-form-card {
    padding: 24px;
}

.reservation-preview {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reservation-preview.is-empty {
    justify-content: center;
}

.reservation-preview__image {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: 20px;
}

.reservation-preview__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reservation-preview__meta span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--brand-text);
}

.reservation-preview__empty {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    min-height: 100%;
}

.reservation-preview__empty i {
    font-size: 2rem;
    color: var(--brand-secondary);
}

.reservation-form,
.contact-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-grid--single {
    grid-template-columns: 1fr;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #f0e6ec;
}

input,
select,
textarea,
.newsletter-input {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: rgba(240, 230, 236, 0.52);
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
}

.contact-info-panel,
.contact-form-panel {
    display: grid;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item + .contact-item {
    margin-top: 18px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--brand-secondary);
    background: rgba(215, 181, 123, 0.09);
    border: 1px solid rgba(215, 181, 123, 0.18);
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-map-card {
    overflow: hidden;
    min-height: 340px;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
    filter: grayscale(1) brightness(0.95);
}

.gallery-stack {
    display: grid;
    gap: 32px;
}

.gallery-block {
    display: grid;
    gap: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--brand-shadow);
    aspect-ratio: 4 / 3;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 5, 9, 0.5);
    color: #fff;
    opacity: 0;
}

.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
}

.detail-shell {
    display: grid;
    gap: 30px;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 24px;
}

.detail-gallery,
.detail-summary,
.detail-section {
    overflow: hidden;
}

.detail-main-image {
    position: relative;
    min-height: 440px;
    background: #090509;
}

.detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(15, 8, 16, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-thumbs {
    display: flex;
    gap: 12px;
    padding: 18px;
    overflow-x: auto;
}

.detail-thumb {
    min-width: 94px;
    height: 76px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

.detail-thumb.is-active {
    border-color: rgba(215, 181, 123, 0.9);
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-summary,
.detail-section {
    padding: 28px;
}

.detail-summary p {
    margin-bottom: 0;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 12px;
}

.detail-meta-item {
    min-height: 100%;
    padding: 18px 18px 19px;
    border-radius: 20px;
}

.detail-meta-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0 24px;
}

.detail-price strong {
    font-size: clamp(2rem, 3vw, 2.9rem);
}

.detail-grid {
    display: grid;
    gap: 24px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.amenity-card i {
    color: var(--brand-secondary);
}

footer {
    padding: 0 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.footer-column {
    padding: 26px;
}

.footer-column h3 {
    margin-bottom: 18px;
}

.facilities-grid {
    display: grid;
    gap: 12px;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--brand-muted);
}

.facility-item .icon {
    color: var(--brand-secondary);
}

.footer-trust-grid {
    margin-top: 24px;
}

.trust-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand-secondary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    color: var(--brand-muted-strong);
}

.footer-legal-links a {
    color: #f4dde9;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--brand-muted-strong);
}

.footer-bottom a {
    color: #f4dde9;
    text-decoration: none;
}

.page-container,
.content {
    width: min(calc(100% - 32px), 1100px);
    margin: 0 auto;
}

.highlight {
    padding: 20px;
    border-left: 4px solid var(--brand-primary);
    border-radius: 18px;
    background: rgba(138, 58, 114, 0.14);
}

body.is-mobile header .container,
body.is-mobile .site-header .container {
    position: relative;
    min-height: 84px;
    padding-right: 72px;
}

body.is-mobile header .nav,
body.is-mobile header .desktop-nav,
body.is-mobile .site-header .nav,
body.is-mobile .site-header .desktop-nav {
    display: none !important;
}

body.is-mobile .hamburger,
body.is-mobile .mobile-hamburger {
    display: flex !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-color: rgba(215, 181, 123, 0.28);
}

body.is-mobile .mobile-menu,
body.is-mobile .mobile-nav {
    width: 100%;
    padding: 92px 16px 24px;
}

body.is-mobile .home-hero__grid,
body.is-mobile .reservation-layout,
body.is-mobile .contact-shell,
body.is-mobile .detail-hero,
body.is-mobile .hero-stats,
body.is-mobile .form-grid,
body.is-mobile .detail-meta,
body.is-mobile .room-grid,
body.is-mobile .room-grid--listing,
body.is-mobile .gallery-grid,
body.is-mobile .value-grid,
body.is-mobile .legal-grid,
body.is-mobile .contact-legal-grid,
body.is-mobile .legal-highlight,
body.is-mobile .footer-trust-grid,
body.is-mobile .detail-cta-grid,
body.is-mobile .amenities-grid,
body.is-mobile .footer-content {
    grid-template-columns: 1fr !important;
}

body.is-mobile .home-hero {
    padding: 132px 0 70px;
}

body.is-mobile .home-hero__content h1,
body.is-mobile .page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
}

body.is-mobile .room-card-content,
body.is-mobile .detail-summary,
body.is-mobile .detail-section,
body.is-mobile .contact-card,
body.is-mobile .reservation-preview,
body.is-mobile .reservation-form-card {
    padding: 22px;
}

body.is-mobile .footer-bottom,
body.is-mobile .footer-legal-links {
    flex-direction: column;
    align-items: flex-start;
}

body.is-mobile .detail-actions,
body.is-mobile .room-card-btns {
    grid-template-columns: 1fr !important;
}

@media (max-width: 1180px) {
    .room-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .room-grid--listing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .home-hero__grid,
    .reservation-layout,
    .contact-shell,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .value-grid,
    .legal-grid,
    .contact-legal-grid,
    .legal-highlight,
    .footer-trust-grid,
    .detail-cta-grid,
    .amenities-grid,
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    header .container,
    .site-header .container {
        position: relative;
        padding-right: 72px;
    }

    header .nav,
    header .desktop-nav,
    .site-header .nav,
    .site-header .desktop-nav {
        display: none !important;
    }

    .hamburger,
    .mobile-hamburger {
        display: flex;
        margin-left: auto;
        border-color: rgba(215, 181, 123, 0.28);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .room-grid,
    .room-grid--listing,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-actions,
    .room-card-btns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 98px;
    }

    .page-home main {
        padding-top: 0;
    }

    header .container,
    .site-header .container {
        min-height: 84px;
    }

    .logo img {
        width: 64px;
        height: 64px;
        border-radius: 22px;
    }

    .home-hero {
        padding: 132px 0 70px;
    }

    .home-hero__content h1,
    .page-hero h1 {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
    }

    .hero-stats,
    .form-grid,
    .detail-meta,
    .room-grid,
    .room-grid--listing,
    .gallery-grid,
    .value-grid,
    .legal-grid,
    .contact-legal-grid,
    .legal-highlight,
    .footer-trust-grid,
    .detail-cta-grid,
    .amenities-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom,
    .footer-legal-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-callout {
        padding: 16px 18px;
    }

    .room-card-content,
    .detail-summary,
    .detail-section,
    .contact-card,
    .reservation-preview,
    .reservation-form-card {
        padding: 22px;
    }

    .detail-main-image {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), 1280px);
    }

    .mobile-menu,
    .mobile-nav {
        width: 100%;
        padding: 92px 16px 24px;
    }

    .room-card-media,
    .oda-image,
    .oda-sayfasi-ana-resim-kap {
        aspect-ratio: 16 / 11;
    }

    .detail-thumb {
        min-width: 74px;
        height: 60px;
    }

    .btn-primary,
    .btn-secondary,
    .room-btn-secondary,
    .room-btn-book,
    .room-btn-wa,
    .reservation-submit {
        width: 100%;
    }
}

header .menu,
.site-header .menu {
    gap: 16px 20px;
}

.prose-card,
.news-card,
.review-card,
.review-form-card,
.social-card,
.stat-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-border-soft);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: var(--brand-shadow);
    backdrop-filter: blur(16px);
}

.prose-card,
.review-form-card,
.stat-card {
    padding: 28px;
}

.prose-card + .prose-card {
    margin-top: 24px;
}

.prose-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.prose-card__stack {
    display: grid;
    gap: 18px;
}

.prose-card__header {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.prose-card__header p,
.prose-card__stack p:last-child {
    margin-bottom: 0;
}

.prose-list,
.policy-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.prose-list li,
.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--brand-text);
}

.prose-list li::before,
.policy-list li::before {
    content: "✦";
    color: var(--brand-secondary);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.stat-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #fff;
}

.stat-card span {
    color: var(--brand-muted);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #090509;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.news-card__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-secondary);
    font-size: 0.88rem;
    font-weight: 600;
}

.news-card__body h3 {
    margin: 0;
    font-size: 1.5rem;
}

.news-card__body p {
    margin-bottom: 0;
}

.news-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.reviews-shell {
    display: grid;
    gap: 24px;
}

.review-summary {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.review-card {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.review-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.review-avatar {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(215, 181, 123, 0.12);
    border: 1px solid rgba(215, 181, 123, 0.22);
    color: var(--brand-secondary);
    font-weight: 700;
    flex: 0 0 auto;
}

.review-author strong,
.review-author span {
    display: block;
}

.review-author span {
    margin-top: 4px;
    color: var(--brand-muted-strong);
    font-size: 0.86rem;
}

.review-rating {
    display: inline-flex;
    gap: 4px;
    color: rgba(255, 255, 255, 0.16);
    font-size: 1rem;
}

.review-rating .is-active {
    color: #ffd76e;
}

.review-card blockquote {
    margin: 0;
    color: var(--brand-muted);
    line-height: 1.82;
}

.review-form-card form {
    display: grid;
    gap: 18px;
}

.review-form-card textarea {
    min-height: 160px;
}

.star-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
}

.star-input input {
    display: none;
}

.star-input label {
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.18);
}

.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label {
    color: #ffd76e;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.social-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.social-card__media {
    position: relative;
    aspect-ratio: 9 / 14;
    background: #050305;
    overflow: hidden;
}

.social-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-card__body {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.social-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--brand-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.social-card__body h3 {
    margin: 0;
    font-size: 1.34rem;
}

.social-card__body p {
    margin-bottom: 0;
}

.social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

@media (max-width: 1180px) {
    .news-grid,
    .review-grid,
    .social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .prose-card__grid,
    .review-summary,
    .stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .news-grid,
    .review-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .prose-card,
    .review-form-card,
    .stat-card {
        padding: 22px;
    }
}
