/* ════════════════════════════════════════════════════════════
   ROOME HOTEL — karakedi.css
   ════════════════════════════════════════════════════════════ */

/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --ecru: #f3f3e4;
  --napa: #aea495;
  --tea:  #c5bcb4;
  --ash:  #c4c4b4;
  --dark: #2a2825;
  --darker: #1e1d1b;
  --brand: #735147;
  --brand-dark: #5c3f38;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Jost', sans-serif; background: var(--ecru); color: var(--dark); overflow-x: hidden; padding-right: 0 !important; }
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; }
a     { text-decoration: none; }
/*img   { display: block; width: 100%; }*/

/* ── HEADER — SHARED ─────────────────────────────────────── */
#mainHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 85px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.2rem;
  /* default: transparent (index.html hero üzerinde) */
  background: transparent;
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
}
/* Scroll sonrası veya oda detay sayfasında header arkaplanı */
#mainHeader.scrolled,
#mainHeader.solid {
  background: var(--brand);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 28px rgba(0,0,0,.35);
}
/* Oda detay sayfası: header her zaman dolu görünür */
body.page-detail #mainHeader { background: var(--brand); box-shadow: 0 2px 28px rgba(0,0,0,.25); }

/* Hamburger */
.hamburger-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; align-items: flex-start;
  padding: .2rem; z-index: 10; position: relative;
}
.hamburger-btn span { display: block; height: 1.5px; background: var(--ecru); transition: all .3s; }
.hamburger-btn span:nth-child(1) { width: 26px; }
.hamburger-btn span:nth-child(2) { width: 18px; }
.hamburger-btn span:nth-child(3) { width: 26px; }
.hamburger-btn:hover span { width: 26px; }

/* Logo */
.logo-link {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 150px; height: 86px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ecru);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.15rem; letter-spacing: .04em;
  transition: all .3s; cursor: pointer;
}
.logo-link img { width: 120px !important; height: auto !important; }

/* Header sağ */
.header-right { display: flex; align-items: center; gap: .75rem; position: relative; z-index: 10; }

.btn-reservation {
  font-family: 'Jost', sans-serif; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .44rem 1.2rem;
  border: 1.5px solid rgba(243,243,228,.6);
  background: transparent; color: var(--ecru);
  border-radius: 2px; transition: all .3s; cursor: pointer; white-space: nowrap;
}
.btn-reservation:hover { background: var(--ecru); color: var(--brand); }

.lang-dropdown .dropdown-toggle {
  font-family: 'Jost', sans-serif; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ecru); background: transparent;
  border: 1.5px solid rgba(243,243,228,.35);
  border-radius: 2px; padding: .42rem .8rem;
  transition: all .3s; cursor: pointer;
}
.lang-dropdown .dropdown-toggle::after { border-color: rgba(243,243,228,.7) transparent transparent; }
.lang-dropdown .dropdown-toggle:hover,
.lang-dropdown .dropdown-toggle:focus  { background: rgba(243,243,228,.15); box-shadow: none; }
.lang-dropdown .dropdown-menu {
  min-width: 110px; border: 1px solid var(--brand); border-radius: 2px;
  background: var(--darker); box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.lang-dropdown .dropdown-item { font-size: .82rem; letter-spacing: .06em; color: var(--tea); padding: .45rem 1rem; }
.lang-dropdown .dropdown-item:hover { background: rgba(115,81,71,.2); color: var(--ecru); }

/* ── OFFCANVAS ───────────────────────────────────────────── */
#sideMenu {
  width: min(65vw, 400px) !important;
  background: var(--brand);
  border-right: 1px solid rgba(243,243,228,.08);
}
#sideMenu .offcanvas-body { padding: 0; display: flex; flex-direction: column; }
.menu-inner { padding: 2.4rem 2.6rem 3rem; display: flex; flex-direction: column; height: 100%; }
.menu-close-btn {
  position: absolute; top: 1.4rem; right: 1.6rem;
  background: none; border: none; color: rgba(243,243,228,.7);
  font-size: 1.25rem; cursor: pointer; opacity: .75; transition: opacity .2s;
}
.menu-close-btn:hover { opacity: 1; }
.menu-logo { margin-bottom: 3rem; }
.menu-logo img { width: 120px; height: auto; }
.menu-nav a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300;
  color: rgba(243,243,228,.75);
  padding: .65rem 0;
  border-bottom: 1px solid rgba(243,243,228,.1);
  letter-spacing: .04em;
  transition: color .3s, padding-left .3s; cursor: pointer;
}
.menu-nav a:hover { color: var(--ecru); padding-left: .55rem; }
.menu-footer { margin-top: auto; padding-top: 2.5rem; }
.menu-footer p { font-size: .74rem; letter-spacing: .1em; color: rgba(243,243,228,.5); text-transform: uppercase; line-height: 1.8; }

