/* Egebet kıyı defteri — özel iskelet, hazır tema yok */
:root {
  --ink: #07161a;
  --sea: #0c242b;
  --sea-2: #12333c;
  --foam: #f3e7cf;
  --sand: #d4b483;
  --coral: #e85d4c;
  --mint: #7ec8b3;
  --paper: #fff8ec;
  --line: rgba(212, 180, 131, 0.28);
  --shadow: 0 18px 40px rgba(4, 14, 16, 0.35);
  --radius: 18px;
  --header-h: 76px;
  --max: 1180px;
  --serif: "Fraunces", "Source Serif 4", Georgia, serif;
  --body: "Source Serif 4", Georgia, serif;
  --ui: "Outfit", "Segoe UI", sans-serif;
  --mono: "Share Tech Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--foam);
  background: var(--ink);
  min-height: 100%;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral);
}

p {
  margin: 0 0 1.05em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 0.55em;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  font-weight: 560;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 560;
}

h3 {
  font-size: 1.28rem;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.wavebar {
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--coral) 0 14px,
      var(--sand) 14px 28px,
      var(--mint) 28px 42px,
      var(--sea-2) 42px 56px
    );
  background-size: 220px 10px;
  animation: drift 18s linear infinite;
}

@keyframes drift {
  to {
    background-position: 220px 0;
  }
}

.ticker {
  display: flex;
  overflow: hidden;
  background: #081c21;
  border-bottom: 1px solid var(--line);
  color: var(--sand);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker__move {
  display: flex;
  gap: 42px;
  min-width: max-content;
  padding: 9px 0;
  animation: slide 28s linear infinite;
}

.ticker span {
  white-space: nowrap;
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 22, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-head__row {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.brand b {
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--sand);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__links a {
  font-family: var(--ui);
  font-size: 0.92rem;
  color: var(--foam);
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--sand);
}

.nav__cta {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}

.btn {
  font-family: var(--ui);
  font-weight: 700;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn--coral {
  background: var(--coral);
  color: #2a0b08;
  box-shadow: 0 0 0 0 rgba(232, 93, 76, 0.55);
  animation: pulse 2.2s ease-out infinite;
}

.btn--sand {
  background: var(--sand);
  color: #2a2113;
}

.btn--ghost {
  background: transparent;
  color: var(--foam);
  border: 1px solid var(--line);
}

.btn--xl {
  padding: 16px 26px;
  font-size: 1.05rem;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(232, 93, 76, 0);
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--foam);
}

.hero {
  position: relative;
  padding: 46px 0 20px;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(126, 200, 179, 0.16), transparent 60%),
    radial-gradient(700px 380px at 90% 10%, rgba(232, 93, 76, 0.14), transparent 55%),
    linear-gradient(180deg, #0a1d22, #07161a 78%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%2307161a' d='M0 40c120 30 240-20 360 0s240 40 360 10 240-50 360-20 240 50 360 20v40H0z'/%3E%3C/svg%3E")
    center bottom / 100% 90px no-repeat;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.kicker {
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.lede {
  font-size: 1.18rem;
  max-width: 40rem;
  color: #ead9b8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 8px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-family: var(--ui);
  font-size: 0.86rem;
  color: #c9b48d;
}

.compass {
  background:
    linear-gradient(160deg, #163943, #0d272e);
  border: 1px solid var(--line);
  border-radius: 28px 8px 28px 8px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
}

.compass::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(212, 180, 131, 0.35);
  border-radius: 20px 4px 20px 4px;
  pointer-events: none;
}

.compass h2 {
  font-size: 1.4rem;
}

.compass ol {
  margin: 0;
  padding-left: 1.1rem;
}

.compass li + li {
  margin-top: 8px;
}

.section {
  padding: 64px 0;
}

.section--paper {
  background: var(--paper);
  color: #2a2113;
}

.section--paper h2,
.section--paper h3,
.section--paper .pull {
  color: #1b140c;
}

.section--paper p,
.section--paper li {
  color: #3a2d1b;
}

.section--sea {
  background: var(--sea);
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 26px;
}

.tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ticket {
  background: #102b32;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px 20px;
  position: relative;
  overflow: hidden;
}

.ticket::after,
.ticket::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--ink);
  border-radius: 50%;
  top: 46%;
}

.ticket::before {
  left: -11px;
}

.ticket::after {
  right: -11px;
}

.ticket__stamp {
  font-family: var(--mono);
  color: var(--coral);
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.ticket__code {
  font-family: var(--ui);
  font-size: 0.78rem;
  color: var(--sand);
}

.ticket h3 {
  margin-top: 8px;
}

.ticket .btn {
  width: 100%;
  margin-top: 8px;
}

.prose {
  max-width: 74ch;
}

.prose h2 {
  margin-top: 1.4em;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.pull {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3;
  border-left: 4px solid var(--coral);
  padding-left: 16px;
  margin: 28px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}

.slider {
  position: relative;
}

.slider__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 14px;
  scrollbar-width: none;
}

.slider__track::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 min(78%, 320px);
  scroll-snap-align: start;
  background: #102b32;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 220px;
}

.section--paper .slide {
  background: #fff;
  border-color: #e6d3b0;
}

.slider__nav {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.1rem;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: inherit;
  font-family: var(--serif);
  font-size: 1.12rem;
  padding: 16px 0;
  cursor: pointer;
}

.faq__a {
  display: none;
  padding: 0 0 16px;
}

.faq__item.is-open .faq__a {
  display: block;
}

.review {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  background: #102b32;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}

.score {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--sand);
  line-height: 1;
}

.stars {
  color: var(--coral);
  letter-spacing: 2px;
}

.event {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #14343c, #0e282e);
}

.event__day {
  font-family: var(--serif);
  font-size: 2.4rem;
  text-align: center;
  color: var(--sand);
}

.crumbs {
  font-family: var(--ui);
  font-size: 0.86rem;
  color: #cbb892;
  margin: 18px 0 8px;
}

.crumbs a {
  color: inherit;
}

.site-head .lang-switch {
  margin-left: 8px;
}

.lang-switch {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--ui);
  font-size: 0.78rem;
}

.lang-switch a {
  color: #cbb892;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.lang-switch a[aria-current="true"] {
  color: var(--sand);
  border-color: var(--sand);
}

.site-foot {
  background: #061114;
  border-top: 1px solid var(--line);
  padding: 42px 0 110px;
  font-size: 0.95rem;
}

.site-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.legal {
  color: #b9a47c;
  font-size: 0.88rem;
}

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 22, 26, 0.94);
  border-top: 1px solid var(--line);
}

.dock .btn {
  flex: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.page-hero {
  padding: 28px 0 10px;
}

.toc {
  background: #102b32;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}

.toc a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  font-family: var(--ui);
}

@media (max-width: 900px) {
  .site-head .lang-switch {
    display: none;
  }

  .hero__grid,
  .grid-2,
  .tickets,
  .review,
  .event,
  .site-foot__grid {
    grid-template-columns: 1fr;
  }

  .nav__links {
    display: none;
    position: fixed;
    inset: calc(var(--header-h) + 34px) 0 0;
    background: #081c21;
    flex-direction: column;
    padding: 24px 20px 120px;
    overflow: auto;
    z-index: 25;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav__cta {
    display: none;
  }

  .dock {
    display: flex;
  }

  .slide {
    flex-basis: 84%;
  }

  body {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
