/* =========================================================
   LumiCraft Handmade — ana stil dosyası
   Palet logodan türetildi: krem zemin + espresso mürekkep + tabaklanmış deri tonu
   ========================================================= */

:root {
  --cream:        #F3ECE3;
  --cream-2:      #EBE1D5;
  --cream-3:      #E2D5C5;
  --paper:        #FBF7F2;
  --ink:          #2A2018;
  --ink-2:        #4A3B2E;
  --ink-3:        #7A6857;
  --tan:          #B0824F;
  --tan-dark:     #8C6337;
  --brass:        #A98040;
  --line:         rgba(42, 32, 24, 0.14);
  --line-soft:    rgba(42, 32, 24, 0.08);
  --shadow-sm:    0 1px 2px rgba(42,32,24,.05), 0 4px 14px rgba(42,32,24,.05);
  --shadow-md:    0 2px 6px rgba(42,32,24,.06), 0 18px 44px rgba(42,32,24,.10);
  --shadow-lg:    0 30px 80px rgba(42,32,24,.16);

  --font-display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap:   1240px;
  --wrap-n: 900px;
  --gut:    clamp(20px, 5vw, 64px);
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;

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

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, video, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--cream);
  font-weight: 400;
  letter-spacing: .005em;
  overflow-x: hidden;
}

/* ---------- yapı ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-n { width: 100%; max-width: var(--wrap-n); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 140px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--cream-2); }
.section--ink h2, .section--ink h3 { color: var(--paper); }

/* ---------- tipografi ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.h-xl { font-size: clamp(2.7rem, 7.2vw, 5.6rem); }
.h-lg { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.h-md { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.h-sm { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .705rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--tan-dark);
  display: block;
}
.section--ink .eyebrow { color: var(--brass); }

/* ch tabanlı genişlikler dar ekranda taşmasın diye min() ile sınırlanıyor */
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--ink-2); max-width: min(62ch, 100%); }
.muted { color: var(--ink-3); }
.serif-quote { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); line-height: 1.32; color: var(--ink); }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.9em;
  font-size: .82rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--tan-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: var(--cream-3); }
