/* ==========================================================================
   NOCTRA — Sleep-focused supplement brand
   Premium aesthetic inspired by Solgar's restraint and elegance.
   Palette: cream (brand) + deep midnight navy (product)
   ========================================================================== */

:root {
  /* ─── NOCTRA brand palette (spec exact) ─── */
  --noctra-navy:       #1B2845;   /* Ana renk — header, footer, başlıklar */
  --noctra-cream:      #F5EFE0;   /* İkincil zemin — ana sayfa */
  --noctra-blue-gray:  #B8C5D6;   /* İnce çizgi ve ayraçlar */
  --noctra-charcoal:   #2D2D2D;   /* Gövde metni */
  --noctra-copper:     #B89968;   /* Çok seyrek vurgu, buton hover */
  --noctra-white:      #FFFFFF;   /* Ürün fotoğrafı arka planı */

  /* Compatibility aliases — keep legacy code working */
  --cream-50:  #FBF8EE;
  --cream-100: var(--noctra-cream);
  --cream-200: #ECE4CE;
  --cream-300: #DFD4B6;
  --navy-900:  #0A1124;
  --navy-800:  #121C36;
  --navy-700:  var(--noctra-navy);
  --navy-600:  #28365A;
  --navy-500:  #3B4A6E;
  --copper-500: var(--noctra-copper);
  --copper-400: #C9AC7E;
  --gold-500:   var(--noctra-copper);
  --gold-400:   #C9AC7E;
  --grayblue:   var(--noctra-blue-gray);
  --charcoal:   var(--noctra-charcoal);
  --ink:        var(--noctra-navy);
  --ink-soft:   var(--noctra-charcoal);
  --muted:      #6B7480;
  --line:       rgba(184, 197, 214, 0.55);

  /* Typography — Manrope only, weights 300/400/500 (no bold) */
  --display: "Manrope", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --sans:    "Manrope", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif:   "Manrope", "Helvetica Neue", sans-serif; /* legacy alias */

  /* Rhythm */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* Reset --------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--cream-100);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
table { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* Typography ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 300;
  color: var(--navy-700);
  letter-spacing: 0;
  margin: 0 0 .5em;
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 300; letter-spacing: -0.005em; }
h2 { font-size: clamp(1.65rem, 2.8vw, 2.3rem); font-weight: 300; letter-spacing: 0; }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
h4 { font-size: .92rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
p  { margin: 0 0 1em; color: var(--charcoal); font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--navy-700);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: .85;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px; background: var(--navy-700);
  opacity: .4;
}

.lead { font-size: 1.08rem; color: var(--charcoal); max-width: 58ch; line-height: 1.7; font-weight: 400; }

/* Layout -------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(80px, 9vw, 140px) 0; }
.grid { display: grid; gap: var(--gutter); }

/* Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #1B2845;            /* solid navy */
  margin-bottom: 0;
}
/* Sticky header için border-bottom yerine ::after kullan: 1px bakır ayraç */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #B89968;       /* bakır */
  opacity: 0.6;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;        /* sabit — logo büyüse de değişmez */
  padding: 0;
  overflow: visible;    /* taşan logo görünür kalır */
}
.brand {
  display: inline-flex;
  align-items: center;
  overflow: visible;
}
.brand img {
  display: block;
  max-height: 180px;    /* 120 × 1.5 = 180; bar 100, ±40 taşar */
  width: auto;
  /* Navy ink → cream tone (since weblogo_krem.png yok, mevcut logoya filter) */
  filter: brightness(0) invert(1) sepia(0.1) saturate(0.5);
}
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-family: var(--display);
  font-size: 15px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-100); opacity: .65;
  transition: opacity .25s var(--ease);
}
.nav a:hover, .nav a.is-active { opacity: 1; color: var(--cream-100); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: inline-flex; border: 1px solid rgba(245, 239, 224, 0.18); border-radius: 999px;
  padding: 4px; background: rgba(245, 239, 224, 0.04);
}
.lang-switch a {
  padding: 7px 13px; font-size: 13px; letter-spacing: .14em; border-radius: 999px;
  font-weight: 500; color: var(--cream-100); opacity: .65;
  transition: opacity .25s var(--ease), background .25s var(--ease);
}
.lang-switch a:hover { opacity: 1; }
.lang-switch a.is-active { background: var(--cream-100); color: var(--navy-700); opacity: 1; }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 0;
  font-family: var(--display);
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn-primary { background: var(--navy-700); color: var(--cream-100); border-color: var(--navy-700); }
.btn-primary:hover { background: var(--copper-500); border-color: var(--copper-500); color: var(--cream-100); }
.btn-ghost { color: var(--navy-700); border-color: var(--navy-700); background: transparent; }
.btn-ghost:hover { background: var(--navy-700); color: var(--cream-100); }
.btn .arrow { width: 14px; height: 10px; }

/* Section heads ------------------------------------------------------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }
.section-head p { margin-top: 14px; }

/* Pillars (Solgar-style trust row) ------------------------------------ */
.pillars { background: var(--cream-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillars .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.pillar { text-align: center; padding: 8px; }
.pillar svg { margin: 0 auto 18px; }
.pillar h4 {
  font-family: var(--display); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--navy-700); font-weight: 500; margin-bottom: 10px;
}
.pillar p { font-size: .92rem; color: var(--charcoal); opacity: .75; margin: 0; line-height: 1.6; }
@media (max-width: 820px) { .pillars .row { grid-template-columns: repeat(2, 1fr); } }

/* Product grid — Solgar tarzı, çerçevesiz, krem zeminde "yüzer" -------- */
.products .cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
}
.card {
  background: transparent;        /* hiçbir kutu zemini yok */
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex; flex-direction: column;
  text-align: left;               /* metin sola hizalı */
}
.card .media {
  height: 320px;                  /* görsel yüksekliği 320px */
  background: transparent;        /* şeffaf, kutu yok */
  display: flex; align-items: flex-end; justify-content: center;  /* alta hizalı (Solgar tarzı) */
  padding: 0;
  transition: transform .3s ease; /* hover'da görsel kalkar */
}
.card:hover .media { transform: translateY(-8px); }
.card .media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;            /* kırpılmaz, yatayda ortalı */
}
.card .body { padding: 32px 0 0; }  /* görsel altı 32px boşluk */
.card .tag {
  font-family: var(--display);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; color: #B89968;       /* bakır üst etiket */
}
.card h3 {
  font-family: var(--display);
  font-size: 22px; font-weight: 300; letter-spacing: .08em;
  color: #1B2845;                          /* lacivert ürün adı */
  margin: 14px 0 12px;
  text-transform: none;
}
.card .desc {
  font-size: 14px; line-height: 1.6; font-weight: 400;
  color: #2D2D2D;                          /* koyu gri açıklama */
  margin-bottom: 18px;
  min-height: 2.8em;
}
.card .link {
  font-family: var(--display);
  font-size: 13px; letter-spacing: .08em; font-weight: 500;
  color: #B89968;                          /* bakır link */
  text-decoration: underline;
  text-transform: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.card .link::after { content: ""; }
@media (max-width: 1100px) { .products .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .products .cards { grid-template-columns: 1fr; } }

/* Gift mask — signature section -------------------------------------- */
.gift {
  background: var(--navy-700);
  color: var(--cream-100);
  position: relative; overflow: hidden;
}
.gift::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 15% 110%, rgba(201,168,106,.18), transparent 60%);
}
.gift .grid {
  grid-template-columns: 1fr 1.05fr; align-items: center; gap: clamp(40px, 6vw, 96px);
  position: relative;
}
.gift h2 { color: var(--cream-100); }
.gift .eyebrow { color: var(--gold-400); }
.gift .eyebrow::before { background: var(--gold-400); }
.gift p { color: rgba(247,241,225,.78); }
.gift ul { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 10px; }
.gift ul li {
  display: flex; align-items: center; gap: 12px; font-size: .98rem; color: rgba(247,241,225,.92);
}
.gift ul li::before {
  content: ""; width: 6px; height: 6px; background: var(--gold-400); border-radius: 50%; flex-shrink: 0;
}
.gift .visual {
  aspect-ratio: 5/4; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(closest-side, rgba(201,168,106,.10), transparent 70%);
}
.gift .visual svg { width: 92%; filter: drop-shadow(0 40px 60px rgba(0,0,0,.45)); }
@media (max-width: 900px) { .gift .grid { grid-template-columns: 1fr; } }

