/*
 * Romance Istanbul Hotel — Main Stylesheet
 * Collection Theme
 * ============================================================
 * Bu dosya index.html içindeki tüm custom CSS sınıflarını
 * kapsar. Tailwind utility sınıfları üzerinde çalışır.
 * ============================================================
 */

/* ── Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* ── Location / Single Content — Prose Stili ────────────
   Tailwind CDN'de @tailwindcss/typography (prose) yok.
   location-content ve genel content alanları için
   manuel typography eklendi.
─────────────────────────────────────────────────────── */
.location-content p,
.entry-content p {
    color: #5e6670;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 1.25em;
}
.location-content p:last-child,
.entry-content p:last-child { margin-bottom: 0; }

.location-content h1, .location-content h2,
.location-content h3, .location-content h4,
.location-content h5, .location-content h6,
.entry-content h1, .entry-content h2,
.entry-content h3, .entry-content h4 {
    font-family: 'Playfair Display', serif;
    color: #122435;
    line-height: 1.25;
    margin-top: 1.75em;
    margin-bottom: .6em;
}
.location-content h2, .entry-content h2 { font-size: 1.7rem; }
.location-content h3, .entry-content h3 { font-size: 1.35rem; }
.location-content h4, .entry-content h4 { font-size: 1.1rem; }

.location-content a,
.entry-content a {
    color: #9c8459;
    text-decoration: none;
}
.location-content a:hover,
.entry-content a:hover { text-decoration: underline; }

.location-content ul,
.location-content ol,
.entry-content ul,
.entry-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.25em;
    color: #5e6670;
    font-size: 15px;
    line-height: 1.8;
}
.location-content ul { list-style-type: disc; }
.location-content ol { list-style-type: decimal; }
.location-content li,
.entry-content li { margin-bottom: .4em; }

.location-content img,
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    margin: 1.5em 0;
}

.location-content strong,
.entry-content strong { font-weight: 600; color: #122435; }

.location-content blockquote,
.entry-content blockquote {
    border-left: 3px solid #9c8459;
    padding-left: 1.25em;
    margin: 1.5em 0;
    color: #7a7a7a;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}


/* ── Overlay gradient ───────────────────────────────────── */
.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7)   0%,
        rgba(0, 0, 0, 0.2)  20%,
        rgba(0, 0, 0, 0.2)  40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* ── Menu icon hover ────────────────────────────────────── */
.menu-icon span {
    transition: all 0.3s;
}
.group-menu:hover .menu-icon span:last-child {
    width: 22px;
}

/* ── Sticky Header ──────────────────────────────────────── */
header {
    transition: height 0.3s ease, background-color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.header-scrolled,
.header-inner {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: #A38A5F;
    color: #003963;
}

.header-scrolled .menu-line,
.header-inner .menu-line {
    background-color: #003963;
}

.header-scrolled .contact-link,
.header-scrolled .lang-selector,
.header-inner .contact-link,
.header-inner .lang-selector {
    color: #003963;
}

.header-scrolled .header-sep,
.header-inner .header-sep {
    background-color: rgba(0, 57, 99, 0.4);
}

/* Responsive Header Heights */
.header-scrolled,
.header-scrolled #logo-container,
.header-inner,
.header-inner #logo-container {
    height: 70px !important;
}
.header-scrolled #main-logo,
.header-inner #main-logo {
    height: 50px !important;
}

@media (min-width: 768px) {
    .header-scrolled,
    .header-scrolled #logo-container,
    .header-inner,
    .header-inner #logo-container {
        height: 80px !important;
    }
    .header-scrolled #main-logo,
    .header-inner #main-logo {
        height: 60px !important;
    }
}

/* ── Logo signature ─────────────────────────────────────── */
.logo-signature {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.08em;
    font-size: 0.58rem;
    line-height: 1;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    width: 100%;
    max-width: 170px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}
.header-scrolled .logo-signature,
.header-inner .logo-signature {
    display: none;
}

/* ── Accordion (details/summary) ────────────────────────── */
details.group\/accordion > div {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
}
details.group\/accordion[open] > div {
    max-height: 200px;
}

/* ── Typography tokens ──────────────────────────────────── */
.text-body {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 2;
}
.text-body-sm {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.75;
}
.text-body-xs {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .text-body { font-size: 0.95rem; }
}

/* ── Section header tokens ──────────────────────────────── */
.section-kicker {
    color: #00806B;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.section-head-row {
    display: flex;
    align-items: center;
    margin-bottom: 2.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #1d1f21;
    font-size: 2.25rem;
    line-height: 1.05;
    white-space: normal;
    margin-right: 1.5rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 3rem; }
}

.section-rule {
    height: 1px;
    width: 100%;
    background: rgba(156, 132, 89, 0.5);
}

.section-body-copy { color: #5e6670; }
.section-quote     { color: #5e6670; font-style: italic; }

/* ── Rooms spotlight — description clamp ───────────────── */
.rooms-spotlight-desc-trim {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .rooms-spotlight-desc-trim { -webkit-line-clamp: 6; }
}
@media (min-width: 1024px) {
    .rooms-spotlight-desc-trim {
        display: block;
        overflow: visible;
    }
}

/* ── Quick Access (sağ kenar, dikey) ────────────────────── */
.quick-access-wrap {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 85;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.quick-access-item {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(163, 138, 95, 0.96);
    background: rgba(163, 138, 95, 0.96);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: width 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    white-space: nowrap;
    padding: 0;
    margin-left: auto;
    transform-origin: right center;
}

/* Tüm link state'lerinde beyaz rengi koru — !important ile browser :any-link:hover'ı ezer */
a.quick-access-item,
a.quick-access-item:hover,
a.quick-access-item:visited,
a.quick-access-item:focus,
a.quick-access-item:active {
    color: #fff !important;
    text-decoration: none !important;
}

.quick-access-item:hover,
.quick-access-item.is-expanded {
    width: 270px;
    background: rgba(139, 116, 77, 0.98);
    border-color: rgba(139, 116, 77, 0.98);
}

.quick-access-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.quick-access-label {
    opacity: 0;
    max-width: 0;
    transition: opacity 0.2s ease, max-width 0.28s ease;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.62rem;
    font-weight: 500;
    padding-right: 16px;
}

.quick-access-item:hover .quick-access-label,
.quick-access-item.is-expanded .quick-access-label {
    opacity: 1;
    max-width: 220px;
}

/* Toggle butonu: masaüstünde gizli, yalnızca mobil/tablet'te görünür */
#qa-mobile-toggle {
    display: none;
}

@keyframes qa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(156, 132, 89, 0.7); }
    60%  { box-shadow: 0 0 0 10px rgba(156, 132, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(156, 132, 89, 0); }
}

@media (max-width: 1279px) {
    /* Wrap: sağ kenarda dikeyde ortalanmış, dikey flex */
    .quick-access-wrap {
        right: 14px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        gap: 8px;
        flex-direction: column;
        align-items: flex-end;
    }

    /* Tüm asıl butonları gizle */
    .quick-access-item {
        width: 48px;
        height: 48px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(6px);
        transition: opacity 0.22s ease, transform 0.22s ease, width 0.22s ease, background-color 0.22s ease;
    }
    .quick-access-icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
    }

    /* Açık halde asıl butonlar görünür */
    .quick-access-wrap.qa-open .quick-access-item {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* Toggle butonu: mobil/tablet'te göster */
    #qa-mobile-toggle {
        display: flex;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        order: 999;
        background: rgba(156, 132, 89, 0.96);
        border-color: rgba(156, 132, 89, 0.96);
        animation: qa-pulse 2.4s ease-out infinite;
    }
    .quick-access-wrap.qa-open #qa-mobile-toggle {
        animation: none;
        background: rgba(139, 116, 77, 0.98);
        border-color: rgba(139, 116, 77, 0.98);
    }
    #qa-mobile-toggle:hover {
        background: rgba(139, 116, 77, 0.98);
        border-color: rgba(139, 116, 77, 0.98);
        width: 48px;
    }

    /* Hover genişlemeyi mobilde kapat */
    .quick-access-item:hover {
        width: 48px;
    }
    .quick-access-item:hover .quick-access-label {
        opacity: 0;
        max-width: 0;
    }
    /* Açıkken tap ile genişleyebilir */
    .quick-access-wrap.qa-open .quick-access-item.is-expanded {
        width: 220px;
    }
    .quick-access-wrap.qa-open .quick-access-item.is-expanded .quick-access-label {
        opacity: 1;
        max-width: 200px;
    }
}

/* ── Heritage / Location Map ────────────────────────────── */
.heritage-map-shell {
    position: relative;
    background: linear-gradient(140deg, #f7f3ea 0%, #efe7d8 52%, #e8decb 100%);
    border: 0;
    box-shadow: none;
    overflow: hidden;
}

.heritage-map-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(156, 132, 89, 0.12), transparent 40%),
        radial-gradient(circle at 88% 82%, rgba(18, 36, 53, 0.08), transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.heritage-map-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .heritage-map-layout {
        grid-template-columns: 350px minmax(0, 1fr);
        gap: 34px;
    }
}

.heritage-map-copy {
    border-right: 1px solid rgba(18, 36, 53, 0.12);
    padding-right: 26px;
}

@media (max-width: 1023px) {
    .heritage-map-copy {
        border-right: 0;
        padding-right: 0;
    }
}

#heritage-leaflet-map {
    min-height: 470px;
    height: 560px;
    border-radius: 12px;
    z-index: 2;
    filter: sepia(0.24) saturate(0.8) contrast(1.02) brightness(0.98);
}

@media (max-width: 1023px) {
    #heritage-leaflet-map {
        min-height: 420px;
        height: 460px;
    }
}