.btn--wa { background: #1FA855; color: #fff; }
.btn--wa:hover { background: #17924a; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--wide { width: 100%; }
.btn--sm { padding: .7em 1.35em; font-size: .74rem; }

.link-u {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .82rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); padding-bottom: 4px;
  border-bottom: 1px solid var(--line); transition: .3s var(--ease);
}
.link-u:hover { border-color: var(--ink); gap: .9em; }
.link-u svg { transition: transform .3s var(--ease); }
.link-u:hover svg { transform: translateX(3px); }

/* ---------- header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.hdr.is-solid { background: rgba(243,236,227,.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line-soft); }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.32rem; color: var(--ink); letter-spacing: .01em; }
.brand__sub { font-size: .56rem; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }

/* koyu hero üstünde başlık açık renge döner, kaydırınca normale iner */
.has-hero .hdr:not(.is-solid) .brand__name { color: #FBF7F2; }
.has-hero .hdr:not(.is-solid) .brand__sub { color: rgba(243,236,227,.62); }
.has-hero .hdr:not(.is-solid) .nav a { color: rgba(243,236,227,.86); }
.has-hero .hdr:not(.is-solid) .nav a:hover { color: #FBF7F2; }
.has-hero .hdr:not(.is-solid) .nav a::after { background: var(--paper); }
.has-hero .hdr:not(.is-solid) .btn--solid { background: rgba(251,247,242,.94); color: var(--ink); }
.has-hero .hdr:not(.is-solid) .btn--solid:hover { background: #fff; }
.has-hero .hdr:not(.is-solid) .burger { border-color: rgba(243,236,227,.5); background: rgba(20,14,9,.34); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.has-hero .hdr:not(.is-solid) .burger span { background: #FBF7F2; }
.has-hero .hdr:not(.is-solid) .brand img { box-shadow: 0 0 0 1px rgba(243,236,227,.35); }

.nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.nav a {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2); position: relative; padding-block: 6px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--tan-dark); transition: width .35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--ink); }

.hdr__cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: transparent; border-radius: 50%; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 17px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 78px 0 0 0; z-index: 88;
  background: var(--cream); padding: 32px var(--gut) 48px;
  transform: translateY(-14px); opacity: 0; pointer-events: none;
  transition: .38s var(--ease); overflow-y: auto;
}
.drawer.is-open { transform: none; opacity: 1; pointer-events: auto; }
.drawer a {
  display: block; font-family: var(--font-display); font-size: 1.85rem;
  color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line-soft);
}
.drawer .btn { margin-top: 26px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,14,9,.52) 0%, rgba(20,14,9,.18) 32%, rgba(20,14,9,.30) 62%, rgba(20,14,9,.82) 100%),
    radial-gradient(120% 80% at 20% 100%, rgba(20,14,9,.55), transparent 60%);
}
.hero__in { position: relative; z-index: 2; padding-bottom: clamp(56px, 9vw, 110px); padding-top: 140px; width: 100%; }
.hero__inner { max-width: 780px; }
.hero .eyebrow { color: rgba(243,236,227,.78); margin-bottom: 22px; }
.hero h1 { color: #FBF7F2; white-space: pre-line; text-shadow: 0 2px 28px rgba(0,0,0,.35); }
.hero p { color: rgba(243,236,227,.88); font-size: clamp(1rem, 1.5vw, 1.16rem); max-width: min(52ch, 100%); margin-top: 24px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__scroll {
  position: absolute; right: var(--gut); bottom: clamp(56px, 9vw, 110px); z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(243,236,227,.62);
  writing-mode: vertical-rl;
}
.hero__scroll::after { content: ""; width: 1px; height: 56px; background: linear-gradient(rgba(243,236,227,.6), transparent); }

.hero__badges {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 34px;
}
.hero__badges li {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(243,236,227,.72); display: flex; align-items: center; gap: 9px;
}
.hero__badges li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brass); }

/* ---------- bölüm başlığı ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: clamp(34px, 4vw, 58px); }
.sec-head__l { max-width: min(60ch, 100%); }
.sec-head .eyebrow { margin-bottom: 14px; }
.sec-head p { margin-top: 16px; }

/* ---------- ürün kartı ---------- */
.grid { display: grid; gap: clamp(20px, 2.6vw, 34px); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { display: flex; flex-direction: column; height: 100%; }
.card__media {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--r-md); background: var(--cream-2);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(251,247,242,.94); color: var(--ink);
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px; backdrop-filter: blur(6px);
}
.card__tag--order { background: rgba(176,130,79,.95); color: #fff; }
.card__tag--sold { background: rgba(42,32,24,.9); color: var(--cream-2); }
.card__body { padding-top: 16px; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.card__name { font-family: var(--font-display); font-size: 1.36rem; color: var(--ink); margin-top: 7px; line-height: 1.2; }
.card:hover .card__name { color: var(--tan-dark); }
.card__short { font-size: .875rem; color: var(--ink-3); margin-top: 8px; flex: 1; }
.card__price { margin-top: 14px; font-size: .95rem; color: var(--ink); font-weight: 500; letter-spacing: .01em; }
.card__price small { font-size: .7rem; color: var(--ink-3); font-weight: 400; letter-spacing: .1em; text-transform: uppercase; }
/* ₺ simgesi serif başlık fontunda eksik — gövde fontuna alınıyor */
.cur { font-family: var(--font-body); font-size: .78em; font-weight: 400; }

/* ---------- koleksiyon şeridi ---------- */
.coll { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.coll a {
  position: relative; display: flex; align-items: flex-end;
  aspect-ratio: 3/4; border-radius: var(--r-md); overflow: hidden;
  background: var(--ink); padding: 22px;
}
.coll img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .74; transition: .8s var(--ease); }
.coll a:hover img { opacity: .58; transform: scale(1.06); }
.coll a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(20,14,9,.82)); }
.coll__t { position: relative; z-index: 2; }
.coll__t strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--paper); line-height: 1.15; }
.coll__t span { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(243,236,227,.66); margin-top: 6px; }