/* Story / split ------------------------------------------------------- */
.split .grid { grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 6vw, 96px); }
.split.alt .grid { grid-template-columns: 1fr 1fr; }
.split .image {
  aspect-ratio: 4/5; border-radius: 6px; overflow: hidden;
  background: linear-gradient(180deg, var(--cream-200), var(--cream-300));
  position: relative;
}
.split .image .skyglow {
  position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 70% 30%, rgba(11,31,58,.18), transparent 60%);
}
.split .image .ornament { position: absolute; inset: 0; }
@media (max-width: 900px) { .split .grid { grid-template-columns: 1fr; } }

/* Science / numbers --------------------------------------------------- */
.science { background: var(--cream-50); }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gutter); margin-top: 64px; }
.stat { text-align: center; }
.stat .n { font-family: var(--display); font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 200; color: var(--navy-700); letter-spacing: -0.01em; }
.stat .l { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 500; color: var(--charcoal); opacity: .65; margin-top: 8px; }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2,1fr); } }

/* Testimonial --------------------------------------------------------- */
.quote { text-align: center; max-width: 880px; margin: 0 auto; }
.quote blockquote {
  font-family: var(--display); font-size: clamp(1.35rem, 2.2vw, 1.9rem); line-height: 1.5;
  font-weight: 300; letter-spacing: 0;
  color: var(--navy-700); margin: 24px 0;
}
.quote cite { font-style: normal; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 500; color: var(--muted); }

/* Newsletter ---------------------------------------------------------- */
.news { background: var(--navy-700); color: var(--cream-100); padding: clamp(60px, 7vw, 110px) 0; }
.news .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: center; }
.news h2 { color: var(--cream-100); }
.news form { display: flex; gap: 10px; }
.news input {
  flex: 1; padding: 16px 20px; border-radius: 999px;
  background: rgba(247,241,225,.08); color: var(--cream-100);
  border: 1px solid rgba(247,241,225,.22); font: inherit;
}
.news input::placeholder { color: rgba(247,241,225,.55); }
.news .btn-primary { background: var(--gold-500); color: var(--navy-900); }
.news .btn-primary:hover { background: var(--gold-400); }
@media (max-width: 820px) { .news .wrap { grid-template-columns: 1fr; } }

/* Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--noctra-navy);
  color: var(--noctra-cream);
  padding: clamp(72px, 8vw, 110px) 0 32px;
}
.site-footer .cols { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.3fr; gap: clamp(40px, 5vw, 80px); }
.footer-brand {
  display: inline-block;
  font-family: var(--display); font-weight: 300;
  font-size: 1.65rem; letter-spacing: .4em;
  color: var(--noctra-cream); margin-bottom: 8px;
}
.footer-tagline { font-size: .76rem; letter-spacing: .22em; color: var(--noctra-copper); opacity: .9; margin: 0 0 18px; }
.footer-about { font-size: .92rem; color: rgba(245,239,224,.65); max-width: 32ch; line-height: 1.65; }
.footer-news-sub { color: rgba(245,239,224,.55); font-size: .88rem; margin: 0 0 16px; max-width: 32ch; }
.footer-news { display: flex; border-bottom: 1px solid rgba(245,239,224,.25); }
.footer-news input {
  flex: 1; background: transparent; border: 0; color: var(--noctra-cream);
  padding: 12px 0; font: inherit; font-size: .92rem;
}
.footer-news input::placeholder { color: rgba(245,239,224,.4); }
.footer-news input:focus { outline: 0; }
.footer-news .btn-mini {
  width: 32px; height: 32px;
  background: transparent; border: 0; color: var(--noctra-cream);
  font-size: 1.1rem; cursor: pointer; align-self: center;
  transition: color .2s var(--ease);
}
.footer-news .btn-mini:hover { color: var(--noctra-copper); }
.site-footer .legal-disclaimer { color: rgba(245,239,224,.45); max-width: 50ch; }
.site-footer h5 {
  font-family: var(--display); font-size: .76rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--noctra-cream); font-weight: 500; margin: 0 0 22px; opacity: .92;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.site-footer ul a { color: rgba(245,239,224,.65); font-size: .92rem; transition: color .25s var(--ease); }
.site-footer ul a:hover { color: var(--noctra-cream); }
.site-footer .legal {
  margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(245,239,224,.15);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: .8rem; color: rgba(245,239,224,.55);
  align-items: flex-start;
}
.site-footer .legal > span:first-child {
  display: flex; flex-direction: column;
  font-family: var(--display); font-weight: 400;
  font-size: 12px; color: #F5EFE0; opacity: .6;
  letter-spacing: .05em;
}
.site-footer .legal > span:first-child::after {
  content: "Noctra, bir Sedat Yıldız markasıdır.";
  font-family: var(--display); font-weight: 300;
  font-size: 11px; color: #F5EFE0; opacity: .45;
  letter-spacing: .1em;
  margin-top: 6px;
  font-style: normal;
}
@media (max-width: 900px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer .cols { grid-template-columns: 1fr; } }

/* Forms --------------------------------------------------------------- */
.contact-form { display: grid; gap: 16px; max-width: 640px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: var(--charcoal); opacity: .7; margin-bottom: 8px; display: block; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--noctra-blue-gray); background: var(--cream-50);
  border-radius: 0; font: inherit; color: var(--noctra-navy);
  appearance: none; -webkit-appearance: none;
}
.contact-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--noctra-navy) 50%), linear-gradient(135deg, var(--noctra-navy) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 0; border-color: var(--noctra-navy);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
@media (max-width: 700px) { .contact-form .row { grid-template-columns: 1fr; } }

/* Page header (sub-pages) -------------------------------------------- */
.page-head {
  background:
    radial-gradient(800px 400px at 80% -20%, rgba(11,31,58,.08), transparent 70%),
    var(--cream-50);
  padding: clamp(80px, 9vw, 140px) 0 clamp(40px, 5vw, 80px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-head .eyebrow { justify-content: center; }
.page-head .eyebrow::before { display: none; }
.page-head p { max-width: 56ch; margin: 14px auto 0; }

/* Reveal animation ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Utility ------------------------------------------------------------- */
.center { text-align: center; }
.muted { color: var(--muted); }
hr.rule { border: 0; height: 1px; background: var(--line); margin: 48px 0; }

/* =====================================================================
   NOCTRA — spec rebuild components
   ===================================================================== */


/* MANIFESTO ---------------------------------------------------------- */
.manifesto {
  background: var(--noctra-cream);
  padding: clamp(40px, 5vw, 80px) 0 clamp(96px, 12vw, 180px);  /* top kısaldı: hero altında title görünür */
}
.manifesto__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.manifesto__title {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -.005em;
  color: var(--noctra-navy);
  margin: 0 0 36px;
  line-height: 1.2;
}
.manifesto__body {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1rem, 1.18vw, 1.12rem); line-height: 1.85;
  color: var(--noctra-charcoal);
  letter-spacing: .005em;
  max-width: 60ch; margin: 0 auto;
}

/* VALUES ------------------------------------------------------------- */
.values { background: var(--noctra-cream); padding: clamp(80px, 9vw, 140px) 0; border-top: 1px solid var(--noctra-blue-gray); }
.values .section-head h2 {
  color: #1B2845;
  font-family: var(--display); font-weight: 300;
  font-size: 38px; letter-spacing: .05em; line-height: 1.3;
  text-align: center; margin: 0;
}
.values__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4vw, 64px);
  margin-top: 56px;
}
.value {
  position: relative;
  padding-top: 0;
}
/* kolonlar arası dikey bakır ayırıcı (1-2 ve 2-3 arası) */
.value:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #B89968;
  opacity: .4;
  right: calc(clamp(16px, 2vw, 32px) * -1);
}
.value__h {
  font-family: var(--display); font-weight: 500;
  font-size: 18px; letter-spacing: .2em;
  color: #1B2845; text-transform: uppercase; opacity: 1;
  margin: 0 0 14px;
}
.value__b {
  font-family: var(--display); font-weight: 400;
  font-size: 15px; line-height: 1.7;
  color: #2D2D2D; opacity: 1; margin: 0;
  max-width: 36ch;
}
@media (max-width: 900px) {
  .values__grid { grid-template-columns: 1fr; gap: 48px; }
  .value:not(:last-child)::after { display: none; }
  .values .section-head h2 { font-size: 28px; }
}