/* Leaflet marker */
.heritage-leaflet-marker {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #9c8459;
    border: 2px solid #fcfbfa;
    box-shadow: 0 0 0 6px rgba(156, 132, 89, 0.2), 0 8px 18px rgba(18, 36, 53, 0.32);
}

.heritage-hotel-marker {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #fcfbfa;
    border: 2px solid #9c8459;
    box-shadow: 0 0 0 8px rgba(156, 132, 89, 0.18), 0 12px 24px rgba(18, 36, 53, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
}

.heritage-hotel-marker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

/* Leaflet controls */
.heritage-map-shell .leaflet-control-attribution {
    background: rgba(252, 251, 250, 0.85);
    color: #7a7a7a;
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    border-top-left-radius: 6px;
    padding: 2px 6px;
}
.heritage-map-shell .leaflet-top.leaflet-right {
    top: 14px;
    right: 14px;
}
.heritage-map-shell .leaflet-control-zoom {
    border: 1px solid rgba(156, 132, 89, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(18, 36, 53, 0.18);
}
.heritage-map-shell .leaflet-control-zoom a {
    width: 36px;
    height: 36px;
    line-height: 34px;
    background: rgba(252, 251, 250, 0.96);
    color: #122435;
    border-bottom-color: rgba(156, 132, 89, 0.28);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: all 0.2s ease;
}
.heritage-map-shell .leaflet-control-zoom a:hover {
    background: #9c8459;
    color: #fff;
}

/* Leaflet popup */
.heritage-popup .leaflet-popup-content-wrapper {
    border-radius: 0;
    background: rgba(252, 251, 250, 0.98);
    border: 1px solid rgba(156, 132, 89, 0.35);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}
.heritage-popup .leaflet-popup-content {
    margin: 0;
    width: 232px !important;
}
.heritage-popup .leaflet-popup-tip {
    background: rgba(252, 251, 250, 0.98);
    border: 1px solid rgba(156, 132, 89, 0.35);
}
.heritage-popup .leaflet-popup-close-button { display: none; }

@media (max-width: 1023px) {
    .heritage-popup .leaflet-popup-content {
        width: min(74vw, 232px) !important;
    }
}

/* Map popup card */
.map-popup-card img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-bottom: 1px solid #eadfcb;
}
.map-popup-card-body { padding: 12px; }

.map-popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.2;
    color: #122435;
    margin-bottom: 6px;
}
.map-popup-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.74rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 9px;
}
.map-popup-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #9c8459;
    color: #fff !important;
    text-decoration: none;
    padding: 8px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #9c8459;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.map-popup-link:hover,
.map-popup-link:focus,
.map-popup-link:active {
    background: #122435;
    color: #fff !important;
    border-color: #122435;
    text-decoration: none;
}

/* ── Offer Inquiry Modal ────────────────────────────────── */
#offer-inquiry-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
#offer-inquiry-modal.is-open [role="dialog"] > div:last-child {
    transform: translateY(0);
}

/* Slide-up animation for modal panel */
#offer-inquiry-modal > div:last-child {
    transform: translateY(24px);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
#offer-inquiry-modal.is-open > div:last-child {
    transform: translateY(0);
}

/* ── Offer Form Fields ───────────────────────────────────── */
.offer-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.offer-field-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #555;
}
.offer-field-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: #222;
    background: #fafafa;
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.offer-field-input:focus {
    border-color: #9c8459;
    background: #fff;
}
.offer-field-input::placeholder { color: #bbb; }

/* hidden → visible utility */
.offer-field-wrap.is-hidden { display: none !important; }

/* ══════════════════════════════════════════════════
   OFFER INQUIRY MODAL — CF7 Form Styles
   Tailwind CDN preflight border'ları sıfırladığı
   için tüm kritik kurallar !important ile yazıldı.
══════════════════════════════════════════════════ */

/* Modal open state */
#offer-inquiry-modal.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* CF7 br'leri gizle */
.wpcf7 br  { display: none !important; }
.wpcf7-not-valid-tip {
    font-size: .72rem !important;
    color: #e05a5a !important;
    margin-top: 4px !important;
    display: block !important;
}
.wpcf7 .wpcf7-response-output {
    margin: 12px 0 0 !important;
    padding: 10px 14px !important;
    font-family: 'Jost', sans-serif !important;
    font-size: .85rem !important;
    border-radius: 0 !important;
}

/* Grid */
.offer-form-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}
.offer-form-row.two-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
}
@media (max-width: 480px) {
    .offer-form-row.two-col { grid-template-columns: 1fr !important; }
}
.offer-form-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

/* Labels */
.offer-form-field > label,
.offer-form-field label {
    font-family: 'Jost', sans-serif !important;
    font-size: .62rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #122435 !important;
    font-weight: 600 !important;
    margin: 0 !important;
    display: block !important;
}

/* CF7 span wrapper */
.offer-form-field .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

/* Tüm input / select / textarea */
.offer-form-field input[type="text"],
.offer-form-field input[type="tel"],
.offer-form-field input[type="email"],
.offer-form-field input[type="date"],
.offer-form-field input[type="time"],
.offer-form-field input[type="number"],
.offer-form-field select,
.offer-form-field textarea {
    display: block !important;
    width: 100% !important;
    border: 1.5px solid #e0d8cc !important;
    border-radius: 0 !important;
    padding: 11px 14px !important;
    font-family: 'Jost', sans-serif !important;
    font-size: .88rem !important;
    color: #122435 !important;
    background: #fafaf8 !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
    transition: border-color .2s, background .2s;
}

.offer-form-field input:focus,
.offer-form-field select:focus,
.offer-form-field textarea:focus {
    border-color: #9c8459 !important;
    background: #fff !important;
}

.offer-form-field input::placeholder,
.offer-form-field textarea::placeholder {
    color: #c0b8ac !important;
}

/* Select: ok ikonu */
.offer-form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239c8459' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    padding-right: 38px !important;
    cursor: pointer !important;
}

.offer-form-field textarea {
    min-height: 90px !important;
    resize: vertical !important;
}

/* Hatalı alan */
.offer-form-field input.wpcf7-not-valid,
.offer-form-field select.wpcf7-not-valid,
.offer-form-field textarea.wpcf7-not-valid {
    border-color: #e05a5a !important;
    background: #fff8f8 !important;
}

/* Submit */
.offer-form-submit { margin-top: 4px !important; }
.offer-form-submit input[type="submit"],
.offer-form-submit .wpcf7-submit {
    display: block !important;
    width: 100% !important;
    background: #122435 !important;
    color: #fff !important;
    border: none !important;
    padding: 15px !important;
    font-family: 'Jost', sans-serif !important;
    font-size: .72rem !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    appearance: none !important;
}
.offer-form-submit input[type="submit"]:hover,
.offer-form-submit .wpcf7-submit:hover {
    background: #9c8459 !important;
}

/* JS show/hide */
.offer-form-field.is-hidden,
.offer-field-date.is-hidden,
.offer-field-time.is-hidden,
.offer-field-persons.is-hidden,
.offer-field-notes.is-hidden {
    display: none !important;
}

/* CF7 spinner */
.wpcf7 .ajax-loader { display: none !important; }


/* Grid */
.offer-form-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* İki sütunlu satır */
.offer-form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 480px) {
    .offer-form-row.two-col { grid-template-columns: 1fr; }
}

/* Tek alan */
.offer-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Label */
.offer-form-field > label,
.offer-form-field label {
    font-family: 'Jost', sans-serif;
    font-size: .62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #122435;
    font-weight: 600;
    margin: 0;
}

/* CF7 span wrapper (etrafını kaplıyor) */
.offer-form-field .wpcf7-form-control-wrap {
    display: block; width: 100%;
}

/* Tüm input / select / textarea */
.offer-form-field input[type="text"],
.offer-form-field input[type="tel"],
.offer-form-field input[type="email"],
.offer-form-field input[type="date"],
.offer-form-field input[type="time"],
.offer-form-field select,
.offer-form-field textarea,
.offer-form-field .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
    display: block;
    width: 100%;
    border: 1.5px solid #e0d8cc;
    border-radius: 0;
    padding: 11px 14px;
    font-family: 'Jost', sans-serif;
    font-size: .88rem;
    color: #122435;
    background: #fafaf8;
    transition: border-color .2s, background .2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1.4;
}

.offer-form-field input:focus,
.offer-form-field select:focus,
.offer-form-field textarea:focus,
.offer-form-field .wpcf7-form-control:focus {
    border-color: #9c8459;
    background: #fff;
}

.offer-form-field input::placeholder,
.offer-form-field textarea::placeholder {
    color: #c0b8ac;
    font-weight: 400;
}

/* Select: ok ikonu */
.offer-form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239c8459' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 38px;
    cursor: pointer;
}

/* Textarea */
.offer-form-field textarea {
    min-height: 90px;
    resize: vertical;
}

/* Hatalı alan */
.offer-form-field input.wpcf7-not-valid,
.offer-form-field select.wpcf7-not-valid,
.offer-form-field textarea.wpcf7-not-valid {
    border-color: #e05a5a;
    background: #fff8f8;
}

/* Gönder butonu */
.offer-form-submit { margin-top: 4px; }
.offer-form-submit input[type="submit"],
.offer-form-submit .wpcf7-submit {
    display: block;
    width: 100%;
    background: #122435;
    color: #fff;
    border: none;
    padding: 15px;
    font-family: 'Jost', sans-serif;
    font-size: .72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s;
    border-radius: 0;
    appearance: none;
}
.offer-form-submit input[type="submit"]:hover,
.offer-form-submit .wpcf7-submit:hover {
    background: #9c8459;
}

