/* ============================================================
   THE TERSANE — style.css
   Karaköy · İstanbul — parchment / gold / ink design system
   Cinzel (display) · EB Garamond (body) · monospace (meta)
   Icon-free, fully responsive: mobile · tablet · desktop
   ============================================================ */

:root {
  /* Surfaces */
  --parchment: #F2E1C8;
  --parchment-2: #EAD6B4;
  --cream-hi: #FBF0DB;
  --field-bg: #FBF4E4;
  --ink: #17130C;
  --ink-2: #1F1810;
  --ink-3: #16120A;

  /* Gold + accents */
  --gold: #9C7734;        /* borders, rules, large display accents */
  --gold-lt: #C99B54;     /* small text on DARK surfaces, hovers */
  --gold-text: #6E5326;   /* small gold text on LIGHT surfaces (WCAG AA) */
  --gold-pale: #EAD6AC;
  --gold-deep: #7A6230;

  /* Text */
  --text: #4A4030;
  --text-dk: #2C2413;
  --text-mute: #6E5326;   /* small secondary text on LIGHT surfaces (AA) */
  --text-cream: #C6B48B;
  --text-cream-hi: #E9D6AC;
  --foot-meta: #A08D62;   /* small meta text on the dark footer (AA on ink-3) */

  /* Lines */
  --line: #C9AE7A;
  --line-2: #DAC094;
  --line-3: #D8BE8E;
  --line-dk: #3A2E17;

  --wa: #25D366;

  --f-display: 'Cinzel', Georgia, 'Times New Roman', serif;
  --f-body: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --f-mono: ui-monospace, 'SF Mono', 'Menlo', 'Consolas', monospace;

  --nav-h: 66px;
  --maxw: 1180px;
  --radius: 3px;
  --shadow-card: 0 18px 44px -26px rgba(58,38,12,.5);
  --shadow-soft: 0 10px 30px -18px rgba(58,38,12,.45);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--f-body);
  background: var(--parchment);
  color: var(--text);
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-text); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: #F6EAD3; }
input, select, textarea, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: #8A7A56; opacity: 1; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
main:focus { outline: none; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 1000;
  background: var(--ink); color: var(--gold-pale);
  padding: 10px 18px; border-radius: var(--radius);
  font-family: var(--f-display); font-size: .8rem; letter-spacing: .12em;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }

/* ---------- Sections & headings ---------- */
.section { padding: clamp(58px, 8vw, 116px) 0; position: relative; content-visibility: auto; contain-intrinsic-size: auto 720px; }
.sec-head { display: flex; flex-direction: column; gap: 14px; max-width: 700px; }
.sec-head.center { text-align: center; align-items: center; margin-inline: auto; }
.eyebrow {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(11px, 1.4vw, 12.5px); letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold-text);
}
.eyebrow.gold { color: var(--gold-lt); }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; color: var(--ink); line-height: 1.12; }
.section h2 { font-size: clamp(28px, 4.2vw, 52px); margin: 0; }
.sec-sub { font-size: clamp(16px, 1.5vw, 20px); color: #4A3B1E; margin: 0; max-width: 660px; }
.sec-head.center .sec-sub { margin-inline: auto; }
.italic { font-family: var(--f-body); font-style: italic; }
.rule { width: 62px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 4px auto; position: relative; }
.rule.left { margin: 4px 0; background: linear-gradient(90deg, var(--gold), transparent); }
.rule::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 7px; height: 7px; background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.rule.left::after { left: 4px; }

/* On-dark helpers */
.on-dark { color: #F1E2C8 !important; }
.on-dark-sub { color: #C4B187 !important; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold); --fg: var(--ink); --bd: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bd); border-radius: var(--radius);
  font-family: var(--f-display); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; font-size: 12px; line-height: 1;
  padding: 14px 26px; cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold { --bg: var(--gold); --fg: var(--ink); --bd: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: var(--ink); }
.btn-outline { --bg: transparent; --fg: #3A2E16; --bd: var(--gold); font-weight: 600; }
.btn-outline:hover { background: rgba(156,119,52,.12); color: var(--ink); }
.btn-ink { --bg: var(--ink); --fg: var(--gold-pale); --bd: var(--ink); }
.btn-ink:hover { background: #2A2213; color: var(--gold-lt); }
.btn-ghost-gold { --bg: transparent; --fg: var(--text-cream-hi); --bd: var(--gold-deep); font-weight: 600; }
.btn-ghost-gold:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-wa { --bg: #22C35E; --fg: #fff; --bd: #22C35E; font-weight: 700; box-shadow: 0 8px 22px -10px rgba(34,195,94,.5); }
.btn-wa:hover { background: #1DAE53; border-color: #1DAE53; color: #fff; box-shadow: 0 11px 26px -10px rgba(34,195,94,.6); }
.wa-ico { width: 1.15em; height: 1.15em; flex: none; }
.btn-sm { padding: 11px 20px; font-size: 11px; }
.btn-lg { padding: 16px 32px; font-size: 12.5px; }
.btn-block { width: 100%; }
.wa-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 3px rgba(37,211,102,.28); flex: none; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: rgba(21,17,10,.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(156,119,52,.42);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(21,17,10,.97); box-shadow: 0 8px 30px -18px rgba(0,0,0,.7); }
.nav-inner {
  max-width: 1320px; margin-inline: auto; height: var(--nav-h);
  padding-inline: clamp(16px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.1; gap: 3px; }
.brand-txt b { font-family: var(--f-display); font-weight: 700; font-size: 17px; letter-spacing: .24em; color: var(--gold-pale); white-space: nowrap; }
.brand-txt span { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .28em; text-transform: uppercase; color: #B39A6C; }
.nav-links { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 26px); }
.nav-links a {
  font-family: var(--f-display); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: #DBC6A0; white-space: nowrap;
}
.nav-links a:hover { color: #F2D999; }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px; min-height: 40px;
  background: transparent; border: 1px solid rgba(156,119,52,.55);
  color: var(--gold-pale); font-weight: 600;
  font-size: 12px; letter-spacing: .08em; padding: 8px 12px; border-radius: var(--radius);
}
.lang-btn:hover { border-color: var(--gold-lt); color: #F2D999; }
.lang-btn #langCurCode { font-family: var(--f-mono); }
.lang-btn .caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; opacity: .7; }
.lang-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0; width: 250px; max-height: 340px;
  overflow-y: auto; background: #FBF4E4; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 20px 50px -20px rgba(0,0,0,.5);
  padding: 8px; display: none; z-index: 300;
}
.lang-dropdown.active { display: block; }
.lang-search {
  width: 100%; padding: 10px 11px; margin-bottom: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 16px; color: var(--text-dk);
}
.lang-option {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  background: transparent; border: 0; border-radius: var(--radius);
  padding: 10px; font-size: 15px; color: var(--text-dk);
}
.lang-option:hover, .lang-option.active { background: rgba(156,119,52,.14); }
.lang-option.active { box-shadow: inset 2px 0 0 var(--gold); }
.lang-option .native { flex: 1; }
.lang-option .code { font-family: var(--f-mono); font-size: 11px; color: var(--gold-text); letter-spacing: .06em; border: 1px solid var(--line); border-radius: 2px; padding: 2px 6px; }

/* Hamburger toggle */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 0 9px;
  background: transparent; border: 1px solid rgba(156,119,52,.55); border-radius: var(--radius);
}
.nav-toggle span { display: block; width: 100%; height: 1.5px; background: var(--gold-pale); border-radius: 2px; }

/* Mobile menu */
.scrim { position: fixed; inset: 0; background: rgba(10,8,4,.6); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 400; }
.scrim.active { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 340px);
  background: var(--ink); border-left: 1px solid var(--line-dk);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.5,0,.2,1);
  z-index: 500; display: flex; flex-direction: column; padding: 22px; overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mm-head .brand-txt b { color: var(--gold-pale); font-family: var(--f-display); font-weight: 700; font-size: 17px; letter-spacing: .24em; }
.mm-close { background: transparent; border: 1px solid var(--line-dk); color: var(--gold-pale); width: 40px; height: 40px; border-radius: var(--radius); font-size: 17px; line-height: 1; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--f-display); font-size: 15px; letter-spacing: .1em; text-transform: uppercase;
  color: #DBC6A0; padding: 15px 4px; border-bottom: 1px solid rgba(58,46,23,.6);
}
.mobile-menu nav a:hover { color: #F2D999; }
.mm-cta { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--nav-h) + 60px) clamp(20px, 6vw, 60px) 90px;
  background: var(--parchment);
  box-shadow: inset 0 -150px 130px -70px rgba(84,56,18,.16), inset 0 130px 120px -80px rgba(255,251,242,.55);
}
.hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -54%);
  width: min(760px, 96vw); height: min(560px, 72vh);
  background: radial-gradient(closest-side, var(--cream-hi) 0%, rgba(251,240,219,0) 72%);
  pointer-events: none;
}
.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; max-width: 820px; }
.hero-kicker { font-family: var(--f-display); font-weight: 600; font-size: clamp(11px, 1.5vw, 13.5px); letter-spacing: .42em; text-transform: uppercase; color: var(--gold-text); margin: 0; }
.hero-title { display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 0; }
.hero-logo { width: min(460px, 82vw); height: auto; margin: 2px auto 0; display: block; }
.hero-mark { font-family: var(--f-display); font-weight: 900; letter-spacing: .1em; font-size: clamp(40px, 9vw, 104px); color: var(--ink); line-height: .96; }
.hero-place { font-family: var(--f-mono); font-size: clamp(10px, 1.5vw, 13px); letter-spacing: .34em; text-transform: uppercase; color: #977B4C; }
.hero-quote { font-family: var(--f-body); font-style: italic; font-size: clamp(18px, 2.4vw, 27px); color: #514021; max-width: 640px; line-height: 1.5; margin: 0; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.hero-coords { margin-top: 12px; font-family: var(--f-mono); font-size: clamp(10px, 1.4vw, 12px); letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); }
.hero-scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 9px; }
.hero-scroll span:first-child { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-text); }
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--gold), rgba(156,119,52,0)); animation: tersaneBob 2.2s ease-in-out infinite; }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); border-block: 1px solid var(--line-dk); overflow: hidden; white-space: nowrap; padding: 13px 0; }
.marquee-track { display: inline-flex; animation: tersaneMarquee 40s linear infinite; will-change: transform; }
.marquee-set { display: inline-flex; align-items: center; }
.marquee-set em { font-family: var(--f-display); font-style: normal; font-size: 12.5px; letter-spacing: .26em; text-transform: uppercase; color: #C0985C; }
.marquee-set b { color: #7A5E30; margin: 0 22px; font-weight: 400; }

/* ---------- Booking bar ---------- */
.booking-wrap { background: var(--parchment); padding: clamp(34px, 5vw, 54px) clamp(20px, 5vw, 56px) 0; position: relative; z-index: 10; }
.booking-card {
  max-width: var(--maxw); margin-inline: auto;
  background: var(--ink); border: 1px solid var(--line-dk); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 18px clamp(16px, 2.4vw, 26px);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr auto; gap: 16px; align-items: end;
}
.bf { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.bf > label { font-family: var(--f-display); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lt); }
.field {
  display: flex; align-items: center; gap: 9px;
  background: var(--field-bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 12px; transition: border-color .2s ease, box-shadow .2s ease;
}
.field:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(156,119,52,.18); }
.field.area { align-items: flex-start; }
.field input, .field select, .field textarea {
  flex: 1; min-width: 0; width: 100%; border: 0; background: transparent;
  padding: 12px 0; font-size: 16px; color: var(--text-dk);
}
.field select { cursor: pointer; }
.field textarea { resize: vertical; padding-top: 12px; }
.field :focus { outline: none; }
.booking-card .btn-wa { height: 47px; }

/* ---------- About ---------- */
.about { background: var(--parchment); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.about-copy { display: flex; flex-direction: column; gap: 20px; }
.about-copy .lead { font-family: var(--f-body); font-style: italic; font-size: clamp(18px, 1.7vw, 22px); color: #514021; }
.about-copy p { margin: 0; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.8; color: var(--text); }
.about-stats { display: flex; flex-wrap: wrap; gap: 26px 34px; border-top: 1px solid var(--line-3); padding-top: 20px; margin-top: 4px; }
.astat { display: flex; flex-direction: column; gap: 5px; }
.astat-l { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-text); }
.astat b { font-family: var(--f-display); font-weight: 600; font-size: 18px; color: var(--ink); }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius); }
.stamp {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--ink); color: var(--gold-pale); border: 1px solid var(--gold-deep);
  padding: 12px 18px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-soft);
}
.stamp b { display: block; font-family: var(--f-display); font-size: 15px; letter-spacing: .22em; color: var(--gold-pale); }
.stamp span { font-family: var(--f-mono); font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: #B39A6C; }

/* ---------- Venues ---------- */
.venues { background: var(--parchment); }
.venue-list { margin-top: clamp(30px, 4vw, 54px); }
.venue-row {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 64px); align-items: center;
  padding: clamp(34px, 5vw, 60px) 0; border-top: 1px solid var(--line-2);
}
.venue-row.rev .venue-copy { order: 2; }
.venue-copy { display: flex; flex-direction: column; gap: 15px; align-items: flex-start; }
.venue-idx { display: flex; align-items: baseline; gap: 14px; }
.venue-idx .num { font-family: var(--f-display); font-weight: 600; font-size: 16px; letter-spacing: .08em; color: var(--gold-text); }
.venue-idx .kicker { font-family: var(--f-display); font-weight: 600; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-text); }
.venue-copy h3 { font-size: clamp(24px, 3vw, 38px); margin: 0; }
.venue-copy p { margin: 0; font-size: clamp(16px, 1.3vw, 18px); line-height: 1.78; color: var(--text); }
.venue-meta { display: flex; flex-wrap: wrap; gap: 26px; border-block: 1px solid var(--line-3); padding: 13px 0; }
.venue-meta div { display: flex; flex-direction: column; gap: 4px; }
.venue-meta span { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-text); }
.venue-meta b { font-family: var(--f-body); font-weight: 500; font-size: 16px; color: #3A2E16; }
.venue-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-text); border: 1px solid var(--line); padding: 6px 12px; border-radius: 2px; }

