/* ───── Editorial Luxe — Sarı Etiket ───── */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --yellow: #FFD60A;
  --yellow-soft: #FFF3B0;
  --yellow-bg: #FFFBE6;
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-300: #D4D4D4;
  --gray-200: #E5E5E5;
  --gray-100: #F2F0E9;
  --gray-50: #FAF9F4;
  --paper: #FFFEFA;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; font-weight: inherit; }
.hl {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 4px;
}

/* ───── Header ───── */
.hd {
  position: sticky; top: 0;
  display: grid;
  grid-template-columns: 40px auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 40px;
  background: rgba(255,254,250,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 50;
}
.hd-back {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s, border-color .2s;
}
.hd-back:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.hd-logo { display: flex; align-items: center; gap: 10px; }
.hd-mark {
  width: 30px; height: 30px;
  background: var(--yellow); color: var(--ink);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 14px;
  letter-spacing: -0.02em;
  transform: rotate(-3deg);
}
.hd-name {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em;
}

.hd-nav {
  display: flex; gap: 28px;
  font-size: 13px; font-weight: 500;
  margin-left: 60px;
}
.hd-nav a {
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.hd-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.hd-nav a:hover::after { transform: scaleX(1); }

.hd-tools { display: flex; gap: 8px; }
.hd-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  transition: background .2s;
}
.hd-icon:hover { background: var(--gray-100); }
.hd-badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--ink); color: var(--yellow);
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
}

/* ───── Masthead ticker ───── */
.masthead {
  background: var(--ink); color: var(--paper);
  padding: 10px 0;
  display: flex; gap: 40px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden;
}
.masthead span:nth-child(odd):not(:nth-child(2n+1)) { color: var(--yellow); }

/* ───── Hero ───── */
.hero { padding: 80px 40px 100px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1440px; margin: 0 auto;
  align-items: end;
}
.hero-meta {
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 32px;
}
.hero-time { color: var(--ink); font-weight: 600; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 8.5vw, 144px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.hero-title em { font-weight: 400; }
.hero-lead {
  margin-top: 36px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--gray-700);
}
.hero-ctas {
  margin-top: 36px;
  display: flex; gap: 14px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: transform .25s, background .25s, color .25s;
}
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.hero-foot {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid var(--gray-200);
  display: flex; gap: 60px;
}
.hero-foot div { display: flex; flex-direction: column; }
.hero-foot strong {
  font-family: var(--serif);
  font-size: 32px; font-weight: 500; letter-spacing: -0.03em;
}
.hero-foot span {
  font-size: 11px; letter-spacing: 0.12em; color: var(--gray-500);
  text-transform: uppercase; margin-top: 4px;
}

/* Hero figure */
.hero-fig {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--gray-100);
  overflow: hidden;
}
.hero-fig img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.hero-fig:hover img { transform: scale(1.04); }
.hero-fig figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.5), transparent);
  color: var(--paper);
  display: flex; gap: 12px;
  font-size: 12px; letter-spacing: 0.06em;
}
.hero-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--yellow); color: var(--ink);
  padding: 8px 14px;
  font-family: var(--serif); font-weight: 600;
  font-size: 13px; letter-spacing: 0.04em;
  transform: rotate(-3deg);
}