/* ---------- sütunlu içerik ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split--rev > *:first-child { order: 2; }
.split__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--cream-2); }
.split__media img, .split__media video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- ilkeler ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); }
.pillar { padding-top: 24px; border-top: 1px solid var(--line); }
.pillar h3 { font-size: 1.24rem; margin-bottom: 10px; }
.pillar p { font-size: .9rem; color: var(--ink-3); }
.section--ink .pillar { border-top-color: rgba(243,236,227,.18); }
.section--ink .pillar p { color: rgba(243,236,227,.68); }

/* ---------- süreç ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: s; }
.step { padding-top: 22px; border-top: 1px solid var(--line); }
.step__n { font-family: var(--font-display); font-size: 2.2rem; color: var(--tan); line-height: 1; }
.step h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.step p { font-size: .855rem; color: var(--ink-3); }

/* ---------- ürün detay ---------- */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.gallery__main { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--cream-2); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery__thumbs button {
  width: 74px; aspect-ratio: 1; padding: 0; border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid var(--line); background: var(--cream-2); cursor: pointer; transition: .3s var(--ease);
}
.gallery__thumbs button.is-on { border-color: var(--ink); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info { position: sticky; top: 104px; }
.pdp__price { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--ink); margin-top: 18px; }
/* fiyat gizliyken gösterilen blok */
.pdp__ask {
  margin-top: 22px; padding: 16px 20px;
  background: var(--cream-2); border-radius: var(--r-md);
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.6rem); color: var(--ink); line-height: 1.2;
}
.pdp__ask span {
  display: block; margin-top: 8px;
  font-family: var(--font-body); font-size: .82rem; line-height: 1.55; color: var(--ink-3);
}
.pdp__status {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
}
.pdp__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2E9E5B; }
.pdp__status[data-s="made-to-order"]::before { background: var(--tan); }
.pdp__status[data-s="sold"]::before { background: #B0453C; }
.pdp__desc { margin-top: 24px; }
.pdp__desc p + p { margin-top: 14px; }
.pdp__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.pdp__note { font-size: .8rem; color: var(--ink-3); margin-top: 4px; }

.feat-list { margin-top: 28px; display: grid; gap: 11px; }
.feat-list li { display: flex; gap: 11px; font-size: .92rem; }
.feat-list li::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--tan); margin-top: .58em; }

.spec { width: 100%; border-collapse: collapse; margin-top: 30px; font-size: .9rem; }
.spec th, .spec td { text-align: left; padding: 13px 0; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.spec th { font-weight: 500; color: var(--ink-3); width: 42%; font-size: .8rem; letter-spacing: .06em; }
.spec td { color: var(--ink); }

/* ---------- filtre ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: clamp(28px, 3.5vw, 44px); }
.filters button {
  padding: .62em 1.25em; border-radius: 999px; border: 1px solid var(--line);
  background: transparent; cursor: pointer; transition: .3s var(--ease);
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
}
.filters button:hover { border-color: var(--ink-3); }
.filters button.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- sayfa başlığı ---------- */
.phead { padding-top: 150px; padding-bottom: clamp(32px, 4vw, 56px); }
.phead .eyebrow { margin-bottom: 16px; }
.phead p { margin-top: 18px; }
.crumbs { display: flex; gap: 9px; font-size: .74rem; color: var(--ink-3); margin-bottom: 20px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { opacity: .5; }

/* ---------- SSS ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 26px 44px 26px 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  border-right: 1.5px solid var(--ink-3); border-bottom: 1.5px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq .faq__a { padding: 0 44px 28px 0; color: var(--ink-3); max-width: min(78ch, 100%); }

/* ---------- günlük ---------- */
.post { max-width: min(74ch, 100%); margin-inline: auto; }
.post h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 44px 0 14px; }
.post p { margin-bottom: 18px; }
.post p:first-of-type { font-size: 1.1rem; color: var(--ink-2); }
.post__meta { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }

.jcard { display: flex; flex-direction: column; height: 100%; padding: 30px; background: var(--paper); border-radius: var(--r-md); transition: .4s var(--ease); border: 1px solid var(--line-soft); }
.jcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.jcard h3 { font-size: 1.42rem; margin: 12px 0 12px; }
.jcard p { font-size: .9rem; color: var(--ink-3); flex: 1; }
.jcard .link-u { margin-top: 22px; align-self: flex-start; }

/* ---------- iletişim ---------- */
.cbox { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,2.5vw,30px); }
.cbox > div { padding: 32px; background: var(--paper); border-radius: var(--r-md); border: 1px solid var(--line-soft); }
.cbox h3 { font-size: 1.2rem; margin-bottom: 10px; }
.cbox a { color: var(--tan-dark); border-bottom: 1px solid var(--line); }
.cbox a:hover { border-color: var(--tan-dark); }

