/**
 * Ana sayfa (one-page) — yalnızca landing.css yüklendiğinde (panel bu dosyayı kullanmaz).
 * Tüm kurallar body.site--onepage veya .lp-onepage ile kapsüllenir; app.css / panel etkilenmez.
 */

/* Tasarım jetonları: yalnızca ana sayfa gövdesinde */
body.site--onepage {
  --lp-bg: #f6f3ec;
  --lp-bg-deep: #0f1410;
  --lp-gold: #b8952e;
  --lp-gold-soft: #d4b84a;
  --lp-ink: #1a1f1a;
  --lp-muted: #5c5f58;
  --lp-line: rgba(15, 20, 16, 0.08);
  --lp-radius: 1rem;
  --lp-shadow: 0 18px 48px rgba(15, 20, 16, 0.09);
  --lp-font-display: "Cormorant Garamond", "Times New Roman", serif;
  --lp-font-body: "Source Sans 3", "DM Sans", system-ui, -apple-system, sans-serif;
  /* Tipografi ölçeği (rem, kök 16px) */
  --lp-text-sm: 0.9375rem; /* 15px */
  --lp-text-base: 1rem; /* 16px */
  --lp-text-md: 1.0625rem; /* 17px */
  --lp-text-lg: 1.125rem; /* 18px */
  --lp-measure: 65ch; /* okuma satırı */
  --lp-container: min(70rem, 100% - 2rem); /* ~1120px, yan pay 1rem */

  scroll-behavior: smooth;
  background: var(--lp-bg);
  color: var(--lp-ink);
  font-family: var(--lp-font-body);
  font-size: 100%;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  body.site--onepage {
    scroll-behavior: auto;
  }
}

/* Üst şerit + footer ile içerik aynı ölçüde hizalansın (.container app.css’te --container kullanır) */
body.site--onepage .container {
  width: var(--lp-container);
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

/* İçerik sarmalayıcı: header’daki .container ile aynı genişlik */
.lp-onepage {
  --lp-font-body: "Source Sans 3", "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--lp-ink);
  font-family: var(--lp-font-body);
  overflow-x: hidden;
}

.lp-container {
  width: var(--lp-container);
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

/* Uzun metin blokları: tipografi rehberi ~45–75 karakter */
.lp-onepage .lp-section-lead,
.lp-onepage .lp-faith__prose,
.lp-onepage .lp-faith__quote {
  max-width: var(--lp-measure);
}

/* ——— Üst şerit: sade kurumsal (hap / gri kapsül yok) ——— */
.site--onepage .site-header--landing {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 20, 16, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 1) inset;
}

.site--onepage .header-inner--landing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  min-height: 4.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  flex-wrap: nowrap;
}

.site--onepage .site-header--landing .brand__logo {
  max-height: 56px;
  width: auto;
}

/* app.css’teki menü “kapsülünü” iptal et */
.site--onepage .site-nav {
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem 1.75rem;
}