/* ---------- Rooms ---------- */
.rooms { background: var(--parchment-2); }
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 3vw, 36px); margin-top: clamp(26px, 3.5vw, 44px); }
.room-card { background: var(--field-bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.room-figure { position: relative; }
.room-figure img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.room-badge { position: absolute; top: 14px; left: 14px; background: var(--ink); color: var(--gold-pale); font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .08em; padding: 6px 12px; border-radius: 2px; }
.room-view { position: absolute; top: 14px; right: 14px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-text); background: rgba(251,244,228,.92); padding: 6px 10px; border-radius: 2px; }
.room-body { display: flex; flex-direction: column; gap: 12px; padding: clamp(20px, 2.6vw, 30px); flex: 1; }
.room-cat { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); }
.room-body h3 { font-size: clamp(20px, 2.2vw, 27px); margin: 0; }
.room-desc { margin: 0; font-size: 16px; line-height: 1.7; color: var(--text); }
.room-feats { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; padding: 14px 0; border-top: 1px solid var(--line-3); margin: 0; }
.room-feats li { position: relative; padding-left: 16px; font-size: 14.5px; color: #3A2E16; }
.room-feats li::before { content: "\2014"; position: absolute; left: 0; color: var(--gold-text); }
.room-foot { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

/* Room features / specifications */
.spec-head { margin-top: clamp(46px, 6vw, 74px); }
.spec-panel { background: var(--field-bg); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 34px); box-shadow: var(--shadow-soft); margin-top: clamp(22px, 3vw, 36px); }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(24px, 4vw, 56px); margin: 0; }
.spec-row { display: grid; grid-template-columns: minmax(110px, 34%) 1fr; gap: 16px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line-3); }
.spec-row dt { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-text); }
.spec-row dd { margin: 0; font-family: var(--f-body); font-size: 16.5px; line-height: 1.4; color: var(--text-dk); }
.spec-note { margin: 20px 0 0; text-align: center; font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; color: var(--text-mute); }

