/* ============================================
   YILDIZ KASAP — Premium Butcher Aesthetic
   Koyu mürekkep zemin, kan kırmızısı aksan,
   editorial serif + modern sans pairing.
   ============================================ */

:root {
  /* Palette */
  --ink: #0f0f10;
  --ink-2: #17171a;
  --ink-3: #1f1f23;
  --bone: #f4efe6;
  --bone-2: #ebe4d6;
  --cream: #f9f5ec;
  --blood: #b3121c;
  --blood-hover: #d01621;
  --blood-deep: #7a0a10;
  --gold: #c9a96a;
  --muted: #8a8682;
  --line: rgba(244, 239, 230, 0.12);
  --line-dark: rgba(15, 15, 16, 0.12);

  /* Typography */
  --display: 'Playfair Display', 'PT Serif', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing / radius */
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bone);
  background: var(--ink);
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain overlay for texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 16, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bone);
  padding: 2px;
  box-shadow: 0 0 0 1px var(--line);
}

.brand-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand-name small {
  display: block;
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bone);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--blood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: var(--blood);
  color: var(--bone);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--blood-hover);
  transform: translateY(-1px);
}

.nav-cta i {
  font-size: 0.9rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bone);
  margin: 4px 0;
  transition: 0.3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero-text .eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--blood);
  font-weight: 400;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.75);
  max-width: 44ch;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--blood);
  color: var(--bone);
}

.btn-primary:hover {
  background: var(--blood-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(179, 18, 28, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--bone);
  background: rgba(244, 239, 230, 0.04);
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-meta-item .num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bone);
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}

.hero-meta-item .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero carousel */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6),
              0 0 0 1px var(--line);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 15, 16, 0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-tag {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  background: rgba(15, 15, 16, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
}

.slide-dots {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 239, 230, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.dot.active {
  background: var(--blood);
  transform: scale(1.3);
}

/* Decorative float labels over hero */
.hero-badge {
  position: absolute;
  left: -1rem;
  top: 50%;
  z-index: 4;
  background: var(--blood);
  color: var(--bone);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  transform: translateY(-50%) rotate(-4deg);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.6);
}

/* ============================================
   MARQUEE (scrolling text band)
   ============================================ */
.marquee {
  background: var(--bone);
  color: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 1rem 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.marquee span::after {
  content: '✦';
  color: var(--blood);
  font-size: 1rem;
}

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

/* ============================================
   SECTIONS (shared)
   ============================================ */
section {
  padding: 6rem 1.5rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 22ch;
  justify-self: end;
  text-align: right;
}

.section-title em {
  font-style: italic;
  color: var(--blood);
  font-weight: 400;
}

/* ============================================
   STORY (vision/mission)
   ============================================ */
.story {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.story-card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.story-card::before {
  content: attr(data-num);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--display);
  font-size: 4rem;
  font-style: italic;
  color: rgba(179, 18, 28, 0.14);
  line-height: 1;
  pointer-events: none;
}

.story-card:hover {
  border-color: rgba(179, 18, 28, 0.4);
}

.story-card h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bone);
}

.story-card h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--blood);
  margin-top: 0.75rem;
}

.story-card p {
  color: rgba(244, 239, 230, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* ============================================
   SOURCES (kaynaklarımız)
   ============================================ */
.sources {
  background: var(--ink);
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.source-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.source-card:hover {
  transform: translateY(-6px);
  border-color: var(--blood);
}

.source-card-img {
  position: absolute;
  inset: 0;
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.source-card-img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: invert(1) brightness(0.95);
  transition: transform 0.5s var(--ease);
}

.source-card:hover .source-card-img img {
  transform: scale(1.08);
}

.source-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(15, 15, 16, 0.95));
  z-index: 2;
}

.source-card-region {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.source-card-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bone);
  line-height: 1.15;
}

/* ============================================
   GALLERY PREVIEW (on index)
   ============================================ */
.gallery-preview {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}

.gp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.gp-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-3);
  cursor: pointer;
}

.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gp-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 15, 16, 0.6));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gp-item:hover img {
  transform: scale(1.06);
}

.gp-item:hover::after {
  opacity: 1;
}

/* Feature different sized tiles */
.gp-item.tall { grid-row: span 2; }
.gp-item.wide { grid-column: span 2; }
.gp-item.feature { grid-column: span 2; grid-row: span 2; }

.gp-cta {
  text-align: center;
}

/* ============================================
   LOCATION (map + contact)
   ============================================ */
.location {
  background: var(--ink);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.loc-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  position: relative;
  background: var(--ink-2);
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) invert(0.92) contrast(0.9);
  position: absolute;
  inset: 0;
}

