:root {
    --ink: #0f172a;
    --muted: #475569;
    --sand: #f1f5f9;
    --cream: #f8fafc;
    --sea: #0f766e;
    --sea-light: #14b8a6;
    --coral: #ea580c;
    --coral-hover: #c2410c;
    --border: #e2e8f0;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --radius: 14px;
    --shadow-card: 0 20px 50px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 12px 40px rgba(15, 23, 42, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

@supports (overflow-x: clip) {
    html {
        overflow-x: clip;
    }
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    max-width: 100%;
}

@supports (overflow-x: clip) {
    body {
        overflow-x: clip;
    }
}

/* Form controls: grid/flex min-content genişliği dar ekranda sayfayı şişirmesin */
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
select,
textarea {
    max-width: 100%;
    min-width: 0;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

.wrap {
    width: 100%;
    max-width: min(1120px, 100%);
    margin-inline: auto;
    padding-inline: clamp(0.875rem, 4vw, 1.5rem);
    box-sizing: border-box;
}

.site-header {
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: box-shadow 0.25s ease;
    max-width: 100%;
    overflow-x: hidden;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 0;
    gap: 0.65rem 1rem;
    row-gap: 0.5rem;
    min-width: 0;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--sea);
    text-decoration: none;
    letter-spacing: -0.02em;
    min-width: 0;
    flex: 1 1 auto;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem 1.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--sea);
    border-bottom-color: var(--coral);
}

.main-nav .nav-cta {
    background: var(--sea);
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: none;
}

.main-nav .nav-cta:hover {
    background: var(--sea-light);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--border);
    background: var(--cream);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    color: var(--sea);
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .logo {
        font-size: clamp(1.05rem, 4.2vw, 1.3rem);
        line-height: 1.2;
        padding-right: 0.25rem;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        position: static;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        flex-basis: 100%;
        order: 3;
        background: var(--cream);
        border: 1px solid var(--border);
        border-radius: 10px;
        flex-direction: column;
        align-items: stretch;
        padding: 0.35rem 0;
        margin-top: 0.25rem;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
        gap: 0;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 0.85rem 1rem;
        border-bottom: 1px solid var(--border);
        border-bottom-color: rgba(226, 232, 240, 0.9);
        font-size: 1rem;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        border-bottom-color: rgba(226, 232, 240, 0.9);
        border-left: 3px solid var(--coral);
        padding-left: calc(1rem - 3px);
    }

    .main-nav a:not(.active) {
        border-left: 3px solid transparent;
    }
}

.site-main {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow-x: clip) {
    .site-main {
        overflow-x: clip;
    }
}

/* Tüm tam genişlik bölümler taşmayı site-main dışına sızdırmasın (cloud, hero vb.) */
.site-main > section {
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow-x: clip) {
    .site-main > section {
        overflow-x: clip;
    }
}

.hero {
    position: relative;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: center;
    padding: clamp(3.5rem, 10vw, 6rem) 0;
    background-color: #0f172a;
    color: #fff;
    overflow-x: hidden;
    max-width: 100%;
}

.hero--photo {
    background-image:
        linear-gradient(115deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 118, 110, 0.42) 42%, rgba(15, 23, 42, 0.82) 100%),
        var(--hero-image, linear-gradient(145deg, #0f766e, #0f172a));
    background-size: cover;
    background-position: center;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    min-width: 0;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.88;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1.1rem;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.hero-lead {
    font-size: 1.12rem;
    line-height: 1.65;
    opacity: 0.94;
    max-width: 36rem;
    margin-bottom: 2rem;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: transform 0.15s, box-shadow 0.15s;
    max-width: 100%;
    min-width: 0;
    text-align: center;
    box-sizing: border-box;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 4px 18px rgba(234, 88, 12, 0.35);
}

.btn-primary:hover {
    background: var(--coral-hover);
}

.btn--inline {
    margin-top: 1rem;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-left: 0;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.section {
    padding: 3.5rem 0;
    max-width: 100%;
    overflow-x: hidden;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--sea);
    margin-bottom: 1.5rem;
}

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

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

@media (max-width: 520px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.card-grid > * {
    min-width: 0;
}

.room-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.room-card-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--sand);
}

.room-card-visual__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-card-visual__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
}