/* ---------- Roadmap (dark) ---------- */
.roadmap { background: var(--ink); }
.roadmap .eyebrow { color: var(--gold-lt); }
.roadmap h2 { color: #F1E2C8; }
.roadmap .sec-sub { color: #C4B187; }
.roadmap .rule::after { background: var(--gold); }
.road { list-style: none; margin: clamp(34px, 4.5vw, 58px) 0 0; padding: 0; position: relative; }
.road::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 1px; background: linear-gradient(var(--gold-deep), rgba(122,98,48,.15)); }
.road-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding-bottom: 26px; }
.road-step:last-child { padding-bottom: 0; }
.road-dot { width: 54px; height: 54px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--ink-2); border: 1px solid var(--gold-deep); color: var(--gold-lt); position: relative; z-index: 1; }
.road-dot span { font-family: var(--f-display); font-weight: 700; font-size: 20px; }
.road-card { background: var(--ink-2); border: 1px solid var(--line-dk); border-radius: var(--radius); padding: 20px 24px; position: relative; }
.road-time { font-family: var(--f-mono); font-size: 12px; letter-spacing: .16em; color: var(--gold-lt); }
.road-card h3 { color: #F1E2C8; font-size: clamp(19px, 2vw, 24px); margin: 6px 0 8px; }
.road-card p { margin: 0; font-size: 16px; line-height: 1.7; color: #C4B187; }
.road-where { display: inline-block; margin-top: 12px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lt); border-top: 1px solid var(--line-dk); padding-top: 10px; }
.road-cta { text-align: center; margin-top: clamp(30px, 4vw, 48px); }

/* ---------- Menu ---------- */
.menu { background: var(--parchment-2); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(30px, 4vw, 60px); margin-top: clamp(30px, 4.5vw, 54px); }
.menu-col { display: flex; flex-direction: column; gap: 4px; }
.menu-cat { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.menu-cat span:first-child { font-family: var(--f-display); font-weight: 600; font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.menu-line { flex: 1; height: 1px; background: #C7AC79; }
.menu-item { display: flex; align-items: baseline; gap: 8px; padding: 9px 0; }
.mi-name { font-family: var(--f-body); font-size: 17px; color: var(--text-dk); }
.mi-dots { flex: 1; border-bottom: 1px dotted #A98D57; transform: translateY(-3px); min-width: 20px; }
.mi-price { font-family: var(--f-display); font-weight: 600; font-size: 14px; color: var(--gold-text); white-space: nowrap; }
.menu-note { text-align: center; margin: clamp(28px, 3.5vw, 44px) 0 0; font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- Occasions (dark) ---------- */
.occasions { background: var(--ink); }
.occasions .rule::after { background: var(--gold); }
.occ-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(20px, 2.4vw, 28px); margin-top: clamp(34px, 4.5vw, 58px); }
.occ-card { background: var(--ink-2); border: 1px solid var(--line-dk); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.occ-media { aspect-ratio: 3/2; overflow: hidden; border-bottom: 1px solid var(--line-dk); }
.occ-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.occ-card:hover .occ-media img { transform: scale(1.05); }
.occ-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; align-items: flex-start; }
.occ-kicker { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); }
.occ-body h3 { color: #F1E2C8; font-size: clamp(20px, 2vw, 25px); margin: 0; }
.occ-body p { margin: 0; font-size: 16px; line-height: 1.7; color: #C4B187; flex: 1; }
.occ-foot { margin-top: clamp(30px, 4vw, 48px); text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; border-top: 1px solid #322718; padding-top: clamp(28px, 3.5vw, 44px); }
.occ-foot p { font-size: clamp(17px, 1.6vw, 22px); margin: 0; }

/* ---------- What's on ---------- */
.whatson { background: var(--parchment); }
.wo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 238px), 1fr)); gap: clamp(16px, 2vw, 24px); margin-top: clamp(34px, 4.5vw, 58px); }
.wo-card { background: var(--parchment-2); border: 1px solid #D3B885; border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; min-height: 210px; }
.wo-when { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); }
.wo-card h3 { font-size: 23px; margin: 2px 0 0; }
.wo-card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--text); flex: 1; }
.wo-where { font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); border-top: 1px solid #D3B885; padding-top: 12px; }
.wo-link { background: transparent; border: 0; text-align: left; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-text); border-top: 1px solid #D3B885; padding: 12px 0 0; }
.wo-link:hover { color: var(--gold); }

/* ---------- Gallery (dark) ---------- */
.gallery { background: var(--ink); }
.gallery .rule::after { background: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); grid-auto-rows: 190px; grid-auto-flow: dense; gap: 12px; margin-top: clamp(30px, 4vw, 52px); }
.g-item { position: relative; padding: 0; border: 1px solid #4A3A1B; border-radius: 2px; overflow: hidden; background: #201a10; cursor: zoom-in; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s ease; }
.g-item:hover img { transform: scale(1.06); filter: brightness(1.05); }
.g-item.wide { grid-column: span 2; }
.g-item.tall { grid-row: span 2; }

/* ---------- Istanbul ---------- */
.istanbul { background: var(--parchment); }
.ist-sub { font-size: clamp(18px, 2.2vw, 26px); color: var(--ink); margin: clamp(30px, 4vw, 48px) 0 18px; display: flex; align-items: center; gap: 14px; }
.ist-sub::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
.ist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(14px, 2vw, 22px); }
.ist-card { background: var(--field-bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ist-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.ist-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.ist-top h4 { font-size: 19px; margin: 0; color: var(--ink); }
.ist-top .dist { flex: none; font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; color: var(--gold-text); background: rgba(156,119,52,.12); padding: 4px 9px; border-radius: 2px; }
.ist-card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--text); }