.loc-info {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.loc-info h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.loc-info h3 em {
  font-style: italic;
  color: var(--blood);
}

.loc-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.loc-row:last-of-type {
  border-bottom: none;
}

.loc-icon {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(179, 18, 28, 0.12);
  color: var(--blood);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.loc-text {
  flex: 1;
}

.loc-text .k {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.loc-text .v {
  font-size: 1.02rem;
  color: var(--bone);
  font-weight: 500;
}

.loc-text a.v:hover {
  color: var(--blood);
}

/* ============================================
   FOOTER
   ============================================ */
.foot {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 4rem 1.5rem 2rem;
}

.foot-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.foot-brand img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--bone);
  padding: 3px;
}

.foot-brand .nm {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
}

.foot-brand .nm small {
  display: block;
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

.foot-desc {
  color: rgba(244, 239, 230, 0.65);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 38ch;
}

.foot-col h4 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.foot-col a {
  color: rgba(244, 239, 230, 0.75);
  font-size: 0.95rem;
}

.foot-col a:hover {
  color: var(--blood);
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.foot-bot .est {
  font-family: var(--display);
  font-style: italic;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-hero {
  padding: 5rem 1.5rem 3rem;
  text-align: center;
}

.gallery-hero .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.gallery-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.gallery-hero h1 em {
  font-style: italic;
  color: var(--blood);
  font-weight: 400;
}

.gallery-hero p {
  max-width: 52ch;
  margin: 0 auto;
  color: rgba(244, 239, 230, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-hero .divider {
  width: 60px;
  height: 2px;
  background: var(--blood);
  margin: 2rem auto 0;
}

.gallery-main {
  padding: 2rem 1.5rem 6rem;
}

.masonry {
  max-width: 1280px;
  margin: 0 auto;
  columns: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(179, 18, 28, 0.25));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.masonry-item:hover {
  border-color: rgba(179, 18, 28, 0.45);
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-item:hover::after {
  opacity: 1;
}

.masonry-item .zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 15, 16, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--ease);
}

.masonry-item:hover .zoom {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 16, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fade 0.3s var(--ease);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blood);
  color: var(--bone);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease);
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 239, 230, 0.1);
  color: var(--bone);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}

.lightbox-nav:hover {
  background: var(--blood);
  border-color: var(--blood);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   ENTRANCE ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.hero-text > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.8s var(--ease) forwards;
}

.hero-text .eyebrow { animation-delay: 0.1s; }
.hero-text .hero-title { animation-delay: 0.25s; }
.hero-text .hero-lead { animation-delay: 0.4s; }
.hero-text .hero-actions { animation-delay: 0.55s; }
.hero-text .hero-meta { animation-delay: 0.7s; }

.hero-visual {
  opacity: 0;
  transform: translateX(20px) scale(0.98);
  animation: heroFade 1s var(--ease) forwards 0.2s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 600px; margin: 0 auto; aspect-ratio: 4 / 5; }
  .sources-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 360px; }
  .masonry { columns: 2; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-col.brand-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    margin-left: 0;
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.8rem 1rem;
    width: 100%;
  }

  .nav-links .nav-cta {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.1rem;
    margin-top: 0.5rem;
  }

  .nav-links a::after { display: none; }

  .hero { padding: 2.5rem 1.25rem 3.5rem; }
  section { padding: 4rem 1.25rem; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .section-title {
    text-align: left;
    justify-self: start;
  }

  .hero-meta { gap: 1.5rem; flex-wrap: wrap; }
  .hero-meta-item .num { font-size: 1.5rem; }

  .story-grid { grid-template-columns: 1fr; }
  .story-card { padding: 2rem 1.5rem; }

  .sources-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .gp-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gp-item.tall, .gp-item.wide, .gp-item.feature { grid-row: span 1; grid-column: span 1; }
  .gp-item.feature { grid-column: span 2; grid-row: span 2; }

  .loc-info { padding: 1.75rem; }

  .masonry { columns: 2; column-gap: 0.6rem; }
  .masonry-item { margin-bottom: 0.6rem; }

  .foot { padding: 3rem 1.25rem 1.5rem; }
  .foot-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .foot-bot { flex-direction: column; text-align: center; }

  .marquee { font-size: 1.1rem; padding: 0.75rem 0; }

  .hero-badge { display: none; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 1.05rem; }
  .brand-name small { font-size: 0.58rem; }
  .brand-logo { width: 38px; height: 38px; }

  .hero-title { font-size: 2.2rem; }

  .sources-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }

  .btn { padding: 0.75rem 1.25rem; font-size: 0.85rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--blood);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   ÇİFT TELEFON DROPDOWN (navbar)
   ============================================ */
.call-dropdown {
  position: relative;
}

.call-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 240px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease);
  z-index: 110;
}

.call-dropdown.open .call-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.call-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  color: var(--bone);
  transition: background 0.2s var(--ease);
}

.call-dropdown-item:hover {
  background: rgba(179, 18, 28, 0.12);
}

.call-dropdown-item .icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(179, 18, 28, 0.18);
  color: var(--blood);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.call-dropdown-item .meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.call-dropdown-item .meta .lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.call-dropdown-item .meta .num {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bone);
  letter-spacing: 0.01em;
}

.call-dropdown-toggle::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  margin-left: 0.4rem;
  transition: transform 0.25s var(--ease);
  opacity: 0.85;
}

.call-dropdown.open .call-dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Mobilde dropdown açıkken tüm genişliği kapla */
@media (max-width: 768px) {
  .call-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
    background: var(--ink);
    display: none;
  }

  .call-dropdown.open .call-dropdown-menu {
    display: block;
  }
}

/* İletişim bölümünde iki telefon yan yana */
.loc-row.loc-row-double {
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}

.loc-row-double .double-phones {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.loc-row-double .double-phones a {
  font-size: 1.02rem;
  color: var(--bone);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.loc-row-double .double-phones a:hover {
  color: var(--blood);
}

.loc-row-double .double-phones .tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.15rem 0.45rem;
  border: 1px solid rgba(201, 169, 106, 0.4);
  border-radius: 999px;
  margin-right: 0.35rem;
}

/* Mobilde dropdown'ı düz iki link olarak göster (zaten menü açık) */
@media (max-width: 768px) {
  .call-dropdown .call-dropdown-toggle {
    display: none;
  }

  .call-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0.5rem;
  }

  .call-dropdown-item {
    background: rgba(179, 18, 28, 0.1);
    border: 1px solid var(--line);
    margin-bottom: 0.4rem;
  }

  .call-dropdown-item:last-child {
    margin-bottom: 0;
  }
}
