/* ============================================
   VENÜES — Beslenmeyle ilgili her şey.
   ============================================ */

:root {
  --olive-deep: #3D5228;
  --olive: #4A6332;
  --olive-mid: #6A7158;
  --sage: #9CB079;
  --sage-light: #C5D2A8;
  --cream: #F2EDD8;
  --cream-light: #FAF6E8;
  --cream-warm: #F4F0E7;
  --bone: #E0D9C2;
  --ink: #1F2818;
  --ink-soft: #2F4220;
  --amber: #D4A24C;
  --terracotta: #E07B2B;
  --plum: #7B4FA8;

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --rad-sm: 12px;
  --rad-md: 20px;
  --rad-lg: 28px;
  --rad-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(31, 40, 24, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 40, 24, 0.08);
  --shadow-lg: 0 20px 60px rgba(31, 40, 24, 0.12);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 80px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(242, 237, 216, 0.85);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-soft), background 0.4s var(--ease-soft), padding 0.4s var(--ease-soft);
}
.nav.scrolled {
  padding: 12px var(--gutter);
  border-bottom-color: rgba(61, 82, 40, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', var(--font-display);
  font-weight: 800;
  color: var(--olive-deep);
}
.brand-mark {
  width: 40px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}
.brand-name {
  font-size: 26px;
  letter-spacing: -0.01em;
}
.brand-light {
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--olive);
  border-radius: 99px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: rgba(61, 82, 40, 0.08);
}
.nav-cta {
  background: var(--olive-deep);
  color: var(--cream) !important;
}
.nav-cta:hover {
  background: var(--ink-soft) !important;
}

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* Legacy logo class kept for old pages */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--olive-deep);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--gutter) 80px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  width: 800px;
  height: 800px;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}
.blob-1 {
  top: -200px;
  right: -200px;
  animation: blob-float-1 24s ease-in-out infinite;
}
.blob-2 {
  bottom: -300px;
  left: -200px;
  animation: blob-float-2 30s ease-in-out infinite;
}
@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-40px, 30px) rotate(8deg); }
}
@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(50px, -40px) rotate(-6deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text-col { display: flex; flex-direction: column; }

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(156, 176, 121, 0.2);
  border: 1px solid rgba(61, 82, 40, 0.15);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--olive-deep);
  margin-bottom: 24px;
  align-self: flex-start;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(156, 176, 121, 0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(156, 176, 121, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(156, 176, 121, 0.05); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--olive-deep);
  margin-bottom: 28px;
}
.title-italic {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--sage) 0%, var(--olive) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-period {
  color: var(--terracotta);
}

.hero-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--olive-mid);
  max-width: 520px;
  margin-bottom: 36px;
}
@media (max-width: 920px) {
  .hero-eyebrow { align-self: center; }
  .hero-lead { margin-inline: auto; }
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 920px) {
  .hero-cta { justify-content: center; }
}

.btn-primary,
.btn-ghost,
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 26px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s var(--ease-soft), background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--olive-deep);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--olive-deep);
  border: 1.5px solid rgba(61, 82, 40, 0.2);
}
.btn-ghost:hover {
  background: rgba(61, 82, 40, 0.05);
  border-color: var(--olive-deep);
}
.btn-light {
  background: var(--cream);
  color: var(--olive-deep);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-art 6s ease-in-out infinite;
}
@keyframes float-art {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-art svg {
  width: 100%;
  max-width: 460px;
  height: auto;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-mid);
  opacity: 0.6;
  animation: bounce-cue 2.4s ease-in-out infinite;
}
@keyframes bounce-cue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50% { transform: translate(-50%, 6px); opacity: 0.7; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--olive-deep);
  color: var(--cream);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(156, 176, 121, 0.2);
  border-bottom: 1px solid rgba(156, 176, 121, 0.2);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  animation: marquee 45s linear infinite;
}
.marquee-track .dot {
  color: var(--sage);
  font-style: normal;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FEATURES
   ============================================ */
.feature {
  padding: clamp(80px, 14vh, 160px) var(--gutter);
  position: relative;
}
.feature-alt {
  background: var(--cream-warm);
}
.feature-dark {
  background: var(--olive-deep);
  color: var(--cream);
}

.feature-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.feature-grid.reverse .feature-text {
  order: 2;
}
@media (max-width: 920px) {
  .feature-grid,
  .feature-grid.reverse {
    grid-template-columns: 1fr;
  }
  .feature-grid.reverse .feature-text {
    order: 0;
  }
}

.feature-text { max-width: 520px; }
.feature-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(61, 82, 40, 0.1);
  color: var(--olive-deep);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.feature-tag.tag-light {
  background: rgba(242, 237, 216, 0.15);
  color: var(--sage-light);
}
.feature-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--olive-deep);
}
.feature-dark .feature-text h2 {
  color: var(--cream);
}
.feature-text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--olive-mid);
  margin-bottom: 16px;
}
.feature-dark .feature-text p {
  color: rgba(242, 237, 216, 0.85);
}
.feature-text .muted {
  font-size: 14px;
  color: var(--olive-mid);
  font-style: italic;
}
.feature-dark .feature-text .muted {
  color: rgba(197, 210, 168, 0.7);
}

