/* ============================================
   OBA RESTORAN — Editorial Heritage Stylesheet
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --bosphorus: #1a3641;
  --bosphorus-deep: #122830;
  --parchment: #f4ead8;
  --parchment-warm: #faf6ee;
  --gold: #b08d4a;
  --gold-soft: #c9a468;
  --charcoal: #2d2d2d;
  --charcoal-soft: #4a4a4a;
  --line: rgba(176, 141, 74, 0.3);
  --shadow: rgba(26, 54, 65, 0.12);

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;
  --space-9: 12rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 880px;
  --container-text: 640px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--parchment-warm);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.25s ease; }
a:hover { opacity: 0.7; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2rem); }
h4 { font-size: 1.25rem; font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
  font-weight: 300;
}

/* --- Layout helpers --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.container-text {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
section { padding: var(--space-7) 0; }
@media (min-width: 768px) {
  .container, .container-narrow, .container-text {
    padding: 0 var(--space-4);
  }
  section { padding: var(--space-8) 0; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-3) 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-2) 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 44px;
  transition: opacity 0.25s ease;
}
.nav__logo img {
  height: 100%;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.nav__logo .logo--top { display: block; }
.nav__logo .logo--scrolled { display: none; }
.nav.scrolled .nav__logo { height: 38px; }
.nav.scrolled .nav__logo .logo--top { display: none; }
.nav.scrolled .nav__logo .logo--scrolled { display: block; }
@media (max-width: 768px) {
  .nav__logo { height: 34px; }
  .nav.scrolled .nav__logo { height: 30px; }
}
@media (max-width: 480px) {
  .nav__logo { height: 30px; }
  .nav.scrolled .nav__logo { height: 28px; }
}
.nav__menu {
  display: none;
  align-items: center;
  gap: var(--space-4);
}
.nav__menu a {
  font-size: 0.92rem;
  color: var(--parchment-warm);
  letter-spacing: 0.02em;
  position: relative;
}
.nav.scrolled .nav__menu a { color: var(--charcoal); }
.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav__menu a:hover { opacity: 1; }
.nav__menu a:hover::after { width: 100%; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.lang-switch {
  display: flex;
  gap: 0;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--parchment-warm);
}
.nav.scrolled .lang-switch { color: var(--charcoal); }
.lang-switch a {
  padding: 0 0.4rem;
  opacity: 0.6;
}
.lang-switch a.active {
  opacity: 1;
  color: var(--gold);
}
.lang-switch span {
  opacity: 0.4;
}
.nav__cta {
  display: none;
  background: var(--gold);
  color: var(--parchment-warm);
  padding: 0.7rem 1.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav__cta:hover {
  background: var(--bosphorus);
  opacity: 1;
  transform: translateY(-1px);
}
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--parchment-warm);
  transition: background 0.25s ease, transform 0.3s ease;
}
.nav.scrolled .nav__burger span { background: var(--charcoal); }
@media (min-width: 1024px) {
  .nav__menu, .nav__cta { display: flex; }
  .nav__burger { display: none; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bosphorus);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--parchment-warm);
}
.mobile-menu .lang-switch {
  margin-top: var(--space-4);
  font-size: 0.9rem;
}

/* ============================================
   HERO — Yatay full-bleed
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 var(--space-7);
  color: var(--parchment-warm);
  overflow: hidden;
  background: var(--bosphorus-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Full-bleed: poster ve video tüm alanı kaplar */
.hero__bg picture,
.hero__bg .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__bg img,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobil: kompozisyonun en güçlü kısmı sağda (teras + restoran) — sağa hafif kaydır */
@media (max-width: 767px) {
  .hero__bg img {
    object-position: 70% center;
  }
  /* RTL'de H1 sağda olduğu için sol tarafa kaydır (dark zemin H1 altında) */
  [dir="rtl"] .hero__bg img {
    object-position: 30% center;
  }
}

/* Subtle Ken Burns zoom on poster */
.hero__bg picture img {
  animation: heroZoom 24s ease-out infinite alternate;
}

