:root {
  --ink: #17120e;
  --muted: #685d54;
  --line: #e7dfd7;
  --paper: #fffdf9;
  --soft: #f6efe7;
  --gold: #c9963a;
  --green: #167a57;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(12, 9, 6, .92);
  color: #fff;
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

nav a,
.languages a {
  text-decoration: none;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 700;
}

nav a.active,
nav a:hover,
.languages a.active,
.languages a:hover { color: var(--gold); }

.languages {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero,
.page-hero {
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: 96px clamp(18px, 8vw, 112px) 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,6,3,.82), rgba(8,6,3,.52), rgba(8,6,3,.2)),
    var(--hero) center/cover;
}

.page-hero { min-height: 54vh; }

.hero > div,
.page-hero > div {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

.page-hero h1 { font-size: clamp(34px, 5vw, 62px); }

.hero p,
.page-hero p {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255,255,255,.88);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 7px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.button.secondary {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.38);
}

.section,
.trust,
.article,
.contact-layout {
  padding: 72px clamp(18px, 7vw, 96px);
}

.section h2,
.trust h2,
.article h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tour-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(80, 55, 30, .08);
}

.tour-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.tour-card > div { padding: 20px; }

.tour-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.tour-card p,
.article p,
.contact-layout p { color: var(--muted); }

dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 12px;
  margin: 16px 0;
  font-size: 14px;
}

dt { font-weight: 800; }
dd { margin: 0; color: var(--muted); }

.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.trust {
  background: var(--soft);
}

.trust ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  font-weight: 800;
}

.article {
  max-width: 920px;
  margin: 0 auto;
}

.article h2 { margin-top: 38px; }

.cta-band {
  margin: 42px 0;
  padding: 28px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}

details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8cfc6;
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(201, 150, 58, .25);
  border-color: var(--gold);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 36px clamp(18px, 7vw, 96px) 92px;
  color: rgba(255,255,255,.72);
  background: #080604;
}

.footer p { margin: 6px 0 0; }
.footer a { display: block; color: var(--gold); text-decoration: none; font-weight: 800; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: #080604;
}

.sticky-cta a {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.sticky-cta a:first-child { background: #1fa463; }
.sticky-cta a:last-child { background: var(--gold); }

[dir="rtl"] .hero,
[dir="rtl"] .page-hero {
  background:
    linear-gradient(270deg, rgba(8,6,3,.82), rgba(8,6,3,.52), rgba(8,6,3,.2)),
    var(--hero) center/cover;
}

[dir="rtl"] dl { grid-template-columns: 1fr max-content; }

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .languages { flex-wrap: wrap; }
  .grid,
  .trust ul,
  .contact-layout,
  .footer { grid-template-columns: 1fr; }
  .hero { min-height: 76vh; }
}

@media (max-width: 640px) {
  h1 { font-size: 40px; }
  .page-hero h1 { font-size: 34px; }
  .hero,
  .page-hero { padding: 72px 18px 54px; }
  .section,
  .trust,
  .article,
  .contact-layout { padding: 50px 18px; }
  .sticky-cta { display: grid; }
}