.room-card-body {
    padding: 1.25rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.room-meta {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.room-card-body > .muted {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8em;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.75rem;
    list-style: none;
    padding: 0;
}

.feature-tags span,
.feature-tags li {
    font-size: 0.75rem;
    background: var(--sand);
    color: var(--muted);
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
}

.feature-tags--icons li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.feature-tags--icons li i {
    color: var(--sea);
    font-size: 0.7rem;
}

.price-tag {
    font-weight: 700;
    color: var(--sea);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.price-tag__old {
    text-decoration: line-through;
    color: #94a3b8;
    margin-right: 0.45rem;
    font-weight: 600;
}

.price-tag__new {
    color: #dc2626;
    margin-right: 0.3rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    min-width: 0;
}

.two-col > * {
    min-width: 0;
}

@media (max-width: 800px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.prose {
    max-width: 65ch;
}

.prose p + p {
    margin-top: 1rem;
}

.contact-form {
    min-width: 0;
    max-width: 100%;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    margin-top: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    max-width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.site-footer {
    background: var(--ink);
    color: #e7e5e4;
    margin-top: auto;
    padding: 2.5rem 0 1rem;
    font-size: 0.95rem;
    overflow-x: hidden;
    max-width: 100%;
}

.site-footer p,
.site-footer a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    min-width: 0;
}

.footer-grid .muted {
    color: #a8a29e;
}

.footer-grid a {
    color: #e7e5e4;
    text-decoration: none;
    display: block;
    margin-top: 0.35rem;
}

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

.footer-copy {
    border-top: 1px solid #44403c;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #a8a29e;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 640px) {
    .footer-copy {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.footer-credit {
    font-size: 0.8rem;
    color: #a8a29e;
}

.footer-credit a {
    color: #e7e5e4;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-credit a:hover {
    color: #fff;
}

.features-strip {
    background: linear-gradient(180deg, #fff 0%, var(--sand) 100%);
    border-block: 1px solid var(--border);
    padding: 1.75rem 0;
    overflow-x: hidden;
    max-width: 100%;
}

.features-strip-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.25rem;
    justify-content: center;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
}

.features-strip-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.features-strip-list li i {
    color: var(--sea);
    font-size: 1.05rem;
}

/* ——— Ortak sayfa kahramanı ——— */
.page-hero {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    padding: 3rem 0 2.25rem;
    background-color: #0f172a;
    background-image:
        linear-gradient(100deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 118, 110, 0.45) 100%),
        var(--page-hero-image, linear-gradient(135deg, #0f766e, #0f172a));
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-bottom: 0;
    overflow-x: hidden;
    max-width: 100%;
}

.page-hero--compact {
    min-height: 200px;
}

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

.page-hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.page-hero__lead {
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 40ch;
}

/* ——— Odalar sayfası ——— */
.rooms-page-hero {
    padding: 2.75rem 0 2rem;
    background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
    border-bottom: 1px solid var(--border);
    overflow-x: hidden;
    max-width: 100%;
}

.rooms-page-hero--photo {
    position: relative;
    color: #fff;
    border-bottom: none;
    overflow: hidden;
    background: none;
}

.rooms-page-hero--photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(105deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 118, 110, 0.5) 55%, rgba(15, 23, 42, 0.85) 100%),
        var(--rooms-hero-image);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.rooms-page-hero--photo .wrap {
    position: relative;
    z-index: 1;
}

.rooms-page-hero--photo .rooms-page-eyebrow {
    color: rgba(253, 186, 116, 0.95);
}

.rooms-page-hero--photo .rooms-page-title {
    color: #fff;
}

.rooms-page-hero--photo .rooms-page-lead {
    color: rgba(255, 255, 255, 0.9);
}

.rooms-page-hero--photo .rooms-page-lead a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rooms-page-hero--photo .rooms-stat {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.rooms-page-hero--photo .rooms-stat__value {
    color: #fff;
}

.rooms-page-hero--photo .rooms-stat__label {
    color: rgba(255, 255, 255, 0.82);
}

.rooms-page-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.rooms-page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--sea);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.rooms-page-lead {
    max-width: 62ch;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.rooms-page-lead a {
    color: var(--sea);
    font-weight: 600;
}

.rooms-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
    gap: 1rem;
    max-width: 640px;
    min-width: 0;
}

.rooms-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 4px 18px rgba(28, 25, 23, 0.05);
}

.rooms-stat__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--sea);
    line-height: 1.2;
}

.rooms-stat__label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 0.25rem;
    display: block;
}

.rooms-cloud-section {
    padding: 2.25rem 0;
    background: var(--cream);
}

.rooms-cloud-heading {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.rooms-cloud-sub {
    margin-bottom: 1.25rem;
    max-width: 58ch;
}

.rooms-feature-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
}

.rooms-cloud-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    box-shadow: 0 2px 8px rgba(28, 25, 23, 0.04);
}

.rooms-cloud-chip i {
    color: var(--sea);
    font-size: 0.9rem;
}

.rooms-list-section {
    padding-top: 2.5rem;
}

.rooms-filter-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
}

