:root {
  --bg: #14100e;
  --bg-soft: #1d1714;
  --panel: rgba(255, 250, 245, 0.07);
  --panel-strong: rgba(255, 250, 245, 0.12);
  --text: #fff8ef;
  --muted: rgba(255, 248, 239, 0.7);
  --line: rgba(255, 248, 239, 0.16);
  --gold: #e9c78a;
  --gold-deep: #a77734;
  --rose: #d6a2a0;
  --cream: #fff1df;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-md: 22px;
  --container: min(1180px, calc(100vw - 36px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(233, 199, 138, 0.14), transparent 33%),
    radial-gradient(circle at 85% 20%, rgba(214, 162, 160, 0.13), transparent 28%),
    linear-gradient(135deg, #110d0b, #211916 55%, #120e0c);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.site-shell { overflow: hidden; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: var(--container);
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(20, 16, 14, 0.72);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 205px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff0c7 45%, var(--gold-deep));
  color: #1c130d;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand strong { display: block; letter-spacing: -0.03em; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 0.92rem; }
.nav a:hover { color: var(--cream); }
.language-switch { display: flex; align-items: center; gap: 6px; padding: 4px; background: rgba(255,255,255,0.06); border-radius: 999px; }
.lang-btn {
  border: 0;
  color: var(--muted);
  background: transparent;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}
.lang-btn.active { color: #1b120d; background: var(--gold); }

.section-pad { width: var(--container); margin: 0 auto; padding: 94px 0; }
.hero {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 86px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
h3 { font-size: 1.25rem; letter-spacing: -0.03em; }
.hero-text, .about-copy p, .section-heading p, .video-copy p, .booking-card p, .footer p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}
.hero-text { max-width: 620px; font-size: 1.17rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), #fff0c7 55%, var(--gold-deep)); color: #1b120d; }
.btn-ghost { border-color: var(--line); color: var(--cream); background: rgba(255,255,255,0.04); }
.hero-stats { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.hero-stats span { display: grid; gap: 4px; }
.hero-stats strong { font-size: 1.65rem; color: var(--gold); }
.hero-stats small { color: var(--muted); }
.hero-card {
  position: relative;
  padding: 13px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}
.hero-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 32px; }
.floating-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 16px 18px;
  background: rgba(20, 16, 14, 0.76);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(16px);
}
.floating-card span { color: var(--muted); display: block; font-size: .82rem; margin-bottom: 5px; }
.floating-card strong { color: var(--cream); }

.intro-strip {
  width: var(--container);
  margin: -20px auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--panel);
}
.intro-strip p {
  margin: 0;
  padding: 22px 18px;
  text-align: center;
  color: var(--cream);
  border-inline-end: 1px solid var(--line);
  font-weight: 800;
}
.intro-strip p:last-child { border-inline-end: 0; }

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.about-copy { border-inline-start: 1px solid var(--line); padding-inline-start: 42px; }
.text-link { color: var(--gold); font-weight: 900; border-bottom: 1px solid rgba(233,199,138,.35); }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.split-heading { max-width: unset; display: grid; grid-template-columns: 1fr 0.72fr; gap: 36px; align-items: end; }
.cards-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card, .product-card {
  position: relative;
  min-height: 278px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.service-card::before, .product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 0%, rgba(233,199,138,.22), transparent 35%);
  pointer-events: none;
}
.service-card > *, .product-card > * { position: relative; }
.service-card p, .product-card p { color: var(--muted); line-height: 1.7; }
.price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(233, 199, 138, .12);
  color: var(--gold);
  font-weight: 900;
}
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag { border: 1px solid var(--line); color: var(--muted); border-radius: 999px; padding: 7px 10px; font-size: .8rem; }

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(20,16,14,.66);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--cream);
  backdrop-filter: blur(14px);
  font-weight: 900;
}

.video-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 32px;
  align-items: center;
}
.video-frame {
  border-radius: 34px;
  border: 1px solid var(--line);
  padding: 10px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.video-frame video { width: 100%; max-height: 630px; border-radius: 26px; background: #000; object-fit: cover; }

.product-card {
  display: grid;
  align-content: space-between;
  min-height: 500px;
  padding: 18px;
}
.product-media {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(0,0,0,.18);
  aspect-ratio: 4 / 3;
}
.product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-copy { padding: 0 8px; }
.product-brand { color: var(--gold); font-weight: 900; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.product-actions { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-top: 24px; padding: 0 8px 6px; }
.product-actions .btn { min-height: 44px; padding: 0 16px; font-size: .9rem; }
.disclosure { color: var(--muted); margin: 22px 0 0; font-size: .92rem; }

.booking-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 0% 0%, rgba(233,199,138,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 800; }
.booking-form label:nth-child(4) { grid-column: 1 / -1; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  color: var(--cream);
  outline: none;
  padding: 13px 14px;
}
.booking-form option { color: #111; }
.booking-form textarea { resize: vertical; }
.booking-form .btn { justify-self: start; }
.booking-form small { color: var(--muted); align-self: center; }

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer p { margin: 8px 0 0; font-size: .95rem; }
.footer-links { display: flex; gap: 18px; color: var(--muted); }
.footer-links a:hover { color: var(--cream); }

html[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
html[dir="rtl"] h1, html[dir="rtl"] h2 { letter-spacing: -0.04em; }
html[dir="rtl"] .hero-card { transform: rotate(-1.4deg); }
html[dir="rtl"] .floating-card { text-align: right; }

@media (max-width: 980px) {
  .topbar { border-radius: 28px; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: center; gap: 14px; flex-wrap: wrap; }
  .hero, .about-grid, .split-heading, .video-section, .booking-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 60px; }
  .about-copy { border-inline-start: 0; padding-inline-start: 0; }
  .intro-strip { grid-template-columns: 1fr 1fr; }
  .cards-grid, .product-grid { grid-template-columns: 1fr 1fr; }
  .masonry-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --container: min(100vw - 24px, 1180px); }
  .section-pad { padding: 64px 0; }
  .brand { min-width: unset; }
  .brand small { display: none; }
  .language-switch { margin-inline-start: auto; }
  h1 { font-size: clamp(3rem, 18vw, 4.7rem); }
  .hero-card { border-radius: 30px; }
  .hero-card img { border-radius: 22px; }
  .floating-card { left: 22px; right: 22px; bottom: 22px; }
  .intro-strip, .cards-grid, .product-grid, .booking-form { grid-template-columns: 1fr; }
  .intro-strip p { border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .intro-strip p:last-child { border-bottom: 0; }
  .masonry-gallery { display: flex; overflow-x: auto; gap: 14px; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .gallery-item, .gallery-item.tall, .gallery-item.wide { min-width: 82%; height: 440px; grid-row: auto; grid-column: auto; scroll-snap-align: start; }
  .booking-form label:nth-child(4) { grid-column: auto; }
  .booking-card { padding: 22px; border-radius: 30px; }
  .footer { flex-direction: column; align-items: flex-start; }
}