/* ---------- CTA şeridi ---------- */
.cta-strip { position: relative; overflow: hidden; background: var(--ink); color: var(--cream-2); border-radius: var(--r-lg); padding: clamp(40px, 5.5vw, 76px); text-align: center; }
.cta-strip h2 { color: var(--paper); }
.cta-strip p { max-width: min(54ch, 100%); margin: 18px auto 0; color: rgba(243,236,227,.72); }
.cta-strip .btn { margin-top: 30px; }

/* ---------- footer ---------- */
.ftr { background: var(--ink); color: rgba(243,236,227,.66); padding-block: clamp(52px, 6vw, 82px) 30px; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
.ftr h4 { color: var(--paper); font-family: var(--font-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; }
.ftr a { color: rgba(243,236,227,.66); font-size: .9rem; }
.ftr a:hover { color: var(--paper); }
.ftr li + li { margin-top: 10px; }
.ftr__brand img { width: 54px; height: 54px; border-radius: 50%; margin-bottom: 16px; }
.ftr__brand p { font-size: .9rem; max-width: min(34ch, 100%); }
.ftr__bot {
  margin-top: clamp(38px, 5vw, 60px); padding-top: 24px; border-top: 1px solid rgba(243,236,227,.14);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .78rem;
}
.ftr__note { font-size: .78rem; margin-top: 20px; color: rgba(243,236,227,.42); max-width: min(70ch, 100%); }

/* ---------- yüzen whatsapp ---------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; background: #1FA855;
  display: grid; place-items: center; box-shadow: 0 8px 26px rgba(31,168,85,.36);
  transition: .3s var(--ease);
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- reveal ----------
   Yalnızca JS çalışıyorsa gizle; aksi hâlde içerik olduğu gibi görünür. */
.js .rv { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .rv.is-in { opacity: 1; transform: none; }

/* ---------- boş görsel yer tutucu ---------- */
.ph { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(140deg, #E5D8C6, #CDB79B 55%, #B99B78); }
.ph span { font-family: var(--font-display); font-size: 2.6rem; color: rgba(42,32,24,.34); letter-spacing: .04em; }

/* ---------- yardımcılar ---------- */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.center { text-align: center; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink); color: var(--paper); padding: 12px 20px; }
.skip:focus { left: 12px; top: 12px; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .coll { grid-template-columns: repeat(3, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .hdr__cta .btn { display: none; }
  .burger { display: flex; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__info { position: static; }
  .split { grid-template-columns: 1fr; }
  .split--rev > *:first-child { order: 0; }
  .cbox { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}
@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .coll { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; }
  .card__name { font-size: 1.15rem; }
  .hero__in { padding-top: 110px; }
}
@media (max-width: 420px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .coll { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .rv { opacity: 1; transform: none; }
}

@media print {
  .hdr, .drawer, .wa-fab, .hero__media, .ftr { display: none !important; }
}