/* ---------- Reservation (dark) ---------- */
.reserve { background: var(--ink); }
.reserve-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 68px); align-items: start; }
.reserve-intro { display: flex; flex-direction: column; gap: 18px; }
.reserve-intro .rule { margin-left: 0; }
.reserve-intro .rule::after { background: var(--gold); }
.res-assure { display: flex; align-items: center; gap: 11px; border-top: 1px solid #322718; padding-top: 20px; margin-top: 4px; color: #D8C7A0; font-size: 16px; }
.res-lines { display: flex; flex-direction: column; gap: 13px; }
.res-lines a, .res-lines > span { display: flex; flex-direction: column; gap: 2px; color: var(--text-cream-hi); font-size: 16px; }
.res-lines .rl-k { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); }
.res-lines a:hover { color: #F2D999; }
.reserve-form { background: var(--parchment); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; box-shadow: var(--shadow-card); }
.fg { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.fg.full { grid-column: span 2; }
.fg > label { font-family: var(--f-display); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #7A5E28; }
.reserve-form .btn-block { grid-column: 1 / -1; }
.res-note { grid-column: span 2; margin: 2px 0 0; font-family: var(--f-mono); font-size: 10.5px; line-height: 1.5; letter-spacing: .03em; color: var(--text-mute); text-align: center; }

/* ---------- Contact ---------- */
.contact { background: var(--parchment-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 52px); align-items: stretch; margin-top: clamp(24px, 3vw, 40px); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.ci-block { display: flex; flex-direction: column; gap: 6px; }
.ci-label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); }
.ci-value { font-family: var(--f-body); font-size: 17px; line-height: 1.55; color: var(--text-dk); }
a.ci-value:hover { color: var(--gold); }
.ci-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.map-container { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 320px; background: repeating-linear-gradient(135deg, #E5D0AB, #E5D0AB 16px, #DEC79E 16px, #DEC79E 32px); }
.map-container iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-3); color: var(--text-cream); padding: clamp(48px, 6vw, 80px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 60px); }
.footer-about { display: flex; flex-direction: column; gap: 14px; }
.footer-brand { display: flex; flex-direction: column; gap: 5px; }
.footer-brand b { font-family: var(--f-display); font-weight: 700; font-size: 22px; letter-spacing: .22em; color: var(--text-cream-hi); }
.footer-brand span { font-family: var(--f-mono); font-size: 9px; letter-spacing: .3em; color: var(--foot-meta); }
.footer-about p { font-family: var(--f-body); font-style: italic; font-size: 16px; line-height: 1.6; color: #B0A075; max-width: 320px; margin: 0; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.social-row a { font-family: var(--f-display); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-pale); border: 1px solid var(--line-dk); padding: 9px 15px; border-radius: 2px; }
.social-row a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { font-family: var(--f-display); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 4px; }
.footer-col a, .foot-line { font-family: var(--f-body); font-size: 16px; color: var(--text-cream); }
.footer-col a:hover { color: #F2D999; }
.foot-line { display: block; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; border-top: 1px solid #2A2113; margin-top: clamp(30px, 4vw, 48px); padding-top: 22px; }
.footer-bottom > span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .08em; color: var(--foot-meta); }
.foot-coords { letter-spacing: .14em !important; }
.langflags { display: flex; flex-wrap: wrap; gap: 6px; max-width: 380px; }
.foot-lang { background: transparent; border: 1px solid var(--line-dk); color: var(--text-cream); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .06em; padding: 7px 9px; line-height: 1; border-radius: 2px; min-width: 34px; text-align: center; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.foot-lang:hover { color: var(--ink); background: var(--gold-pale); border-color: var(--gold-pale); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 350;
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--wa); color: #fff; border-radius: 50%;
  box-shadow: 0 10px 28px -8px rgba(37,211,102,.6);
  animation: tersaneBob 3s ease-in-out infinite;
}
.wa-float:hover { background: #1fb457; color: #fff; }
.wa-float svg { width: 26px; height: 26px; }
.call-float {
  position: fixed; right: 20px; bottom: 86px; z-index: 350;
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--gold); color: var(--ink); border-radius: 50%;
  box-shadow: 0 10px 28px -10px rgba(122,98,48,.75); transition: background .2s ease, color .2s ease;
  animation: tersaneBob 2.6s ease-in-out .35s infinite;
}
.call-float:hover { background: var(--gold-lt); color: var(--ink); }
.call-float svg { width: 24px; height: 24px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 600; background: rgba(12,9,4,.94); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.active { display: flex; }
#lbImg { max-width: 92vw; max-height: 86vh; border: 1px solid var(--line-dk); border-radius: 2px; box-shadow: 0 30px 80px -20px #000; }
.lb-close, .lb-nav { position: absolute; background: rgba(28,22,12,.7); border: 1px solid var(--line-dk); color: var(--gold-pale); width: 50px; height: 50px; border-radius: 50%; font-size: 24px; line-height: 1; display: grid; place-items: center; }
.lb-close:hover, .lb-nav:hover { background: var(--gold); color: var(--ink); }
.lb-close { top: 24px; right: 24px; font-size: 20px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-nav.prev { left: 24px; }
.lb-nav.next { right: 24px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* ---------- Animations ---------- */
@keyframes tersaneMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tersaneBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 11px; letter-spacing: .1em; }
  .booking-card { grid-template-columns: 1fr 1fr; }
  .booking-card .btn-wa { grid-column: span 2; height: 50px; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 460px; }
  .venue-row, .venue-row.rev { grid-template-columns: 1fr; gap: 26px; }
  .venue-row.rev .venue-copy { order: 0; }
  .venue-media { order: -1; }
  .spec-grid { grid-template-columns: 1fr; }
  .reserve-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .section { padding: clamp(48px, 12vw, 80px) 0; }
  .rooms-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; gap: 26px; }
  .reserve-form { grid-template-columns: 1fr; }
  .fg.full, .res-note { grid-column: span 1; }
  .gallery-grid { grid-auto-rows: 150px; }
  .g-item.wide { grid-column: span 2; }
  .g-item.tall { grid-row: span 1; }
  .hero-mark { font-size: clamp(36px, 13vw, 66px); }
  .stamp { left: 12px; bottom: -14px; padding: 10px 14px; }
}
@media (max-width: 620px) {
  /* Declutter the bar so the language control never gets squeezed;
     the reservation CTA still lives in the mobile menu + floating button. */
  .nav-right > .btn-gold { display: none; }
  .nav-inner { gap: 10px; }
}
@media (max-width: 520px) {
  .booking-card { grid-template-columns: 1fr; }
  .booking-card .btn-wa { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item.wide { grid-column: span 2; }
  .room-feats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .call-float { width: 52px; height: 52px; right: 16px; bottom: 76px; }
  .lang-dropdown { width: min(84vw, 250px); }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .road-step { grid-template-columns: 44px 1fr; gap: 14px; }
  .road::before { left: 21px; }
  .road-dot { width: 42px; height: 42px; }
  .road-dot span { font-size: 16px; }
  [dir="rtl"] .road::before { right: 21px; left: auto; }
  [dir="rtl"] .road-step { grid-template-columns: 1fr 44px; }
  .lb-nav { width: 42px; height: 42px; font-size: 20px; }
  .lb-nav.prev { left: 10px; } .lb-nav.next { right: 10px; } .lb-close { top: 14px; right: 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- RTL (ar / fa / he) ---------- */
[dir="rtl"] .rule.left { background: linear-gradient(270deg, var(--gold), transparent); }
[dir="rtl"] .venue-copy, [dir="rtl"] .occ-body, [dir="rtl"] .reserve-intro { align-items: flex-start; text-align: right; }
[dir="rtl"] .road::before { left: auto; right: 27px; }
[dir="rtl"] .road-step { grid-template-columns: 1fr 56px; }
[dir="rtl"] .road-dot { order: 2; }
[dir="rtl"] .stamp { left: auto; right: -18px; }
[dir="rtl"] .wa-float { right: auto; left: 20px; }
[dir="rtl"] .call-float { right: auto; left: 20px; }
[dir="rtl"] .hero-coords, [dir="rtl"] .footer-bottom .foot-coords { direction: ltr; unicode-bidi: embed; }
@media (max-width: 720px) { [dir="rtl"] .stamp { right: 12px; left: auto; } }

/* ============================================================
   ADDED FEATURES — ribbon · offers · reviews · social · transport
   · FAQ · sticky mobile bar · cookie consent
   ============================================================ */

/* Direct-booking benefit ribbon */
.db-ribbon { background: var(--ink); border-bottom: 1px solid var(--line-dk); }
.db-ribbon-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 4vw, 52px); padding: 20px clamp(20px, 5vw, 56px); }
.db-badge { display: flex; flex-direction: column; gap: 3px; text-align: center; }
.db-badge b { font-family: var(--f-display); font-weight: 600; font-size: 13px; letter-spacing: .1em; color: var(--gold-pale); }
.db-badge span { font-family: var(--f-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--foot-meta); }

/* Offers / packages */
.offers { background: var(--parchment); }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: clamp(16px, 2vw, 24px); margin-top: clamp(30px, 4vw, 52px); }
.offer-card { position: relative; background: var(--field-bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; box-shadow: var(--shadow-soft); }
.offer-tag { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: var(--gold-pale); border: 1px solid var(--gold); padding: 5px 11px; border-radius: 2px; }
.offer-card h3 { font-size: 22px; margin: 2px 0 0; }
.offer-card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--text); flex: 1; }
.offers-note { text-align: center; margin-top: clamp(24px, 3vw, 38px); font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); }

/* Reviews & ratings */
.reviews { background: var(--parchment-2); }
.rv-score { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 54px); margin-top: clamp(24px, 3vw, 42px); }
.rv-num { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.rv-num b { font-family: var(--f-display); font-weight: 700; font-size: clamp(44px, 7vw, 72px); color: var(--ink); line-height: 1; }
.rv-stars { color: var(--gold); font-size: 20px; letter-spacing: 3px; }
.rv-of { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-text); }
.rv-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.rv-badges span { font-family: var(--f-body); font-size: 15px; color: var(--text-dk); border: 1px solid var(--line); border-radius: 2px; padding: 8px 14px; background: var(--field-bg); }
.rv-badges b { font-family: var(--f-display); font-size: 12px; letter-spacing: .06em; color: var(--gold-text); }
.rv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(16px, 2vw, 22px); margin-top: clamp(30px, 4vw, 48px); }
.rv-card { background: var(--field-bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.rv-card blockquote { margin: 0; font-family: var(--f-body); font-style: italic; font-size: 17px; line-height: 1.6; color: var(--text-dk); }
.rv-card figcaption { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-text); }

/* Instagram / social (dark) */
.social { background: var(--ink); }
.social .rule::after { background: var(--gold); }
.ig-cta { margin-top: 8px; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: clamp(28px, 4vw, 44px); }
.ig-item { aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line-dk); border-radius: 2px; display: block; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.ig-item:hover img { transform: scale(1.08); filter: brightness(1.08); }

/* Transport & airport */
.transport { background: var(--parchment-2); }
.trans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: clamp(16px, 2vw, 24px); margin-top: clamp(30px, 4vw, 48px); }
.trans-card { background: var(--field-bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 7px; align-items: flex-start; }
.trans-k { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); }
.trans-card b { font-family: var(--f-display); font-weight: 600; font-size: 19px; color: var(--ink); }
.trans-card p { margin: 4px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--text); }
.trans-card .btn { margin-top: 10px; }

