/**
 * ============================================================
 * Nazareth El Khan
 * File: assets/css/style.css
 * Purpose: Main website styling
 * ============================================================
 */

/* ============================================================
   Root
============================================================ */

:root {
    --color-white: #ffffff;
    --color-black: #111111;
    --color-text: #3d352d;
    --color-muted: #746b60;
    --color-soft: #f8f3ea;
    --color-soft-2: #fbfaf7;
    --color-border: rgba(61, 53, 45, 0.14);
    --color-gold: #deb042;
    --color-gold-dark: #a77b1b;
    --color-gold-soft: rgba(222, 176, 66, 0.16);
    --color-brown: #3b2b1f;
    --color-brown-2: #211812;
    --shadow-soft: 0 18px 50px rgba(35, 24, 16, 0.12);
    --shadow-card: 0 12px 34px rgba(35, 24, 16, 0.10);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 38px;
    --container: 1180px;
    --header-height: 92px;
    --transition: 180ms ease;
}

/* ============================================================
   Base
============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.65;
    overflow-x: hidden;
}

body.dir-rtl,
html[dir="rtl"] body {
    font-family: Arial, "Noto Sans Hebrew", "Segoe UI", sans-serif;
}

body.nav-is-open,
body.lightbox-is-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    color: var(--color-white);
    background: var(--color-gold-dark);
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 14px;
    inset-inline-start: 14px;
    z-index: 9999;
    transform: translateY(-160%);
    padding: 10px 14px;
    color: var(--color-white);
    background: var(--color-brown);
    border-radius: var(--radius-sm);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Safe left-to-right values inside Hebrew / RTL pages */
.ltr-value {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
    text-align: left;
}

.ltr-input {
    direction: ltr !important;
    unicode-bidi: isolate;
    text-align: left !important;
}

/* ============================================================
   Header
============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(61, 53, 45, 0.08);
    backdrop-filter: blur(16px);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(35, 24, 16, 0.08);
}

.top-bar {
    color: rgba(255, 255, 255, 0.92);
    background: var(--color-brown-2);
    font-size: 13px;
}

.top-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.top-bar__item a {
    transition: color var(--transition);
}

.top-bar__item a:hover {
    color: var(--color-gold);
}

.top-bar__item--right {
    margin-inline-start: auto;
}

.top-bar__icon {
    color: var(--color-gold);
    line-height: 1;
}

.main-header {
    background: transparent;
}

.main-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand {
    flex: 0 0 auto;
}

.brand__logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand__text,
.footer-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.brand__name,
.footer-brand__name {
    color: var(--color-brown);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand__tagline,
.footer-brand__tagline {
    color: var(--color-gold-dark);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dir-rtl .brand__tagline,
.dir-rtl .footer-brand__tagline {
    letter-spacing: 0.04em;
    text-transform: none;
}

.site-nav {
    margin-inline-start: auto;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 12px;
    color: var(--color-brown);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: color var(--transition);
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--color-gold);
    transition: transform var(--transition);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--color-gold-dark);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
}

.header-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    color: var(--color-brown);
    background: var(--color-soft);
    border: 1px solid rgba(167, 123, 27, 0.22);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.header-lang:hover {
    transform: translateY(-1px);
    color: var(--color-gold-dark);
    background: var(--color-gold-soft);
    border-color: rgba(167, 123, 27, 0.34);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    color: var(--color-white);
    background: var(--color-brown);
    border: 1px solid var(--color-brown);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(35, 24, 16, 0.16);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.header-cta:hover {
    transform: translateY(-1px);
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-inline-start: auto;
    padding: 0;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    flex: 0 0 auto;
}

.nav-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-brown);
    border-radius: 999px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   Typography
============================================================ */