/* ── HERO — INDEX ────────────────────────────────────────── */
.hero-swiper { 
  height: 70vh; 
  min-height: 500px; 
  position: relative; 
  width: 100% !important; /* Eklenen */
  left: 0 !important;      /* Eklenen */
}
.hero-swiper .swiper-slide { 
  position: relative; 
  overflow: hidden; 
  width: 100% !important; /* Eklenen */
}
.hero-slide-img { 
  width: 100% !important;       /* !important eklendi */
  height: 100% !important;      /* !important eklendi */
  object-fit: cover !important; /* !important eklendi */
  transition: transform 8s ease; 
}
.swiper-slide-active .hero-slide-img { transform: scale(1.06); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,29,27,.58) 0%, rgba(30,29,27,.25) 55%, rgba(30,29,27,.6) 100%);
  z-index: 1; pointer-events: none;
}

.hero-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem 130px;
  z-index: 3; pointer-events: none;
}
.hero-text .btn-hero { pointer-events: all; }

.hero-eyebrow {
  font-family: 'Jost', sans-serif; font-size: .7rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--tea); margin-bottom: 1.1rem;
  opacity: 0; animation: fadeUp .9s .4s forwards;
}
.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 300; color: var(--ecru); line-height: 1.12;
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 1s .7s forwards;
}
.hero-slogan em { font-style: italic; color: var(--tea); }
.hero-cta { opacity: 0; animation: fadeUp .9s 1.1s forwards; }

.btn-hero {
  font-family: 'Jost', sans-serif; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ecru); border: 1.5px solid rgba(243,243,228,.5);
  background: transparent; padding: .72rem 2rem; border-radius: 2px;
  transition: all .35s; cursor: pointer; display: inline-block;
}
.btn-hero:hover { background: var(--brand); color: var(--ecru); border-color: var(--brand); }

/* Hero arrows */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  z-index: 10; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(30,29,27,.38);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(243,243,228,.22);
  color: var(--ecru); --swiper-navigation-size: 17px;
  top: 50%; transform: translateY(-50%);
  transition: background .3s, border-color .3s, transform .3s;
}
.hero-swiper .swiper-button-prev { left: 1.6rem; }
.hero-swiper .swiper-button-next { right: 1.6rem; }
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(115,81,71,.82);
  border-color: rgba(243,243,228,.5);
  transform: translateY(-50%) scale(1.09);
}
.hero-swiper .swiper-pagination-bullet { background: rgba(243,243,228,.45); opacity: 1; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--ecru); }

/* Scroll down button */
.scroll-hint {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  opacity: 0; animation: fadeIn 1s 1.8s forwards;
  pointer-events: all; cursor: pointer; text-decoration: none;
}
.scroll-ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(243,243,228,.35);
  background: rgba(30,29,27,.28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .35s, background .35s, transform .35s;
}
.scroll-hint:hover .scroll-ring {
  border-color: rgba(243,243,228,.85);
  background: rgba(115,81,71,.55);
  transform: translateY(3px);
}
.scroll-chevrons { position: relative; width: 14px; height: 22px; }
.scroll-chevrons span {
  display: block; position: absolute; left: 0;
  width: 10px; height: 10px;
  border-right: 1.5px solid rgba(243,243,228,.9);
  border-bottom: 1.5px solid rgba(243,243,228,.9);
  transform: rotate(45deg);
  opacity: 0; animation: chevronDrop 1.6s ease-in-out infinite;
}
.scroll-chevrons span:nth-child(1) { top: 0;   animation-delay: 0s; }
.scroll-chevrons span:nth-child(2) { top: 6px; animation-delay: .2s; }
.scroll-chevrons span:nth-child(3) { top: 12px; animation-delay: .4s; }
.scroll-lbl {
  font-family: 'Jost', sans-serif; font-size: .58rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(243,243,228,.45); transition: color .3s;
}
.scroll-hint:hover .scroll-lbl { color: rgba(243,243,228,.9); }

/* ── SECTION COMMON ──────────────────────────────────────── */
.section-label {
  font-family: 'Jost', sans-serif; font-size: .68rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--napa); margin-bottom: .9rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--dark); line-height: 1.1; }
.title-rule { width: 40px; height: 1.5px; background: var(--brand); margin-top: .9rem; opacity: .6; }