/* GIFT SET ----------------------------------------------------------- */
.gift-set {
  background: var(--noctra-navy); color: var(--noctra-cream);
  padding: clamp(96px, 11vw, 160px) 0;
}
.gift-set__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.gift-set__visual {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.gift-set__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}
@media (max-width: 900px) {
  .gift-set__visual { aspect-ratio: 4/3; }
  .gift-set__visual img { object-fit: cover; }
}
.gift-set__placeholder {
  width: 70%; aspect-ratio: 1/1;
  background: rgba(245, 239, 224, .04);
  border: 1px solid rgba(245, 239, 224, .12);
}
.gift-set__content h2 {
  color: var(--noctra-cream);
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -.005em;
  margin: 18px 0 24px;
}
.gift-set__content p {
  color: rgba(245, 239, 224, .78);
  font-size: 1rem; line-height: 1.78;
  max-width: 52ch;
  margin: 0 0 36px;
}
.gift-set__content .eyebrow {
  color: var(--noctra-copper);
}
.gift-set__content .eyebrow::before { background: var(--noctra-copper); }
.gift-set__content .btn-primary {
  background: var(--noctra-cream); color: var(--noctra-navy); border-color: var(--noctra-cream);
}
.gift-set__content .btn-primary:hover {
  background: var(--noctra-copper); color: var(--noctra-cream); border-color: var(--noctra-copper);
}
@media (max-width: 900px) { .gift-set__inner { grid-template-columns: 1fr; } }

/* HAMBURGER (mobile) -------------------------------------------------- */
.hamburger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
  background: transparent; border: 0; cursor: pointer; padding: 0;
}
.hamburger span {
  display: block; height: 1px; width: 24px; background: var(--noctra-cream);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
         background: var(--noctra-navy); flex-direction: column; align-items: stretch;
         gap: 0; padding: 24px 24px 32px; border-top: 1px solid rgba(245,239,224,.1); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(245,239,224,.08); }
  .hamburger { display: flex; }
}

/* COOKIE BANNER ------------------------------------------------------ */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  background: var(--noctra-navy); color: var(--noctra-cream);
  padding: 18px 22px;
  display: none;
  align-items: center; justify-content: space-between; gap: 18px;
  z-index: 80;
  border: 1px solid rgba(245,239,224,.12);
  max-width: 720px; margin: 0 auto;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; font-size: .9rem; color: rgba(245,239,224,.85); line-height: 1.5; }
.cookie-banner .cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner button {
  background: var(--noctra-cream); color: var(--noctra-navy);
  padding: 10px 18px; font: inherit; font-weight: 500;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; border: 0;
}
.cookie-banner a {
  color: var(--noctra-cream); opacity: .7; text-decoration: underline;
  font-size: .82rem; align-self: center;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* PRODUCT PAGES ------------------------------------------------------ */
.product-page { padding: clamp(48px, 6vw, 80px) 0 clamp(80px, 9vw, 140px); }
.product-back {
  display: inline-block; font-size: .78rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--noctra-charcoal); opacity: .65;
  margin-bottom: 36px;
}
.product-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding-bottom: clamp(64px, 8vw, 120px);
  border-bottom: 1px solid var(--noctra-blue-gray);
}
.product-photo {
  background: #FFFFFF;             /* sadece beyaz, krem kenar yok */
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-photo img {
  width: 100%; height: 100%;       /* görsel alanı doldurur */
  object-fit: contain;             /* kırpılmaz */
  object-position: center;
}

/* Ürün galerisi: ana resim + thumbnail strip */
.product-gallery__main {
  background: #FFFFFF;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
}
.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: contain;             /* kırpılmaz */
  object-position: center;
}
.product-gallery__thumbs {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.product-gallery__thumbs img {
  width: 76px; height: 95px;
  object-fit: contain;             /* kırpılmaz */
  object-position: center;
  background: #FFFFFF;
  cursor: pointer;
  border: 1px solid var(--noctra-blue-gray);
  opacity: .55;
  transition: opacity .2s var(--ease), border-color .2s var(--ease);
}
.product-gallery__thumbs img:hover,
.product-gallery__thumbs img.is-active {
  opacity: 1;
  border-color: var(--noctra-copper);
}
.product-info .tag {
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 500; color: var(--noctra-copper);
}
.product-info h1 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: .04em; color: var(--noctra-navy);
  margin: 16px 0 24px;
}
.product-info .lead {
  font-size: 1.05rem; line-height: 1.7; color: var(--noctra-charcoal);
  margin-bottom: 28px;
}
.product-info .price-line {
  display: flex; align-items: baseline; gap: 24px; margin-bottom: 32px;
}
.product-info .price-line .price {
  font-family: var(--display); font-weight: 400;
  font-size: 1.3rem; color: var(--noctra-navy);
}
.product-info .price-line .note {
  font-size: .82rem; color: var(--muted);
}
@media (max-width: 900px) { .product-top { grid-template-columns: 1fr; } }