/* JS ile gizlenen alanlar */
.offer-form-field.is-hidden,
.offer-field-date.is-hidden,
.offer-field-time.is-hidden,
.offer-field-persons.is-hidden,
.offer-field-notes.is-hidden {
    display: none !important;
}

/* CF7 yükleniyor spinner */
.wpcf7 .ajax-loader {
    display: none;
}

/* ════════════════════════════════════════════════
   GLOBAL TEXT SIZE FIX — min 15px
   Tailwind preflight küçük class'ları ezdiği için
   !important ile override edildi.
════════════════════════════════════════════════ */

/* Ana sayfa section body copy */
.section-body-copy,
.text-body-xs,
.text-body {
    font-size: 15px !important;
    line-height: 1.75 !important;
}
.section-quote { font-size: 15px !important; }

/* Offer card açıklaması */
#offers-section p,
#offers-section .line-clamp-3 { font-size: 15px !important; }

/* Talisman body copy */
#talisman-section p.section-body-copy { font-size: 15px !important; }

/* ── Footer ── */
footer .text-body-xs,
footer .space-y-4 a,
footer .space-y-4 span,
footer ul li,
footer ul li a {
    font-size: 15px !important;
    line-height: 1.65 !important;
}
footer .leading-relaxed {
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* Copyright bandı — biraz daha küçük olabilir */
footer .border-t p { font-size: 13px !important; }





/* ══════════════════════════════════════════════════════════════
   MENÜ SAYFALARI — HERO (rh-*)
   Kaynak: romanceistanbulhotel.com → archive-restaurant.php
   Kullanan şablonlar: page-menu-ana / -vegan / -icecek
══════════════════════════════════════════════════════════════ */
:root {
    --rh-gold:   #00806B;
    --rh-gold2:  #c4a96d;
    --rh-navy:   #1d1f21;
    --rh-cream:  #f8f5f0;
    --rh-serif:  'Playfair Display', Georgia, serif;
    --rh-sans:   'Jost', sans-serif;
}

.rh-hero {
    position: relative;
    width: 100%; height: 100dvh; min-height: 600px;
    display: flex; align-items: flex-end;
    overflow: hidden; background: var(--rh-navy);
}
.rh-media { position: absolute; inset: 0; z-index: 0; }
.rh-mobile { display: none; }
.rh-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.rh-fallback {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0d1f2e 0%, #1c3a50 100%);
}
.rh-vignette {
    position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
}
.rh-overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
        linear-gradient(to top,  rgba(8,16,26,.95) 0%, rgba(8,16,26,.5) 30%, rgba(8,16,26,.08) 60%, transparent 100%),
        linear-gradient(to bottom, rgba(8,16,26,.6) 0%, transparent 18%);
    pointer-events: none;
}
.rh-grain {
    position: absolute; inset: 0; z-index: 3; opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
    pointer-events: none;
    animation: rh-grain 1s steps(2) infinite;
}
@keyframes rh-grain { 0%,100%{transform:translate(0,0)} 25%{transform:translate(-3px,1px)} 75%{transform:translate(2px,-2px)} }

.rh-content {
    position: relative; z-index: 10;
    padding: 0 clamp(28px,7vw,100px) clamp(80px,13vh,150px);
    max-width: 900px;
}
.rh-kicker {
    display: block;
    font-family: var(--rh-sans); font-size: 16px; letter-spacing: 0.25em;
    text-transform: uppercase; color: #fff; margin-bottom: 18px;
    font-weight: 400;
}
.rh-title {
    font-family: var(--rh-serif);
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    line-height: .92; font-weight: 400;
    color: #fff; margin: 0 0 22px;
    letter-spacing: -.02em;
}
.rh-title em { font-style: italic; color: var(--rh-gold2); display: block; }
.rh-sub {
    font-family: var(--rh-sans);
    font-size: clamp(.85rem, 1.15vw, 1rem);
    line-height: 1.75; color: rgba(255,255,255,.58);
    margin: 0; max-width: 520px;
}
.rh-scroll-cue {
    position: absolute; bottom: clamp(32px,5vh,56px); right: clamp(32px,5vw,72px);
    z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px;
    text-decoration: none; color: rgba(255,255,255,.5); transition: color .25s;
}
.rh-scroll-cue:hover { color: var(--rh-gold); }
.rh-scroll-track {
    width: 1px; height: 64px;
    background: rgba(255,255,255,.12);
    position: relative; overflow: hidden;
}
.rh-scroll-thumb {
    position: absolute; left: 0; top: 0;
    width: 100%; height: 100%;
    background: currentColor;
    transform: translateY(-100%);
    animation: rh-scroll-drop 2s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes rh-scroll-drop {
    0%   { transform: translateY(-100%); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}
.rh-scroll-text {
    font-family: var(--rh-sans); font-size: .48rem; letter-spacing: 3px;
    text-transform: uppercase; writing-mode: vertical-rl;
}

@media (max-width: 768px) {
    .rh-desktop { display: none; }
    .rh-mobile  { display: block; }
    .rh-title   { font-size: clamp(2.8rem, 11vw, 4.5rem); }
    .rh-content { padding-bottom: clamp(80px, 16vh, 120px); }
    .rh-scroll-cue { right: auto; left: clamp(24px, 6vw, 40px); }
}


/* ── Menü paneli — alt menü grubu ────────────────────────────
   Panelin genel öğe aralığı 20px (gap-5). Başlık ile ilk alt
   öğe arası 16px olsun diye -4px üst boşluk veriliyor.
─────────────────────────────────────────────────────────── */
.menu-panel-submenu {
    margin-top: -4px;
    margin-bottom: 4px;
    padding-left: 16px;
    gap: 12px;
}


/* ══════════════════════════════════════════════════════════════
   MENÜ SAYFALARI — İÇERİK
   Düzen oliverestaurant.net menü sayfasından; tipografi
   Olive standardımıza (Playfair + Jost) uyarlandı.
══════════════════════════════════════════════════════════════ */
.om-menu { background: #fff; }
.om-menu__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px) clamp(64px, 9vw, 110px);
}

/* ── Tanıtım paragrafı ── */
.om-menu__intro {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;   /* body standardı */
    color: #3a3a3b;
    max-width: 760px;
    margin: 0 0 32px;
    /* Giriş metni birden çok paragraf içeriyor; .om-page__body ile aynı davranış. */
    white-space: pre-line;
}

/* ── Diğer menülere geçiş ── */
.om-menu__switch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.om-menu__switch-link {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00806B;
    text-decoration: none;
    border: 1px solid rgba(0,128,107,.35);
    padding: 10px 18px;
    transition: background .2s, color .2s, border-color .2s;
}
.om-menu__switch-link:hover {
    background: #00806B;
    border-color: #00806B;
    color: #fff;
}

/* ── Kategori atlama menüsü ── */
/* Scroll ile header'ın altına yapışır. top değerleri .header-scrolled
   yüksekliğiyle eşleşir (mobil 70px / masaüstü 80px). */
.om-menu__toc {
    position: sticky;
    top: 70px;
    z-index: 40;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 26px;
    /* Zemin iki yana taşar, negatif margin ile linkler içerikle hizalı kalır */
    padding: 18px 28px;
    margin: 0 -28px 56px;
    border-top: 1px solid #f0ebe4;
    border-bottom: 1px solid #e3dcd2;
    transition: box-shadow .25s ease;
}
@media (min-width: 768px) {
    .om-menu__toc { top: 80px; }
}

/* Yapıştığında gölge ile zeminden ayrılır */
.om-menu__toc.is-stuck {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
}

.om-menu__toc a {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #4a4f53;
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.om-menu__toc a:hover { color: #00806B; }

/* Okunan bölümün bağlantısı */
.om-menu__toc a.is-active {
    color: #00806B;
    border-bottom-color: #00806B;
}

@media (max-width: 768px) {
    .om-menu__toc {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 20px;
        padding: 14px 20px;
        margin: 0 -20px 40px;
    }
    .om-menu__toc::-webkit-scrollbar { display: none; }
    .om-menu__toc a { white-space: nowrap; }
}

/* ── Kategori ── */
/* scroll-margin-top: sabit header (80px) + kategori şeridi (~71px) + nefes payı.
   Bağlantıya tıklanınca kategori başlığı şeridin altında kalmasın diye. */
.om-menu__section { margin-bottom: 64px; scroll-margin-top: 172px; }
@media (max-width: 768px) {
    .om-menu__section { scroll-margin-top: 150px; }
}

.om-menu__cat {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #000;
    margin: 0;
}
.om-menu__rule {
    height: 2px;
    background: #1d1d1f;
    width: 100%;
    margin: 10px 0 30px;
}

/* ── Ara başlık (Salatalar içinde) ── */
.om-menu__group {
    grid-column: 1 / -1;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a9a9a;
    margin: 8px 0 -6px;
}
.om-menu__group:first-child { margin-top: 0; }

/* ── Kalem ızgarası ── */
.om-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 48px;
}

/* Kalem başlığı — açıklamadan belirgin ayrışsın diye 18px */
.om-menu__item-title {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #00806B;
    margin: 0 0 6px;
}
/* Kalem açıklaması — menü kaleminde 14px, uzun listede daha derli toplu duruyor */
.om-menu__item-desc {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #7d8184;
    margin: 0;
}

/* ── Diyet / alerjen etiketleri ── */
.om-menu__tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 0;
    padding: 0;
}
.om-menu__tag {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    line-height: 1;
    letter-spacing: .06em;
    color: #6b6f73;
    border: 1px solid #e2ded7;
    border-radius: 2px;
    padding: 5px 8px;
    white-space: nowrap;
}
.om-menu__tag--vegan,
.om-menu__tag--vegetarian {
    color: #00806B;
    border-color: rgba(0,128,107,.32);
}
.om-menu__tag--nuts {
    color: #9a7b3f;
    border-color: rgba(154,123,63,.32);
}

/* ── Fotoğraf şeridi ── */
.om-menu__photos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 40px;
}
.om-menu__photo {
    margin: 0;
    overflow: hidden;
    background: #f2f2f2;
    border-radius: 2px;
}
.om-menu__photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .35s ease;
}
.om-menu__photo:hover img { transform: scale(1.04); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .om-menu__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 32px; }
    .om-menu__photos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .om-menu__grid { grid-template-columns: 1fr; gap: 22px; }
    .om-menu__cat { font-size: 26px; line-height: 32px; }
    .om-menu__section { margin-bottom: 48px; }
    .om-menu__toc { gap: 6px 16px; margin-bottom: 40px; }
}