/* FAQ (native accordion) */
.faq { background: var(--parchment); }
.faq-list { max-width: 820px; margin: clamp(28px, 4vw, 48px) auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--field-bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-family: var(--f-display); font-weight: 600; font-size: clamp(15px, 1.6vw, 18px); color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--f-body); font-size: 24px; line-height: 1; color: var(--gold-text); flex: none; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-a { padding: 0 22px 20px; font-size: 16px; line-height: 1.7; color: var(--text); }

/* Sticky mobile action bar (mobile only) */
.mobilebar { display: none; }
@media (max-width: 720px) {
  .mobilebar {
    display: grid; grid-template-columns: 1fr 1fr 1.35fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 360;
    background: rgba(21,17,10,.97); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--line-dk);
  }
  .mb-btn { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 14px 6px; font-family: var(--f-display); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-pale); border-right: 1px solid var(--line-dk); }
  .mb-btn:last-child { border-right: 0; }
  .mb-wa { color: #6EE7A0; }
  .mb-book { background: var(--gold); color: var(--ink); }
  .call-float, .wa-float { display: none; }   /* the bar replaces the floating buttons */
  body { padding-bottom: 54px; }
}

/* Cookie / KVKK consent */
.cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 700; background: var(--ink); border-top: 1px solid var(--gold-deep); padding: 16px clamp(20px, 5vw, 56px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; box-shadow: 0 -10px 30px -18px rgba(0,0,0,.6); }
.cookie[hidden] { display: none; }
.cookie-txt { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--text-cream); max-width: 760px; }
.cookie-txt a { color: var(--gold-lt); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
@media (max-width: 720px) { .cookie { bottom: 54px; } }
@media (max-width: 620px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 400px) { .cookie-actions { width: 100%; } .cookie-actions .btn { flex: 1; } }

/* Legal / KVKK page */
.legal-page { max-width: 900px; margin-inline: auto; padding-top: calc(var(--nav-h) + 44px); }
.legal-page h1 { font-size: clamp(28px, 4.4vw, 46px); margin: 12px 0 6px; }
.legal-meta { color: var(--text-mute); font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; margin: 6px 0 28px; }
.legal h2 { font-size: clamp(18px, 2.4vw, 24px); margin: 30px 0 8px; color: var(--ink); }
.legal p, .legal li { font-size: 16.5px; line-height: 1.75; color: var(--text); }
.legal ul { margin: 6px 0 0; padding-left: 22px; }
.legal a { color: var(--gold-text); text-decoration: underline; }
.legal-back { margin-top: 36px; }

/* ============================================================
   LUXURY REFINEMENTS (Peninsula-grade polish)
   ============================================================ */

/* Unhurried, graceful interactions */
.btn { transition: background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease, transform .3s cubic-bezier(.2,.7,.2,1); }
.btn-gold:hover, .btn-ink:hover, .btn-ghost-gold:hover, .btn-outline:hover, .btn-wa:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Elegant thin gold scrollbar */
* { scrollbar-width: thin; scrollbar-color: var(--gold-deep) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 10px; border: 3px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::-webkit-scrollbar-track { background: transparent; }

/* Refined card lift on hover */
.room-card, .offer-card, .rv-card, .trans-card, .wo-card, .occ-card, .ist-card { transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease, border-color .35s ease; }
.room-card:hover, .offer-card:hover, .trans-card:hover, .wo-card:hover, .rv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -30px rgba(58,38,12,.6);
  border-color: var(--gold);
}

/* Graceful venue image reveal */
.venue-media { overflow: hidden; border-radius: var(--radius); }
.venue-media img { transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.venue-row:hover .venue-media img { transform: scale(1.045); }

/* Slower, more cinematic zoom for photo grids */
.g-item img, .ig-item img, .occ-media img { transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s ease; }

/* Typographic finesse */
.section h2 { letter-spacing: .008em; }
.eyebrow { position: relative; }
.nav.scrolled { border-bottom-color: rgba(156,119,52,.55); }

/* Refined form focus */
.field:focus-within { box-shadow: 0 0 0 3px rgba(156,119,52,.16); }
.reserve-form, .booking-card, .room-card, .spec-panel { transition: box-shadow .4s ease; }

/* Softer, richer section dividers */
.venue-row { border-top-color: rgba(156,119,52,.28); }

@media (prefers-reduced-motion: reduce) {
  .venue-row:hover .venue-media img, .room-card:hover, .offer-card:hover, .trans-card:hover, .wo-card:hover, .rv-card:hover { transform: none; }
}