.rooms-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem 0.9rem;
}

.rooms-filter-grid label {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.rooms-filter-grid input,
.rooms-filter-grid select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
    font-family: inherit;
    font-size: 0.95rem;
}

.rooms-filter-features {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.6rem;
}

.rooms-filter-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    font-size: 0.8rem;
    color: var(--ink);
}

.rooms-filter-feature input {
    width: auto;
    margin: 0;
}

.rooms-filter-actions {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.9rem;
    align-items: center;
}

.rooms-filter-count {
    font-weight: 700;
}

.rooms-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.room-showcase {
    display: grid;
    grid-template-columns: minmax(min(100%, 240px), 340px) minmax(0, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(28, 25, 23, 0.07);
    align-items: stretch;
    max-width: 100%;
}

.room-showcase--alt {
    direction: rtl;
}

.room-showcase--alt > * {
    direction: ltr;
}

.room-showcase__visual {
    position: relative;
    min-height: 260px;
    background: linear-gradient(145deg, #0f766e 0%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.room-showcase__visual--photo {
    background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.75) 100%), var(--room-photo);
    background-size: cover;
    background-position: center;
}

.room-showcase__photo-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 118, 110, 0.35) 0%, rgba(15, 23, 42, 0.55) 100%);
    z-index: 0;
}

.room-showcase__visual--photo .room-showcase__pattern {
    z-index: 1;
}

.room-showcase__visual--photo .room-showcase__code,
.room-showcase__visual--photo .room-showcase__icon {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.room-showcase__thumbs {
    position: absolute;
    bottom: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    max-width: calc(100% - 1.25rem);
}

.room-showcase__thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.room-showcase__thumb:hover {
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.room-showcase__thumb.is-active {
    border-color: #fff;
    box-shadow: 0 0 0 2px var(--sea-light), 0 4px 14px rgba(0, 0, 0, 0.4);
}

.room-showcase__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.room-showcase__code {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.room-showcase__icon {
    position: relative;
    z-index: 1;
    font-size: 2.25rem;
    margin-top: 0.75rem;
    opacity: 0.85;
}

.room-showcase__body {
    padding: 1.75rem 1.85rem 1.9rem;
    min-width: 0;
}

.room-showcase__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.room-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: var(--sand);
    color: var(--muted);
}

.room-pill--accent {
    background: rgba(196, 92, 74, 0.12);
    color: var(--coral);
}

.room-pill--accent small {
    font-weight: 600;
    opacity: 0.85;
}

.room-pill__old {
    text-decoration: line-through;
    color: #9ca3af;
}

.room-pill__new {
    color: #dc2626;
}

.room-showcase__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--sea);
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.room-showcase__desc {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.room-showcase__feat-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.65rem;
}

.feature-icon-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
    gap: 0.5rem 1rem;
    margin: 0;
    padding: 0;
}

@media (max-width: 480px) {
    .feature-icon-grid {
        grid-template-columns: 1fr;
    }
}

.feature-icon-grid li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--ink);
    line-height: 1.4;
}

.feature-icon-grid li i {
    color: var(--sea);
    margin-top: 0.15rem;
    width: 1.1rem;
    flex-shrink: 0;
    text-align: center;
}

.room-showcase__cta {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.room-showcase__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.75rem;
    align-items: center;
}