.site--onepage .site-nav__links {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  gap: 0.15rem 1.85rem !important;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site--onepage .site-nav__link {
  font-family: var(--lp-font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0;
  color: #141814 !important;
  opacity: 1;
  text-decoration: none;
  padding: 0.35rem 0 !important;
  min-height: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site--onepage .site-nav__link:hover {
  color: #0f1410 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom-color: var(--lp-gold);
}

@media (min-width: 960px) {
  .site--onepage .site-nav__links {
    justify-content: flex-end;
  }
}

/* Panel girişi: ikincil, menüyü boğmasın */
.site--onepage .site-nav__actions .btn--small {
  font-size: 0.9375rem;
  font-weight: 600;
}

@media (max-width: 720px) {
  .site--onepage .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    width: 100%;
  }

  .site--onepage .site-nav__link {
    width: 100%;
    justify-content: flex-start !important;
    text-align: left;
    font-size: 1.05rem;
    padding: 0.9rem 1rem !important;
    min-height: 48px !important;
    border-bottom: 1px solid var(--lp-line) !important;
    border-radius: 0 !important;
  }

  .site--onepage .site-nav__link:hover {
    background: rgba(184, 149, 46, 0.08) !important;
    border-bottom-color: rgba(184, 149, 46, 0.45) !important;
  }

  /* Mobilde de tüm başlıklar görünsün */
  .site--onepage .site-nav__link--hide-sm {
    display: inline-flex !important;
  }
}

/* Ana içerik: panel olmayan sayfada footer öncesi */
.site--onepage main {
  background: var(--lp-bg);
}

/* ——— Sayfa iskeleti ——— */
.lp-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.lp-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin: 0 0 0.65rem;
}

/* Stok / iletişim: .corp-* başlıkları yalnızca one-page içinde */
.lp-onepage .corp-section-head__title {
  font-family: var(--lp-font-body);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.lp-onepage .corp-eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: var(--lp-gold);
}

.lp-onepage .corp-section-head__lead {
  font-size: var(--lp-text-md);
  line-height: 1.65;
  max-width: var(--lp-measure);
}

.lp-section-title {
  font-family: var(--lp-font-body);
  font-size: clamp(1.95rem, 3.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
  color: var(--lp-bg-deep);
}

.lp-section-lead {
  font-size: var(--lp-text-md);
  line-height: 1.65;
  color: var(--lp-muted);
  margin: 0;
}

/* ——— Hero: ortalanmış içerik, yan boşluklu konteyner, arka plan “show” ——— */
.lp-hero--center {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(52vh, 560px);
  display: flex;
  align-items: center;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.lp-hero__shell {
  width: 100%;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(184, 149, 46, 0.18) 0%, transparent 58%),
    radial-gradient(ellipse 70% 45% at 100% 85%, rgba(26, 90, 58, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse 55% 40% at 0% 75%, rgba(184, 149, 46, 0.06) 0%, transparent 48%),
    linear-gradient(180deg, #faf7f1 0%, #f4f0e8 38%, #eef0ea 100%);
}

.lp-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='%230f1410' fill-opacity='0.028'%3E%3Cpath d='M0 0h1v1H0zM48 48h1v1h-1z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Üst-alt yumuşak ışık halkası (görsel derinlik, harici görsel yok) */
.lp-hero__aurora {
  position: absolute;
  inset: auto 10% -35% 10%;
  height: min(42vh, 380px);
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(184, 149, 46, 0.14) 0%,
    rgba(255, 255, 255, 0.06) 42%,
    transparent 72%
  );
  filter: blur(2px);
  pointer-events: none;
}

.lp-hero__inner {
  display: flex;
  justify-content: center;
  width: 100%;
}

.lp-hero__copy {
  width: 100%;
  max-width: min(36rem, 100%);
  margin-inline: auto;
  text-align: center;
}

.lp-hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a7b24;
}

.lp-hero__title {
  font-family: var(--lp-font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #080a08;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}

/* Ana vurgu: başlık metni HTML’de doğru Türkçe büyük harf (İ/ı) ile */
.lp-hero__title--kesim {
  font-family: var(--lp-font-body);
  font-size: clamp(1.65rem, 3.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.1em;
  color: #0a0d0a;
  text-wrap: balance;
}

.lp-hero__lead {
  font-size: var(--lp-text-lg);
  line-height: 1.65;
  color: var(--lp-muted);
  margin: 0 auto 1.5rem;
  max-width: 38rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.lp-hero__trust {
  list-style: none;
  margin: 0 auto 1.65rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  max-width: 36rem;
}

.lp-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-bg-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 20, 16, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.lp-hero__trust-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--lp-gold) 0%, #7a6220 100%);
  flex-shrink: 0;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  align-items: center;
  justify-content: center;
}

.lp-hero .btn--lp-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  background: linear-gradient(145deg, var(--lp-gold) 0%, #8a6f22 100%);
  color: #fffdf8;
  border: none;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(184, 149, 46, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lp-hero .btn--lp-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(184, 149, 46, 0.4);
}

.lp-hero .btn--lp-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.82rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, 0.65);
  color: var(--lp-bg-deep);
  border: 1px solid rgba(15, 20, 16, 0.14);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.lp-hero .btn--lp-ghost:hover {
  border-color: var(--lp-gold);
  background: #fff;
}

.lp-hero .btn--lp-wa {
  display: inline-flex;
  align-items: center;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  background: #128c4b;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: filter 0.15s ease;
}

.lp-hero .btn--lp-wa:hover {
  filter: brightness(1.05);
}

/* ——— Stok bölümü ——— */
.lp-kurban-listesi {
  background: #fff;
  border-block: 1px solid var(--lp-line);
}

.lp-kurban-listesi .animal-grid {
  margin-top: 2rem;
}

.lp-onepage .lp-kurban-listesi .corp-section-head {
  margin-bottom: 0;
  max-width: var(--lp-measure);
}

/* Stok kartları: foto mutlak konum — flex içinde % yükseklik sıfır kalmasın */
.site--onepage .lp-kurban-listesi .animal-card__view {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 200px;
  background: #e5e2dc;
  overflow: hidden;
}

.site--onepage .lp-kurban-listesi .animal-card__view img.animal-card__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site--onepage .lp-kurban-listesi .animal-card__tags {
  z-index: 2;
}

.site--onepage .lp-kurban-listesi .animal-card__placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
}

/* ——— Kurumsal kartlar ——— */
.lp-about {
  background: var(--lp-bg);
}

.lp-about__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

@media (min-width: 768px) {
  .lp-about__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-card {
  height: 100%;
  padding: 1.5rem 1.4rem;
  border-radius: var(--lp-radius);
  background: #fff;
  border: 1px solid var(--lp-line);
  box-shadow: 0 8px 28px rgba(15, 20, 16, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.lp-card:hover {
  box-shadow: var(--lp-shadow);
  transform: translateY(-2px);
}

.lp-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 149, 46, 0.12);
  color: var(--lp-gold);
  margin-bottom: 1rem;
}

.lp-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.lp-card h3 {
  font-family: var(--lp-font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--lp-bg-deep);
  letter-spacing: -0.02em;
}

.lp-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

/* ——— İslami kesim ——— */
.lp-faith {
  background: linear-gradient(180deg, #0f1410 0%, #1a2218 100%);
  color: #e8e6e1;
}

.lp-faith .lp-eyebrow {
  color: var(--lp-gold-soft);
}

.lp-faith .lp-section-title {
  color: #faf8f3;
}

.lp-faith .lp-section-lead {
  color: rgba(232, 230, 225, 0.82);
}

.lp-faith__split {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .lp-faith__split {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.lp-faith__figure {
  margin: 0;
  border-radius: var(--lp-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lp-faith__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.lp-faith__prose {
  font-size: 1.05rem;
  line-height:1.75;
  color: rgba(232, 230, 225, 0.9);
}

.lp-faith__prose p {
  margin: 0 0 1rem;
}

.lp-faith__prose p:last-child {
  margin-bottom: 0;
}

.lp-faith__quote {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--lp-gold);
  font-family: var(--lp-font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(250, 248, 243, 0.95);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 0.5rem 0.5rem 0;
}

/* ——— Fiyat özeti ——— */
.lp-prices {
  background: #fff;
  border-block: 1px solid var(--lp-line);
}

.lp-price-board {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .lp-price-board {
    grid-template-columns: 1fr 1.4fr;
  }
}

.lp-price-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  background: #faf9f6;
}

.lp-price-card h3 {
  font-family: var(--lp-font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--lp-bg-deep);
  letter-spacing: -0.02em;
}

.lp-price-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.lp-price-card th,
.lp-price-card td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--lp-line);
  text-align: left;
}

.lp-price-card tr:last-child th,
.lp-price-card tr:last-child td {
  border-bottom: none;
}

.lp-price-foot {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--lp-muted);
}

/* ——— Rakamlar ——— */
.lp-stats {
  background: var(--lp-bg);
}

.lp-stats__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .lp-stats__row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--lp-radius);
  background: #fff;
  border: 1px solid var(--lp-line);
}

.lp-stat__v {
  font-family: var(--lp-font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--lp-bg-deep);
}

.lp-stat__l {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-top: 0.35rem;
}

/* ——— CTA şeridi ——— */
.lp-cta-strip {
  padding: 2.25rem 0;
  background: linear-gradient(90deg, rgba(184, 149, 46, 0.12) 0%, rgba(26, 58, 42, 0.1) 100%);
  border-block: 1px solid var(--lp-line);
}

.lp-cta-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-cta-strip__title {
  font-family: var(--lp-font-body);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: var(--lp-bg-deep);
  letter-spacing: -0.02em;
}

.lp-cta-strip__sub {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: var(--lp-muted);
}

.lp-cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ——— İletişim ——— */
.lp-contact {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lp-contact .corp-contact-split {
  margin-top: 1.5rem;
}

/* ——— Footer (layout) ——— */
.site-footer--landing {
  background: var(--lp-bg-deep);
  color: rgba(232, 230, 225, 0.88);
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer--landing .site-footer__inner {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .site-footer--landing .site-footer__inner {
    grid-template-columns: 1.2fr 1.4fr 1fr;
    align-items: start;
  }
}

.site-footer--landing .site-footer__name {
  font-family: var(--lp-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: #faf8f3;
}

.site-footer--landing .site-footer__tag {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

.site-footer--landing .site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer--landing .site-footer__nav a {
  color: rgba(232, 230, 225, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer--landing .site-footer__nav a:hover {
  color: var(--lp-gold-soft);
}

.site-footer--landing .site-footer__meta {
  font-size: 0.88rem;
  opacity: 0.8;
}

.site-footer--landing .site-footer__meta a {
  color: var(--lp-gold-soft);
}

/* Mevcut home kartlarıyla uyum */
.site--onepage .lp-kurban-listesi .animal-card--premium {
  border-radius: var(--lp-radius);
}

.site--onepage .inventory-empty .corp-feature-card {
  border-radius: var(--lp-radius);
}
