:root {
  --pine: #10261c;
  --pine-2: #173226;
  --moss: #234233;
  --ink: #141814;
  --parchment: #f4ebda;
  --sheet: #fff8ec;
  --sand: #e7d7bc;
  --rust: #c24e1f;
  --rust-2: #9a3914;
  --brass: #c9a24a;
  --cream: #f8f1e2;
  --muted: #5c6358;
  --line: rgba(20, 24, 20, 0.12);
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Literata", "Palatino Linotype", Palatino, serif;
  --ui: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(16, 38, 28, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  background:
    radial-gradient(1200px 480px at 8% -10%, rgba(194, 78, 31, 0.08), transparent 50%),
    radial-gradient(900px 420px at 100% 0%, rgba(201, 162, 74, 0.12), transparent 46%),
    var(--parchment);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rust-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rust); }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  background: #fff;
  padding: 8px 12px;
  z-index: 80;
}

.ticker {
  background: var(--pine);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 3px solid var(--rust);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 38s linear infinite;
  padding: 10px 0;
}
.ticker-track span {
  padding: 0 28px;
  white-space: nowrap;
  color: #e8d9b4;
}
.ticker-track b { color: var(--brass); font-weight: 500; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cta-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 14px;
  background: #fff6e8;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-giris {
  background: var(--rust);
  color: #fff8ef;
  box-shadow: 0 8px 18px rgba(194, 78, 31, 0.28);
  animation: pulse 2.6s ease-in-out infinite;
}
.btn-giris:hover { background: var(--rust-2); color: #fff; }
.btn-uye {
  background: var(--pine);
  color: var(--cream);
}
.btn-uye:hover { background: var(--pine-2); color: #fff; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 18px rgba(194, 78, 31, 0.24); }
  50% { box-shadow: 0 8px 26px rgba(194, 78, 31, 0.42); }
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--ui);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
nav a {
  font-family: var(--ui);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
nav a[aria-current="page"],
nav a:hover { color: var(--rust); }

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-family: var(--ui);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0 12px;
}
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}
h1 {
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 62px);
  line-height: 0.98;
  margin: 0 0 16px;
  font-weight: 650;
  letter-spacing: -0.015em;
  word-spacing: 0.04em;
}
.lede {
  font-size: 1.08rem;
  max-width: 38ch;
  margin: 0 0 22px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.plate {
  background: var(--pine);
  color: var(--cream);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.plate::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border: 18px solid rgba(201, 162, 74, 0.16);
  border-radius: 50%;
}
.plate .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.plate strong {
  display: block;
  margin: 8px 0 14px;
  font-family: var(--display);
  font-size: 28px;
}
.address {
  background: rgba(255, 248, 236, 0.08);
  border: 1px dashed rgba(248, 241, 226, 0.28);
  border-radius: 12px;
  padding: 12px;
  font-family: var(--mono);
  font-size: 13px;
  word-break: break-all;
}

.slider {
  margin: 18px 0 8px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 240px;
  background: var(--pine-2);
}
.slide {
  display: none;
  min-height: 240px;
  padding: 34px 32px;
  color: var(--cream);
  position: relative;
}
.slide.is-on { display: block; animation: rise 0.45s ease; }
.slide h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  margin: 8px 0 10px;
  line-height: 1.05;
}
.slide p { max-width: 46ch; margin: 0; }
.s1 { background: linear-gradient(135deg, #10261c, #2a4a38 70%, #c24e1f); }
.s2 { background: linear-gradient(120deg, #173226, #3a2a18 62%, #c9a24a); }
.s3 { background: linear-gradient(160deg, #1b1410, #5a2614 58%, #c24e1f); }
.s4 { background: linear-gradient(140deg, #10261c, #214c3c 50%, #eadcc4 140%); color: #fff8ec; }
.dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: flex;
  gap: 6px;
}
.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.35);
}
.dots button.on { background: var(--brass); }

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.grid-3, .grid-2 {
  display: grid;
  gap: 16px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.2fr 0.8fr; }

.card, .paper, .faq details, .review-box, .event-card {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card {
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(var(--rust), var(--brass));
}
.card h3, .paper h2, .paper h3 {
  font-family: var(--display);
  line-height: 1.15;
  margin-top: 0;
}
.num {
  font-family: var(--mono);
  color: var(--rust);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.section { padding: 34px 0; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 8px;
}
.subhead { color: var(--muted); margin: 0 0 22px; }

.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
}
.prose p { margin: 0 0 16px; }
.prose h2, .prose h3 {
  font-family: var(--display);
  line-height: 1.2;
}
.prose h2 { font-size: 30px; margin: 32px 0 10px; }
.prose h3 { font-size: 22px; margin: 26px 0 8px; }
.drop::first-letter {
  font-family: var(--display);
  font-size: 58px;
  float: left;
  line-height: 0.8;
  padding: 8px 10px 0 0;
  color: var(--rust);
}
.aside {
  position: sticky;
  top: 86px;
  align-self: start;
}

.crumbs {
  font-family: var(--ui);
  font-size: 13px;
  color: var(--muted);
  padding: 10px 0 0;
}
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--rust); }

.faq details {
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-family: var(--ui);
  font-weight: 650;
}

.review-box {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
}
.score {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 6px solid var(--brass);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 36px;
  background: var(--pine);
  color: var(--cream);
}

.event-card time {
  font-family: var(--mono);
  color: var(--rust);
  font-size: 13px;
}

footer {
  margin-top: 20px;
  background: var(--pine);
  color: #e8dcc4;
  padding: 36px 0 90px;
}
footer a { color: #f3e6c8; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}
.fine {
  font-size: 13px;
  color: #c9bfa6;
}

.dock {
  display: none;
}

@media (max-width: 900px) {
  .hero, .grid-3, .grid-2, .article, .foot-grid, .review-box {
    grid-template-columns: 1fr;
  }
  nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: var(--sheet);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    flex-direction: column;
    z-index: 45;
    box-shadow: var(--shadow);
  }
  nav.open { display: flex; }
  .menu-btn { display: inline-flex; }
  .site-header { position: relative; }
  .aside { position: static; }
  .cta-rail { display: none; }
  .dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 50;
    padding: 8px;
    background: rgba(255, 248, 236, 0.94);
    border: 1px solid var(--line);
    border-radius: 16px;
    backdrop-filter: blur(8px);
  }
  footer { padding-bottom: 110px; }
  body { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track, .btn-giris, .slide.is-on { animation: none; }
}