.room-card-cta--split {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-room-detail {
    background: linear-gradient(135deg, #fff 0%, #f3f7ff 100%);
    color: var(--sea);
    border: 1px solid #b9d0ff;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.12);
}

.btn-room-detail i {
    color: #2563eb;
}

.btn-room-detail:hover {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f1ff 100%);
    border-color: #8fb3ff;
    color: #0f5f59;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

@media (max-width: 900px) {
    .rooms-filter-grid {
        grid-template-columns: 1fr;
    }

    .room-showcase,
    .room-showcase--alt {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .room-showcase__visual {
        min-height: 200px;
    }
}

/* ——— Ana sayfa: hikâye & güven ——— */
.section--tight {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.split-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: center;
    min-width: 0;
}

.split-showcase > * {
    min-width: 0;
}

.split-showcase__img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4 / 3;
}

.split-showcase__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-showcase__text .section-title--left {
    text-align: left;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    font-weight: 600;
    color: var(--ink);
}

.check-list li i {
    color: var(--sea);
    margin-top: 0.2rem;
}

.check-list--block li {
    margin-bottom: 0.75rem;
}

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

.section-head {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-width: 70ch;
}

.section-head__lead a {
    color: var(--sea);
    font-weight: 600;
}

.section--rooms-preview {
    background: linear-gradient(180deg, var(--cream) 0%, #fff 40%);
}

.section-cta-row {
    margin-top: 2.25rem;
}

.section--trust {
    background: var(--sand);
    border-top: 1px solid var(--border);
    padding-bottom: 3.5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    min-width: 0;
}

.trust-grid > * {
    min-width: 0;
}

.trust-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.35rem;
    box-shadow: var(--shadow-soft);
}

.trust-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(15, 118, 110, 0.12);
    color: var(--sea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--sea);
    margin-bottom: 0.5rem;
}

.trust-card .muted {
    font-size: 0.92rem;
    line-height: 1.55;
}

@media (max-width: 800px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ——— Hakkımızda ——— */
.about-grid {
    display: grid;
    grid-template-columns: 1fr minmax(min(100%, 280px), 380px);
    gap: 2.5rem 3rem;
    align-items: start;
    min-width: 0;
}

.about-grid > * {
    min-width: 0;
}

.prose--wide {
    max-width: none;
}

.about-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-sidebar-card__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.about-sidebar-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-sidebar-card__body {
    padding: 1.5rem 1.35rem 1.65rem;
}

.about-sidebar-card__body h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--sea);
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ——— Galeri sayfası ——— */
.site-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: 14px;
}

.site-gallery-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.site-gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.gallery-empty-card {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 2rem 1.2rem;
    box-shadow: var(--shadow-soft);
}

.gallery-empty-card h2 {
    font-family: var(--font-display);
    color: var(--sea);
    margin-bottom: 0.6rem;
}

/* ——— İletişim ——— */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr minmax(min(100%, 300px), 400px);
    gap: 2.5rem 3rem;
    align-items: start;
    min-width: 0;
}

.contact-layout > * {
    min-width: 0;
}

.contact-layout--wide {
    grid-template-columns: minmax(0, 1fr) minmax(min(100%, 280px), 380px);
    max-width: min(1080px, 100%);
    margin-inline: auto;
}

.contact-form--booking {
    max-width: 100%;
}

.contact-form--booking .req {
    color: var(--coral);
    font-weight: 700;
}

.booking-fieldset {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem 1.4rem;
    margin-bottom: 1.35rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
    min-width: 0;
    max-width: 100%;
}

.booking-legend {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--sea);
    padding: 0 0.35rem;
}

.booking-availability-msg {
    min-height: 1.25rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.booking-dates-grid,
.booking-guests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
    min-width: 0;
}

.booking-dates-grid > *,
.booking-guests-grid > * {
    min-width: 0;
}

.booking-price-summary {
    margin-top: 0.9rem;
    padding: 0.95rem 1rem;
    border: 2px solid rgba(15, 118, 110, 0.25);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(15, 118, 110, 0.04) 100%);
    box-shadow: 0 8px 22px rgba(15, 118, 110, 0.08);
}

.booking-price-summary strong {
    display: block;
    font-size: 0.95rem;
    color: var(--sea);
    margin-bottom: 0.35rem;
    font-weight: 800;
}

.booking-price-summary p {
    margin: 0;
    font-size: 1.02rem;
    color: var(--ink);
    line-height: 1.45;
    font-weight: 700;
}

.contact-total-summary {
    margin-top: 1rem;
    margin-bottom: 0.85rem;
}

@media (max-width: 520px) {
    .booking-dates-grid,
    .booking-guests-grid {
        grid-template-columns: 1fr;
    }
}

.companion-row {
    display: grid;
    grid-template-columns: minmax(100px, 120px) 1fr 1fr minmax(140px, 1fr) auto;
    gap: 0.65rem;
    align-items: end;
    margin-bottom: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--sand);
    border-radius: 10px;
    border: 1px solid var(--border);
    min-width: 0;
    max-width: 100%;
}

.companion-row > * {
    min-width: 0;
}

.companion-row .companion-row-remove {
    align-self: stretch;
}

