:root {
  --bg: #ffffff;
  --text: #201e1d;
  --accent: #c67139;
  --accent-dark: #a95c2b;
  --accent-press: #8e4c22;
  --line: rgba(32, 30, 29, 0.16);
  --radius: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
}

::selection { background: rgba(198, 113, 57, 0.22); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 26px 28px 64px;
}

/* ---------- social icon links ---------- */
.social {
  margin-top: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 17px;
}

.social a {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: color .2s ease;
}

.social a:hover { color: var(--accent); }

.social svg { width: 19px; height: 19px; }

/* ---------- burger menu ---------- */
.menu {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.burger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  padding: 0;
  border: none;
  background: none;
  color: var(--text);
  cursor: pointer;
  transition: color .2s ease;
}

.burger:hover,
.burger[aria-expanded="true"] { color: var(--accent); }

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.menu-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 12px 14px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(32, 30, 29, 0.12);
}

.menu-list[hidden] { display: none; }

.menu-list a {
  padding: 6px 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color .2s ease;
}

.menu-list a:hover { color: var(--accent); }

/* ---------- header ---------- */
.head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wordmark-ar {
  margin: 0 0 -0.1em;
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7.2vw, 78px);
  line-height: 1;
  transform-origin: center bottom;
}

.wordmark {
  margin: 0;
  font-family: 'Arial Black', 'Arial Bold', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 0.035em currentColor;
}

.tagline {
  margin: 14px 0 0;
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(32, 30, 29, 0.5);
}

/* ---------- slider ---------- */
.slider {
  position: relative;
  touch-action: pan-y;
  width: min(620px, 100%);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f2f2f2;
}

.track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 1100%;
  transform: translateX(0%);
  transition: transform 900ms cubic-bezier(.65, .02, .28, 1);
}

.track img { flex: none; width: 9.0909%; height: 100%; object-fit: cover; }

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
  opacity: 0.42;
  cursor: pointer;
  transition: opacity .4s ease;
}

.dot.is-active { opacity: 1; }

/* ---------- tour / contact text links ---------- */
.txt {
  padding: 19px 12px;
  border: none;
  background: none;
  color: var(--text);
  font: 600 12px/1 'Figtree', system-ui, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease;
}

.txt:hover { color: var(--accent); }
.txt[aria-expanded="true"] { color: var(--accent); }

/* ---------- panels ---------- */
.panel { width: min(620px, 100%); scroll-margin-top: 90px; }
#tour, #press, #merch, #diy, #about, #contact { padding: 12px 0 26px; }

.note {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(32, 30, 29, 0.65);
  text-wrap: pretty;
}

.booking {
  width: min(620px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 14px;
  line-height: 1.6;
}

.booking div { display: flex; flex-direction: column; }
.booking span { font-weight: 600; }
.booking a { color: var(--text); text-decoration: none; }
.booking a:hover { color: var(--accent); }
.panel[hidden] { display: none; }

.panel h2 {
  margin: 0 0 18px;
  font-family: 'Arial Black', 'Arial Bold', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dates { margin: 0; padding: 0; list-style: none; }

.dates li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 11px 0;
  border-top: 1px solid rgba(32, 30, 29, 0.09);
}

.dates .date {
  flex: none;
  width: 56px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.dates .venue { font-size: 14px; line-height: 1.45; text-wrap: pretty; }

/* ---------- contact form ---------- */
.contact { width: min(460px, 100%); }

.contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  padding: 11px 16px;
  border: 1px solid rgba(32, 30, 29, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font: 400 14px 'Figtree', system-ui, sans-serif;
}

.contact textarea {
  padding: 13px 16px;
  border-radius: var(--radius);
  resize: vertical;
}

.check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(32, 30, 29, 0.6);
  cursor: pointer;
}

.check input { width: 15px; height: 15px; margin: 0; accent-color: var(--accent); cursor: pointer; }

.btn-send {
  align-self: flex-start;
  margin-top: 2px;
  padding: 10px 26px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: 600 12px/1 'Figtree', system-ui, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}

.form-status {
  margin: 0;
  min-height: 18px;
  font-size: 13px;
  color: var(--accent);
}

.form-status.is-ok { color: #7a8a5e; }

.btn-send:disabled { opacity: .45; cursor: default; }

.btn-send:hover { background: var(--accent-dark); }
.btn-send:active { background: var(--accent-press); }

@media (max-width: 640px) {
  .social { gap: 2px; }
  .social a { width: 44px; height: 44px; }
}

@media (max-width: 520px) {
  .page { gap: 30px; padding: 22px 20px 44px; }
  .tagline { letter-spacing: 0.24em; font-size: 12px; }
}