/* ── WELCOME — INDEX ─────────────────────────────────────── */
#welcomeSection { padding: 6.5rem 0 5.5rem; background: var(--ecru); }
.welcome-title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; color: var(--dark); line-height: 1.1; margin-bottom: 1.4rem; }
.welcome-title em { font-style: italic; color: var(--napa); }
.welcome-text { font-size: .93rem; font-weight: 300; line-height: 1.9; color: #6a6560; }

/* Rating cards */
.rating-card {
  background: #ededde;
  border: 1px solid rgba(196,196,180,.35);
  border-radius: 6px; padding: .8rem 1rem;
  display: flex; align-items: center; gap: .85rem;
  box-shadow: 0 4px 20px rgba(44,40,37,.06);
  transition: transform .32s, box-shadow .32s;
  cursor: pointer; text-decoration: none;
}
.rating-card:hover { transform: scale(1.025); box-shadow: 0 12px 40px rgba(115,81,71,.15); color: inherit; }
.rating-icon {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.rating-icon.google { background: #f0f4ff; }
.rating-icon.booking {
  background: #003580; color: #fff;
  font-size: .58rem; font-weight: 700; letter-spacing: .02em;
  font-family: 'Jost'; text-align: center; padding: .2rem;
}
.rating-score { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 400; color: var(--dark); line-height: 1; }
.rating-lbl   { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: #816e53; font-family: 'Jost'; }
.rating-stars { color: #f4b942; font-size: .68rem; }

/* ── ROOMS SECTION — INDEX ───────────────────────────────── */
#roomsSection { padding: 5.5rem 0 3.5rem; background: #ededde; overflow: hidden; }
.rooms-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 0;
}
.rooms-header-arrows { display: flex; align-items: center; gap: .75rem; padding-bottom: .2rem; }
.rooms-nav-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: var(--dark);
  border: 1.5px solid var(--tea);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; flex-shrink: 0;
  font-size: .95rem; box-shadow: 0 2px 12px rgba(44,40,37,.08);
}
.rooms-nav-btn:hover { background: var(--brand); color: var(--ecru); border-color: var(--brand); }

.rooms-swiper { padding: 1rem .5rem 1rem !important; }
.rooms-swiper .swiper-slide { height: auto; }

.room-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  transition: transform .34s, box-shadow .34s; cursor: pointer; height: 100%;
}
.room-card:hover { transform: translateY(-7px) scale(1.01); box-shadow: 0 5px 10px rgba(44,40,37,.14); }
.room-img-wrap   { height: 210px; overflow: hidden; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.room-card:hover .room-img-wrap img { transform: scale(1.05); }
.room-body  { padding: 1.4rem 1.5rem 1.6rem; }
.room-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--dark); margin-bottom: .25rem; }
.room-price { display: none; }
.room-desc  { font-size: .84rem; color: #7a756f; line-height: 1.7; font-weight: 300; margin-bottom: 1.2rem; }
.room-features {
  display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center;
  border-top: 1px solid rgba(115,81,71,.12); padding-top: .9rem;
}
.room-feat { display: flex; flex-direction: column; align-items: center; gap: .3rem; font-size: .74rem; color: var(--napa); font-family: 'Jost'; }
.room-feat i { font-size: 1.25rem; color: var(--brand); }

/* ── RESTAURANT SECTION — INDEX ──────────────────────────── */
#restaurantSection { padding: 6rem 0; background: var(--ecru); }
.rest-img-wrap { border-radius: 10px; overflow: hidden; height: 480px; position: relative; }
.rest-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.rest-img-wrap:hover img { transform: scale(1.04); }
.rest-accent {
  position: absolute; bottom: -18px; right: -18px;
  width: 115px; height: 115px; border-radius: 4px;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--ecru); font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: .82rem; text-align: center;
  padding: 1rem; line-height: 1.5; z-index: 5;
}
.rest-content { padding: 2rem 0 2rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.rest-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-style: italic; color: var(--napa); margin-bottom: .5rem; font-weight: 300; }
.rest-title    { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 300; color: var(--dark); line-height: 1.12; margin-bottom: 1.4rem; }
.rest-text     { font-size: .9rem; color: #6a6560; line-height: 1.9; font-weight: 300; margin-bottom: 2rem; max-width: 400px; }

.btn-outline-dark-custom {
  display: inline-block; font-family: 'Jost', sans-serif; font-size: .73rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dark); border: 1.5px solid var(--dark); background: transparent;
  padding: .68rem 1.5rem; border-radius: 2px;
  transition: all .35s; cursor: pointer;
  width: auto; align-self: flex-start; white-space: nowrap;
}
.btn-outline-dark-custom:hover { background: var(--brand); color: var(--ecru); border-color: var(--brand); }

/* ── PAGE BANNER — ROOM DETAIL ───────────────────────────── */
#pageBanner {
  margin-top: 85px; padding: 3rem 0 2.5rem;
  background: var(--ecru);
  border-bottom: 1px solid rgba(174,164,149,.2);
  position: relative; overflow: hidden;
}
#pageBanner::before {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--brand), transparent);
  opacity: .35;
}
.breadcrumb-row {
  display: flex; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--napa); margin-bottom: 1rem; font-family: 'Jost';
}
.breadcrumb-row a { color: var(--napa); transition: color .2s; }
.breadcrumb-row a:hover { color: var(--brand); }
.breadcrumb-row span { opacity: .5; }
.page-room-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 300; color: var(--dark); line-height: 1.08; margin-bottom: .5rem; }
.page-room-name em { font-style: italic; color: var(--brand); }

/* ── GALLERY — ROOM DETAIL ───────────────────────────────── */
#gallerySection { padding: 0 0 3.5rem; }

