@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@300;500;600;700&family=Sora:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #0d0f12;
  --surface: rgba(255, 255, 255, 0.6);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --text: #0c0c0f;
  --muted: #4b4b52;
  --accent: #ff6b4a;
  --accent-2: #2d8cff;
  --line: rgba(12, 12, 15, 0.16);
  --shadow: rgba(8, 10, 16, 0.2);
  --glass-border: rgba(255, 255, 255, 0.4);
}

* {
  box-sizing: border-box;
}

section {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 107, 74, 0.18), transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(45, 140, 255, 0.18), transparent 48%),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.8), transparent 50%),
    linear-gradient(135deg, #f8f4ec 0%, #efe7dc 55%, #e8dfd3 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.6) 0%, transparent 65%);
}

.orb-two {
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(45, 140, 255, 0.5) 0%, transparent 70%);
}

.orb-three {
  width: 260px;
  height: 260px;
  top: 40vh;
  left: 55vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
}

.glass {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  margin: 14px 6vw 0;
  border-radius: 999px;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 26px;
  letter-spacing: 2px;
  border: 2px solid var(--text);
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--surface-strong);
}

.logo.small {
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.ticker {
  overflow: hidden;
  padding: 8px 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
}

.ticker-track span {
  padding: 0 16px;
}

main {
  position: relative;
  z-index: 1;
  padding: 12px 6vw 24px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin: 10px 0 18px;
}

.shouts {
  display: grid;
  gap: 10px;
  padding: 14px 18px;
  margin: 8px 0 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.45));
  border: 1px solid var(--glass-border);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.shouts::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-size: 400% 100%;
  background-position: 90% 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 45%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 55%
  );
  mix-blend-mode: overlay;
  animation: shoutSweep 8s ease infinite;
}

.shout-line {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  color: var(--text);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.7),
    0 0 22px rgba(255, 107, 74, 0.55),
    0 0 40px rgba(255, 107, 74, 0.35);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.45))
    drop-shadow(0 0 28px rgba(255, 107, 74, 0.35));
  animation: shoutGlow 4.2s ease-in-out infinite;
}

.shout-line:nth-child(2) {
  color: var(--accent);
}

.shout-line:nth-child(4) {
  color: var(--accent-2);
}

.shout-line:nth-child(2),
.shout-line:nth-child(4) {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.7),
    0 0 26px rgba(45, 140, 255, 0.6),
    0 0 46px rgba(45, 140, 255, 0.4);
}

.shout-line:nth-child(2) {
  animation-delay: 0.4s;
}

.shout-line:nth-child(3) {
  animation-delay: 0.8s;
}

.shout-line:nth-child(4) {
  animation-delay: 1.2s;
}

.shout-line:nth-child(5) {
  animation-delay: 1.6s;
}

@keyframes shoutGlow {
  0% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.55),
      0 0 18px rgba(255, 107, 74, 0.4),
      0 0 32px rgba(255, 107, 74, 0.25);
  }
  50% {
    text-shadow:
      0 0 16px rgba(255, 255, 255, 0.9),
      0 0 36px rgba(255, 107, 74, 0.75),
      0 0 60px rgba(255, 107, 74, 0.5);
  }
  100% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.55),
      0 0 18px rgba(255, 107, 74, 0.4),
      0 0 32px rgba(255, 107, 74, 0.25);
  }
}

@keyframes shoutSweep {
  0% {
    background-position: 90% 0;
    opacity: 0.15;
  }
  50% {
    background-position: 10% 0;
    opacity: 0.35;
  }
  100% {
    background-position: 90% 0;
    opacity: 0.15;
  }
}

@keyframes kemalGlow {
  0% {
    text-shadow:
      0 0 10px rgba(255, 45, 45, 0.55),
      0 0 22px rgba(255, 45, 45, 0.45),
      0 0 36px rgba(255, 45, 45, 0.3);
  }
  50% {
    text-shadow:
      0 0 18px rgba(255, 45, 45, 0.9),
      0 0 38px rgba(255, 45, 45, 0.75),
      0 0 64px rgba(255, 45, 45, 0.55);
  }
  100% {
    text-shadow:
      0 0 10px rgba(255, 45, 45, 0.55),
      0 0 22px rgba(255, 45, 45, 0.45),
      0 0 36px rgba(255, 45, 45, 0.3);
  }
}

.hero-title {
  grid-column: 1 / 7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(52px, 8vw, 124px);
  margin: 8px 0 10px;
  line-height: 0.9;
}

.hero .accent {
  color: var(--accent);
  display: inline-block;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.cta,
.ghost {
  padding: 14px 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border: 1px solid var(--text);
  border-radius: 999px;
}

.cta {
  background: var(--accent);
  color: #fef8f0;
  border-color: transparent;
}

.ghost {
  background: transparent;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
  padding: 12px;
  border-radius: 18px;
}

.stat-strip .stat {
  font-family: "Fraunces", serif;
  font-size: 28px;
}

.stat-strip .label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  color: var(--muted);
}