.eyebrow {
    margin: 0 0 12px;
    color: var(--color-gold-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.dir-rtl .eyebrow {
    letter-spacing: 0.04em;
    text-transform: none;
}

.section-title {
    margin: 0;
    color: var(--color-brown);
    font-size: clamp(31px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.dir-rtl .section-title {
    letter-spacing: -0.02em;
    line-height: 1.16;
}

.section-text {
    margin: 18px 0 0;
    color: var(--color-muted);
    font-size: 17px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* ============================================================
   Buttons and links
============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    box-shadow: 0 14px 34px rgba(167, 123, 27, 0.24);
}

.btn--primary:hover {
    box-shadow: 0 18px 44px rgba(167, 123, 27, 0.32);
}

.btn--secondary {
    color: var(--color-brown);
    background: var(--color-soft);
    border-color: rgba(167, 123, 27, 0.22);
}

.btn--secondary:hover {
    background: var(--color-gold-soft);
    border-color: rgba(167, 123, 27, 0.34);
}

.btn--outline {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.48);
}

.btn--outline:hover {
    color: var(--color-brown);
    background: var(--color-white);
}

.btn--outline-dark {
    color: var(--color-brown);
    background: transparent;
    border-color: rgba(61, 53, 45, 0.24);
}

.btn--outline-dark:hover {
    color: var(--color-white);
    background: var(--color-brown);
    border-color: var(--color-brown);
}

.btn--full {
    width: 100%;
}

.text-link {
    color: var(--color-brown);
    font-size: 15px;
    font-weight: 800;
    transition: color var(--transition);
}

.text-link:hover {
    color: var(--color-gold-dark);
}

.text-link--gold {
    color: var(--color-gold-dark);
}

/* ============================================================
   Hero
============================================================ */

.hero,
.page-hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-brown);
}

.page-hero {
    min-height: 430px;
}

.page-hero--small {
    min-height: 380px;
}

.hero__media,
.page-hero__media {
    position: absolute;
    inset: 0;
}

.hero__media img,
.page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay,
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 13, 8, 0.78), rgba(20, 13, 8, 0.42), rgba(20, 13, 8, 0.26)),
        linear-gradient(180deg, rgba(20, 13, 8, 0.14), rgba(20, 13, 8, 0.50));
}

.dir-rtl .hero__overlay,
.dir-rtl .page-hero__overlay {
    background:
        linear-gradient(270deg, rgba(20, 13, 8, 0.78), rgba(20, 13, 8, 0.42), rgba(20, 13, 8, 0.26)),
        linear-gradient(180deg, rgba(20, 13, 8, 0.14), rgba(20, 13, 8, 0.50));
}

.hero__content,
.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-block: 88px;
}