.gallery-main {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px; overflow: hidden;
  background: var(--darker); margin-bottom: 10px;
  user-select: none;
}
.gallery-main img#galleryMainImg {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: opacity .25s ease;
}
.gallery-main img#galleryMainImg.fading { opacity: 0; }

.gallery-nav-zone {
  position: absolute; top: 0; width: 50%; height: 100%;
  z-index: 2; cursor: pointer;
}
.gallery-nav-zone.prev { left: 0; }
.gallery-nav-zone.next { right: 0; }

.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(243,243,228,.92);
  border: 1.5px solid rgba(115,81,71,.2);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  pointer-events: none;
  transition: background .25s, color .25s, border-color .25s;
  box-shadow: 0 2px 14px rgba(44,40,37,.18);
}
.gallery-arrow.arrow-prev { left: 14px; }
.gallery-arrow.arrow-next { right: 14px; }
.gallery-main:hover .gallery-arrow { background: var(--brand); color: var(--ecru); border-color: var(--brand); }

.gallery-counter {
  position: absolute; bottom: 12px; right: 14px; z-index: 4;
  background: rgba(30,29,27,.58); color: rgba(243,243,228,.85);
  font-family: 'Jost', sans-serif; font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; pointer-events: none;
}

.gallery-thumbs {
  display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 4px; scrollbar-width: thin;
  scrollbar-color: var(--napa) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--napa); border-radius: 2px; }

.gallery-thumb {
  flex-shrink: 0; width: 110px; height: 72px;
  border-radius: 6px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; opacity: .55;
  transition: border-color .22s, opacity .22s, transform .22s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.gallery-thumb:hover          { opacity: .82; transform: translateY(-3px); }
.gallery-thumb:hover img      { transform: scale(1.07); }
.gallery-thumb.active         { border-color: var(--brand); opacity: 1; transform: translateY(-3px); }

/* ── MAIN CONTENT — ROOM DETAIL ──────────────────────────── */
#mainContent { padding: .5rem 0 5rem; }
.desc-block  { padding-right: 2rem; }

.room-description { font-size: .92rem; font-weight: 300; line-height: 1.95; color: #6a6560; margin-bottom: 1.1rem; }

/* Info card */
.info-card { background: #fff; border-radius: 10px; padding: 1.8rem; border: 1px solid rgba(196,196,180,.3); box-shadow: 0 6px 30px rgba(44,40,37,.07); margin-bottom: 1.4rem; }
.info-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 1.2rem; padding-bottom: .8rem; border-bottom: 1px solid rgba(174,164,149,.2); }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: .52rem 0; border-bottom: 1px solid rgba(196,196,180,.15); font-size: .84rem; }
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--napa); font-family: 'Jost'; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.info-row .value { color: var(--dark); font-weight: 400; text-align: right; }