.hero-panel {
  grid-column: 7 / 13;
  display: grid;
  gap: 22px;
}

.feature-card {
  padding: 16px;
  border-radius: 18px;
}

.feature-card h2 {
  font-family: "Fraunces", serif;
  font-size: 32px;
  margin: 8px 0 8px;
}

.tag {
  font-size: 11px;
  background: var(--accent-2);
  color: white;
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 999px;
}

.meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-card {
  background: #101215;
  color: #fef8f0;
  padding: 16px;
  border-radius: 18px;
  font-size: 18px;
  box-shadow:
    0 18px 30px rgba(12, 12, 15, 0.35),
    0 0 30px rgba(255, 107, 74, 0.25),
    0 0 60px rgba(255, 107, 74, 0.2);
}

.quote-card span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 248, 240, 0.6);
}

.section-title {
  display: grid;
  gap: 4px;
  margin-bottom: 2px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 5vw, 52px);
  margin: 0;
  line-height: 1.05;
}

.manifest {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.manifest .section-title {
  grid-column: 1 / 5;
}

.manifest-body {
  grid-column: 5 / 13;
  font-size: 17px;
  color: var(--muted);
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.55));
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.pill-list li {
  border: 1px solid var(--text);
  padding: 8px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--surface-strong);
  border-radius: 999px;
}

.timeline {
  margin-bottom: 18px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.timeline-grid article {
  padding: 14px;
  border-radius: 16px;
}

.timeline-grid h3 {
  margin: 8px 0 6px;
  font-family: "Fraunces", serif;
  font-size: 22px;
}

.timeline-grid .date {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
}

.facts {
  margin-bottom: 18px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.fact-card {
  padding: 14px;
  border-radius: 16px;
}

.fact-card h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin: 0 0 6px;
}

.kemal {
  margin-bottom: 10px;
}

.kemal .section-title {
  text-align: center;
  align-items: center;
  justify-items: center;
  margin-bottom: 14px;
}

.kemal .section-title h2 {
  color: #ff2d2d;
  text-shadow:
    0 0 12px rgba(255, 45, 45, 0.7),
    0 0 28px rgba(255, 45, 45, 0.6),
    0 0 50px rgba(255, 45, 45, 0.45);
  filter: drop-shadow(0 0 16px rgba(255, 45, 45, 0.45));
  letter-spacing: 1px;
  animation: kemalGlow 3.6s ease-in-out infinite;
}

.kemal-sub {
  max-width: 680px;
  margin: 6px 0 0;
  font-size: 16px;
  color: var(--muted);
}

.kemal-vegan {
  margin: 16px 0 24px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(69, 230, 145, 0.35), transparent 45%),
    radial-gradient(circle at bottom right, rgba(18, 170, 88, 0.25), transparent 50%),
    linear-gradient(140deg, rgba(230, 255, 239, 0.9), rgba(196, 255, 222, 0.7));
  border: 1px solid rgba(28, 130, 74, 0.2);
  box-shadow:
    0 18px 36px rgba(12, 12, 15, 0.15),
    0 0 40px rgba(69, 230, 145, 0.35);
}

.kemal-vegan .section-title {
  text-align: center;
  align-items: center;
  justify-items: center;
  margin-bottom: 12px;
}

.kemal-vegan .section-title h2 {
  color: #0f7a3a;
  text-shadow:
    0 0 10px rgba(69, 230, 145, 0.6),
    0 0 24px rgba(69, 230, 145, 0.45);
}

.vegan-body {
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 14px;
  color: #1c3b28;
  font-size: 16px;
  line-height: 1.6;
  border: 1px solid rgba(28, 130, 74, 0.2);
}


.kemal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.kemal-card {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.45));
}

.kemal-card h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin: 0 0 6px;
}

.kemal-long {
  margin-top: 8px;
  padding: 12px;
  border-radius: 16px;
  font-size: 16px;
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.gallery {
  margin-bottom: 16px;
}

.kemal + .gallery {
  margin-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.photo {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
  border: 1px solid var(--glass-border);
  min-height: 130px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.text-shots .photo {
  font-family: "Fraunces", serif;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--text);
}

.gallery-note {
  margin: 8px 0 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6vw 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-meta {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  display: grid;
  gap: 4px;
}

body.alt-layout .hero {
  grid-template-columns: repeat(10, 1fr);
}

body.alt-layout .hero-title {
  grid-column: 1 / 6;
}

body.alt-layout .hero-panel {
  grid-column: 6 / 11;
}

.reveal {
  transform: translateY(0);
  opacity: 1;
}

.feature-card,
.timeline-grid article,
.fact-card,
.kemal-card,
.kemal-long,
.photo,
.callout,
.stat-strip {
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.fact-card.highlight {
  box-shadow: 0 0 0 2px var(--accent) inset, 0 18px 30px rgba(255, 107, 74, 0.25);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .manifest {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .hero-panel,
  .manifest .section-title,
  .manifest-body {
    grid-column: 1 / -1;
  }

  .callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }
}
