:root {
  --ink: #100e0c;
  --ink-2: #1b1714;
  --paper: #f4ebdd;
  --paper-2: #e8dcc8;
  --copper: #c45c2a;
  --copper-2: #e07a42;
  --verd: #1f6b5a;
  --verd-2: #2f8a74;
  --brass: #c9a55a;
  --mute: #9a8f80;
  --line: rgba(244, 235, 221, 0.14);
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  --ui: "Sora", "Segoe UI", sans-serif;
  --read: "Literata", "Georgia", serif;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(31, 107, 90, 0.18), transparent 32%),
    radial-gradient(circle at 8% 70%, rgba(196, 92, 42, 0.12), transparent 36%),
    repeating-linear-gradient(118deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 13px),
    var(--ink);
  color: var(--paper);
  font-family: var(--read);
  font-size: 1.12rem;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brass);
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  z-index: 90;
}
.skip:focus { left: 0.8rem; top: 0.8rem; }

.serit {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0c0a09;
  white-space: nowrap;
}
.serit-iz {
  display: inline-flex;
  gap: 2.4rem;
  padding: 0.55rem 0;
  animation: kay 28s linear infinite;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
}
.serit-iz span { display: inline-flex; align-items: center; gap: 0.7rem; }
.serit-iz b { color: var(--paper); font-weight: 600; }
@keyframes kay {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.levha-ust {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 4vw;
  background: rgba(16, 14, 12, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.marka {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.marka img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.marka strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}
.marka small {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}
.levha-nav {
  display: flex;
  gap: 1.1rem;
  font-family: var(--ui);
  font-size: 0.86rem;
}
.levha-nav a { text-decoration: none; color: var(--paper-2); }
.levha-nav a:hover { color: var(--brass); }
.cta-cift { display: flex; gap: 0.55rem; flex-shrink: 0; }
.nav-ac {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-bakir {
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: #fff8f2;
  box-shadow: 0 10px 24px rgba(196, 92, 42, 0.32);
}
.btn-oksit {
  background: transparent;
  border-color: var(--brass);
  color: var(--brass);
}
.btn-lg { min-height: 54px; padding: 0.7rem 1.5rem; font-size: 1rem; }
.pulse {
  animation: nabiz 1.8s ease-in-out infinite;
}
@keyframes nabiz {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 92, 42, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(196, 92, 42, 0); }
}

.sarim { width: min(1180px, 92vw); margin: 0 auto; }
.kahraman {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 3.2rem 0 2.4rem;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.8rem;
}
.kahraman h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}
.lead {
  font-size: 1.18rem;
  color: #ddd3c4;
  max-width: 38rem;
}
.hero-aksiyon { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.4rem 0 0.8rem; }
.uyari {
  font-size: 0.92rem;
  color: var(--mute);
  max-width: 36rem;
}

.kadran {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.halka, .halka-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(201, 165, 90, 0.35);
  animation: don 22s linear infinite;
}
.halka { width: 420px; height: 420px; }
.halka-2 {
  width: 340px;
  height: 340px;
  border-color: rgba(31, 107, 90, 0.45);
  animation-direction: reverse;
  animation-duration: 16s;
}
@keyframes don { to { transform: rotate(360deg); } }

.plaka {
  position: relative;
  z-index: 2;
  width: min(360px, 88vw);
  background: linear-gradient(180deg, #231e1a, #161310);
  border: 1px solid rgba(201, 165, 90, 0.4);
  border-radius: 22px;
  padding: 1.3rem 1.2rem 1.1rem;
  box-shadow: var(--shadow);
}
.plaka .damga {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--brass);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.plaka h2 {
  font-family: var(--display);
  font-size: 1.8rem;
  margin: 0.7rem 0 0.3rem;
}
.plaka p { margin: 0 0 0.8rem; color: var(--mute); font-size: 0.95rem; }

.slider { overflow: hidden; }
.iz { display: flex; transition: transform 0.45s ease; }
.slayt { min-width: 100%; }
.adres-kutu {
  background: #0e0c0a;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
}
.adres-kutu img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.7rem;
}
.adres-kutu small {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verd-2);
  margin-bottom: 0.35rem;
}
.adres-kutu strong {
  display: block;
  font-family: var(--ui);
  font-size: 1.02rem;
  margin-bottom: 0.8rem;
  word-break: break-word;
}
.noktalar { display: flex; justify-content: center; gap: 0.4rem; margin-top: 0.8rem; }
.noktalar button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #4a4036;
  padding: 0;
}
.noktalar button.on { background: var(--copper); }
.oklar { display: flex; justify-content: space-between; margin-top: 0.5rem; }
.oklar button {
  background: transparent;
  border: 0;
  color: var(--brass);
  font-size: 1.2rem;
}