.feature-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--olive-mid);
}
.bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bullet-vegan   { background: var(--olive-deep); }
.bullet-veg     { background: var(--sage); }
.bullet-gf      { background: var(--plum); }
.bullet-raw     { background: var(--terracotta); }
.bullet-options { background: var(--amber); }
.bullet-partner {
  background: var(--olive-deep);
  box-shadow: 0 0 0 2px var(--amber);
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(61, 82, 40, 0.12);
}
.feature-stats div {
  display: flex;
  flex-direction: column;
}
.feature-stats strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--olive-deep);
  line-height: 1;
}
.feature-stats span {
  font-size: 12px;
  color: var(--olive-mid);
  margin-top: 4px;
}

/* Feature visuals */
.feature-visual {
  position: relative;
}
.visual-card {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  transition: transform 0.6s var(--ease-out);
}
.visual-card:hover {
  transform: rotate(0deg) scale(1.02);
}
.feature-grid.reverse .visual-card {
  transform: rotate(1.5deg);
}
.feature-grid.reverse .visual-card:hover {
  transform: rotate(0deg) scale(1.02);
}
.visual-card svg {
  display: block;
  width: 100%;
  height: auto;
}
.visual-card-dark {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.visual-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(31, 40, 24, 0.92);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
}
.visual-caption strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.visual-caption span {
  font-size: 11px;
  color: var(--sage-light);
  margin-top: 2px;
}

/* Map pin animation */
.map-pin {
  transform-origin: center bottom;
  animation: pin-drop 2.4s var(--ease-out) infinite;
}
.pin-1 { animation-delay: 0s; }
.pin-2 { animation-delay: 0.3s; }
.pin-3 { animation-delay: 0.6s; }
.pin-4 { animation-delay: 0.9s; }
.pin-5 { animation-delay: 1.2s; }
@keyframes pin-drop {
  0% { transform: translateY(-12px); opacity: 0; }
  20% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
  position: relative;
  padding: clamp(100px, 16vh, 180px) var(--gutter);
  background: var(--cream);
  overflow: hidden;
}
.manifesto-leaf {
  position: absolute;
  top: 40px;
  right: -40px;
  width: 320px;
  height: 320px;
  opacity: 0.3;
  z-index: 0;
  transform: rotate(15deg);
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.manifesto-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(61, 82, 40, 0.1);
  color: var(--olive-deep);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.manifesto-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--olive-deep);
  margin-bottom: 80px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}

.manifesto-pillar {
  padding: 32px;
  background: var(--cream-light);
  border-radius: var(--rad-md);
  border: 1px solid rgba(61, 82, 40, 0.08);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.manifesto-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 12px;
}
.manifesto-pillar h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--olive-deep);
  margin-bottom: 10px;
}
.manifesto-pillar p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--olive-mid);
}

/* ============================================
   HOW
   ============================================ */
.how {
  padding: clamp(100px, 16vh, 180px) var(--gutter);
  background: var(--cream-warm);
}
.how-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.how-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(61, 82, 40, 0.1);
  color: var(--olive-deep);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.how-inner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--olive-deep);
  margin-bottom: 72px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .how-steps { grid-template-columns: 1fr; }
}

.how-steps li {
  position: relative;
  padding: 32px 24px;
  background: var(--cream-light);
  border-radius: var(--rad-md);
  border: 1px solid rgba(61, 82, 40, 0.08);
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--olive-deep);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 18px;
}
.how-steps h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--olive-deep);
  margin-bottom: 8px;
}
.how-steps p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--olive-mid);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: clamp(100px, 16vh, 180px) var(--gutter);
  background: var(--olive-deep);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-mark {
  width: 80px;
  height: 92px;
  margin-bottom: 32px;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 17px;
  color: rgba(242, 237, 216, 0.8);
  margin-bottom: 36px;
  line-height: 1.55;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(242, 237, 216, 0.7);
  padding: 80px var(--gutter) 32px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(242, 237, 216, 0.1);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand p {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.7;
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(242, 237, 216, 0.7);
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--sage-light);
}
.footer-bottom {
  max-width: var(--container);
  margin: 32px auto 0;
  font-size: 12px;
  text-align: center;
  color: rgba(242, 237, 216, 0.4);
}
.muted { opacity: 0.7; }

/* ============================================
   LEGAL PAGE (kvkk, gizlilik, etc.)
   ============================================ */
.page {
  max-width: 820px;
  margin: 140px auto 80px;
  padding: 0 var(--gutter);
}
.page h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--olive-deep);
  margin-bottom: 24px;
}
.page h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--olive-deep);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(156, 176, 121, 0.3);
}
.page h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--olive);
  margin-top: 32px;
  margin-bottom: 12px;
}
.page p, .page li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--olive-mid);
  margin-bottom: 14px;
}
.page ul, .page ol {
  margin: 14px 0 14px 24px;
  padding-left: 8px;
}
.page ul li {
  list-style: disc;
  margin-bottom: 8px;
}
.page ol li {
  list-style: decimal;
  margin-bottom: 8px;
}
.page a {
  color: var(--olive);
  text-decoration: underline;
  text-decoration-color: rgba(74, 99, 50, 0.3);
}
.page a:hover {
  text-decoration-color: var(--olive);
}
.page strong { color: var(--olive-deep); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