/* Sidebar CTAs */
.sidebar-cta { display: flex; flex-direction: column; gap: .7rem; }
.cta-btn {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  padding: .88rem 1rem; border-radius: 6px;
  font-family: 'Jost'; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: all .3s; border: none; text-decoration: none; font-weight: 400;
}
.cta-btn i { font-size: 1.1rem; flex-shrink: 0; }
.cta-btn.reservation { background: var(--brand); color: var(--ecru); width: 100%; }
.cta-btn.reservation:hover { background: var(--brand-dark); color: var(--ecru); }
.cta-btn-row { display: flex; gap: .7rem; }
.cta-btn-row .cta-btn { flex: 1; }
.cta-btn.whatsapp { background: #25d366; color: #fff; }
.cta-btn.whatsapp:hover { background: #1ebe5a; }
.cta-btn.email { background: transparent; color: var(--dark); border: 1.5px solid rgba(42,40,37,.22); }
.cta-btn.email:hover { border-color: var(--brand); color: var(--brand); }

/* ── AMENITIES — ROOM DETAIL ─────────────────────────────── */
#amenitiesSection { padding: 4rem 0; background: #ededde; }
.amenity-card {
  background: #fff; border-radius: 10px; padding: 1.2rem .8rem;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  text-align: center;
  border: 1px solid rgba(196,196,180,.25);
  box-shadow: 0 3px 14px rgba(44,40,37,.05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(115,81,71,.12); border-color: rgba(115,81,71,.25); }
.amenity-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(115,81,71,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.amenity-card:hover .amenity-icon { background: rgba(115,81,71,.15); }
.amenity-icon i { font-size: 1.3rem; color: var(--brand); }
.amenity-name { font-size: .72rem; font-family: 'Jost'; letter-spacing: .04em; color: var(--dark); line-height: 1.3; font-weight: 400; }

/* ── ROOM RULES — ROOM DETAIL ────────────────────────────── */
#rulesSection { padding: 4rem 0; background: var(--ecru); }
.rules-grid-2 {
  margin-top: 2rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem;
}
.rule-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.2rem;
  background: #fff; border-radius: 8px;
  border: 1px solid rgba(196,196,180,.25);
  box-shadow: 0 2px 10px rgba(44,40,37,.04);
  transition: box-shadow .3s;
}
.rule-item:hover { box-shadow: 0 6px 20px rgba(44,40,37,.08); }
.rule-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(115,81,71,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .05rem; }
.rule-icon i { font-size: 1rem; color: var(--brand); }
.rule-text h5 { font-family: 'Jost'; font-size: .74rem; font-weight: 500; color: var(--dark); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .2rem; }
.rule-text p  { font-size: .8rem; color: #7a756f; line-height: 1.65; font-weight: 300; }

/* ── CONTACT FORM — ROOM DETAIL ──────────────────────────── */
#contactSection { padding: 5rem 0; background: #ededde; }
.contact-form-wrap {
  background: #fff; border-radius: 12px; padding: 2.8rem 2.6rem;
  border: 1px solid rgba(196,196,180,.28);
  box-shadow: 0 8px 40px rgba(44,40,37,.08);
  max-width: 680px; margin: 0 auto;
}
.contact-form-wrap .section-title { margin-bottom: .5rem; }
.contact-form-wrap .title-rule    { margin-bottom: 2rem; }
.form-field { margin-bottom: 1.2rem; }
.form-label-custom { display: block; font-family: 'Jost'; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--napa); margin-bottom: .4rem; }
.form-control-custom {
  width: 100%; padding: .72rem .9rem;
  font-family: 'Jost'; font-size: .88rem; font-weight: 300; color: var(--dark);
  background: rgba(243,243,228,.45);
  border: 1.5px solid rgba(197,188,180,.45); border-radius: 4px;
  outline: none; transition: border-color .25s, background .25s;
}
.form-control-custom:focus { border-color: var(--brand); background: #fff; }
.form-control-custom::placeholder { color: rgba(110,102,96,.45); }
textarea.form-control-custom { resize: vertical; min-height: 120px; }
.btn-send {
  width: 100%; padding: .9rem;
  font-family: 'Jost'; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  background: var(--brand); color: var(--ecru); border: none; border-radius: 4px;
  cursor: pointer; transition: background .3s; margin-top: .4rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.btn-send:hover { background: var(--brand-dark); }
.btn-send i { font-size: 1rem; }

/* ── LIGHTBOX ────────────────────────────────────────────── */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(12,11,10,.94);
  backdrop-filter: blur(18px);
  align-items: center; justify-content: center;
  padding: 1.5rem; flex-direction: column;
}
#lightbox.open { display: flex; }
.lb-img-wrap { max-width: min(92vw, 1100px); max-height: 72vh; display: flex; align-items: center; justify-content: center; }
#lbImg { max-width: 100%; max-height: 72vh; object-fit: contain; border-radius: 6px; box-shadow: 0 40px 100px rgba(0,0,0,.55); transition: opacity .25s; }
#lbClose {
  position: fixed; top: 1.2rem; right: 1.4rem;
  background: rgba(243,243,228,.1); border: 1.5px solid rgba(243,243,228,.22);
  color: var(--ecru); border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.05rem; transition: background .2s; z-index: 10;
}
#lbClose:hover { background: rgba(115,81,71,.75); }
#lbPrev, #lbNext {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(243,243,228,.08); border: 1.5px solid rgba(243,243,228,.18);
  color: var(--ecru); border-radius: 50%; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
  transition: all .25s; backdrop-filter: blur(6px); z-index: 10;
}
#lbPrev { left: 1rem; } #lbNext { right: 1rem; }
#lbPrev:hover, #lbNext:hover { background: rgba(115,81,71,.75); border-color: rgba(115,81,71,.7); }
.lb-thumbs {
  display: flex; gap: .5rem; margin-top: 1rem;
  max-width: min(92vw, 900px); overflow-x: auto;
  padding-bottom: .2rem; scrollbar-width: none;
}
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumb-item { width: 68px; height: 44px; flex-shrink: 0; border-radius: 4px; overflow: hidden; cursor: pointer; opacity: .4; transition: opacity .25s; border: 2px solid transparent; }
.lb-thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.lb-thumb-item.active { opacity: 1; border-color: var(--brand); }
.lb-thumb-item:hover  { opacity: .75; }
#lbCounter { margin-top: .55rem; font-family: 'Jost'; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(243,243,228,.35); }

/* ── MODAL — SHARED ──────────────────────────────────────── */
.modal-content { border-radius: 6px; border: none; background: var(--ecru); }
.form-control, .form-select { border-radius: 2px !important; border-color: var(--tea) !important; font-size: .88rem; background: rgba(255,255,255,.7); }
.form-control:focus, .form-select:focus { box-shadow: none !important; border-color: var(--brand) !important; }
.form-label-sm { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--napa); margin-bottom: .35rem; display: block; }
.btn-modal {
  font-family: 'Jost', sans-serif; font-size: .73rem; letter-spacing: .16em; text-transform: uppercase;
  background: var(--brand); color: var(--ecru); border: none;
  padding: .8rem; border-radius: 2px; width: 100%; cursor: pointer; transition: all .3s;
}
.btn-modal:hover { background: var(--brand-dark); }


/* ── GUEST PRIVILEGES SECTION ────────────────────────────── */
.guest-privileges-section {
  padding: 6rem 0;
  background: #ededde;
}

.guest-privileges-header {
  margin-bottom: 3.5rem;
}

.guest-privileges-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.guest-privileges-title em {
  font-style: italic;
  color: var(--brand);
}

.guest-privileges-row {
  margin-top: 1rem;
}

.privilege-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.4rem 2rem;
  text-align: center;
  border: 1px solid rgba(196,196,180,.28);
  box-shadow: 0 4px 24px rgba(44,40,37,.06);
  height: 100%;
  transition: transform .34s, box-shadow .34s, border-color .34s;
}
.privilege-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(115,81,71,.14);
  border-color: rgba(115,81,71,.25);
}

