:root {
  --ink: #0b110f;
  --ink-2: #121c18;
  --ink-3: #1a2822;
  --jade: #2f7a64;
  --jade-2: #49a584;
  --copper: #c4784a;
  --gold: #d4b483;
  --bone: #efe6d6;
  --mist: #b8c5bc;
  --line: rgba(212, 180, 131, 0.28);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 2px;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  background: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(47, 122, 100, 0.35), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(196, 120, 74, 0.18), transparent 32%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 11px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--jade-2);
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  left: 8px;
}

.spine {
  display: none;
}

.ticker {
  position: relative;
  z-index: 30;
  background: #08110e;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 36px;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: drift 38s linear infinite;
  padding: 8px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}

.ticker-track span {
  white-space: nowrap;
}

.ticker-track b {
  color: var(--gold);
  font-weight: 500;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
  padding: 10px 22px;
  background: rgba(11, 17, 15, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold);
  background: #16221d;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav a {
  color: var(--bone);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold);
}

.cta-pair {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-enter {
  background: var(--jade);
  color: #f4fff9;
  box-shadow: 0 0 0 0 rgba(73, 165, 132, 0.7);
  animation: pulse 1.8s ease-in-out infinite;
}

.btn-join {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn:hover {
  transform: translateY(-1px);
  color: #fff;
}

.btn-join:hover {
  background: #3a2a1c;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(73, 165, 132, 0.55); }
  50% { box-shadow: 0 0 0 10px rgba(73, 165, 132, 0); }
}

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--bone);
  width: 44px;
  height: 44px;
}

.launch-bar {
  position: relative;
  z-index: 39;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 16px;
  background: #101814;
  border-bottom: 1px solid var(--line);
}

.launch-bar .btn {
  min-height: 48px;
  font-size: 15px;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide.is-on {
  opacity: 1;
}

.slide picture,
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  animation: driftzoom 18s ease-in-out infinite alternate;
}

@keyframes driftzoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 17, 15, 0.2), rgba(11, 17, 15, 0.88) 78%),
    linear-gradient(90deg, rgba(11, 17, 15, 0.7), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 48px 22px 56px;
  width: min(760px, 100%);
}

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jade-2);
}

.hero h1,
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.08;
  margin: 10px 0 16px;
}

.lede {
  font-size: 18px;
  color: var(--mist);
  max-width: 54ch;
}

.slide-dots {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slide-dots button {
  width: 28px;
  height: 4px;
  border: 0;
  background: rgba(239, 230, 214, 0.28);
  cursor: pointer;
}

.slide-dots button.is-on {
  background: var(--gold);
}

.address-slab {
  margin: -42px auto 48px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 22px;
  position: relative;
  z-index: 2;
}

.address-slab::before {
  content: "MÜHÜR";
  position: absolute;
  top: -11px;
  left: 18px;
  background: var(--ink-2);
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 0 8px;
}

.address-slab p {
  margin: 0 0 8px;
  color: var(--mist);
}

.address-slab a.current {
  font-family: var(--mono);
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--gold);
  word-break: break-all;
}

.section {
  padding: 56px 0;
}

.section h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  margin: 0 0 12px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.2fr 0.8fr; }

.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 20px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 12px 0 8px;
}

.card p {
  color: var(--mist);
  margin-top: 0;
}

.meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
}

.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  padding: 40px 0 72px;
}

.prose h2,
.prose h3 {
  font-family: var(--serif);
  font-weight: 500;
}

.prose h2 { font-size: 34px; margin-top: 42px; }
.prose h3 { font-size: 24px; margin-top: 28px; }

.prose p {
  color: #ddd4c4;
}

.prose p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 58px;
  float: left;
  line-height: 0.8;
  padding: 8px 10px 0 0;
  color: var(--gold);
}

.prose ul,
.prose ol {
  color: #ddd4c4;
  padding-left: 20px;
}

.aside {
  position: sticky;
  top: 108px;
  align-self: start;
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--ink-2);
}

.aside h2 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 10px;
}

.crumbs {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 22px 0 0;
}

.crumbs a { color: var(--mist); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }

.page-hero {
  padding: 36px 0 10px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.review-box,
.event-box {
  border: 1px solid var(--line);
  padding: 18px;
  background: #16221d;
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
}

.wave {
  height: 28px;
  overflow: hidden;
}

.wave svg {
  width: 200%;
  animation: wave 9s linear infinite;
}

@keyframes wave {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 110px;
  color: var(--mist);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.legal {
  margin-top: 22px;
  font-size: 13px;
}

.mobile-cta {
  display: none;
}

.lang-switch {
  display: flex;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
}

.lang-switch a {
  color: var(--mist);
  text-decoration: none;
}

.lang-switch a[aria-current="true"] {
  color: var(--gold);
}

@media (max-width: 1120px) {
  .nav {
    display: none;
    position: absolute;
    top: calc(36px + var(--header-h));
    left: 0;
    right: 0;
    background: #101814;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px;
    align-items: flex-start;
  }

  .nav.is-open { display: flex; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 980px) {
  .grid-3,
  .grid-2,
  .article,
  .footer-grid,
  .address-slab {
    grid-template-columns: 1fr;
  }

  .site-header { padding: 8px 12px; }
}

@media (max-width: 720px) {
  .cta-pair { display: none; }

  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(8, 14, 12, 0.94);
    border-top: 1px solid var(--line);
  }
}

@media (min-width: 1200px) {
  .spine {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 46px;
    z-index: 35;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--gold);
    border-right: 1px solid var(--line);
    background: #0d1613;
  }

  body { padding-left: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