.hero__title,
.page-hero__title {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(46px, 7vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.dir-rtl .hero__title,
.dir-rtl .page-hero__title {
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.page-hero__title {
    font-size: clamp(40px, 5.4vw, 68px);
}

.hero__text,
.page-hero__text {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.room-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.room-quick-info span {
    padding: 8px 14px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

/* ============================================================
   Sections
============================================================ */

.section {
    padding-block: 92px;
}

.section--intro,
.section--rooms-list,
.section--booking-form,
.section--contact,
.section--gallery {
    background: var(--color-white);
}

.section--rooms,
.section--values,
.section--booking-rooms,
.section--other-rooms,
.section--gallery-story {
    background: var(--color-soft-2);
}

.section--experience,
.section--about-nazareth,
.section--booking-note,
.section--map {
    background: var(--color-soft);
}

.section--cta {
    background: var(--color-white);
    padding-block: 64px 92px;
}

/* ============================================================
   Intro / image layout
============================================================ */

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 54px;
    align-items: center;
}

.intro-grid__content {
    min-width: 0;
}

.intro-grid__image {
    overflow: hidden;
    min-height: 520px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.intro-grid__image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.feature-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-brown);
    font-weight: 700;
}

.feature-list__icon {
    color: var(--color-gold-dark);
    flex: 0 0 auto;
}

/* ============================================================
   Room cards
============================================================ */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.room-card {
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 54px rgba(35, 24, 16, 0.16);
}

.room-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-soft);
}

.room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.room-card:hover .room-card__image img {
    transform: scale(1.045);
}

.room-card__body {
    padding: 24px;
}

.room-card__meta {
    margin: 0 0 8px;
    color: var(--color-gold-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dir-rtl .room-card__meta {
    letter-spacing: 0.02em;
    text-transform: none;
}

.room-card__title {
    margin: 0;
    color: var(--color-brown);
    font-size: 25px;
    line-height: 1.15;
}

.room-card__title a {
    transition: color var(--transition);
}

.room-card__title a:hover {
    color: var(--color-gold-dark);
}

.room-card__text {
    margin: 12px 0 0;
    color: var(--color-muted);
}

.room-card__actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
}

/* ============================================================
   Rooms list
============================================================ */

.rooms-list {
    display: grid;
    gap: 28px;
}

.room-list-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.room-list-card__image {
    min-height: 360px;
    overflow: hidden;
    background: var(--color-soft);
}

.room-list-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.room-list-card:hover .room-list-card__image img {
    transform: scale(1.04);
}

.room-list-card__content {
    padding: 36px;
}

.room-list-card__meta {
    margin: 0 0 8px;
    color: var(--color-gold-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dir-rtl .room-list-card__meta {
    letter-spacing: 0.02em;
    text-transform: none;
}

.room-list-card__title {
    margin: 0;
    color: var(--color-brown);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
}

.dir-rtl .room-list-card__title {
    line-height: 1.16;
}

.room-list-card__subtitle {
    margin: 14px 0 0;
    color: var(--color-brown);
    font-size: 18px;
    font-weight: 700;
}

.room-list-card__description {
    margin: 14px 0 0;
    color: var(--color-muted);
}

.room-list-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.room-list-card__amenities li {
    padding: 7px 12px;
    color: var(--color-brown);
    background: var(--color-soft);
    border: 1px solid rgba(167, 123, 27, 0.14);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.room-list-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
}

.room-list-card__price-note {
    color: var(--color-gold-dark);
    font-weight: 800;
}

.room-list-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ============================================================
   Room detail
============================================================ */

.room-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: start;
}

.room-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.room-gallery__item {
    overflow: hidden;
    min-height: 260px;
    background: var(--color-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.room-gallery__item--large {
    grid-column: 1 / -1;
    min-height: 520px;
}

.room-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content-block {
    margin-top: 44px;
    padding: 34px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.amenities-grid li {
    display: flex;
    gap: 10px;
    padding: 14px;
    color: var(--color-brown);
    background: var(--color-soft-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-weight: 700;
}

.amenities-grid__icon {
    color: var(--color-gold-dark);
    font-weight: 900;
    flex: 0 0 auto;
}

.room-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 72px);
    display: grid;
    gap: 18px;
}

.booking-card,
.side-note-card {
    padding: 28px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.booking-card__title {
    margin: 0;
    color: var(--color-brown);
    font-size: 30px;
    line-height: 1.08;
}

.dir-rtl .booking-card__title {
    line-height: 1.16;
}

.booking-card__text {
    margin: 14px 0 0;
    color: var(--color-muted);
}

.booking-card__details {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.booking-card__details div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.booking-card__details span {
    color: var(--color-muted);
}

.booking-card__details strong {
    color: var(--color-brown);
    text-align: end;
}

.booking-card .btn + .btn {
    margin-top: 10px;
}

.side-note-card h3 {
    margin: 0;
    color: var(--color-brown);
    font-size: 22px;
}

.side-note-card p {
    margin: 10px 0 0;
    color: var(--color-muted);
}

/* ============================================================
   Experience / info panels
============================================================ */

.experience-panel,
.info-panel,
.map-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
    gap: 34px;
    align-items: center;
    padding: 46px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.experience-panel__stats {
    display: grid;
    gap: 16px;
}

.stat-card {
    padding: 22px;
    background: var(--color-soft);
    border: 1px solid rgba(167, 123, 27, 0.16);
    border-radius: var(--radius-lg);
}

.stat-card strong {
    display: block;
    color: var(--color-brown);
    font-size: 28px;
    line-height: 1;
}

.dir-rtl .stat-card strong {
    line-height: 1.16;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
}

.info-panel__actions {
    display: grid;
    gap: 12px;
}

/* ============================================================
   CTA
============================================================ */

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 44px;
    color: var(--color-white);
    background:
        radial-gradient(circle at top left, rgba(222, 176, 66, 0.34), transparent 34%),
        linear-gradient(135deg, var(--color-brown), var(--color-brown-2));
    border-radius: var(--radius-xl);
    box-shadow: 0 22px 56px rgba(35, 24, 16, 0.22);
}

.dir-rtl .cta-card {
    background:
        radial-gradient(circle at top right, rgba(222, 176, 66, 0.34), transparent 34%),
        linear-gradient(225deg, var(--color-brown), var(--color-brown-2));
}

.cta-card .eyebrow {
    color: var(--color-gold);
}

.cta-card__title {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(32px, 4.4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.dir-rtl .cta-card__title {
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.cta-card__text {
    max-width: 620px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 17px;
}

.cta-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

/* ============================================================
   Forms
============================================================ */

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 34px;
    align-items: start;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.72fr);
    gap: 34px;
    align-items: start;
}

.booking-form-card,
.contact-form-card,
.contact-info {
    min-width: 0;
    padding: 36px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.contact-form-card .section-title {
    max-width: 440px;
    font-size: clamp(32px, 3.1vw, 46px);
}

.contact-form-card .section-text {
    max-width: 430px;
}

.booking-side {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.form-field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--color-brown);
    font-size: 14px;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 12px 14px;
    color: var(--color-text);
    background: var(--color-soft-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field textarea {
    resize: vertical;
    min-height: 138px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: var(--color-white);
    border-color: rgba(167, 123, 27, 0.62);
    box-shadow: 0 0 0 4px rgba(222, 176, 66, 0.14);
}

.booking-form .btn,
.contact-form .btn {
    margin-top: 22px;
}

/* ============================================================
   Contact
============================================================ */

.contact-cards {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--color-soft-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.contact-card__icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--color-white);
    background: var(--color-gold-dark);
    border-radius: 999px;
}

.contact-card h3 {
    margin: 0;
    color: var(--color-brown);
    font-size: 18px;
}

.contact-card a,
.contact-card span {
    color: var(--color-muted);
}

.contact-card a:hover {
    color: var(--color-gold-dark);
}

.contact-note {
    margin-top: 24px;
    padding: 22px;
    background: var(--color-soft);
    border: 1px solid rgba(167, 123, 27, 0.18);
    border-radius: var(--radius-lg);
}

.contact-note h3 {
    margin: 0;
    color: var(--color-brown);
}

.contact-note p {
    margin: 10px 0 18px;
    color: var(--color-muted);
}

.map-placeholder {
    display: grid;
    place-items: center;
    min-height: 300px;
    padding: 28px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(222, 176, 66, 0.12), rgba(59, 43, 31, 0.06)),
        var(--color-soft-2);
    border: 1px dashed rgba(167, 123, 27, 0.35);
    border-radius: var(--radius-xl);
}

.map-placeholder__icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 14px;
    color: var(--color-white);
    background: var(--color-brown);
    border-radius: 999px;
    font-size: 34px;
}

.map-placeholder strong {
    color: var(--color-brown);
    font-size: 24px;
}

.map-placeholder p {
    margin: 8px 0 0;
    color: var(--color-muted);
}

/* ============================================================
   Values / about / services / location
============================================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.value-card {
    padding: 30px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.value-card__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 999px;
    font-size: 24px;
}

.value-card h3 {
    margin: 0;
    color: var(--color-brown);
    font-size: 24px;
    line-height: 1.15;
}

.dir-rtl .value-card h3 {
    line-height: 1.2;
}

.value-card p {
    margin: 12px 0 0;
    color: var(--color-muted);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.about-gallery-grid__item {
    overflow: hidden;
    min-height: 280px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.about-gallery-grid__item--large {
    grid-row: span 2;
    min-height: 580px;
}

.about-gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   Gallery
============================================================ */

.gallery-preview,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gallery-preview__item,
.gallery-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 0;
    background: var(--color-soft);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.gallery-preview__item--large,
.gallery-card--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 516px;
}

.gallery-preview__item img,
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.gallery-preview__item:hover img,
.gallery-card:hover img {
    transform: scale(1.045);
}

.gallery-card__label {
    position: absolute;
    inset-inline-start: 16px;
    bottom: 16px;
    z-index: 2;
    padding: 7px 12px;
    color: var(--color-white);
    background: rgba(33, 24, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 7, 0.84);
    backdrop-filter: blur(8px);
}

.gallery-lightbox__figure {
    position: relative;
    z-index: 2;
    width: min(100%, 1080px);
    margin: 0;
}

.gallery-lightbox__image {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.gallery-lightbox__caption {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.84);
    text-align: center;
}

.gallery-lightbox__close {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 32px;
    line-height: 1;
}

/* ============================================================
   Footer
============================================================ */

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--color-brown-2);
}

.footer-main {
    padding-block: 70px;
}

.footer-main__inner {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.95fr 1fr;
    gap: 34px;
}

.footer-brand__logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    flex: 0 0 auto;
}

.footer-brand__name {
    color: var(--color-white);
}

.footer-brand__tagline {
    color: var(--color-gold);
}

.footer-text {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.70);
}

.footer-whatsapp {
    display: inline-flex;
    margin-top: 22px;
    padding: 11px 18px;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 999px;
    font-weight: 800;
}

.footer-title {
    margin: 0 0 18px;
    color: var(--color-white);
    font-size: 21px;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.76);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-contact__label {
    display: block;
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dir-rtl .footer-contact__label {
    letter-spacing: 0.04em;
    text-transform: none;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    padding: 8px 12px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom__inner {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* ============================================================
   Floating WhatsApp
============================================================ */

.floating-whatsapp {
    position: fixed;
    inset-inline-end: 18px;
    bottom: 18px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    padding: 12px 18px;
    color: var(--color-white);
    background: linear-gradient(135deg, #2abf63, #128c4a);
    border-radius: 999px;
    box-shadow: 0 16px 38px rgba(18, 140, 74, 0.26);
    font-weight: 900;
    transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(18, 140, 74, 0.34);
}

.floating-whatsapp__icon {
    font-size: 20px;
}

/* ============================================================
   RTL support
============================================================ */

.dir-rtl {
    direction: rtl;
    text-align: right;
}

.dir-rtl input,
.dir-rtl select,
.dir-rtl textarea {
    text-align: right;
}

.dir-rtl input[type="tel"],
.dir-rtl input[type="email"],
.dir-rtl input[type="url"],
.dir-rtl .ltr-input {
    direction: ltr !important;
    unicode-bidi: isolate;
    text-align: left !important;
}

.dir-rtl .ltr-value {
    direction: ltr;
    unicode-bidi: isolate;
    text-align: left;
}

.dir-rtl .section-heading,
.dir-rtl .map-placeholder,
.dir-rtl .gallery-lightbox__caption {
    text-align: center;
}

.dir-rtl .btn,
.dir-rtl .header-lang,
.dir-rtl .header-cta,
.dir-rtl .footer-whatsapp,
.dir-rtl .floating-whatsapp {
    font-family: Arial, "Noto Sans Hebrew", "Segoe UI", sans-serif;
}

.dir-rtl .top-bar__inner,
.dir-rtl .main-header__inner,
.dir-rtl .brand,
.dir-rtl .footer-brand,
.dir-rtl .site-nav__list,
.dir-rtl .hero__actions,
.dir-rtl .room-quick-info,
.dir-rtl .room-card__actions,
.dir-rtl .room-list-card__footer,
.dir-rtl .room-list-card__actions,
.dir-rtl .cta-card__actions,
.dir-rtl .footer-social,
.dir-rtl .contact-card,
.dir-rtl .feature-list__item,
.dir-rtl .amenities-grid li {
    direction: rtl;
}

.dir-rtl .site-nav {
    margin-inline-start: auto;
}

.dir-rtl .top-bar__item--right {
    margin-inline-start: auto;
}

.dir-rtl .cta-card__actions {
    justify-content: flex-start;
}

.dir-rtl .booking-card__details strong {
    text-align: left;
}

/* ============================================================
   Responsive
============================================================ */

@media (max-width: 1180px) {
    .main-header__inner {
        gap: 12px;
    }

    .brand__logo {
        width: 64px;
        height: 64px;
    }

    .brand__name {
        font-size: 19px;
    }

    .brand__tagline {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .site-nav__link {
        padding-inline: 9px;
        font-size: 14px;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 1100px) {
    .rooms-grid,
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-layout,
    .contact-layout,
    .room-detail-grid {
        grid-template-columns: 1fr;
    }

    .room-sidebar {
        position: static;
    }
}

@media (max-width: 1040px) {
    :root {
        --header-height: 76px;
    }

    .top-bar {
        display: none;
    }

    .main-header__inner {
        min-height: 76px;
        gap: 12px;
    }

    .brand__logo {
        width: 56px;
        height: 56px;
    }

    .brand__name {
        font-size: 18px;
    }

    .brand__tagline {
        font-size: 10px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .header-lang {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 13px;
        order: 3;
    }

    .nav-toggle {
        order: 4;
    }

    .site-nav {
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        margin: 0;
        padding: 16px;
        background: var(--color-white);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav__list {
        display: grid;
        gap: 6px;
    }

    .site-nav__link {
        width: 100%;
        padding: 12px 14px;
        border-radius: var(--radius-md);
        font-size: 15px;
    }

    .site-nav__link::after {
        display: none;
    }

    .site-nav__link.is-active,
    .site-nav__link:hover {
        background: var(--color-soft);
    }

    .hero {
        min-height: 620px;
    }

    .page-hero {
        min-height: 360px;
    }

    .hero__content,
    .page-hero__content {
        padding-block: 72px;
    }

    .intro-grid,
    .experience-panel,
    .info-panel,
    .map-panel {
        grid-template-columns: 1fr;
    }

    .intro-grid__image,
    .intro-grid__image img {
        min-height: 360px;
    }

    .room-list-card {
        grid-template-columns: 1fr;
    }

    .room-list-card__image {
        min-height: 300px;
    }

    .gallery-preview,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-card__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .section {
        padding-block: 64px;
    }

    .section--cta {
        padding-block: 44px 68px;
    }

    .hero {
        min-height: 580px;
    }

    .hero__title,
    .page-hero__title {
        letter-spacing: -0.04em;
    }

    .dir-rtl .hero__title,
    .dir-rtl .page-hero__title {
        letter-spacing: -0.02em;
    }

    .hero__text,
    .page-hero__text {
        font-size: 17px;
    }

    .hero__actions,
    .cta-card__actions {
        width: 100%;
    }

    .hero__actions .btn,
    .cta-card__actions .btn {
        width: 100%;
    }

    .rooms-grid,
    .values-grid,
    .form-grid,
    .footer-main__inner,
    .amenities-grid,
    .about-gallery-grid {
        grid-template-columns: 1fr;
    }

    .room-card__actions,
    .room-list-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .room-list-card__actions {
        width: 100%;
    }

    .room-list-card__actions .btn {
        width: 100%;
    }

    .booking-form-card,
    .contact-form-card,
    .contact-info,
    .booking-card,
    .side-note-card,
    .room-content-block,
    .experience-panel,
    .info-panel,
    .map-panel,
    .cta-card {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .contact-form-card .section-title {
        font-size: clamp(31px, 10vw, 42px);
    }

    .room-gallery {
        grid-template-columns: 1fr;
    }

    .room-gallery__item,
    .room-gallery__item--large {
        min-height: 280px;
    }

    .gallery-preview,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview__item,
    .gallery-preview__item--large,
    .gallery-card,
    .gallery-card--large,
    .about-gallery-grid__item,
    .about-gallery-grid__item--large {
        grid-column: auto;
        grid-row: auto;
        min-height: 280px;
    }

    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-block: 18px;
    }

    .floating-whatsapp {
        inset-inline-end: 12px;
        bottom: 12px;
        min-height: 48px;
        padding: 10px 14px;
    }

    .floating-whatsapp__text {
        display: none;
    }
}

@media (max-width: 520px) {
    .brand__name {
        font-size: 16px;
    }

    .brand__tagline {
        max-width: 160px;
        white-space: normal;
    }

    .header-lang {
        padding-inline: 10px;
    }
}

@media (max-width: 420px) {
    .main-header__inner {
        gap: 8px;
    }

    .brand {
        gap: 8px;
    }

    .brand__logo {
        width: 50px;
        height: 50px;
    }

    .brand__name {
        font-size: 15px;
    }

    .brand__tagline {
        display: none;
    }

    .header-lang {
        min-height: 36px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }
}