.privilege-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(115,81,71,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
  transition: background .3s, transform .3s;
}
.privilege-card:hover .privilege-icon-wrap {
  background: var(--brand);
  transform: scale(1.08);
}

.privilege-icon-wrap i {
  font-size: 1.6rem;
  color: var(--brand);
  transition: color .3s;
}
.privilege-card:hover .privilege-icon-wrap i {
  color: var(--ecru);
}

.privilege-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: .8rem;
  line-height: 1.25;
}

.privilege-card-text {
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  color: #6a6560;
  line-height: 1.85;
  margin: 0;
}


/* ── FOOTER — SHARED ─────────────────────────────────────── */
#footer { background: var(--darker); padding: 5rem 0 2.5rem; }
#footer::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(to right, transparent, var(--brand), transparent);
  position: relative; top: -5rem; opacity: .5;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2rem; color: var(--ecru); margin-bottom: .8rem; font-weight: 300; }
.footer-logo img { width: 120px; height: auto; }
.footer-tagline { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--napa); margin-bottom: 1.8rem; }
.footer-heading { font-family: 'Jost', sans-serif; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--napa); margin-bottom: 1.2rem; }
.footer-text    { font-size: .86rem; color: rgba(243,243,228,.55); line-height: 1.85; font-weight: 300; }
.footer-link    { display: flex; align-items: center; gap: .6rem; font-size: .86rem; color: rgba(243,243,228,.55); margin-bottom: .7rem; font-weight: 300; transition: color .2s; cursor: pointer; }
.footer-link:hover { color: var(--ecru); }
.footer-link i  { color: var(--napa); font-size: 1rem; flex-shrink: 0; }
.social-row     { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(174,164,149,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--tea); font-size: 1rem; transition: all .3s; cursor: pointer;
}
.social-btn:hover     { background: var(--brand); border-color: var(--brand); color: var(--ecru); transform: translateY(-3px); }
.social-btn.wa:hover  { background: #25d366; border-color: #25d366; }
.footer-divider { border-color: rgba(174,164,149,.1); margin: 3rem 0 2rem; }
.footer-bottom  { font-size: .73rem; color: rgba(255,255,255,.32); letter-spacing: .04em; }

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes chevronDrop {
  0%   { opacity: 0; transform: rotate(45deg) translate(-4px,-4px); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(4px,4px); }
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── PAGE-SPECIFIC STYLES ───────────────────────────────────── */

/* Banner */
.page-banner {
  margin-top: 85px;
  height: 52vh;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.page-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.page-banner:hover img { transform: scale(1.04); }
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,29,27,.65) 0%, rgba(30,29,27,.28) 55%, rgba(30,29,27,.7) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
}
.banner-eyebrow {
  font-family: 'Jost', sans-serif; font-size: .68rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--tea); margin-bottom: .9rem;
}
.banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 300; color: var(--ecru); line-height: 1.05;
  margin-bottom: .4rem;
}
.banner-title em { font-style: italic; color: var(--tea); }
.banner-rule {
  width: 40px; height: 1.5px;
  background: rgba(243,243,228,.45); margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-row {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Jost'; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--napa); padding: 1.4rem 0;
  border-bottom: 1px solid rgba(174,164,149,.15);
  margin-bottom: 3.5rem;
}
.breadcrumb-row a { color: var(--napa); transition: color .2s; }
.breadcrumb-row a:hover { color: var(--brand); }
.breadcrumb-row span { opacity: .45; }

/* Intro section */
.intro-section { padding: 5rem 0; background: var(--ecru); }

.rest-logo-img { height: 56px; width: auto; margin-bottom: 1.4rem; }

.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300; color: var(--dark); line-height: 1.1;
  margin-bottom: 1.4rem;
}
.intro-title em { font-style: italic; color: var(--napa); }