/* Sections under product top */
.product-section { padding: clamp(64px, 7vw, 100px) 0; border-bottom: 1px solid var(--noctra-blue-gray); }
.product-section:last-of-type { border-bottom: 0; }
.product-section .eyebrow { margin-bottom: 18px; }
.product-section h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: .02em; color: var(--noctra-navy); margin: 0 0 28px;
}
.product-section p { font-size: 1rem; line-height: 1.78; max-width: 64ch; }

/* Ingredients table */
.ing-table { width: 100%; max-width: 620px; border-collapse: collapse; }
.ing-table th, .ing-table td {
  text-align: left; padding: 16px 0;
  border-bottom: 1px solid var(--noctra-blue-gray);
  font-size: .96rem;
}
.ing-table th {
  font-weight: 500; font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--noctra-charcoal); opacity: .65;
}
.ing-table td.value-col { text-align: right; font-variant-numeric: tabular-nums; color: var(--noctra-navy); }

/* Highlights list */
.highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; max-width: 600px; list-style: none; padding: 0; }
.highlights li {
  font-size: .96rem; color: var(--noctra-charcoal);
  padding-left: 22px; position: relative;
}
.highlights li::before {
  content: ""; position: absolute; left: 0; top: .7em; width: 10px; height: 1px;
  background: var(--noctra-copper);
}
@media (max-width: 600px) { .highlights { grid-template-columns: 1fr; } }

/* Legal small print */
.legal-fine { font-size: .82rem; line-height: 1.7; color: var(--muted); max-width: 64ch; }

/* ============================================================
   İLETİŞİM — Coming Soon bekleme ekranı
   ============================================================ */