.yongalar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
  margin: 0.4rem 0 2.4rem;
}
.yonga {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}
.yonga b { display: block; font-family: var(--ui); font-size: 1.15rem; }
.yonga span { color: var(--mute); font-size: 0.88rem; }

.kagit {
  background: var(--paper);
  color: #2a221c;
  border-radius: 28px 28px 0 0;
  padding: 3rem 0 5.5rem;
  box-shadow: 0 -20px 50px rgba(0,0,0,0.2);
}
.kagit h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}
.kagit .kicker { color: var(--verd); }
.adimlar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 2.6rem;
}
.adim {
  background: #fff9f0;
  border: 1px solid #e4d6c2;
  border-radius: 16px;
  padding: 1.1rem;
}
.adim em {
  font-family: var(--mono);
  font-style: normal;
  color: var(--copper);
  font-size: 0.82rem;
}
.adim h3 { font-family: var(--ui); margin: 0.4rem 0; font-size: 1.05rem; }
.adim p { margin: 0; color: #5c5146; }

.ray {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.6rem;
  margin-bottom: 2.4rem;
}
.kart {
  flex: 0 0 min(260px, 78vw);
  scroll-snap-align: start;
  background: #fff9f0;
  border: 1px solid #e4d6c2;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.kart img { height: 140px; object-fit: cover; width: 100%; }
.kart-govde { padding: 0.9rem 1rem 1.1rem; }
.kart h3 { font-family: var(--ui); margin: 0 0 0.35rem; font-size: 1.05rem; }
.kart p { margin: 0; color: #5c5146; font-size: 0.95rem; }

.uzun {
  margin: 0 0 2.8rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid #e0d2be;
}
.uzun img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 16px;
}
.meta {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a6d5d;
}
.uzun h2 { margin-top: 0.7rem; }
.uzun p { font-size: 1.08rem; }
.drop::first-letter {
  font-family: var(--display);
  font-size: 3.1rem;
  float: left;
  line-height: 0.85;
  padding: 0.12rem 0.45rem 0 0;
  color: var(--copper);
}

.yorum {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.2rem;
  background: #fff9f0;
  border: 1px solid #e4d6c2;
  border-radius: 18px;
  padding: 1.3rem;
  margin-bottom: 2.4rem;
}
.puan {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--copper);
}
.yildiz { color: var(--copper); letter-spacing: 0.12em; }

.etkinlik {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
  background: #161310;
  color: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 2.6rem;
}
.etkinlik img { height: 100%; min-height: 220px; object-fit: cover; }
.etkinlik-govde { padding: 1.4rem 1.4rem 1.4rem 0.4rem; }
.etkinlik h2 { color: var(--paper); }

.faq-item {
  border-bottom: 1px solid #e0d2be;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1rem 0;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 1.02rem;
  color: #2a221c;
}
.faq-item p { display: none; margin: 0 0 1rem; color: #5c5146; }
.faq-item.open p { display: block; }

.iz-ekmek {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 1.2rem;
}
.iz-ekmek a { color: var(--brass); text-decoration: none; }
.kagit .iz-ekmek, .kagit .iz-ekmek a { color: #7a6d5d; }

.dip {
  padding: 2.4rem 0 7.2rem;
  color: var(--mute);
  font-size: 0.95rem;
}
.dip-ust {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.diller { display: flex; gap: 0.8rem; font-family: var(--ui); }
.diller a { color: var(--brass); text-decoration: none; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.7rem 4vw calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(16, 14, 12, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

@media (max-width: 900px) {
  .kahraman, .yongalar, .adimlar, .yorum, .etkinlik {
    grid-template-columns: 1fr;
  }
  .etkinlik-govde { padding: 1.2rem; }
  .halka { width: 300px; height: 300px; }
  .halka-2 { width: 240px; height: 240px; }
  .kadran { min-height: 360px; }
  .levha-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #161310;
    flex-direction: column;
    padding: 0.8rem 4vw 1rem;
    border-bottom: 1px solid var(--line);
  }
  .levha-nav.acik { display: flex; }
  .nav-ac { display: inline-flex; align-items: center; justify-content: center; }
  .levha-ust .cta-cift { display: none; }
}

@media (min-width: 901px) {
  .dock { display: none; }
}