.intro-text {
  font-family: 'Jost'; font-size: .93rem;
  font-weight: 300; line-height: 1.95; color: #6a6560;
  margin-bottom: 1.1rem;
}

/* Quick-info chips */
.info-chips {
  display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem;
}
.info-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: 'Jost'; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--dark);
  background: #fff; border: 1.5px solid rgba(196,196,180,.4);
  border-radius: 40px; padding: .45rem 1rem;
  transition: border-color .3s, color .3s;
}
.info-chip i { color: var(--brand); font-size: .9rem; }
.info-chip:hover { border-color: var(--brand); color: var(--brand); }

/* Side image */
.intro-img-wrap {
  border-radius: 12px; overflow: hidden;
  height: 460px; position: relative;
  box-shadow: 0 20px 60px rgba(44,40,37,.13);
}
.intro-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .6s;
}
.intro-img-wrap:hover img { transform: scale(1.04); }
.intro-img-accent {
  position: absolute; bottom: -16px; left: -16px;
  width: 110px; height: 110px; border-radius: 4px;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--ecru); font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: .8rem; text-align: center;
  padding: 1rem; line-height: 1.5; z-index: 5;
}

/* CTA buttons for restaurant */
.rest-cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-brand-solid {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Jost'; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--brand); color: var(--ecru);
  border: none; border-radius: 4px;
  padding: .78rem 1.5rem; cursor: pointer; transition: background .3s;
  text-decoration: none;
}
.btn-brand-solid:hover { background: var(--brand-dark); color: var(--ecru); }
.btn-brand-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Jost'; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dark); border: 1.5px solid rgba(42,40,37,.22);
  background: transparent; border-radius: 4px;
  padding: .78rem 1.5rem; cursor: pointer; transition: all .3s;
  text-decoration: none;
}
.btn-brand-outline:hover { border-color: var(--brand); color: var(--brand); }

/* ── HIGHLIGHTS SECTION ─────────────────────────────────── */
.highlights-section {
  padding: 5rem 0; background: #ededde;
}
.highlight-card {
  background: #fff; border-radius: 12px;
  padding: 2.2rem 1.8rem; text-align: center;
  border: 1px solid rgba(196,196,180,.28);
  box-shadow: 0 4px 24px rgba(44,40,37,.06);
  height: 100%;
  transition: transform .34s, box-shadow .34s, border-color .34s;
}
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(115,81,71,.13);
  border-color: rgba(115,81,71,.22);
}
.highlight-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(115,81,71,.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  transition: background .3s, transform .3s;
}
.highlight-card:hover .highlight-icon-wrap {
  background: var(--brand); transform: scale(1.08);
}
.highlight-icon-wrap i { font-size: 1.5rem; color: var(--brand); transition: color .3s; }
.highlight-card:hover .highlight-icon-wrap i { color: var(--ecru); }
.highlight-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--dark);
  margin-bottom: .7rem;
}
.highlight-card-text {
  font-family: 'Jost'; font-size: .85rem;
  font-weight: 300; color: #6a6560; line-height: 1.85;
}

/* ── MENU PREVIEW ───────────────────────────────────────── */
.menu-section { padding: 5.5rem 0; background: var(--ecru); }

.menu-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.menu-tab {
  font-family: 'Jost'; font-size: .7rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .5rem 1.2rem; border-radius: 40px;
  border: 1.5px solid rgba(196,196,180,.4);
  background: transparent; color: var(--napa);
  cursor: pointer; transition: all .3s;
}
.menu-tab.active,
.menu-tab:hover { background: var(--brand); color: var(--ecru); border-color: var(--brand); }

.menu-item {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(174,164,149,.15);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-left { flex: 1; }
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--dark);
  margin-bottom: .2rem;
}
.menu-item-desc {
  font-family: 'Jost'; font-size: .8rem;
  font-weight: 300; color: #7a756f; line-height: 1.6;
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 400; color: var(--brand);
  white-space: nowrap; padding-top: .15rem;
}

.menu-img-col { position: relative; }
.menu-img-wrap {
  border-radius: 10px; overflow: hidden; height: 420px;
  box-shadow: 0 12px 40px rgba(44,40,37,.12);
  position: sticky; top: 105px;
}
.menu-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.menu-img-wrap:hover img { transform: scale(1.04); }