.coming-soon {
  min-height: 100vh;
  background: #1B2845;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.coming-soon__star {
  width: 80px; height: 80px;
  opacity: 0;
  animation: csFade 600ms ease 0ms forwards,
             csPulse 4s ease-in-out 800ms infinite;
}
.coming-soon__divider {
  width: 60px; height: 1px; background: #B89968; opacity: 0;
  margin-top: 48px;
  animation: csFade 600ms ease 200ms forwards;
}
.coming-soon__title {
  font-family: var(--display); font-weight: 300;
  font-size: 48px; letter-spacing: .4em;
  color: #F5EFE0; margin: 48px 0 0; opacity: 0;
  animation: csFade 600ms ease 400ms forwards;
}
.coming-soon__text {
  font-family: var(--display); font-weight: 400;
  font-size: 16px; color: rgba(245,239,224,.65);
  max-width: 400px; margin: 32px auto 0; line-height: 1.6; opacity: 0;
  animation: csFade 600ms ease 600ms forwards;
}
.coming-soon__social { margin-top: 64px; opacity: 0; animation: csFade 600ms ease 800ms forwards; }
.coming-soon__social .label {
  font-family: var(--display);
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(245,239,224,.5); margin-bottom: 12px;
}
.coming-soon__social a {
  font-family: var(--display);
  font-size: 18px; color: rgba(245,239,224,.85);
  text-decoration: none; transition: color .3s ease;
}
.coming-soon__social a:hover { color: #B89968; }
@keyframes csFade { to { opacity: 1; transform: none; } }
@keyframes csPulse { 0%,100% { opacity: .7; } 50% { opacity: 1; } }
@media (max-width: 768px) {
  .coming-soon__star { width: 64px; height: 64px; }
  .coming-soon__divider { width: 48px; margin-top: 38px; }
  .coming-soon__title { font-size: 32px; margin-top: 38px; }
  .coming-soon__text { font-size: 14px; margin-top: 26px; }
  .coming-soon__social { margin-top: 50px; }
  .coming-soon__social a { font-size: 16px; }
}

/* ============================================================
   MARKA HİKAYESİ sayfası
   ============================================================ */
.story-hero {
  background: #1B2845;
  height: 400px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.story-hero .label {
  font-family: var(--display);
  font-size: 13px; letter-spacing: .3em; text-transform: uppercase;
  color: #F5EFE0; opacity: .7; margin-bottom: 28px;
}
.story-hero h1 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(34px, 5vw, 56px); letter-spacing: .12em;
  color: #F5EFE0; margin: 0 0 28px; line-height: 1.15;
}
.story-hero .divider { width: 60px; height: 1px; background: #B89968; margin: 0 0 22px; }
.story-hero .sub {
  font-family: var(--display);
  font-size: 14px; font-style: italic; color: #B89968; letter-spacing: .1em;
}
/* genel hikaye bölümü */
.story-section { padding: 120px 24px; }
.story-section .inner { max-width: 800px; margin: 0 auto; text-align: center; }
.story-section .label {
  font-family: var(--display);
  font-size: 14px; letter-spacing: .26em; text-transform: uppercase;
  color: #1B2845; margin-bottom: 24px; font-weight: 500;
}
.story-section h2 {
  font-family: var(--display); font-weight: 300;
  font-size: 36px; color: #1B2845; letter-spacing: .02em;
  margin: 0 0 28px; line-height: 1.2;
}
.story-section .divider { width: 40px; height: 1px; background: #B89968; margin: 0 auto 36px; }
.story-section p {
  font-size: 17px; line-height: 1.8; color: #2D2D2D;
  margin: 0 auto 24px; max-width: 680px;
}
.story-section p:last-child { margin-bottom: 0; }
/* lacivert varyant */
.story-section.navy { background: #1B2845; }
.story-section.navy .label { color: #F5EFE0; opacity: .7; }
.story-section.navy h2 { color: #F5EFE0; }
.story-section.navy p { color: rgba(245,239,224,.85); }
.story-star { font-size: 80px; color: #F5EFE0; line-height: 1; margin-bottom: 24px; }
/* üç ilke (3 kolon) */
.story-values { background: #F5EFE0; padding: 0 24px 120px; }
.story-values__head { max-width: 800px; margin: 0 auto 64px; text-align: center; }
.story-values__head .label {
  font-family: var(--display);
  font-size: 14px; letter-spacing: .26em; text-transform: uppercase;
  color: #1B2845; margin-bottom: 24px; font-weight: 500;
}
.story-values__head h2 {
  font-family: var(--display); font-weight: 300;
  font-size: 36px; color: #1B2845; letter-spacing: .02em; margin: 0;
}
.story-values__grid {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.story-value { text-align: left; }
.story-value .line { width: 40px; height: 1px; background: #B89968; margin-bottom: 20px; }
.story-value .num { font-family: var(--display); font-size: 14px; color: #B89968; display: block; margin-bottom: 12px; }
.story-value h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 18px; letter-spacing: .18em; text-transform: uppercase;
  color: #1B2845; margin: 0 0 14px;
}
.story-value p { font-size: 15px; line-height: 1.7; color: #2D2D2D; margin: 0; }
@media (max-width: 768px) {
  .story-hero { height: 320px; }
  .story-section { padding: 80px 24px; }
  .story-values__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   HERO — TAM GENİŞLİK SLIDER (banner format, bölünme yok)
   ============================================================ */
.hero {
  width: 100%;
  height: 650px;               /* sabit yükseklik */
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;       /* yumuşak fade */
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;                     /* banner ekrana tam otursun */
  object-position: center calc(50% + 38px); /* ~1cm yukarı (önceki 2cm yukarıdan 1cm aşağı) */
  display: block;
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid #F5EFE0;            /* pasif: kenarlı krem */
  background: transparent;
  opacity: 0.5;
  cursor: pointer;
  padding: 0;
  transition: opacity .4s ease, background .4s ease, border-color .4s ease;
}
.hero-dot.is-active {
  background: #B89968;                   /* aktif: bakır dolgu */
  border-color: #B89968;
  opacity: 1;
}
@media (max-width: 768px) {
  .hero { height: 450px; }              /* mobilde daha kısa */
  .hero-dot { width: 12px; height: 12px; }
  .hero-dots { gap: 16px; }
}

/* ============================================================
   UYKU BİLİMİ — liste sayfası
   ============================================================ */
.sci-hero {
  width: 100%; min-height: 400px;
  background: #1B2845; color: #F5EFE0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.sci-hero__label {
  font-family: var(--display); font-weight: 500;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: #F5EFE0; opacity: .8; margin: 0 0 28px;
}
.sci-hero__title {
  font-family: var(--display); font-weight: 300;
  font-size: 56px; letter-spacing: .04em; line-height: 1.2;
  color: #F5EFE0; margin: 0; max-width: 20ch;
}
.sci-hero__divider { width: 60px; height: 1px; background: #B89968; margin: 36px auto; }
.sci-hero__sub {
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: 16px; color: rgba(245,239,224,.6); margin: 0;
}

.sci-list { background: #F5EFE0; padding: 100px 0; }
.sci-list__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sci-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1000px) { .sci-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sci-grid { grid-template-columns: 1fr; } }

/* makale kartı (aktif) */
.sci-card {
  background: #fff; display: block; text-decoration: none; color: inherit;
  border: 1px solid rgba(27,40,69,.08);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.sci-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,40,69,.10); }
.sci-card__media {
  height: 280px; width: 100%; background: #EAEFF5;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.sci-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sci-card__star { width: 36px; height: 36px; }
.sci-card__body { padding: 24px; }
.sci-card__tag {
  font-family: var(--display); font-weight: 500;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: #B89968; display: block; margin: 0 0 12px;
}
.sci-card__title {
  font-family: var(--display); font-weight: 300;
  font-size: 22px; line-height: 1.3; color: #1B2845; margin: 0 0 8px;
}
.sci-card__subtitle {
  font-family: var(--display); font-weight: 400;
  font-size: 15px; color: rgba(27,40,69,.7); margin: 0 0 14px;
}
.sci-card__excerpt {
  font-family: var(--display); font-weight: 400;
  font-size: 14px; line-height: 1.6; color: #2D2D2D; margin: 0;
}
.sci-card__meta {
  font-family: var(--display); font-weight: 400;
  font-size: 12px; color: rgba(45,45,45,.6); margin: 16px 0 0; letter-spacing: .04em;
}
.sci-card__link {
  font-family: var(--display); font-weight: 500;
  font-size: 14px; color: #B89968; text-decoration: underline;
  display: inline-block; margin: 14px 0 0;
}

/* placeholder kart (Yakında) */
.sci-card--soon { background: #fff; border: 1px solid rgba(27,40,69,.08); cursor: default; }
.sci-card--soon:hover { transform: none; box-shadow: none; }
.sci-card--soon .sci-card__media { background: rgba(27,40,69,.15); }
.sci-card__soon-label {
  font-family: var(--display); font-weight: 500;
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: #B89968; opacity: .6;
}
.sci-card--soon .sci-card__title { color: rgba(27,40,69,.5); margin: 0; }

@media (max-width: 700px) {
  .sci-hero__title { font-size: 40px; }
  .sci-list { padding: 70px 0; }
}

/* ============================================================
   MAKALE — tekil sayfa
   ============================================================ */
.article-back-wrap { background: #F5EFE0; }
.article-back {
  display: block; max-width: 800px; margin: 0 auto; padding: 24px;
  font-family: var(--display); font-weight: 500; font-size: 14px;
  color: #B89968; text-decoration: none; letter-spacing: .04em;
}
.article-back:hover { text-decoration: underline; }

.article-hero { background: #F5EFE0; padding: 80px 24px; }
.article-hero__inner { max-width: 800px; margin: 0 auto; }
.article-hero__tag {
  font-family: var(--display); font-weight: 500; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase; color: #B89968; margin: 0 0 22px;
}
.article-hero__title {
  font-family: var(--display); font-weight: 300; font-size: 48px;
  line-height: 1.2; color: #1B2845; margin: 0 0 16px;
}
.article-hero__subtitle {
  font-family: var(--display); font-weight: 400; font-size: 24px;
  color: rgba(27,40,69,.7); margin: 0;
}
.article-hero__divider { width: 60px; height: 1px; background: #B89968; margin: 36px 0; }
.article-hero__media {
  height: 400px; width: 100%; background: #EAEFF5;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.article-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.article-hero__media--photo { height: 500px; }
@media (max-width: 700px) { .article-hero__media--photo { height: 320px; } }

.article-body { background: #F5EFE0; padding: 60px 24px; }
.article-body__inner {
  max-width: 720px; margin: 0 auto;
  font-family: var(--display); font-weight: 400; font-size: 17px;
  line-height: 1.85; color: #2D2D2D;
}
.article-body__inner h2 {
  font-family: var(--display); font-weight: 500; font-size: 22px;
  color: #1B2845; margin: 40px 0 18px; line-height: 1.3;
}
.article-body__inner p { margin: 0 0 28px; }
.article-body__inner ul, .article-body__inner ol { margin: 0 0 28px; padding-left: 22px; }
.article-body__inner li { margin-bottom: 12px; }
.article-callout {
  background: #EFE7D6; border-left: 3px solid #B89968; padding: 24px;
  margin: 0 0 28px; font-size: 16px; line-height: 1.7;
}
.article-rule { width: 60px; height: 1px; background: #B89968; margin: 60px auto; }
.article-quote {
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: 20px; color: #B89968; text-align: center; line-height: 1.6;
  max-width: 600px; margin: 0 auto;
}
.article-refs { padding-top: 60px; }
.article-refs__label {
  font-family: var(--display); font-weight: 500; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase; color: #B89968; margin: 0 0 20px;
}
.article-refs ul { list-style: none; padding: 0; margin: 0; }
.article-refs li { font-size: 14px; line-height: 1.6; opacity: .85; margin-bottom: 12px; }

/* makale altı CTA */
.article-cta { background: #1B2845; padding: 80px 24px; text-align: center; }
.article-cta__label {
  font-family: var(--display); font-weight: 500; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase; color: #F5EFE0; opacity: .8; margin: 0 0 20px;
}
.article-cta__title {
  font-family: var(--display); font-weight: 300; font-size: 32px;
  color: #F5EFE0; margin: 0 0 32px;
}
.article-cta__btn {
  display: inline-block; background: #F5EFE0; color: #1B2845;
  font-family: var(--display); font-weight: 500; font-size: 14px;
  letter-spacing: .1em; padding: 18px 36px; text-decoration: none;
  transition: opacity 200ms ease;
}
.article-cta__btn:hover { opacity: .85; }

@media (max-width: 700px) {
  .article-hero__title { font-size: 36px; }
  .article-hero__subtitle { font-size: 20px; }
  .article-hero__media { height: 240px; }
  .article-body__inner { font-size: 15px; }
  .article-cta__title { font-size: 26px; }
}

/* ============================================================
   BLOG — liste sayfası (sci-* stillerini taban alarak)
   ============================================================ */
.blog-hero {
  width: 100%; min-height: 320px;
  background: #1B2845; color: #F5EFE0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 24px;
}
.blog-hero__label {
  font-family: var(--display); font-weight: 500;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: #F5EFE0; opacity: .8; margin: 0 0 24px;
}
.blog-hero__title {
  font-family: var(--display); font-weight: 300;
  font-size: 48px; letter-spacing: .03em; line-height: 1.2;
  color: #F5EFE0; margin: 0; max-width: 22ch;
}
.blog-hero__divider { width: 60px; height: 1px; background: #B89968; margin: 32px auto; }
.blog-hero__sub {
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: 15px; color: rgba(245,239,224,.6); margin: 0;
}

.blog-list { background: #F5EFE0; padding: 80px 0; }
.blog-list__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #fff; display: block; text-decoration: none; color: inherit;
  border: 1px solid rgba(27,40,69,.08);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,40,69,.10); }
.blog-card__media {
  height: 240px; width: 100%; background: #EAEFF5;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__star { width: 36px; height: 36px; }
.blog-card__body { padding: 24px; }
.blog-card__tag {
  font-family: var(--display); font-weight: 500;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: #B89968; display: block; margin: 0 0 12px;
}
.blog-card__title {
  font-family: var(--display); font-weight: 300;
  font-size: 20px; line-height: 1.3; color: #1B2845; margin: 0 0 12px;
}
.blog-card__excerpt {
  font-family: var(--display); font-weight: 400;
  font-size: 14px; line-height: 1.6; color: #2D2D2D; margin: 0;
}
.blog-card__meta {
  font-family: var(--display); font-weight: 400;
  font-size: 12px; color: rgba(45,45,45,.6); margin: 14px 0 0; letter-spacing: .04em;
}
.blog-card__link {
  font-family: var(--display); font-weight: 500;
  font-size: 14px; color: #B89968; text-decoration: underline;
  display: inline-block; margin: 12px 0 0;
}

.blog-card--soon { background: #fff; border: 1px solid rgba(27,40,69,.08); cursor: default; }
.blog-card--soon:hover { transform: none; box-shadow: none; }
.blog-card--soon .blog-card__media { background: rgba(27,40,69,.15); }
.blog-card__soon-label {
  font-family: var(--display); font-weight: 500;
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: #B89968; opacity: .6;
}
.blog-card--soon .blog-card__title { color: rgba(27,40,69,.5); margin: 0; }

/* ============================================================
   BLOG MAKALE — tekil sayfa
   ============================================================ */
.blog-article-hero { background: #F5EFE0; padding: 60px 24px; }
.blog-article-hero__inner { max-width: 800px; margin: 0 auto; }
.blog-article-hero__tag {
  font-family: var(--display); font-weight: 500; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase; color: #B89968; margin: 0 0 20px;
}
.blog-article-hero__title {
  font-family: var(--display); font-weight: 300; font-size: 42px;
  line-height: 1.2; color: #1B2845; margin: 0;
}
.blog-article-hero__divider { width: 60px; height: 1px; background: #B89968; margin: 32px 0; }
.blog-article-hero__media {
  height: 400px; width: 100%; background: #EAEFF5;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.blog-article-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.blog-body { background: #F5EFE0; padding: 60px 24px; }
.blog-body__inner {
  max-width: 720px; margin: 0 auto;
  font-family: var(--display); font-weight: 400; font-size: 17px;
  line-height: 1.85; color: #2D2D2D;
}
.blog-body__inner h2 {
  font-family: var(--display); font-weight: 500; font-size: 24px;
  color: #1B2845; margin: 44px 0 18px; line-height: 1.3;
}
.blog-body__inner h3 {
  font-family: var(--display); font-weight: 500; font-size: 19px;
  color: #1B2845; margin: 32px 0 14px; line-height: 1.3;
}
.blog-body__inner p { margin: 0 0 26px; }
.blog-body__inner ul, .blog-body__inner ol { margin: 0 0 26px; padding-left: 22px; }
.blog-body__inner li { margin-bottom: 10px; }
.blog-callout {
  background: #EFE7D6; border-left: 3px solid #B89968; padding: 24px;
  margin: 0 0 28px; font-size: 16px; line-height: 1.7;
}
.blog-spec {
  background: #fff; border: 1px solid rgba(27,40,69,.1);
  padding: 18px 22px; margin: 0 0 22px;
  font-size: 14px; line-height: 1.7;
}
.blog-spec p { margin: 0; }
.blog-faq__q {
  font-family: var(--display); font-weight: 500; font-size: 18px;
  color: #1B2845; margin: 24px 0 8px;
}
.blog-faq__a { margin: 0 0 24px; }
.blog-cta-btn-wrap { text-align: center; margin: 48px 0 0; }
.blog-cta-btn {
  display: inline-block; background: #B89968; color: #F5EFE0;
  font-family: var(--display); font-weight: 500; font-size: 14px;
  letter-spacing: .1em; padding: 16px 32px; text-decoration: none;
  transition: background 200ms ease;
}
.blog-cta-btn:hover { background: #9c8255; }

/* makale altı blog'a dön */
.blog-back-wrap { background: #F5EFE0; }
.blog-back-link {
  display: block; max-width: 800px; margin: 0 auto; padding: 24px;
  font-family: var(--display); font-weight: 500; font-size: 14px;
  color: #B89968; text-decoration: none; letter-spacing: .04em;
}
.blog-back-link:hover { text-decoration: underline; }

.blog-cta { background: #1B2845; padding: 60px 24px; text-align: center; }
.blog-cta__label {
  font-family: var(--display); font-weight: 500; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase; color: #F5EFE0; opacity: .8; margin: 0 0 18px;
}
.blog-cta__title {
  font-family: var(--display); font-weight: 300; font-size: 28px;
  color: #F5EFE0; margin: 0 0 28px;
}
.blog-cta__btn {
  display: inline-block; background: #F5EFE0; color: #1B2845;
  font-family: var(--display); font-weight: 500; font-size: 14px;
  letter-spacing: .1em; padding: 16px 32px; text-decoration: none;
  transition: opacity 200ms ease;
}
.blog-cta__btn:hover { opacity: .85; }

@media (max-width: 700px) {
  .blog-hero__title { font-size: 34px; }
  .blog-article-hero__title { font-size: 30px; }
  .blog-article-hero__media { height: 220px; }
  .blog-body__inner { font-size: 15px; }
  .blog-body__inner h2 { font-size: 21px; }
  .blog-body__inner h3 { font-size: 17px; }
  .blog-cta__title { font-size: 22px; }
}

/* ============================================================
   GLOBAL MOBILE SAFETY NET — son blok, herşeyi sıkıştırır
   ============================================================ */
@media (max-width: 640px) {
  /* Header sıkıştır */
  .site-header .bar { height: 70px; padding: 0 16px; }
  .brand img { max-height: 56px !important; transform: none !important; }

  /* Container padding küçült */
  .container { padding: 0 16px; }

  /* Section padding küçült */
  section { padding: 56px 0; }

  /* Hero yükseklikleri sıkı */
  .hero { height: 360px; }
  .story-hero { min-height: 280px; padding: 60px 16px; }
  .sci-hero { min-height: 320px; padding: 60px 16px; }
  .blog-hero { min-height: 260px; padding: 50px 16px; }

  /* Büyük fixed font-size'ları küçült */
  .sci-hero__title { font-size: 32px; }
  .sci-hero__divider { margin: 24px auto; }
  .blog-hero__title { font-size: 28px; }
  .story-hero h1 { font-size: 32px; line-height: 1.25; }

  /* Article hero */
  .article-hero { padding: 50px 16px; }
  .article-hero__title { font-size: 28px; }
  .article-hero__subtitle { font-size: 17px; }
  .article-hero__media { height: 200px; }
  .article-hero__media--photo { height: 240px; }
  .article-body { padding: 40px 16px; }
  .article-body__inner { font-size: 15px; line-height: 1.75; }
  .article-body__inner h2 { font-size: 19px; margin-top: 32px; }
  .article-cta { padding: 50px 16px; }
  .article-cta__title { font-size: 22px; }

  /* Blog article */
  .blog-article-hero { padding: 40px 16px; }
  .blog-article-hero__title { font-size: 26px; }
  .blog-article-hero__media { height: 200px; }
  .blog-body { padding: 40px 16px; }
  .blog-body__inner { font-size: 15px; line-height: 1.75; }
  .blog-body__inner h2 { font-size: 20px; margin-top: 32px; }
  .blog-body__inner h3 { font-size: 17px; margin-top: 26px; }
  .blog-cta { padding: 50px 16px; }
  .blog-cta__title { font-size: 22px; }

  /* Manifesto */
  .manifesto { padding: 50px 0 70px; }
  .manifesto__title { font-size: 24px !important; margin-bottom: 18px !important; }
  .manifesto__body { font-size: 15px; }

  /* Section head */
  .section-head h2 { font-size: 24px; }
  .values { padding: 60px 0; }
  .values .section-head h2 { font-size: 26px; letter-spacing: .03em; }
  .value:not(:last-child)::after { display: none; }
  .value__h { font-size: 16px; letter-spacing: .14em; }
  .value__b { font-size: 14px; }

  /* Ürün kartları */
  .products { padding: 60px 0; }
  .card .media { height: 240px; }
  .card h3 { font-size: 19px; }
  .card .desc { font-size: 13px; }

  /* Ürün sayfası */
  .product-page { padding: 50px 0; }
  .product-info h1 { font-size: 28px; }
  .product-info .lead { font-size: 15px; }
  .price-line .price { font-size: 22px; }
  .product-gallery__main { height: 320px; }
  .product-section { padding: 28px 0; }
  .product-section h2 { font-size: 19px; }

  /* Story */
  .story-section { padding: 60px 16px; }
  .story-section h2 { font-size: 24px; }
  .story-section p { font-size: 15px; }
  .story-values { padding: 0 16px 70px; }
  .story-values__head h2 { font-size: 24px; }

  /* Gift set */
  .gift-set { padding: 60px 0; }
  .gift-set__content h2 { font-size: 24px; }

  /* Sci/Blog liste */
  .sci-list, .blog-list { padding: 50px 0; }
  .sci-list__inner, .blog-list__inner { padding: 0 16px; }
  .sci-grid, .blog-grid { gap: 24px; }
  .sci-card__media, .blog-card__media { height: 200px; }
  .sci-card__title, .blog-card__title { font-size: 18px; }
  .sci-card__body, .blog-card__body { padding: 20px; }

  /* Footer sıkıştır */
  .site-footer { padding: 50px 0 30px; }
  .site-footer .container { padding: 0 16px; }
  .site-footer .legal {
    flex-direction: column; align-items: flex-start; gap: 12px;
    margin-top: 32px; padding-top: 20px;
  }
  .site-footer .legal-disclaimer { font-size: 11px; }

  /* Coming soon */
  .coming-soon__title { font-size: 28px !important; letter-spacing: .3em; }
  .coming-soon__text { font-size: 14px; padding: 0 24px; }

  /* Long text sıkıştır */
  h1 { word-wrap: break-word; overflow-wrap: break-word; }
  p { word-wrap: break-word; overflow-wrap: break-word; }

  /* Table güvenliği */
  .ing-table { font-size: 13px; }
  .ing-table th, .ing-table td { padding: 10px 8px; }
}

/* Çok küçük ekranlar (iPhone SE vs.) */
@media (max-width: 380px) {
  .site-header .bar { height: 64px; padding: 0 12px; }
  .brand img { max-height: 48px !important; }
  .container { padding: 0 12px; }
  .article-hero__title, .blog-article-hero__title { font-size: 24px; }
  .sci-hero__title { font-size: 26px; }
  .blog-hero__title { font-size: 24px; }
}

/* ============================================================
   MARKA HİKAYESİ — yeni sayfa
   ============================================================ */
.mh-hero {
  width: 100%; min-height: 380px;
  background: #1B2845; color: #F5EFE0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 70px 24px;
}
.mh-hero__label {
  font-family: var(--display); font-weight: 500; font-size: 12px;
  letter-spacing: .28em; text-transform: uppercase;
  color: #B89968; margin: 0 0 26px;
}
.mh-hero__title {
  font-family: var(--display); font-weight: 300;
  font-size: 52px; letter-spacing: .02em; line-height: 1.2;
  color: #F5EFE0; margin: 0; max-width: 18ch;
}
.mh-hero__divider { width: 60px; height: 1px; background: #B89968; margin: 32px auto; }
.mh-hero__sub {
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: 16px; color: rgba(245,239,224,.7); margin: 0;
}

/* İnce gece şeridi — CSS-only */
.mh-strip {
  position: relative;
  width: 100%; height: 120px;
  background: linear-gradient(to right, #0F1A2E 0%, #1B2845 50%, #0F1A2E 100%);
  margin: 0 0 60px;
  overflow: hidden;
}
/* Yıldızlar — çok küçük noktalar, rastgele dağılmış */
.mh-strip__sky {
  position: absolute; inset: 0;
  /* her bir radial gradient = bir yıldız (x y, boyut, parlaklık) */
  background-image:
    radial-gradient(1.2px 1.2px at 4% 28%, rgba(245,239,224,.55), transparent 60%),
    radial-gradient(1px 1px at 9% 72%, rgba(245,239,224,.35), transparent 60%),
    radial-gradient(1.5px 1.5px at 14% 18%, rgba(245,239,224,.60), transparent 60%),
    radial-gradient(1px 1px at 18% 64%, rgba(245,239,224,.30), transparent 60%),
    radial-gradient(1.2px 1.2px at 23% 40%, rgba(245,239,224,.45), transparent 60%),
    radial-gradient(1px 1px at 28% 82%, rgba(245,239,224,.30), transparent 60%),
    radial-gradient(1.5px 1.5px at 33% 22%, rgba(245,239,224,.55), transparent 60%),
    radial-gradient(1px 1px at 38% 58%, rgba(245,239,224,.40), transparent 60%),
    radial-gradient(1.2px 1.2px at 43% 30%, rgba(245,239,224,.45), transparent 60%),
    radial-gradient(1px 1px at 57% 70%, rgba(245,239,224,.35), transparent 60%),
    radial-gradient(1.5px 1.5px at 62% 26%, rgba(245,239,224,.55), transparent 60%),
    radial-gradient(1px 1px at 67% 60%, rgba(245,239,224,.30), transparent 60%),
    radial-gradient(1.2px 1.2px at 72% 38%, rgba(245,239,224,.50), transparent 60%),
    radial-gradient(1px 1px at 77% 80%, rgba(245,239,224,.30), transparent 60%),
    radial-gradient(1.5px 1.5px at 82% 20%, rgba(245,239,224,.55), transparent 60%),
    radial-gradient(1px 1px at 87% 66%, rgba(245,239,224,.35), transparent 60%),
    radial-gradient(1.2px 1.2px at 92% 32%, rgba(245,239,224,.45), transparent 60%),
    radial-gradient(1px 1px at 96% 74%, rgba(245,239,224,.30), transparent 60%);
  background-repeat: no-repeat;
  pointer-events: none;
}
/* Merkez kutup yıldızı */
.mh-strip__star {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  filter: drop-shadow(0 0 4px rgba(184,153,104,.6)) drop-shadow(0 0 10px rgba(184,153,104,.3));
}
/* Yıldız etrafında ince hare */
.mh-strip__halo {
  position: absolute; top: 50%; left: 50%;
  width: 64px; height: 64px;
  transform: translate(-50%, -50%);
  border: 1px solid #B89968;
  border-radius: 50%;
  opacity: .2;
}
/* Alttaki ufuk çizgisi */
.mh-strip::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px; background: #F5EFE0; opacity: .1;
}

/* Anlatı bölümleri */
.mh-section { background: #F5EFE0; padding: 80px 24px; }
.mh-section__inner {
  max-width: 760px; margin: 0 auto;
  font-family: var(--display); font-weight: 400; font-size: 17px;
  line-height: 1.85; color: #2D2D2D;
}
.mh-section__inner h2 {
  font-family: var(--display); font-weight: 500;
  font-size: 28px; color: #1B2845; margin: 0 0 24px; line-height: 1.3;
}
.mh-section__inner p { margin: 0 0 24px; }
.mh-section__inner p:last-child { margin-bottom: 0; }

/* Kurucunun mesajı */
.mh-message { background: #EFE7D2; padding: 80px 24px; }
.mh-message__inner {
  max-width: 720px; margin: 0 auto;
  border-left: 4px solid #B89968;
  padding: 8px 0 8px 40px;
}
.mh-message__label {
  font-family: var(--display); font-weight: 500; font-size: 12px;
  letter-spacing: .26em; text-transform: uppercase;
  color: #B89968; margin: 0 0 24px;
}
.mh-message__body {
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: 19px; line-height: 1.7; color: #2D2D2D;
  margin: 0 0 24px;
}
.mh-message__close {
  font-family: var(--display); font-weight: 500; font-style: normal;
  font-size: 24px; letter-spacing: .04em; color: #B89968;
  margin: 0 0 32px;
}
.mh-message__sign {
  text-align: right;
}
.mh-message__sign-line { width: 40px; height: 1px; background: #B89968; margin: 0 0 14px auto; }
.mh-message__sign-name {
  font-family: var(--display); font-weight: 500;
  font-size: 16px; color: #1B2845; display: block;
}
.mh-message__sign-role {
  font-family: var(--display); font-weight: 300;
  font-size: 13px; color: #1B2845; opacity: .6;
}

/* Alt CTA */
.mh-cta { background: #1B2845; padding: 80px 24px; text-align: center; }
.mh-cta__label {
  font-family: var(--display); font-weight: 500; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase;
  color: #F5EFE0; opacity: .8; margin: 0 0 20px;
}
.mh-cta__title {
  font-family: var(--display); font-weight: 300;
  font-size: 28px; color: #F5EFE0; margin: 0 0 32px;
}
.mh-cta__btn {
  display: inline-block; background: #F5EFE0; color: #1B2845;
  font-family: var(--display); font-weight: 500; font-size: 14px;
  letter-spacing: .1em; padding: 16px 32px; text-decoration: none;
  transition: opacity 200ms ease;
}
.mh-cta__btn:hover { opacity: .85; }

@media (max-width: 700px) {
  .mh-hero { min-height: 320px; padding: 50px 20px; }
  .mh-hero__title { font-size: 32px; }
  .mh-strip { height: 100px; margin: 0 0 48px; }
  .mh-strip__star { width: 26px; height: 26px; }
  .mh-strip__halo { width: 52px; height: 52px; }
  .mh-section { padding: 60px 20px; }
  .mh-section__inner { font-size: 15px; }
  .mh-section__inner h2 { font-size: 22px; margin-bottom: 18px; }
  .mh-message { padding: 60px 20px; }
  .mh-message__inner { padding: 6px 0 6px 24px; }
  .mh-message__body { font-size: 16px; }
  .mh-message__close { font-size: 20px; }
  .mh-cta { padding: 60px 20px; }
  .mh-cta__title { font-size: 22px; }
}