/* Hide empty video element until source files exist */
.hero__video:not([src]) {
  visibility: hidden;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* Overlay: gradient kombinasyonu — üstte hafif karartma (nav okunması için),
   metin tarafına doğru güçlü karartma (eyebrow + H1 okunması için).
   LTR: sol tarafta karartma · RTL: sağ tarafta karartma
*/
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,22,28,0.5) 0%, rgba(10,22,28,0.1) 20%, rgba(10,22,28,0.15) 45%, rgba(10,22,28,0.7) 78%, rgba(10,22,28,0.92) 100%),
    linear-gradient(90deg, rgba(10,22,28,0.5) 0%, rgba(10,22,28,0.1) 45%, rgba(10,22,28,0) 100%);
}
[dir="rtl"] .hero__overlay {
  background:
    linear-gradient(180deg, rgba(10,22,28,0.5) 0%, rgba(10,22,28,0.1) 20%, rgba(10,22,28,0.15) 45%, rgba(10,22,28,0.7) 78%, rgba(10,22,28,0.92) 100%),
    linear-gradient(270deg, rgba(10,22,28,0.65) 0%, rgba(10,22,28,0.25) 35%, rgba(10,22,28,0) 70%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .hero__inner {
    padding: 0 var(--space-4);
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}
.hero__heading {
  max-width: 760px;
}
.hero__eyebrow {
  color: var(--gold-soft);
  margin-bottom: var(--space-3);
  opacity: 0;
  animation: fadeUp 1.1s 0.2s ease-out forwards;
}
.hero__eyebrow::before { background: var(--gold-soft); }
.hero__title {
  color: var(--parchment-warm);
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin-bottom: var(--space-3);
  opacity: 0;
  animation: fadeUp 1.1s 0.4s ease-out forwards;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}
.hero__subtitle {
  color: rgba(244, 234, 216, 0.85);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  font-weight: 300;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 1.1s 0.6s ease-out forwards;
}
.hero__meta {
  align-self: end;
  text-align: right;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 234, 216, 0.7);
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1.1s 0.8s ease-out forwards;
}
.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-soft);
  font-feature-settings: "lnum";
}
.hero__scroll {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 234, 216, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 32px;
  background: rgba(244, 234, 216, 0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   STORY / HERITAGE
   ============================================ */
.story {
  background: var(--parchment-warm);
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
  position: relative;
}
.story::before {
  content: "OBA";
  position: absolute;
  top: 5%;
  right: -3vw;
  font-family: var(--font-display);
  font-size: clamp(12rem, 28vw, 26rem);
  font-weight: 300;
  color: var(--parchment);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.story__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .story__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: center;
  }
}
.story__visual {
  position: relative;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px var(--shadow);
}
.story__visual::after {
  content: "EST. 1975";
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--parchment-warm);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  z-index: 2;
}
.story__visual img,
.story__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story__visual img {
  filter: sepia(0.08) saturate(0.9);
}
@media (max-width: 600px) {
  .story__visual { max-width: 320px; }
}
.story__text h2 {
  margin-bottom: var(--space-3);
  font-weight: 300;
}
.story__text h2 em {
  font-style: italic;
  color: var(--gold);
}
.story__text p {
  margin-bottom: var(--space-3);
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}
.story__text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  margin: 0.4rem 0.6rem 0 -0.1rem;
  color: var(--gold);
  font-weight: 400;
}
.story__pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--bosphorus);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: var(--space-4) 0;
}

/* ============================================
   REASONS — 6 KART
   ============================================ */
.reasons {
  background: var(--bosphorus);
  color: var(--parchment-warm);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
}
.reasons::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(176, 141, 74, 0.08), transparent 60%);
  pointer-events: none;
}
.reasons__header {
  text-align: center;
  margin-bottom: var(--space-7);
  position: relative;
  z-index: 1;
}
.reasons__header .eyebrow {
  color: var(--gold-soft);
  justify-content: center;
}
.reasons__header .eyebrow::before { background: var(--gold-soft); }
.reasons__header h2 {
  color: var(--parchment-warm);
  font-weight: 300;
  margin-top: var(--space-2);
}
.reasons__header h2 em {
  font-style: italic;
  color: var(--gold-soft);
}
.reasons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(244, 234, 216, 0.1);
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .reasons__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .reasons__grid { grid-template-columns: 1fr 1fr 1fr; }
}
.reason {
  background: var(--bosphorus);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: background 0.3s ease;
  position: relative;
}
.reason:hover {
  background: var(--bosphorus-deep);
}
.reason__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-soft);
  font-feature-settings: "lnum";
  letter-spacing: 0.1em;
  font-weight: 400;
}
.reason__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--parchment-warm);
}
.reason__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(244, 234, 216, 0.7);
  margin-top: auto;
  padding-top: var(--space-2);
}

/* ============================================
   HOURS — Editorial table
   ============================================ */