/* ── GALLERY STRIP ──────────────────────────────────────── */
.gallery-section { padding: 5rem 0; background: #f3f3e4; }

.rest-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.rest-gallery-grid .g-item {
  border-radius: 8px; overflow: hidden; cursor: pointer; position: relative;
}
.rest-gallery-grid .g-item.tall {
  grid-row: span 2;
}
.rest-gallery-grid .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s;
  display: block;
}
.rest-gallery-grid .g-item:hover img { transform: scale(1.06); }
.g-item-overlay {
  position: absolute; inset: 0;
  background: rgba(30,29,27,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.rest-gallery-grid .g-item:hover .g-item-overlay { background: rgba(30,29,27,.22); }
.g-item-overlay i {
  font-size: 1.3rem; color: #fff;
  background: rgba(115,81,71,.78);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; backdrop-filter: blur(4px);
}
.rest-gallery-grid .g-item:hover .g-item-overlay i { opacity: 1; }

@media(max-width: 768px) {
  .rest-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .rest-gallery-grid .g-item.tall { grid-row: span 1; }
  .rest-gallery-grid .g-item { height: 180px; }
}
@media(max-width: 480px) {
  .rest-gallery-grid { grid-template-columns: 1fr; }
  .rest-gallery-grid .g-item { height: 220px; }
}

/* ── HOURS & LOCATION ───────────────────────────────────── */
.info-section { padding: 5rem 0; background: #ededde; }
.info-block {
  background: #fff; border-radius: 12px;
  padding: 2.2rem 2rem; height: 100%;
  border: 1px solid rgba(196,196,180,.28);
  box-shadow: 0 4px 24px rgba(44,40,37,.06);
}
.info-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400; color: var(--dark);
  margin-bottom: 1.2rem; padding-bottom: .8rem;
  border-bottom: 1px solid rgba(174,164,149,.18);
  display: flex; align-items: center; gap: .6rem;
}
.info-block-title i { color: var(--brand); font-size: 1.1rem; }

.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0; border-bottom: 1px solid rgba(196,196,180,.12);
  font-family: 'Jost'; font-size: .84rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--napa); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.hours-row .time { color: var(--dark); font-weight: 400; }
.hours-row .closed { color: var(--brand); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

.location-map {
  border-radius: 8px; overflow: hidden;
  height: 200px; margin-top: 1.4rem;
  background: #ededde; position: relative;
}
.location-map iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-family: 'Jost'; font-size: .86rem; color: #6a6560;
  font-weight: 300; padding: .5rem 0;
  border-bottom: 1px solid rgba(196,196,180,.12);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list li i { color: var(--brand); font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.contact-list a { color: #6a6560; transition: color .2s; }
.contact-list a:hover { color: var(--brand); }

/* ── LIGHTBOX ───────────────────────────────────────────── */
#restLightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(12,11,10,.94); backdrop-filter: blur(18px);
  align-items: center; justify-content: center;
  padding: 1.5rem; flex-direction: column;
}
#restLightbox.open { display: flex; }
.rlb-img-wrap { max-width: min(92vw, 1100px); max-height: 75vh; display: flex; align-items: center; }
#rlbImg { max-width: 100%; max-height: 75vh; object-fit: contain; border-radius: 6px; box-shadow: 0 40px 100px rgba(0,0,0,.55); animation: lbIn .3s ease; }
#rlbClose { position: fixed; top: 1.2rem; right: 1.4rem; background: rgba(243,243,228,.1); border: 1.5px solid rgba(243,243,228,.22); color: var(--ecru); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.05rem; transition: background .2s; z-index: 10; }
#rlbClose:hover { background: rgba(115,81,71,.75); }
#rlbPrev, #rlbNext { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(243,243,228,.08); border: 1.5px solid rgba(243,243,228,.18); color: var(--ecru); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; transition: all .25s; backdrop-filter: blur(6px); z-index: 10; }
#rlbPrev { left: 1rem; } #rlbNext { right: 1rem; }
#rlbPrev:hover, #rlbNext:hover { background: rgba(115,81,71,.75); border-color: rgba(115,81,71,.7); }
#rlbCounter { margin-top: .7rem; font-family: 'Jost'; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(243,243,228,.35); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width: 991px) {
  .intro-img-wrap { height: 300px; margin-top: 2rem; }
  .intro-img-accent { display: none; }
  .menu-img-wrap { height: 280px; position: static; margin-bottom: 2rem; }
  .menu-img-col { order: -1; }
}
@media(max-width: 576px) {
  .page-banner { height: 38vh; min-height: 260px; }
  .rest-cta-row { flex-direction: column; }
  .btn-brand-solid, .btn-brand-outline { width: 100%; justify-content: center; }
  .menu-tabs { gap: .4rem; }
}



/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .rest-content    { padding: 2rem 0 0; }
  .rest-img-wrap   { height: 320px; }
  .rest-accent     { display: none; }
  .desc-block      { padding-right: 0; margin-bottom: 2rem; }
}
@media (max-width: 600px) {
  .rules-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  #mainHeader         { padding: 0 1.2rem; }
  .btn-reservation    { display: none; }
  .hero-text          { padding: 1.5rem 70px; }
  .rooms-header       { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .rooms-header-arrows{ align-self: flex-end; }
  .gallery-thumb      { width: 80px; height: 54px; }
  .gallery-arrow      { width: 36px; height: 36px; font-size: .9rem; }
  .gallery-arrow.arrow-prev { left: 8px; }
  .gallery-arrow.arrow-next { right: 8px; }
  .contact-form-wrap  { padding: 2rem 1.4rem; }
}