/* ───── Marquee ───── */
.marquee {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  background: var(--paper);
  padding: 22px 0;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marqueeMove 38s linear infinite;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  letter-spacing: -0.02em;
  align-items: center;
}
.marquee-track .mq {
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee-track .mq-dot { color: var(--yellow); font-size: 22px; }
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───── Manifesto ───── */
.manifesto {
  position: relative;
  padding: 140px 40px 120px;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.manifesto-num {
  font-family: var(--serif);
  font-size: 14px; font-style: italic;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.manifesto-text em { font-style: italic; }
.manifesto-sig {
  margin-top: 40px;
  display: flex; justify-content: center; gap: 24px;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--gray-500); text-transform: uppercase;
}

/* ───── Section common ───── */
.section { padding: 80px 40px; max-width: 1440px; margin: 0 auto; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.kicker {
  display: block;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--gray-500); text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500; letter-spacing: -0.03em;
  line-height: 1;
}
.section-head h3 em { font-style: italic; }
.section-link {
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.section-link:hover { color: var(--gray-500); border-color: var(--yellow); }
.section-note {
  max-width: 360px;
  text-align: right;
  font-size: 14px; color: var(--gray-500); line-height: 1.5;
  font-family: var(--serif); font-style: italic;
}

/* ───── Campaigns asymmetric grid ───── */
.campaigns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  min-height: 720px;
}
.campaigns .camp:nth-child(1) { grid-row: span 2; }
.campaigns .camp:nth-child(4) { grid-column: span 2; }

.camp {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
}
.camp img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.camp:hover img { transform: scale(1.06); }
.camp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7), rgba(10,10,10,0.1) 50%, transparent);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: end;
  color: var(--paper);
}
.camp-tag {
  align-self: start;
  background: var(--yellow); color: var(--ink);
  padding: 6px 12px;
  font-size: 11px; letter-spacing: 0.1em; font-weight: 600;
  text-transform: uppercase;
  margin-bottom: auto;
}
.camp-num {
  font-family: var(--serif);
  font-size: 12px; font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.camp-brand {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.85;
}
.camp-title {
  font-family: var(--serif);
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.camp:nth-child(1) .camp-title { font-size: 56px; }
.camp-meta {
  margin-top: 14px;
  display: flex; gap: 16px;
  font-size: 12px;
  align-items: baseline;
}
.camp-discount { font-weight: 600; color: var(--yellow); }
.camp-end { opacity: 0.7; }
.camp-cta {
  margin-top: 18px;
  align-self: start;
  font-size: 13px; font-weight: 500;
  border-bottom: 1px solid var(--paper);
  padding-bottom: 2px;
  transition: gap .3s;
  display: inline-flex; gap: 8px; align-items: center;
}
.camp:hover .camp-cta { color: var(--yellow); border-color: var(--yellow); gap: 12px; }

/* ───── Editor section ───── */
.editor-section { background: var(--gray-50); max-width: none; padding: 100px 40px; }
.editor-section .section-head { max-width: 1440px; margin: 0 auto 56px; }
.editor-section .products {
  max-width: 1440px; margin: 0 auto;
}

/* ───── Products ───── */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.prod {
  cursor: pointer;
  display: flex; flex-direction: column;
}
.prod-fig {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-100);
}
.prod-fig img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.prod:hover .prod-fig img { transform: scale(1.06); }
.prod-discount {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--yellow);
  font-family: var(--serif); font-weight: 600;
  font-size: 13px; padding: 4px 8px;
  letter-spacing: -0.02em;
}
.prod-fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: grid; place-items: center;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s, transform .3s, background .2s;
}
.prod:hover .prod-fav { opacity: 1; transform: translateY(0); }
.prod-fav:hover { background: var(--yellow); }
.prod-fav.on svg { fill: #ef4444; stroke: #ef4444; }
.prod-stock {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--paper);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px;
  display: none;
}
.prod-stock.show { display: block; color: var(--ink); }
.prod-stock.show::before { content: "● "; color: #ef4444; }

.prod-info { padding: 16px 0 0; }
.prod-brand {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gray-500);
}
.prod-title {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 6px;
  line-height: 1.25;
}
.prod-foot {
  margin-top: 12px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.prod-prices { display: flex; gap: 10px; align-items: baseline; }
.prod-price { font-weight: 600; font-size: 16px; }
.prod-old { color: var(--gray-500); font-size: 13px; text-decoration: line-through; }
.prod-rate {
  font-size: 12px; color: var(--gray-500);
}
.prod-rate .star { color: var(--yellow); margin-right: 2px; filter: drop-shadow(0 0 1px rgba(0,0,0,0.3)); }

/* ───── Pullout quote ───── */
.pullout {
  position: relative;
  max-width: 1100px;
  margin: 80px auto;
  padding: 80px 60px;
  text-align: center;
  background: var(--yellow-bg);
}
.pullout::before, .pullout::after {
  content: ""; position: absolute;
  width: 80px; height: 1px; background: var(--ink);
  top: 50%;
}
.pullout::before { left: -40px; }
.pullout::after { right: -40px; }
.pullout-mark {
  font-family: var(--serif);
  font-size: 120px; line-height: 0.6;
  color: var(--yellow);
  display: block;
  height: 60px;
  font-style: italic;
}
.pullout p {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.pullout p em { font-style: italic; }
.pullout-by {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ───── Categories ───── */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.cat {
  background: var(--paper);
  padding: 36px 28px;
  cursor: pointer;
  position: relative;
  transition: background .35s;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 180px;
}
.cat:hover { background: var(--yellow-bg); }
.cat-icon { font-size: 28px; }
.cat-name {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em;
}
.cat-count {
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-top: auto;
}
.cat-arrow {
  position: absolute; top: 28px; right: 28px;
  opacity: 0; transform: translate(-6px, 6px);
  transition: opacity .35s, transform .35s;
}
.cat:hover .cat-arrow { opacity: 1; transform: translate(0,0); }

/* ───── VIP ───── */
.vip {
  background: var(--ink); color: var(--paper);
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.vip .kicker { color: var(--gray-500); }
.vip h3 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.vip h3 em { font-style: italic; color: var(--yellow); }
.vip p { font-size: 16px; opacity: 0.7; max-width: 440px; line-height: 1.55; margin-bottom: 28px; }
.vip-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vip-card {
  background: var(--ink-2);
  border: 1px solid var(--gray-700);
  padding: 28px 22px;
  transition: transform .35s, border-color .35s, background .35s;
  cursor: pointer;
}
.vip-card:hover { transform: translateY(-6px); border-color: var(--yellow); background: var(--gray-700); }
.vip-card.featured { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.vip-card.featured:hover { background: var(--yellow-soft); }
.vip-tier {
  font-family: var(--serif);
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em;
}
.vip-price {
  margin-top: 8px;
  font-size: 14px; opacity: 0.7;
  margin-bottom: 24px;
}
.vip-card.featured .vip-price { opacity: 0.6; }
.vip-card ul { list-style: none; }
.vip-card li {
  font-size: 13px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 8px;
}
.vip-card.featured li { border-top-color: rgba(0,0,0,0.1); }
.vip-card li::before {
  content: "+"; color: var(--yellow); flex-shrink: 0;
}
.vip-card.featured li::before { color: var(--ink); }

/* ───── Trust ───── */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--paper);
}
.trust > div {
  padding: 40px 32px;
  border-right: 1px solid var(--gray-200);
  display: flex; gap: 16px;
}
.trust > div:last-child { border-right: 0; }
.trust-icon {
  width: 40px; height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 600;
  flex-shrink: 0;
}
.trust h6 {
  font-family: var(--serif);
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.trust p { font-size: 13px; color: var(--gray-500); line-height: 1.4; }

/* ───── Newsletter ───── */
.news {
  text-align: center;
  padding: 120px 40px;
  max-width: 900px; margin: 0 auto;
  position: relative;
}
.news-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px; color: var(--gray-500);
  margin-bottom: 20px;
}
.news-h {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.1;
}
.news-h em { font-style: italic; }
.news-form {
  margin-top: 40px;
  display: flex; max-width: 520px;
  margin-left: auto; margin-right: auto;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
}
.news-form input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 18px;
  padding: 8px 0;
  font-style: italic;
}
.news-form input:focus { outline: none; }
.news-form button {
  font-size: 14px; font-weight: 600;
  white-space: nowrap;
  transition: color .2s;
}
.news-form button:hover { color: var(--gray-500); }
.news-fine { margin-top: 14px; font-size: 12px; color: var(--gray-500); }

/* ───── Footer ───── */
.ft {
  background: var(--paper);
  border-top: 1px solid var(--ink);
  padding: 60px 40px 32px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1440px; margin: 0 auto 60px;
}
.ft-brand p {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gray-500);
  max-width: 320px;
  font-size: 15px;
}
.ft-col h5 {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
  font-weight: 500;
}
.ft-col a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  transition: color .2s, padding .25s;
}
.ft-col a:hover { padding-left: 8px; color: var(--gray-500); }
.ft-base {
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--gray-500);
  font-family: var(--serif); font-style: italic;
  max-width: 1440px; margin: 0 auto;
}

/* ───── Responsive ───── */
@media (max-width: 1100px) {
  .hd-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .campaigns { grid-template-columns: 1fr 1fr; min-height: auto; }
  .campaigns .camp:nth-child(1), .campaigns .camp:nth-child(4) { grid-row: auto; grid-column: auto; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .vip { grid-template-columns: 1fr; gap: 40px; }
  .vip-right { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust > div { border-right: 0; border-bottom: 1px solid var(--gray-200); }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}

/* ───── Reveal animations ───── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