/* ── Marka listesi (sert içkiler gibi açıklamasız gruplar) ── */
.om-menu__list {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #4a4f53;
    margin: 0;
    max-width: 900px;
}

/* ── Kalem meta satırı (şarapta üzüm / bölge) ── */
.om-menu__item-meta {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #a09a91;
    margin: 0 0 6px;
}

/* ── Kategori altı not ── */
.om-menu__note {
    font-family: 'Jost', sans-serif;
    font-style: italic;
    font-size: 14px;
    line-height: 24px;
    color: #8a8f93;
    margin: 20px 0 0;
    max-width: 720px;
}


/* ══════════════════════════════════════════════════════════════
   SAĞDAN AÇILAN PANEL — ORTAK
   Standart: archive-olive_event.php'deki .rezerve-panel.
   Buraya taşındı ki iletişim paneli gibi başka paneller de
   aynı stili kullanabilsin.
══════════════════════════════════════════════════════════════ */
.rezerve-panel-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1000;
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
}
.rezerve-panel-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* Etkinlik rezervasyon panelinin backdrop'u (ayrı sınıf, aynı iş) */
.rezerve-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1000;
}
.rezerve-backdrop.is-open { display: block; }

/* Başarı kutusu */
.rezerve-panel__success {
    background: #f0f7ee;
    border: 1px solid #b8d9b0;
    color: #2d5a27;
    padding: 14px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: center;
    border-radius: 2px;
}

.rezerve-panel {
    position: fixed; top: 0; right: -100%;
    width: min(420px, 100%); height: 100%;
    background: #f0f0f0;
    z-index: 1001;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    display: flex; flex-direction: column;
}
.rezerve-panel.is-open { right: 0; }

.rezerve-panel__header {
    position: relative; text-align: center;
    padding: 24px;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.rezerve-panel__title {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem; font-weight: 400; letter-spacing: 1px;
    color: #333; margin: 0;
}
.rezerve-panel__event {
    font-family: 'Jost', sans-serif;
    font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
    color: #00806B; display: block; margin-top: 6px;
}
.rezerve-panel__close {
    position: absolute; right: 24px; top: 24px;
    background: none; border: none; cursor: pointer;
    font-size: 22px; color: #00806B; line-height: 1; padding: 0;
}
.rezerve-panel__close:hover { color: #222; }

.rezerve-panel__body {
    flex: 1; display: flex; flex-direction: column;
    justify-content: space-between; overflow-y: auto;
}
.rezerve-panel__fields {
    padding: 24px;
    display: flex; flex-direction: column; gap: 16px;
}

.rezerve-panel .rp-field label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: .65rem; text-transform: uppercase; letter-spacing: 1.5px;
    color: #888; font-weight: 500; margin-bottom: 4px;
}
.rezerve-panel .rp-field input,
.rezerve-panel .rp-field textarea,
.rezerve-panel .rp-field select {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 2px;
    padding: 11px 12px;
    font-family: 'Jost', sans-serif;
    font-size: .9rem;
    color: #222;
    outline: none;
    transition: border-color .2s ease;
    appearance: none; -webkit-appearance: none;
}
.rezerve-panel .rp-field input:focus,
.rezerve-panel .rp-field textarea:focus,
.rezerve-panel .rp-field select:focus { border-color: #00806B; }
.rezerve-panel .rp-field textarea { resize: none; min-height: 80px; }
.rezerve-panel .rp-field input.is-invalid,
.rezerve-panel .rp-field textarea.is-invalid { border-color: #d05a5a; background: #fffafa; }

.rezerve-panel .rp-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239c8459' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 15px;
    padding-right: 36px;
    cursor: pointer;
}

.rezerve-panel__footer {
    padding: 16px;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.1);
}
.rezerve-panel__submit {
    width: 100%;
    background: #FFBF00; color: #003763;
    border: none; padding: 16px;
    font-family: 'Jost', sans-serif;
    font-size: .9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; border-radius: 2px;
    transition: background .2s ease;
}
.rezerve-panel__submit:hover { background: #FFCB33; }
.rezerve-panel__submit:disabled { opacity: .6; cursor: default; }

/* Yanıt kutusu */
.rezerve-panel .rp-response {
    padding: 14px;
    font-family: 'Jost', sans-serif;
    font-size: 13px; line-height: 1.6;
    text-align: center; border-radius: 2px;
}
.rezerve-panel .rp-response.is-success {
    background: #f0f7ee; border: 1px solid #b8d9b0; color: #2d5a27;
}
.rezerve-panel .rp-response.is-error {
    background: #fdf3f3; border: 1px solid #e5b9b9; color: #8c3232;
}

/* Bot tuzağı — ekranda görünmez, ekran okuyucudan da gizli */
.rezerve-panel .rp-hp {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* Panel açıkken arka plan kaymasın */
body.panel-open { overflow: hidden; }


/* ══════════════════════════════════════════════════════════════
   DAVET & ORGANİZASYON
   İki sütunlu alternatif satır — Hakkımızda ile aynı standart.
══════════════════════════════════════════════════════════════ */
.om-page { background: #fff; }

.om-page__head {
    text-align: center;
    padding: 140px 24px 60px;
}
.om-page__heading {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #000;
    margin: 0;
}
.om-page__intro {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #3a3a3b;
    max-width: 760px;
    margin: 24px auto 0;
    /* Bazı giriş metinleri birden çok paragraf; .om-page__body ile aynı davranış. */
    white-space: pre-line;
}

.om-page__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-top: 1px solid #f0ebe4;
}
.om-page__row:last-of-type { border-bottom: 1px solid #f0ebe4; }

/* DOM sırası: görsel → metin. Yani normal satırda görsel solda.
   Alternatif satırda metin sola, görsel sağa geçer. */
.om-page__row.alt .om-page__col--text  { order: 1; }
.om-page__row.alt .om-page__col--image { order: 2; }

.om-page__col--image { display: flex; }
.om-page__col--image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
}

.om-page__col--text {
    text-align: center;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.om-page__title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #000;
    margin: 0 0 24px;
}
.om-page__body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #3a3a3b;
    white-space: pre-line;
    margin: 0;
}

/* Hem <button> hem <a> olarak kullanılır — ikisi de aynı görünür */
.om-page__btn {
    align-self: center;
    display: inline-block;
    margin-top: 28px;
    background: transparent;
    border: 1px solid #00806B;
    color: #00806B;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 30px;
    cursor: pointer;
    border-radius: 2px;
    transition: background .2s ease, color .2s ease;
}
.om-page__btn:hover,
.om-page__btn:focus-visible {
    background: #00806B;
    color: #fff;
    text-decoration: none;
}

/* Birden fazla buton bir arada (etkinlikler: Detay + Rezervasyon) */
.om-page__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}
.om-page__actions .om-page__btn { margin-top: 0; align-self: auto; }

/* Dolu buton — bir satırda iki buton varsa asıl eylemi ayırır */
.om-page__btn--primary {
    background: #00806B;
    color: #fff;
}
.om-page__btn--primary:hover,
.om-page__btn--primary:focus-visible {
    background: #006B5A;
    border-color: #006B5A;
    color: #fff;
}

/* Fiyat satırı */
.om-page__price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #2c1f14;
    margin: 16px 0 0;
}

@media (max-width: 1024px) {
    .om-page__row { grid-template-columns: 1fr; }
    .om-page__col--image,
    .om-page__row.alt .om-page__col--image { order: 1; }
    .om-page__col--text,
    .om-page__row.alt .om-page__col--text  { order: 2; padding: 48px 32px; }
    .om-page__col--image img {
        min-height: unset;
        height: auto;
        aspect-ratio: 16 / 9;   /* görseller 1000×561 */
    }
}
@media (max-width: 640px) {
    .om-page__head { padding: 110px 20px 40px; }
    .om-page__heading { font-size: 28px; line-height: 36px; }
    .om-page__title { font-size: 26px; line-height: 32px; }
    .om-page__col--text { padding: 36px 24px; }
    /* İki buton varsa dar ekranda alt alta */
    .om-page__actions { flex-direction: column; align-items: stretch; }
    .om-page__actions .om-page__btn { text-align: center; }
}


/* ══════════════════════════════════════════════════════════════
   TEKİL SAYFA VARYANTI (.om-page--single)
   Tek satır; solda görsel/slider, sağda metin. Metin sütunu
   sola hizalı — listeleme sayfalarındaki ortalı düzenden farkı bu.
══════════════════════════════════════════════════════════════ */
/* İç sayfalarda header sabit 80px (mobilde 70px) — görsel tam altına otursun,
   arada boşluk kalmasın. Diğer sayfalarda bu payı .om-page__head karşılıyor. */
.om-page--single { padding-top: 80px; }
.om-page--single .om-page__row { border-top: 0; }
.om-page--single .om-page__col--text { text-align: left; }
.om-page--single .om-page__btn,
.om-page--single .om-page__actions { align-self: flex-start; justify-content: flex-start; }