.hours {
  background: var(--parchment-warm);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.hours__header {
  text-align: center;
  margin-bottom: var(--space-6);
}
.hours__header .eyebrow {
  justify-content: center;
}
.hours__header h2 {
  margin-top: var(--space-2);
  font-weight: 300;
}
.hours__header h2 em {
  font-style: italic;
  color: var(--gold);
}
.hours__sub {
  margin-top: var(--space-2);
  color: var(--charcoal-soft);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hours__list {
  max-width: 880px;
  margin: 0 auto;
}
.hour-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
@media (min-width: 768px) {
  .hour-row {
    grid-template-columns: auto 1fr auto;
    gap: var(--space-5);
  }
}
.hour-row:first-child { border-top: 1px solid var(--line); }
.hour-row__time {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--bosphorus);
  font-feature-settings: "lnum", "tnum";
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hour-row__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
}
.hour-row__desc {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  line-height: 1.5;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews {
  background: var(--parchment);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  text-align: center;
}
.reviews__count {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  font-feature-settings: "lnum";
  letter-spacing: -0.03em;
}
.reviews__label {
  margin-top: var(--space-2);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
  text-align: left;
}
@media (min-width: 768px) {
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
}
.review {
  background: var(--parchment-warm);
  padding: var(--space-4);
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px var(--shadow);
}
.review__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: var(--space-3);
}
.review__author {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.review__author::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--parchment-warm);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.faq__header {
  text-align: center;
  margin-bottom: var(--space-6);
}
.faq__header .eyebrow { justify-content: center; }
.faq__header h2 {
  margin-top: var(--space-2);
  font-weight: 300;
}
.faq__header h2 em {
  font-style: italic;
  color: var(--gold);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  padding: var(--space-3) 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--bosphorus);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--gold); }
.faq-item__answer {
  padding: 0 0 var(--space-3);
  color: var(--charcoal-soft);
  line-height: 1.65;
  max-width: 600px;
}

/* ============================================
   CONTACT / VISIT US
   ============================================ */
.visit {
  background: var(--bosphorus);
  color: var(--parchment-warm);
  padding-top: var(--space-8);
  padding-bottom: 0;
}
.visit__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 1024px) {
  .visit__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: start;
  }
}
.visit__content { padding-bottom: var(--space-7); }
.visit__content .eyebrow { color: var(--gold-soft); }
.visit__content .eyebrow::before { background: var(--gold-soft); }
.visit__content h2 {
  color: var(--parchment-warm);
  margin-top: var(--space-2);
  margin-bottom: var(--space-4);
  font-weight: 300;
}
.visit__content h2 em {
  font-style: italic;
  color: var(--gold-soft);
}
.contact-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(244, 234, 216, 0.15);
  align-items: baseline;
}
.contact-item__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  white-space: nowrap;
}
.contact-item__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--parchment-warm);
  line-height: 1.4;
}
.contact-item__value a { color: var(--parchment-warm); }
.visit__map {
  position: relative;
  min-height: 480px;
  width: 100%;
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(0.4) contrast(0.95);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bosphorus-deep);
  color: rgba(244, 234, 216, 0.7);
  padding: var(--space-5) 0;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-bottom: var(--space-2);
}
.footer__brand img {
  height: 100%;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .footer__brand { height: 44px; }
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(244, 234, 216, 0.7);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.footer__social {
  margin: var(--space-3) 0;
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 234, 216, 0.2);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}
.footer__copy {
  font-size: 0.75rem;
  opacity: 0.6;
  letter-spacing: 0.1em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--parchment-warm);
}
.btn--gold:hover {
  background: var(--bosphorus);
  opacity: 1;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--parchment-warm);
  border: 1px solid rgba(244, 234, 216, 0.4);
}
.btn--ghost:hover {
  background: var(--parchment-warm);
  color: var(--bosphorus);
  border-color: var(--parchment-warm);
  opacity: 1;
}
.btn--dark {
  background: var(--bosphorus);
  color: var(--parchment-warm);
}
.btn--dark:hover {
  background: var(--gold);
  opacity: 1;
  transform: translateY(-1px);
}
.hero__buttons {
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.1s 0.8s ease-out forwards;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RTL — Arabic
   ============================================ */
[dir="rtl"] {
  font-family: var(--font-arabic);
}
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
  font-family: var(--font-arabic);
  font-weight: 500;
  line-height: 1.4;
}
[dir="rtl"] .eyebrow::before { margin-right: 0; }
[dir="rtl"] .reason__num,
[dir="rtl"] .hour-row__time,
[dir="rtl"] .reviews__count,
[dir="rtl"] .hero__meta strong {
  font-family: var(--font-display);
}
[dir="rtl"] .story__visual::after { left: -20px; right: auto; }
[dir="rtl"] .story::before { right: auto; left: -3vw; }
[dir="rtl"] .review__author::before {
  margin-left: 8px;
  margin-right: 0;
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
::selection {
  background: var(--gold);
  color: var(--parchment-warm);
}