.companion-row__label {
    grid-column: 1 / -1;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 0.15rem;
}

@media (max-width: 720px) {
    .companion-row {
        grid-template-columns: 1fr 1fr;
    }

    .companion-row input:nth-child(4),
    .companion-row .companion-row-remove {
        grid-column: 1 / -1;
    }
}

.contact-submit-row {
    margin-top: 1.5rem;
}

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

.room-card-cta {
    margin-top: auto;
    padding-top: 1rem;
}

.contact-intro {
    max-width: 52ch;
    margin-bottom: 1.25rem;
}

.contact-intro a {
    color: var(--sea);
    font-weight: 600;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-card__photo {
    height: 180px;
    background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.55)), var(--contact-photo);
    background-size: cover;
    background-position: center;
}

.contact-card__body {
    padding: 1.5rem 1.35rem 1.65rem;
}

.contact-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--sea);
    margin-bottom: 1.25rem;
}

.contact-card__block {
    margin-bottom: 1.25rem;
}

.contact-card__block:last-child {
    margin-bottom: 0;
}

.contact-card__block h3 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.contact-card__block a {
    color: var(--sea);
    font-weight: 600;
}

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

/* ——— Oda detay sayfası ——— */
.room-detail-hero .page-hero__lead {
    max-width: none;
}

.room-detail-breadcrumb-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.room-detail-breadcrumb-link:hover {
    opacity: 0.92;
}

.room-detail-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    align-items: center;
}

.room-detail-hero-chips {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.room-detail-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
}

.room-detail-price--old {
    text-decoration: line-through;
    color: #cbd5e1;
}

.room-detail-price--new {
    color: #fecaca;
    font-weight: 700;
}

.room-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-bottom: 2rem;
}

.room-detail-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(min(100%, 280px), 360px);
    gap: 1.25rem 1.5rem;
    align-items: start;
    margin-bottom: 1.2rem;
}

.room-detail-summary-card,
.room-detail-cta-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.room-detail-summary-card {
    padding: 1.2rem 1.25rem;
}

.room-detail-summary-title {
    font-family: var(--font-display);
    color: var(--sea);
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.room-detail-summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
    gap: 0.7rem;
}

.room-detail-stat {
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
}

.room-detail-stat__label {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.room-detail-stat__value {
    font-size: 0.95rem;
    color: var(--ink);
}

.room-detail-stat--discount .room-detail-stat__value {
    color: #dc2626;
}

.room-detail-mini-features {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.room-detail-mini-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.33rem 0.55rem;
    border-radius: 8px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--sea);
    font-size: 0.78rem;
    font-weight: 600;
}

.room-detail-cta-card {
    padding: 1rem 1rem 1.05rem;
    border-color: #f3d0bf;
}

.room-detail-cta-card__eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.room-detail-cta-card__price {
    font-family: var(--font-display);
    color: var(--coral);
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.room-detail-cta-card__price span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--muted);
}

.room-detail-cta-card__discount {
    font-size: 0.82rem;
    color: #dc2626;
    margin-bottom: 0.8rem;
}

.room-detail-cta-card .room-detail-actions {
    margin-bottom: 0.8rem;
}

.room-detail-quick-points {
    margin: 0;
    padding-left: 1rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.room-detail-quick-points li + li {
    margin-top: 0.25rem;
}

.room-detail-prose {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.room-detail-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.room-detail-subtitle {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--sea);
    margin: 2rem 0 1rem;
}

.room-detail-features {
    margin-bottom: 0.5rem;
}

.room-detail-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
    align-items: start;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .room-detail-media-grid {
        grid-template-columns: 1fr;
    }

    .room-detail-top-grid {
        grid-template-columns: 1fr;
    }
}

.room-detail-media-col {
    min-width: 0;
}

.room-detail-media-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
}

.room-detail-gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--sand);
    aspect-ratio: 4 / 3;
}

.room-detail-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-detail-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.65rem;
}

.room-detail-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--sand);
    line-height: 0;
    opacity: 0.82;
    transition: opacity 0.15s, border-color 0.15s;
}

.room-detail-thumb:hover,
.room-detail-thumb.is-active {
    opacity: 1;
    border-color: var(--coral);
}

.room-detail-thumb img {
    width: 88px;
    height: 60px;
    object-fit: cover;
    display: block;
}

.room-detail-videos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.room-detail-video-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.room-detail-video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #0f172a;
    box-shadow: var(--shadow-soft);
}

.room-detail-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.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;
}