.om-page__back {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #8a8f93;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color .2s ease;
}
.om-page__back:hover { color: #00806B; }

.om-page--single .om-page__title { margin-bottom: 20px; }

/* Fiyat / süre listesi */
.om-page__meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid #f0ebe4;
}
.om-page__meta-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #a09a91;
    margin-bottom: 4px;
}
.om-page__meta-value {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #2c1f14;
}

/* ── Slider ─────────────────────────────────────────────────
   Kaydırma tabanlı (scroll-snap) — ek kütüphane gerekmez.
──────────────────────────────────────────────────────────── */
.om-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    background: #f2f2f2;
}
.om-slider__track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.om-slider__track::-webkit-scrollbar { display: none; }

.om-slider__slide {
    flex: 0 0 100%;
    margin: 0;
    scroll-snap-align: start;
    height: 100%;
}
.om-slider__slide img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
}

.om-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: #2c1f14;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, opacity .2s ease;
    z-index: 2;
}
.om-slider__nav:hover { background: #fff; }
.om-slider__nav--prev { left: 16px; }
.om-slider__nav--next { right: 16px; }
.om-slider__nav[disabled] { opacity: .35; cursor: default; }

.om-slider__dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.om-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    transition: background .2s ease, width .2s ease;
}
.om-slider__dot.is-active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .om-page--single { padding-top: 70px; }
    .om-slider,
    .om-slider__slide img {
        min-height: unset;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .om-slider__track { height: auto; }
    .om-page--single .om-page__actions { justify-content: center; align-self: center; }
    .om-page--single .om-page__col--text { text-align: center; }
    .om-page__meta { justify-content: center; }
    .om-page__back { align-self: center; }
}
@media (max-width: 640px) {
    .om-slider__nav { width: 36px; height: 36px; font-size: 20px; }
    .om-page__meta { gap: 24px; }
}

/* Panel altı bilgilendirme notu — gönderimin anında onay olmadığını söyler */
.rezerve-panel__notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 14px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #7a7a7a;
}
.rezerve-panel__notice svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #00806B;
}


/* ══════════════════════════════════════════════════════════════
   İLETİŞİM SAYFASI
   Üstte ortalanmış başlık + paragraf (diğer sayfalarla aynı),
   altında tek satır: solda harita, sağda iletişim bilgileri.
══════════════════════════════════════════════════════════════ */
.om-contact__map { background: #f2f2f2; }
.om-contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: 0;
}

.om-contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}
.om-contact__list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.om-contact__label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #a09a91;
}
.om-contact__value {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #3a3a3b;
    text-decoration: none;
    transition: color .2s ease;
}
a.om-contact__value:hover { color: #00806B; }

.om-contact__note {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #8a8f93;
}

.om-contact__social {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid #f0ebe4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.om-contact__social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
}
.om-contact__social-links a {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #00806B;
    text-decoration: none;
    border: 1px solid rgba(0,128,107,.3);
    border-radius: 2px;
    padding: 8px 14px;
    transition: background .2s ease, color .2s ease;
}
.om-contact__social-links a:hover { background: #00806B; color: #fff; }

@media (max-width: 1024px) {
    .om-contact__map iframe {
        min-height: unset;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}


/* ══════════════════════════════════════════════════════════════
   GALERİ SAYFASI
   Düzen romanceistanbulhotel.com/gallery'den; tipografi ve renkler
   Olive standardına uyarlandı.
══════════════════════════════════════════════════════════════ */
.om-gallery { padding-bottom: clamp(64px, 9vw, 110px); }

/* ── Filtre şeridi — menü sayfalarındaki gibi yapışkan ── */
.om-gallery__filters {
    position: sticky;
    top: 70px;
    z-index: 40;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 18px 28px;
    margin: 0 auto 48px;
    max-width: 1240px;
    border-top: 1px solid #f0ebe4;
    border-bottom: 1px solid #e3dcd2;
}
@media (min-width: 768px) { .om-gallery__filters { top: 80px; } }

.om-gallery__filter {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #4a4f53;
    background: #fff;
    border: 1px solid #e3dcd2;
    border-radius: 999px;
    padding: 9px 18px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.om-gallery__filter:hover { border-color: #00806B; color: #00806B; }
.om-gallery__filter.is-active {
    background: #00806B;
    border-color: #00806B;
    color: #fff;
}
.om-gallery__count {
    margin-left: 6px;
    font-size: 11px;
    opacity: .6;
}

/* ── Izgara ── */
.om-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.om-gallery__card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 0;
    border: 0;
    background: #1d1f21;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}
.om-gallery__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.om-gallery__card:hover img,
.om-gallery__card:focus-visible img { transform: scale(1.04); }

/* ── Hover katmanı ── */
.om-gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(8,16,26,.92) 0%, rgba(8,16,26,.35) 45%, transparent 100%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}
.om-gallery__card:hover .om-gallery__overlay,
.om-gallery__card:focus-visible .om-gallery__overlay { opacity: 1; }

.om-gallery__rule {
    display: block;
    width: 38px;
    height: 1px;
    background: #c4a96d;
    margin-bottom: 10px;
    transform: translateX(-14px);
    transition: transform .5s ease-out;
}
.om-gallery__label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #fff;
    transform: translateY(8px);
    transition: transform .5s ease-out;
}
.om-gallery__card:hover .om-gallery__rule,
.om-gallery__card:focus-visible .om-gallery__rule { transform: translateX(0); }
.om-gallery__card:hover .om-gallery__label,
.om-gallery__card:focus-visible .om-gallery__label { transform: translateY(0); }

.om-gallery__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    color: rgba(255,255,255,.75);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}
.om-gallery__card:hover .om-gallery__zoom,
.om-gallery__card:focus-visible .om-gallery__zoom { opacity: 1; }

.om-gallery__empty {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #8a8f93;
    text-align: center;
    padding: 60px 24px;
    margin: 0;
}

@media (max-width: 1024px) {
    .om-gallery__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .om-gallery__filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 14px 20px;
        margin-bottom: 32px;
    }
    .om-gallery__filters::-webkit-scrollbar { display: none; }
    .om-gallery__filter { white-space: nowrap; }
    .om-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}
/* Mobilde de 2 sütun — tek sütuna düşürmüyoruz */

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════════ */
.om-lb {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 10, 18, .96);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: om-lb-in .22s ease both;
}
.om-lb[hidden] { display: none; }
@keyframes om-lb-in { from { opacity: 0; } to { opacity: 1; } }

.om-lb__frame {
    position: relative;
    margin: 0;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.om-lb__frame img {
    max-width: 90vw;
    max-height: 78vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 32px 100px rgba(0,0,0,.7);
    transition: opacity .22s ease;
}
.om-lb__caption {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-top: 16px;
    text-align: center;
}

.om-lb__spinner {
    position: absolute;
    top: 50%; left: 50%;
    width: 34px; height: 34px;
    margin: -17px 0 0 -17px;
    border: 2px solid rgba(196,169,109,.3);
    border-top-color: #c4a96d;
    border-radius: 50%;
    animation: om-lb-spin .7s linear infinite;
}
.om-lb__spinner[hidden] { display: none; }
@keyframes om-lb-spin { to { transform: rotate(360deg); } }

.om-lb__close,
.om-lb__arrow {
    position: absolute;
    background: rgba(255,255,255,.08);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.om-lb__close:hover,
.om-lb__arrow:hover { background: rgba(196,169,109,.45); }

.om-lb__close {
    top: 20px; right: 24px;
    padding: 10px;
    border-radius: 50%;
}
.om-lb__arrow {
    top: 50%;
    transform: translateY(-50%);
    padding: 16px 13px;
    border-radius: 2px;
}
.om-lb__arrow--prev { left: 20px; }
.om-lb__arrow--next { right: 20px; }
.om-lb__arrow[hidden] { display: none; }

.om-lb__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    z-index: 2;
}

@media (max-width: 640px) {
    .om-lb__arrow { padding: 12px 9px; }
    .om-lb__arrow--prev { left: 8px; }
    .om-lb__arrow--next { right: 8px; }
    .om-lb__frame img { max-height: 70vh; }
}

/* ─── SSS Arşivi ──────────────────────────────────────────────────────────
   Filtre şeridi galeri sayfasıyla aynı görsel dili kullanıyor ama kendi
   sınıflarında; galeri CSS'ine dokunmadan değiştirilebilsin diye ayrı.     */

.om-page--faq { padding-bottom: 100px; }

.om-faq__bar {
    position: sticky;
    top: 70px;
    z-index: 40;
    background: #fff;
    max-width: 1240px;
    margin: 0 auto 48px;
    padding: 18px 28px;
    border-top: 1px solid #f0ebe4;
    border-bottom: 1px solid #e3dcd2;
}
@media (min-width: 768px) { .om-faq__bar { top: 80px; } }

.om-faq__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.om-faq__filter {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #4a4f53;
    background: #fff;
    border: 1px solid #e3dcd2;
    border-radius: 999px;
    padding: 9px 18px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.om-faq__filter:hover { border-color: #00806B; color: #00806B; }
.om-faq__filter.is-active { background: #00806B; border-color: #00806B; color: #fff; }
.om-faq__filter:focus-visible { outline: 2px solid #00806B; outline-offset: 2px; }

.om-faq__count { margin-left: 6px; font-size: 11px; opacity: .6; }

/* Arama */
.om-faq__search {
    position: relative;
    max-width: 460px;
    margin: 16px auto 0;
}
.om-faq__search svg {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 17px;
    height: 17px;
    transform: translateY(-50%);
    color: #9aa0a4;
    pointer-events: none;
}
.om-faq__search input {
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #2c2f31;
    background: #fbfaf8;
    border: 1px solid #e3dcd2;
    border-radius: 999px;
    padding: 11px 18px 11px 44px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.om-faq__search input::placeholder { color: #9aa0a4; }
.om-faq__search input:focus {
    background: #fff;
    border-color: #00806B;
    box-shadow: 0 0 0 3px rgba(0, 128, 107, .12);
}
.om-faq__search input::-webkit-search-cancel-button { cursor: pointer; }

.om-faq__status {
    max-width: 900px;
    margin: -28px auto 28px;
    padding: 0 24px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: #7a7f83;
    text-align: center;
    min-height: 20px;
}

/* Gruplar */
.om-faq__groups { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.om-faq__group { margin-bottom: 56px; }
.om-faq__group:last-child { margin-bottom: 0; }

.om-faq__group-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #000;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0ebe4;
}

.om-faq__list { list-style: none; margin: 0; padding: 0; }

.om-faq__item { border-bottom: 1px solid #f0ebe4; }

.om-faq__q { margin: 0; }

.om-faq__trigger {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 4px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    color: #1d1f21;
    transition: color .2s ease;
}
.om-faq__trigger:hover { color: #00806B; }
.om-faq__trigger:focus-visible { outline: 2px solid #00806B; outline-offset: -2px; }

.om-faq__chevron {
    flex: 0 0 auto;
    width: 22px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa0a4;
    transition: transform .28s ease, color .2s ease;
}
.om-faq__chevron svg { width: 18px; height: 18px; }
.om-faq__trigger:hover .om-faq__chevron { color: #00806B; }
.om-faq__item.is-open .om-faq__chevron { transform: rotate(180deg); color: #00806B; }

/* Cevap — yükseklik JavaScript'ten veriliyor, açılınca auto'ya çevriliyor */
.om-faq__answer {
    height: 0;
    overflow: hidden;
    transition: height .28s ease;
}
.om-faq__answer-inner { padding: 0 4px 22px; }

.om-faq__answer-inner p {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #3a3a3b;
    margin: 0 0 14px;
}
.om-faq__answer-inner p:last-of-type { margin-bottom: 0; }

.om-faq__perma {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: .04em;
    color: #00806B;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}
.om-faq__perma:hover { border-bottom-color: #00806B; }

/* Sonuç yok / kayıt yok */
.om-faq__empty {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 24px 0;
    text-align: center;
}
.om-faq__empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 32px;
    color: #000;
    margin: 0 0 10px;
}
.om-faq__empty-desc {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #6d7276;
    margin: 0 0 24px;
}
.om-faq__none {
    text-align: center;
    font-family: 'Jost', sans-serif;
    color: #7a7f83;
    padding: 40px 24px 80px;
}

/* Arama eşleşmesi vurgusu */
.om-faq__item.is-match .om-faq__q-text { color: #00806B; }

@media (max-width: 767px) {
    /* Filtre şeridi mobilde sabitlenmiyor. 12 kategori sarmalandığında
       sekiz satıra yayılıyor; şerit sticky kaldığında ekranın yarısı
       kalıcı olarak filtreye gidiyor ve sorular okunamıyordu. Artık bir
       kez görülüp sayfayla birlikte yukarı kayıyor.                     */
    .om-faq__bar {
        position: static;
        top: auto;
        z-index: auto;
        padding: 14px 16px;
        margin-bottom: 32px;
    }
    .om-faq__filter { font-size: 12px; padding: 8px 14px; }

    .om-faq__search { margin-top: 14px; }
    /* 16px'in altına inilmiyor: iOS daha küçük yazıda alana dokununca
       sayfayı kendiliğinden yakınlaştırıyor.                            */
    .om-faq__search input { font-size: 16px; }

    .om-faq__groups { padding: 0 18px; }
    .om-faq__group { margin-bottom: 40px; }
    .om-faq__group-title { font-size: 24px; line-height: 30px; }
    .om-faq__trigger { font-size: 16px; line-height: 24px; padding: 17px 2px; }
}

@media (prefers-reduced-motion: reduce) {
    .om-faq__answer, .om-faq__chevron { transition: none; }
}

/* ─── SSS Tekil Sayfası ───────────────────────────────────────────────────
   Arama motorundan gelen ziyaretçinin ilk gördüğü ekran; tek sütun,
   okunabilirlik için dar ölçü.                                            */

.om-page--faq-single { padding-bottom: 100px; }

.om-faqs {
    max-width: 760px;
    margin: 0 auto;
    padding: 120px 24px 0;
}
@media (min-width: 768px) { .om-faqs { padding-top: 140px; } }

.om-faqs__crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: .04em;
    color: #7a7f83;
    margin-bottom: 24px;
}
.om-faqs__crumbs a {
    color: #00806B;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}
.om-faqs__crumbs a:hover { border-bottom-color: #00806B; }
.om-faqs__sep { color: #cfd3d6; }

.om-faqs__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 42px;
    color: #000;
    margin: 0 0 28px;
}
@media (min-width: 768px) { .om-faqs__title { font-size: 36px; line-height: 46px; } }

.om-faqs__body p {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    line-height: 30px;
    color: #3a3a3b;
    margin: 0 0 18px;
}
.om-faqs__body p:last-child { margin-bottom: 0; }
.om-faqs__body a { color: #00806B; }

/* Bir sonraki adım */
.om-faqs__cta {
    margin-top: 48px;
    padding: 28px;
    background: #fbfaf8;
    border: 1px solid #f0ebe4;
    text-align: center;
}
.om-faqs__cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    line-height: 29px;
    color: #000;
    margin: 0 0 8px;
}
.om-faqs__cta-desc {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    line-height: 25px;
    color: #6d7276;
    margin: 0 0 20px;
}
.om-faqs__cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* Aynı kategorideki diğer sorular */
.om-faqs__related { margin-top: 56px; }

.om-faqs__related-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #000;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0ebe4;
}
.om-faqs__related-list { list-style: none; margin: 0; padding: 0; }
.om-faqs__related-list li { border-bottom: 1px solid #f5f1ec; }

.om-faqs__related-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 2px;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #2c2f31;
    text-decoration: none;
    transition: color .2s ease;
}
.om-faqs__related-list a:hover { color: #00806B; }
.om-faqs__related-list svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: #c3c8cb;
    transition: color .2s ease, transform .2s ease;
}
.om-faqs__related-list a:hover svg { color: #00806B; transform: translateX(3px); }

@media (max-width: 767px) {
    .om-faqs { padding: 100px 18px 0; }
    .om-faqs__title { font-size: 27px; line-height: 36px; }
    .om-faqs__body p { font-size: 16px; line-height: 28px; }
    .om-faqs__cta { padding: 22px 18px; }
    .om-faqs__cta-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .om-faqs__related-list a:hover svg { transform: none; }
}

/* ─── Blog Arşivi ─────────────────────────────────────────────────────── */

.om-page--blog { padding-bottom: 100px; }

.om-blog__bar {
    position: sticky;
    top: 70px;
    z-index: 40;
    background: #fff;
    max-width: 1240px;
    margin: 0 auto 40px;
    padding: 18px 28px;
    border-top: 1px solid #f0ebe4;
    border-bottom: 1px solid #e3dcd2;
}
@media (min-width: 768px) { .om-blog__bar { top: 80px; } }

.om-blog__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

.om-blog__filter {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #4a4f53;
    background: #fff;
    border: 1px solid #e3dcd2;
    border-radius: 999px;
    padding: 9px 18px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.om-blog__filter:hover { border-color: #00806B; color: #00806B; }
.om-blog__filter.is-active { background: #00806B; border-color: #00806B; color: #fff; }
.om-blog__filter:focus-visible { outline: 2px solid #00806B; outline-offset: 2px; }
.om-blog__count { margin-left: 6px; font-size: 11px; opacity: .6; }

.om-blog__search { position: relative; max-width: 460px; margin: 16px auto 0; }
.om-blog__search svg {
    position: absolute; left: 16px; top: 50%;
    width: 17px; height: 17px;
    transform: translateY(-50%);
    color: #9aa0a4; pointer-events: none;
}
.om-blog__search input {
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #2c2f31;
    background: #fbfaf8;
    border: 1px solid #e3dcd2;
    border-radius: 999px;
    padding: 11px 18px 11px 44px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.om-blog__search input::placeholder { color: #9aa0a4; }
.om-blog__search input:focus {
    background: #fff; border-color: #00806B;
    box-shadow: 0 0 0 3px rgba(0,128,107,.12);
}

.om-blog__status {
    max-width: 1240px;
    margin: -22px auto 22px;
    padding: 0 24px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: #7a7f83;
    text-align: center;
    min-height: 20px;
}

/* Kart ızgarası */
.om-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
@media (max-width: 1023px) { .om-blog__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
@media (max-width: 599px)  { .om-blog__grid { grid-template-columns: 1fr; padding: 0 18px; } }

.om-blog__card { display: flex; flex-direction: column; }

.om-blog__media {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f4f1ec;
    margin-bottom: 18px;
}
.om-blog__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.om-blog__card:hover .om-blog__media img { transform: scale(1.04); }

.om-blog__body { display: flex; flex-direction: column; flex: 1; }

.om-blog__cat {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #00806B;
    margin-bottom: 10px;
}

.om-blog__title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 10px;
}
.om-blog__title a {
    color: #000;
    text-decoration: none;
    transition: color .2s ease;
}
.om-blog__title a:hover { color: #00806B; }

.om-blog__excerpt {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    line-height: 25px;
    color: #5c6165;
    margin: 0 0 16px;
    flex: 1;
}

.om-blog__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: .04em;
    color: #9aa0a4;
    padding-top: 14px;
    border-top: 1px solid #f0ebe4;
}
.om-blog__dot { opacity: .6; }

.om-blog__empty, .om-blog__none {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 24px 0;
    text-align: center;
}
.om-blog__empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px; line-height: 32px;
    color: #000; margin: 0 0 10px;
}
.om-blog__empty-desc {
    font-family: 'Jost', sans-serif;
    font-size: 15px; line-height: 26px;
    color: #6d7276; margin: 0;
}
.om-blog__none { font-family: 'Jost', sans-serif; color: #7a7f83; padding-bottom: 80px; }

@media (max-width: 767px) {
    .om-blog__bar { padding: 14px 16px; margin-bottom: 28px; }
    .om-blog__filter { font-size: 12px; padding: 8px 14px; }
    .om-blog__title { font-size: 20px; line-height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
    .om-blog__card:hover .om-blog__media img { transform: none; }
}

/* ─── Blog Tekil Yazı ─────────────────────────────────────────────────── */

.om-post { padding-bottom: 0; }

.om-post__hero {
    margin: 0;
    height: 46vh;
    min-height: 320px;
    max-height: 560px;
    overflow: hidden;
    background: #f4f1ec;
}
.om-post__hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.om-post__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 56px 28px 80px;
    align-items: start;
}
@media (max-width: 1023px) {
    .om-post__wrap { grid-template-columns: 1fr; gap: 48px; padding: 40px 24px 64px; }
}

/* Görsel yoksa başlık header'ın altında kalmasın */
.om-page--no-hero .om-post__wrap { padding-top: 140px; }

.om-post__crumbs {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 13px; letter-spacing: .04em; color: #7a7f83;
    margin-bottom: 20px;
}
.om-post__crumbs a {
    color: #00806B; text-decoration: none;
    border-bottom: 1px solid transparent; transition: border-color .2s ease;
}
.om-post__crumbs a:hover { border-bottom-color: #00806B; }
.om-post__sep { color: #cfd3d6; }

.om-post__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 32px; line-height: 42px;
    color: #000; margin: 0 0 18px;
}
@media (min-width: 768px) { .om-post__title { font-size: 40px; line-height: 50px; } }

.om-post__meta {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 13px; color: #9aa0a4;
    padding-bottom: 24px; margin-bottom: 28px;
    border-bottom: 1px solid #f0ebe4;
}
.om-post__share {
    display: inline-flex; align-items: center; gap: 6px;
    margin-left: auto;
    background: none; border: none; cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 13px; color: #7a7f83;
    padding: 4px 6px; transition: color .2s ease;
}
.om-post__share:hover { color: #00806B; }
.om-post__share svg { width: 15px; height: 15px; }

/* Metin */
.om-post__body p {
    font-family: 'Jost', sans-serif;
    font-size: 17px; line-height: 31px;
    color: #333537; margin: 0 0 20px;
}
.om-post__body h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 27px; line-height: 35px;
    color: #000;
    margin: 44px 0 14px;
    scroll-margin-top: 110px;
}
.om-post__body h2:first-child { margin-top: 0; }
.om-post__body strong { font-weight: 600; color: #1d1f21; }
.om-post__body em { font-style: italic; }
.om-post__body a {
    color: #00806B; text-decoration: none;
    border-bottom: 1px solid rgba(0,128,107,.3);
    transition: border-color .2s ease;
}
.om-post__body a:hover { border-bottom-color: #00806B; }
.om-post__body ul, .om-post__body ol { margin: 0 0 20px; padding-left: 22px; }
.om-post__body li {
    font-family: 'Jost', sans-serif;
    font-size: 17px; line-height: 30px; color: #333537; margin-bottom: 6px;
}

/* Sidebar */
.om-post__side-inner { position: sticky; top: 104px; display: grid; gap: 28px; }
@media (max-width: 1023px) { .om-post__side-inner { position: static; } }

.om-post__side-title {
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase;
    color: #8b9094;
    margin: 0 0 12px;
}

.om-post__toc-list {
    list-style: none; margin: 0; padding: 0;
    border-left: 1px solid #e9e3da;
}
.om-post__toc-list a {
    display: block;
    padding: 7px 0 7px 14px;
    margin-left: -1px;
    border-left: 1px solid transparent;
    font-family: 'Jost', sans-serif;
    font-size: 14px; line-height: 21px;
    color: #6d7276; text-decoration: none;
    transition: color .2s ease, border-color .2s ease;
}
.om-post__toc-list a:hover { color: #00806B; }
.om-post__toc-list a.is-active { color: #00806B; border-left-color: #00806B; }

.om-post__cta {
    background: #fbfaf8;
    border: 1px solid #f0ebe4;
    padding: 22px;
    text-align: center;
}
.om-post__cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px; line-height: 26px; color: #000; margin: 0 0 8px;
}
.om-post__cta-desc {
    font-family: 'Jost', sans-serif;
    font-size: 14px; line-height: 23px; color: #6d7276; margin: 0 0 16px;
}
.om-post__cta-link {
    display: inline-block; margin-top: 12px;
    font-family: 'Jost', sans-serif; font-size: 13px;
    color: #00806B; text-decoration: none;
}
.om-post__cta-link:hover { text-decoration: underline; }

.om-post__related-list { list-style: none; margin: 0; padding: 0; }
.om-post__related-list li { border-bottom: 1px solid #f5f1ec; }
.om-post__related-list li:last-child { border-bottom: none; }
.om-post__related-list a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0; text-decoration: none;
}
.om-post__related-img {
    flex: 0 0 auto; width: 58px; height: 58px;
    overflow: hidden; background: #f4f1ec;
}
.om-post__related-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.om-post__related-title {
    font-family: 'Jost', sans-serif;
    font-size: 14px; line-height: 21px;
    color: #2c2f31; transition: color .2s ease;
}
.om-post__related-list a:hover .om-post__related-title { color: #00806B; }

/* Önceki / sonraki */
.om-post__nav {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: #f0ebe4;
    border-top: 1px solid #f0ebe4;
    border-bottom: 1px solid #f0ebe4;
}
@media (max-width: 767px) { .om-post__nav { grid-template-columns: 1fr; } }

.om-post__nav-item {
    background: #fff;
    padding: 28px 32px;
    text-decoration: none;
    display: flex; flex-direction: column; gap: 8px;
    transition: background .2s ease;
}
.om-post__nav-item:hover { background: #fbfaf8; }
.om-post__nav-item--next { text-align: right; }
.om-post__nav-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #9aa0a4;
}
.om-post__nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px; line-height: 27px; color: #000;
}
.om-post__nav-item:hover .om-post__nav-title { color: #00806B; }

@media (max-width: 767px) {
    .om-post__hero { height: 32vh; min-height: 220px; }
    .om-post__title { font-size: 27px; line-height: 36px; }
    .om-post__body p, .om-post__body li { font-size: 16px; line-height: 29px; }
    .om-post__body h2 { font-size: 23px; line-height: 31px; margin-top: 36px; }
    .om-post__nav-item { padding: 22px 20px; }
    .om-post__nav-item--next { text-align: left; }
}

/* ─── Ana Sayfa: Galeri Şeridi ────────────────────────────────────────── */

.home-strip { padding: 72px 0 64px; background: #fff; overflow: hidden; }

/* Başlık diğer ana sayfa bölümleriyle aynı hizada — ortalı.
   Oklar mutlak konumlu ki başlığı ortadan kaydırmasınlar. */
.home-strip__head {
    position: relative;
    text-align: center;
    max-width: 1400px; margin: 0 auto 28px; padding: 0 24px;
}
.home-strip__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600; font-size: 36px; line-height: 44px;
    color: #000; margin: 0;
}
.home-strip__nav {
    display: flex; gap: 8px;
    position: absolute; right: 24px; top: 50%;
    transform: translateY(-50%);
}
/* Dar ekranda ok yerine parmakla kaydırma */
@media (max-width: 767px) { .home-strip__nav { display: none; } }
.home-strip__arrow {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border: 1px solid #e3dcd2; border-radius: 50%;
    font-size: 22px; line-height: 1; color: #4a4f53;
    cursor: pointer; transition: border-color .2s ease, color .2s ease;
}
.home-strip__arrow:hover { border-color: #00806B; color: #00806B; }
.home-strip__arrow:disabled { opacity: .35; cursor: default; }
.home-strip__arrow:disabled:hover { border-color: #e3dcd2; color: #4a4f53; }

.home-strip__track {
    display: flex; gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 24px 8px;
    scrollbar-width: none;
}
.home-strip__track::-webkit-scrollbar { display: none; }

.home-strip__item {
    position: relative; flex: 0 0 auto;
    width: 440px; aspect-ratio: 4 / 3;
    overflow: hidden; background: #f4f1ec;
    scroll-snap-align: start;
    text-decoration: none;
}
@media (max-width: 1023px) { .home-strip__item { width: 360px; } }
@media (max-width: 640px)  { .home-strip__item { width: 280px; } }

.home-strip__item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s ease;
}
.home-strip__item:hover img { transform: scale(1.05); }

.home-strip__label {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 26px 16px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.6));
    opacity: 0; transition: opacity .3s ease;
}
.home-strip__item:hover .home-strip__label { opacity: 1; }

.home-strip__foot { text-align: center; margin-top: 28px; }
.home-strip__cta, .home-blog__cta {
    font-family: 'Jost', sans-serif;
    font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
    color: #00806B; text-decoration: none;
    border-bottom: 1px solid transparent; padding-bottom: 2px;
    transition: border-color .2s ease;
}
.home-strip__cta:hover, .home-blog__cta:hover { border-bottom-color: #00806B; }

/* ─── Ana Sayfa: Blog ─────────────────────────────────────────────────── */

.home-blog { padding: 64px 0 72px; background: #fbfaf8; }
.home-blog__head { text-align: center; max-width: 720px; margin: 0 auto 40px; padding: 0 24px; }
.home-blog__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600; font-size: 36px; line-height: 44px;
    color: #000; margin: 0 0 12px;
}
.home-blog__sub {
    font-family: 'Jost', sans-serif;
    font-size: 16px; line-height: 27px; color: #5c6165; margin: 0;
}
.home-blog__grid { max-width: 1240px; }
.home-blog .om-blog__title { font-size: 20px; line-height: 28px; }
.home-blog__foot { text-align: center; margin-top: 36px; }

/* ─── Ana Sayfa: Konum & Saatler ──────────────────────────────────────── */

.home-visit { padding: 76px 0; background: #122435; color: #fff; }
.home-visit__inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.home-visit__head { text-align: center; margin-bottom: 46px; }
.home-visit__kicker {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: #c9965a; margin-bottom: 12px;
}
.home-visit__title {
    font-family: 'Playfair Display', serif;
    font-weight: 500; font-size: 30px; line-height: 40px;
    color: #fff; margin: 0;
}

.home-visit__cols {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 767px) { .home-visit__cols { grid-template-columns: 1fr; gap: 30px; text-align: center; } }

.home-visit__label {
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin: 0 0 12px;
}
.home-visit__addr, .home-visit__line, .home-visit__strong {
    font-family: 'Jost', sans-serif;
    font-size: 15px; line-height: 26px;
    color: rgba(255,255,255,.82);
    margin: 0 0 4px;
}
.home-visit__strong { color: #fff; font-weight: 500; font-size: 17px; }
.home-visit__addr { display: block; text-decoration: none; transition: color .2s ease; }
a.home-visit__addr:hover { color: #c9965a; }
.home-visit__line a { color: inherit; text-decoration: none; }
.home-visit__line a:hover { color: #c9965a; }

.home-visit__actions {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
    margin-top: 36px;
}
.om-page__btn--onDark { border-color: rgba(255,255,255,.45); color: #fff; }
.om-page__btn--onDark:hover, .om-page__btn--onDark:focus-visible { background: #fff; color: #122435; border-color: #fff; }
.home-visit__actions .om-page__btn { margin-top: 0; }

.home-visit__btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: 'Jost', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.4);
    background: transparent; color: #fff;
    text-decoration: none; cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.home-visit__btn:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.home-visit__btn--primary { background: #fff; color: #122435; border-color: #fff; }
.home-visit__btn--primary:hover { background: #c9965a; border-color: #c9965a; color: #fff; }

@media (max-width: 767px) {
    .home-strip { padding: 52px 0 48px; }
    .home-strip__title, .home-blog__title { font-size: 27px; line-height: 34px; }
    .home-visit__title { font-size: 25px; line-height: 33px; }
    .home-blog { padding: 48px 0 56px; }
    .home-visit { padding: 56px 0; }
}
@media (prefers-reduced-motion: reduce) {
    .home-strip__track { scroll-behavior: auto; }
    .home-strip__item:hover img { transform: none; }
}

/* ─── Footer ──────────────────────────────────────────────────────────── */

.om-footer {
    background: #f8f8f5;
    border-top: 1px solid #e9e3da;
    color: #2c2f31;
}

.om-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
    gap: 48px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 28px 56px;
}
@media (max-width: 1023px) { .om-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; } }
@media (max-width: 599px)  { .om-footer__inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px 40px; } }

.om-footer__logo { width: 150px; height: auto; margin-bottom: 18px; }

.om-footer__blurb {
    font-family: 'Jost', sans-serif;
    font-size: 15px; line-height: 26px;
    color: #5c6165;
    margin: 0 0 20px;
    max-width: 340px;
}

.om-footer__social { display: flex; gap: 10px; }
.om-footer__social a {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 4px;
    color: #aaa;
    transition: color .2s ease;
}
.om-footer__social a:hover { color: #00806B; }
.om-footer__social svg { width: 17px; height: 17px; }

.om-footer__title {
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    color: #8b9094;
    margin: 0 0 16px;
}

.om-footer__list { list-style: none; margin: 0; padding: 0; }
.om-footer__list li { margin-bottom: 10px; }
.om-footer__list a,
.om-footer__contact a,
.om-footer__addr {
    font-family: 'Jost', sans-serif;
    font-size: 15px; line-height: 25px;
    color: #4a4f53;
    text-decoration: none;
    transition: color .2s ease;
}
.om-footer__list a:hover,
.om-footer__contact a:hover { color: #00806B; }

.om-footer__contact {
    display: flex; flex-direction: column; gap: 10px;
    font-style: normal;
}
.om-footer__addr { display: block; margin-bottom: 4px; }

/* Etiket + değer; üç satır da aynı noktadan başlasın */
.om-footer__row { display: flex; align-items: baseline; gap: 10px; }
.om-footer__key {
    flex: 0 0 68px;
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: #9aa0a4;
}
.om-footer__row a { font-size: 15px; }

.om-footer__reserve { align-self: flex-start; margin-top: 22px; }
/* Telif bandı — Romance ile aynı düzen: telif · TUROB · sosyal medya */
.om-footer__bottom {
    border-top: 1px solid #e5e5e5;
    background: #f2f0e6;
}
.om-footer__bottom-inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 18px 32px;
    max-width: 1240px; margin: 0 auto;
    padding: 22px 28px;
}
@media (max-width: 767px) {
    .om-footer__bottom-inner { flex-direction: column; justify-content: center; padding: 22px 20px; }
}

.om-footer__copy {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #777;
    margin: 0;
}

.om-footer__turob {
    height: 28px; width: auto; max-width: 222px;
    opacity: .75;
}

/* Bal küpü — ekran okuyuculardan ve gözden gizli, ama görüntüleme:none değil
   çünkü bazı botlar display:none alanları atlıyor */
.rezerve-panel__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ─── 404 ve Arama ────────────────────────────────────────────────────── */

.om-404 { padding: 0; }
.om-404__inner {
    max-width: 620px;
    margin: 0 auto;
    padding: 150px 24px 100px;
    text-align: center;
}
@media (max-width: 767px) { .om-404__inner { padding: 110px 20px 70px; } }

.om-404__code {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 96px;
    line-height: 1;
    font-weight: 600;
    color: #00806B;
    opacity: .16;
    letter-spacing: .04em;
    margin-bottom: 12px;
}
@media (min-width: 768px) { .om-404__code { font-size: 128px; } }

.om-404__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #000;
    margin: 0 0 14px;
}
@media (min-width: 768px) { .om-404__title { font-size: 36px; line-height: 46px; } }

.om-404__desc {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #5c6165;
    margin: 0 0 28px;
}

.om-404__home { margin-top: 0; }

.om-404__links {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #f0ebe4;
}
.om-404__links-title {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #8b9094;
    margin: 0 0 14px;
}
.om-404__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
}
.om-404__links a {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #00806B;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}
.om-404__links a:hover { border-bottom-color: #00806B; }

/* Arama */
.om-page--search { padding-bottom: 100px; }

.om-search__form {
    position: relative;
    max-width: 460px;
    margin: 28px auto 0;
}
.om-search__form svg {
    position: absolute;
    left: 16px; top: 50%;
    width: 17px; height: 17px;
    transform: translateY(-50%);
    color: #9aa0a4;
    pointer-events: none;
}
.om-search__form input {
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #2c2f31;
    background: #fbfaf8;
    border: 1px solid #e3dcd2;
    border-radius: 999px;
    padding: 11px 18px 11px 44px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.om-search__form input:focus {
    background: #fff;
    border-color: #00806B;
    box-shadow: 0 0 0 3px rgba(0,128,107,.12);
}

.om-search__empty { max-width: 620px; margin: 0 auto; text-align: center; border-top: none; }

.om-search__nav { max-width: 1240px; margin: 48px auto 0; padding: 0 28px; text-align: center; }
.om-search__nav .nav-links { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.om-search__nav .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 12px;
    font-family: 'Jost', sans-serif; font-size: 14px;
    color: #4a4f53; text-decoration: none;
    border: 1px solid #e3dcd2; border-radius: 999px;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.om-search__nav .page-numbers:hover { border-color: #00806B; color: #00806B; }
.om-search__nav .page-numbers.current { background: #00806B; border-color: #00806B; color: #fff; }

/* ── Derlenmiş Tailwind'de bulunmayan iki sınıf ─────────────────────────────
   tailwind-output.css bir kez derlenip donduruldu; bu iki sınıf sonradan
   şablonlara eklendiği için çıktıya girmemiş ve hiçbir şey yapmıyorlardı.
   Derleme zinciri kurmak yerine kuralları burada tanımlıyoruz.           */

/* Mobildeki yüzen rezervasyon butonunun gölgesi (footer.php) */
.shadow-\[0_10px_30px_rgba\(0\,0\,0\,0\.3\)\] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

/* Footer sosyal ikonlarının hover rengi (footer.php) */
.hover\:text-\[\#00806B\]:hover {
    color: #00806B;
}

/* ── Hero alt metni ─────────────────────────────────────────────────────────
   Slogan h1'de, manzara cümlesi burada. Başlıktan belirgin küçük ve düz yazı
   fontunda; ikisi aynı ağırlıkta durursa hero dağılıyor.                    */
.hero-desc {
    margin: 18px auto 0;
    max-width: 640px;
    padding: 0 24px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .02em;
    text-align: center;
    color: rgba(255, 255, 255, .92);
    pointer-events: auto;

    /* Başlıkla aynı gölge — h1'deki iki katman birebir aynı değerlerle */
    text-shadow: 0 2px 15px rgba(0, 0, 0, .7);
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, .8));
}

@media (min-width: 768px) {
    .hero-desc { font-size: 18px; line-height: 30px; margin-top: 22px; }
}
