/* ============================================================
   LUMÉRA — Güzellik & Estetik Merkezi
   Şablon / Demo tasarım — HTML + CSS + JS
   Renk dünyası: gül · altın · ten · porselen
   ============================================================ */

/* ----- 1. Tokens ----- */
:root{
  /* Renkler — yüklenen görsellerin tonlarından türetildi */
  --ivory:#FBF4EF;
  --porcelain:#FFFCFA;
  --blush:#F6DEE4;
  --blush-deep:#EEC7D1;
  --rose:#C16E83;
  --rose-deep:#A4506A;
  --plum:#3A2530;
  --plum-soft:#7A6068;
  --gold:#C19A4B;
  --gold-light:#E0C385;
  --champagne:#ECD9C3;
  --line:#E7D5CE;

  /* Tipografi */
  --display:"Cormorant Garamond", Georgia, serif;
  --body:"Jost", system-ui, -apple-system, sans-serif;

  /* Ölçek */
  --step--1:clamp(.78rem,.74rem + .2vw,.86rem);
  --step-0:clamp(.98rem,.94rem + .25vw,1.06rem);
  --step-1:clamp(1.2rem,1.1rem + .5vw,1.45rem);
  --step-2:clamp(1.6rem,1.4rem + 1vw,2.1rem);
  --step-3:clamp(2.2rem,1.8rem + 2vw,3.4rem);
  --step-4:clamp(3rem,2.2rem + 4vw,6rem);
  --step-5:clamp(4rem,2.8rem + 6vw,8.5rem);

  /* Sistem */
  --container:1240px;
  --gutter:clamp(1.2rem,4vw,3rem);
  --radius:18px;
  --radius-lg:30px;
  --shadow-sm:0 8px 24px -12px rgba(58,37,48,.18);
  --shadow:0 30px 70px -40px rgba(58,37,48,.45);
  --ease:cubic-bezier(.22,.61,.36,1);
}

/* ----- 2. Reset ----- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--body);
  font-size:var(--step-0);
  font-weight:300;
  line-height:1.7;
  color:var(--plum);
  background:var(--ivory);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul{list-style:none}
:focus-visible{outline:2px solid var(--rose);outline-offset:3px;border-radius:4px}

/* ----- 3. Tipografi ----- */
h1,h2,h3,h4{font-family:var(--display);font-weight:500;line-height:1.05;color:var(--plum);letter-spacing:-.01em}
.display{font-size:var(--step-4);font-weight:500;line-height:.98}
.display em{font-style:italic;color:var(--rose)}
h2{font-size:var(--step-3)}
h3{font-size:var(--step-2)}

.eyebrow{
  font-family:var(--body);
  font-weight:500;
  font-size:var(--step--1);
  letter-spacing:.42em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  gap:.8rem;
}
.eyebrow::before{
  content:"";width:34px;height:1px;background:var(--gold);opacity:.7;
}
.eyebrow.center::after{
  content:"";width:34px;height:1px;background:var(--gold);opacity:.7;
}
.lead{font-size:var(--step-1);color:var(--plum-soft);font-weight:300;line-height:1.55;font-family:var(--display);font-style:italic}

/* ----- 4. Layout ----- */
.container{width:min(100% - 2*var(--gutter),var(--container));margin-inline:auto}
.section{padding-block:clamp(4.5rem,9vw,9rem)}
.section--tight{padding-block:clamp(3rem,6vw,5rem)}
.bg-blush{background:var(--blush)}
.bg-porcelain{background:var(--porcelain)}
.bg-plum{background:var(--plum);color:var(--ivory)}
.bg-plum h2,.bg-plum h3{color:var(--ivory)}
.bg-plum .lead{color:#E7CFD4}
.center{text-align:center}
.section-head{max-width:640px;margin-bottom:clamp(2.5rem,5vw,4rem)}
.section-head.center{margin-inline:auto}
.section-head h2{margin-top:1rem}
.section-head p{margin-top:1.1rem;color:var(--plum-soft)}

/* ----- 5. Header ----- */
.site-header{
  position:fixed;inset:0 0 auto 0;z-index:60;
  padding-block:1.1rem;
  transition:background .5s var(--ease),box-shadow .5s var(--ease),padding .4s var(--ease);
}
.site-header.solid{
  background:rgba(251,244,239,.82);
  backdrop-filter:blur(16px) saturate(1.2);
  box-shadow:0 1px 0 rgba(231,213,206,.9);
  padding-block:.7rem;
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:2rem}
.brand{display:flex;flex-direction:column;line-height:1}
.brand .mark{font-family:var(--display);font-size:1.7rem;font-weight:600;letter-spacing:.16em;color:var(--plum)}
.brand .sub{font-size:.58rem;letter-spacing:.46em;text-transform:uppercase;color:var(--gold);margin-top:.2rem;padding-left:.16em}
.site-header.on-dark:not(.solid) .brand .mark{color:var(--ivory)}
.nav-links{display:flex;gap:2.2rem;align-items:center}
.nav-links a{
  font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;font-weight:400;
  position:relative;padding-block:.3rem;color:var(--plum);transition:color .3s;
}
.site-header.on-dark:not(.solid) .nav-links a{color:rgba(255,255,255,.9)}
.nav-links a::after{
  content:"";position:absolute;left:0;bottom:0;height:1px;width:0;background:var(--rose);transition:width .35s var(--ease);
}
.nav-links a:hover::after,.nav-links a[aria-current="page"]::after{width:100%}
.nav-links a[aria-current="page"]{color:var(--rose)}

/* ----- 6. Butonlar ----- */
.btn{
  display:inline-flex;align-items:center;gap:.65rem;
  padding:.95rem 1.9rem;border-radius:100px;
  font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;font-weight:500;
  transition:transform .35s var(--ease),box-shadow .35s var(--ease),background .35s;
  white-space:nowrap;
}
.btn .arrow{transition:transform .35s var(--ease)}
.btn:hover .arrow{transform:translateX(4px)}
.btn--primary{background:var(--rose);color:#fff;box-shadow:0 14px 30px -14px var(--rose-deep)}
.btn--primary:hover{background:var(--rose-deep);transform:translateY(-2px);box-shadow:0 20px 36px -14px var(--rose-deep)}
.btn--gold{background:linear-gradient(135deg,var(--gold-light),var(--gold));color:#3a2c12}
.btn--gold:hover{transform:translateY(-2px);box-shadow:0 18px 34px -16px var(--gold)}
.btn--ghost{border:1px solid var(--line);color:var(--plum)}
.btn--ghost:hover{border-color:var(--rose);color:var(--rose)}
.btn--light{background:#fff;color:var(--plum)}
.btn--light:hover{transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.btn--block{width:100%;justify-content:center}

.nav .btn{padding:.7rem 1.4rem}
.menu-toggle{display:none;width:44px;height:44px;border-radius:50%;align-items:center;justify-content:center}
.menu-toggle span,.menu-toggle span::before,.menu-toggle span::after{
  content:"";display:block;width:22px;height:1.5px;background:var(--plum);transition:.35s var(--ease);position:relative;
}
.menu-toggle span::before{position:absolute;top:-7px}
.menu-toggle span::after{position:absolute;top:7px}
.site-header.on-dark:not(.solid) .menu-toggle span,
.site-header.on-dark:not(.solid) .menu-toggle span::before,
.site-header.on-dark:not(.solid) .menu-toggle span::after{background:var(--ivory)}

/* ----- 7. HERO ----- */
.hero{
  position:relative;min-height:100svh;display:flex;align-items:center;
  padding-top:clamp(7rem,12vh,9rem);padding-bottom:clamp(3rem,6vh,5rem);
  background:
    radial-gradient(120% 90% at 85% 10%,#F7E1E7 0%,transparent 55%),
    radial-gradient(120% 120% at 0% 100%,#F4E7D6 0%,transparent 50%),
    var(--ivory);
  overflow:hidden;
}
.hero__grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4.5rem);align-items:center;
}
.hero__copy{position:relative;z-index:3}
.hero__copy .display{margin:1.4rem 0 1.6rem}
.hero__copy .lead{max-width:30ch}
.hero__cta{display:flex;gap:1rem;flex-wrap:wrap;margin-top:2.2rem}
.hero__stats{display:flex;gap:2.4rem;margin-top:3rem;flex-wrap:wrap}
.hero__stats .num{font-family:var(--display);font-size:var(--step-2);color:var(--rose);line-height:1}
.hero__stats .lbl{font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--plum-soft);margin-top:.3rem}

/* Portre + ipek şerit sahnesi */
.hero__stage{position:relative;z-index:2;perspective:1400px}
.portrait{
  position:relative;border-radius:240px 240px 30px 30px;overflow:hidden;
  aspect-ratio:4/5;max-height:80svh;margin-inline:auto;
  box-shadow:var(--shadow);
  transform-style:preserve-3d;will-change:transform;
  transition:transform .2s ease-out;
  background:#f0dcd5;
}
.portrait img{width:100%;height:100%;object-fit:cover;object-position:60% center;transform:scale(1.04)}
.portrait__glow{position:absolute;inset:0;background:linear-gradient(160deg,rgba(255,255,255,.12),transparent 40%);pointer-events:none}
/* ipek şerit kaplaması (canvas) */
.silk-canvas{position:absolute;inset:-8% -12%;width:124%;height:116%;z-index:4;pointer-events:none}
.hero__stage .badge{
  position:absolute;z-index:5;background:rgba(255,252,250,.9);backdrop-filter:blur(8px);
  border-radius:100px;padding:.7rem 1.2rem;display:flex;align-items:center;gap:.6rem;
  box-shadow:var(--shadow-sm);font-size:.78rem;letter-spacing:.04em;
}
.hero__stage .badge .dot{width:8px;height:8px;border-radius:50%;background:var(--rose)}
.hero__stage .badge--tl{top:8%;left:1%}
.hero__stage .badge--br{bottom:10%;right:2%}
.hero__stage .badge strong{font-weight:500}

.scroll-cue{
  position:absolute;left:50%;bottom:1.6rem;transform:translateX(-50%);z-index:5;
  font-size:.62rem;letter-spacing:.34em;text-transform:uppercase;color:var(--plum-soft);
  display:flex;flex-direction:column;align-items:center;gap:.6rem;
}
.scroll-cue .line{width:1px;height:46px;background:linear-gradient(var(--rose),transparent);animation:cue 2.4s var(--ease) infinite}
@keyframes cue{0%{transform:scaleY(.3);transform-origin:top}50%{transform:scaleY(1)}100%{transform:scaleY(.3);transform-origin:bottom}}

/* ----- 8. Şerit ayraç (signature divider) ----- */
.ribbon-divider{position:relative;height:90px;overflow:hidden}
.ribbon-divider svg{position:absolute;inset:0;width:100%;height:100%}

/* ----- 9. Hizmetler ----- */
.services{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.service-card{
  background:var(--porcelain);border:1px solid var(--line);border-radius:var(--radius);
  padding:2.2rem 1.9rem;position:relative;overflow:hidden;
  transition:transform .5s var(--ease),box-shadow .5s var(--ease),border-color .5s;
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:transparent}
.service-card .ic{
  width:58px;height:58px;border-radius:50%;display:grid;place-items:center;margin-bottom:1.4rem;
  background:radial-gradient(circle at 30% 30%,var(--blush),var(--blush-deep));
}
.service-card .ic svg{width:26px;height:26px;stroke:var(--rose-deep);fill:none;stroke-width:1.4}
.service-card h3{font-size:var(--step-1);margin-bottom:.6rem}
.service-card p{color:var(--plum-soft);font-size:.94rem}
.service-card .price{display:block;margin-top:1.2rem;font-family:var(--display);font-style:italic;color:var(--gold);font-size:1.1rem}
.service-card .num{position:absolute;top:1.1rem;right:1.4rem;font-family:var(--display);font-size:2.4rem;color:var(--blush-deep);opacity:.7}

/* ----- 10. Hakkımızda teaser / split ----- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,5rem);align-items:center}
.split__media{position:relative;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:5/6;box-shadow:var(--shadow)}
.split__media img{width:100%;height:100%;object-fit:cover}
.split__media.framed{border:1px solid var(--line);box-shadow:none;padding:0}
.split__copy p{color:var(--plum-soft);margin-top:1.2rem}
.feature-list{margin-top:2rem;display:grid;gap:1.1rem}
.feature-list li{display:flex;gap:1rem;align-items:flex-start}
.feature-list .tick{flex:none;width:34px;height:34px;border-radius:50%;background:var(--blush);display:grid;place-items:center;color:var(--rose-deep)}
.feature-list .tick svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2}
.feature-list h4{font-family:var(--body);font-size:1rem;font-weight:500;color:var(--plum)}
.feature-list p{margin-top:.15rem;font-size:.9rem}

.media-pair{display:grid;grid-template-columns:1fr 1fr;gap:1rem;align-items:start}
.media-pair img{border-radius:var(--radius);width:100%;object-fit:cover}
.media-pair img:first-child{aspect-ratio:3/4;margin-top:2.5rem}
.media-pair img:last-child{aspect-ratio:3/4}

/* ----- 11. Ürünler ----- */
.product-filters{display:flex;gap:.7rem;flex-wrap:wrap;justify-content:center;margin-bottom:3rem}
.filter-chip{
  padding:.55rem 1.3rem;border-radius:100px;border:1px solid var(--line);
  font-size:.76rem;letter-spacing:.1em;text-transform:uppercase;color:var(--plum-soft);
  transition:.3s var(--ease);background:var(--porcelain);
}
.filter-chip.active,.filter-chip:hover{background:var(--rose);color:#fff;border-color:var(--rose)}
.products{display:grid;grid-template-columns:repeat(4,1fr);gap:1.6rem}
.product-card{
  background:var(--porcelain);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column;
  transition:transform .5s var(--ease),box-shadow .5s var(--ease);
}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.product-card__media{position:relative;aspect-ratio:1;background:linear-gradient(160deg,#fff,var(--blush));display:grid;place-items:center;padding:1.4rem;overflow:hidden}
.product-card__media img{max-height:100%;width:auto;object-fit:contain;filter:drop-shadow(0 18px 24px rgba(58,37,48,.18));transition:transform .6s var(--ease)}
.product-card:hover .product-card__media img{transform:scale(1.06) rotate(-1deg)}
.product-card__tag{position:absolute;top:.9rem;left:.9rem;background:var(--gold);color:#3a2c12;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;padding:.32rem .7rem;border-radius:100px;font-weight:500}
.product-card__body{padding:1.4rem 1.4rem 1.6rem;display:flex;flex-direction:column;flex:1}
.product-card__brand{font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold)}
.product-card__body h3{font-size:1.15rem;font-family:var(--display);margin:.3rem 0 .5rem;line-height:1.1}
.product-card__body p{font-size:.86rem;color:var(--plum-soft);flex:1}
.product-card__foot{display:flex;align-items:center;justify-content:space-between;margin-top:1.2rem}
.product-card__price{font-family:var(--display);font-size:1.5rem;color:var(--plum)}
.product-card__price small{font-size:.8rem;color:var(--plum-soft);font-family:var(--body)}
.product-card__wa{width:44px;height:44px;border-radius:50%;background:#25D366;display:grid;place-items:center;transition:.3s var(--ease);flex:none;box-shadow:0 8px 18px -8px rgba(37,211,102,.6)}
.product-card__wa svg{width:22px;height:22px;fill:#fff}
.product-card__wa:hover{background:#1ebe5a;transform:translateY(-2px)}
.product-rating{display:flex;gap:.15rem;margin-top:.4rem;color:var(--gold)}
.product-rating svg{width:14px;height:14px;fill:var(--gold)}

/* ----- 12. Yorumlar ----- */
.testimonials{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.quote-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);border-radius:var(--radius);padding:2.2rem}
.bg-plum .quote-card p{color:#EADADF;font-style:italic;font-family:var(--display);font-size:1.18rem;line-height:1.5}
.quote-card .stars{color:var(--gold-light);margin-bottom:1.1rem;letter-spacing:.2em}
.quote-card .who{display:flex;align-items:center;gap:.8rem;margin-top:1.6rem}
.quote-card .who .av{width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--rose),var(--gold));display:grid;place-items:center;color:#fff;font-family:var(--display);font-size:1.1rem}
.quote-card .who b{font-weight:500;font-family:var(--body);font-size:.92rem;color:var(--ivory)}
.quote-card .who span{font-size:.76rem;color:#C9AEB6;display:block}

/* ----- 13. CTA / Randevu şeridi ----- */
.cta-strip{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  background:linear-gradient(120deg,var(--rose),var(--rose-deep));
  color:#fff;padding:clamp(3rem,6vw,5rem);text-align:center;
}
.cta-strip::before,.cta-strip::after{content:"";position:absolute;border-radius:50%;background:rgba(255,255,255,.12)}
.cta-strip::before{width:260px;height:260px;top:-120px;left:-60px}
.cta-strip::after{width:200px;height:200px;bottom:-110px;right:-40px}
.cta-strip h2{color:#fff;position:relative}
.cta-strip p{color:rgba(255,255,255,.85);max-width:50ch;margin:1rem auto 2rem;position:relative}
.cta-strip .btn{position:relative}

/* ----- 14. Formlar ----- */
.form-card{background:var(--porcelain);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(1.8rem,4vw,3rem);box-shadow:var(--shadow-sm)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.3rem}
.field{display:flex;flex-direction:column;gap:.5rem}
.field.full{grid-column:1/-1}
.field label{font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;color:var(--plum-soft);font-weight:500}
.field input,.field select,.field textarea{
  font-family:var(--body);font-size:.96rem;color:var(--plum);
  background:#fff;border:1px solid var(--line);border-radius:12px;padding:.85rem 1rem;
  transition:border-color .3s,box-shadow .3s;width:100%;
}
.field textarea{resize:vertical;min-height:120px}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--rose);box-shadow:0 0 0 3px rgba(193,110,131,.14)}
.field select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A4506A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;background-size:18px;padding-right:2.6rem}
.form-note{font-size:.78rem;color:var(--plum-soft);margin-top:1rem}

/* zaman dilimi seçici */
.slot-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(82px,1fr));gap:.6rem}
.slot{padding:.6rem;border:1px solid var(--line);border-radius:10px;text-align:center;font-size:.85rem;background:#fff;transition:.25s var(--ease)}
.slot:hover{border-color:var(--rose);color:var(--rose)}
.slot.active{background:var(--rose);color:#fff;border-color:var(--rose)}

/* ----- 15. İletişim ----- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem)}
.info-list{display:grid;gap:1.6rem;margin-top:2rem}
.info-list li{display:flex;gap:1.1rem;align-items:flex-start}
.info-list .ic{flex:none;width:48px;height:48px;border-radius:14px;background:var(--blush);display:grid;place-items:center;color:var(--rose-deep)}
.info-list .ic svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.6}
.info-list h4{font-family:var(--body);font-weight:500;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;color:var(--plum-soft)}
.info-list p{color:var(--plum);font-size:1.05rem;margin-top:.2rem}
.map-frame{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);aspect-ratio:16/11;background:
  repeating-linear-gradient(45deg,#F2E6DF 0 14px,#F7EFE9 14px 28px);position:relative;display:grid;place-items:center}
.map-frame .pin{display:flex;flex-direction:column;align-items:center;gap:.5rem;color:var(--rose-deep)}
.map-frame .pin svg{width:40px;height:40px;fill:var(--rose);filter:drop-shadow(0 8px 10px rgba(164,80,106,.35))}
.map-frame .pin span{background:#fff;padding:.4rem .9rem;border-radius:100px;font-size:.78rem;box-shadow:var(--shadow-sm)}

.hours{margin-top:2rem;border-top:1px solid var(--line)}
.hours li{display:flex;justify-content:space-between;padding:.7rem 0;border-bottom:1px solid var(--line);font-size:.92rem}
.hours li span:first-child{color:var(--plum-soft)}
.hours li.closed span:last-child{color:var(--rose)}

/* ----- 16. Sayfa başlığı (iç sayfalar) ----- */
.page-hero{
  padding-top:clamp(9rem,16vh,12rem);padding-bottom:clamp(3.5rem,7vw,6rem);
  background:radial-gradient(110% 130% at 80% -10%,#F7E1E7,transparent 55%),var(--ivory);
  text-align:center;position:relative;overflow:hidden;
}
.page-hero .display{font-size:var(--step-4);margin-top:1rem}
.page-hero p{max-width:54ch;margin:1.2rem auto 0;color:var(--plum-soft)}
.crumbs{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--plum-soft);margin-top:1.4rem}
.crumbs a:hover{color:var(--rose)}

/* ----- 17. Footer ----- */
.site-footer{background:var(--plum);color:#E7D4D9;padding-block:clamp(3.5rem,7vw,5.5rem) 2rem}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.4fr;gap:2.5rem}
.site-footer .brand .mark{color:#fff}
.site-footer p{color:#C8AEB6;font-size:.92rem;margin-top:1.2rem;max-width:34ch}
.footer-col h4{font-family:var(--body);font-size:.74rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-light);font-weight:500;margin-bottom:1.2rem}
.footer-col ul{display:grid;gap:.7rem}
.footer-col a{color:#D6BFC5;font-size:.92rem;transition:color .3s}
.footer-col a:hover{color:#fff}
.socials{display:flex;gap:.7rem;margin-top:1.4rem}
.socials a{width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,.18);display:grid;place-items:center;transition:.3s var(--ease)}
.socials a:hover{background:var(--rose);border-color:var(--rose)}
.socials svg{width:18px;height:18px;stroke:#E7D4D9;fill:none;stroke-width:1.6}
.socials a:hover svg{stroke:#fff}
.newsletter{display:flex;gap:.5rem;margin-top:1.2rem}
.newsletter input{flex:1;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);border-radius:100px;padding:.7rem 1.1rem;color:#fff;font-size:.85rem}
.newsletter input::placeholder{color:#B89BA3}
.newsletter button{width:46px;height:46px;border-radius:50%;background:var(--gold);display:grid;place-items:center;flex:none}
.newsletter button svg{width:20px;height:20px;stroke:#3a2c12;fill:none;stroke-width:2}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:3rem;padding-top:1.6rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;font-size:.78rem;color:#B89BA3}

/* ----- 18. Reveal animasyonu ----- */
html.js .reveal{opacity:0;transform:translateY(28px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
html.js .reveal.in{opacity:1;transform:none}
.reveal[data-delay="1"]{transition-delay:.08s}
.reveal[data-delay="2"]{transition-delay:.16s}
.reveal[data-delay="3"]{transition-delay:.24s}
.reveal[data-delay="4"]{transition-delay:.32s}

/* ----- 19. Toast ----- */
.toast{
  position:fixed;left:50%;bottom:2rem;transform:translate(-50%,140%);z-index:200;
  background:var(--plum);color:#fff;padding:1rem 1.6rem;border-radius:100px;
  display:flex;align-items:center;gap:.7rem;box-shadow:var(--shadow);font-size:.9rem;
  transition:transform .5s var(--ease);max-width:90vw;
}
.toast.show{transform:translate(-50%,0)}
.toast .dot{width:9px;height:9px;border-radius:50%;background:var(--gold-light)}

/* ----- 20. Mobil menü ----- */
.mobile-menu{
  position:fixed;inset:0;z-index:55;background:var(--ivory);
  display:flex;flex-direction:column;justify-content:center;align-items:center;gap:1.4rem;
  opacity:0;visibility:hidden;transition:opacity .4s var(--ease),visibility .4s;
}
.mobile-menu.open{opacity:1;visibility:visible}
.mobile-menu a{font-family:var(--display);font-size:2rem;color:var(--plum)}
.mobile-menu a:hover{color:var(--rose)}
.mobile-menu .btn{margin-top:1rem}

/* ----- 21. Duyarlılık ----- */
@media (max-width:980px){
  .hero__grid{grid-template-columns:1fr;gap:2.5rem}
  .hero__stage{max-width:440px;margin-inline:auto;order:-1}
  .hero__copy{text-align:center}
  .hero__copy .eyebrow{justify-content:center}
  .hero__copy .lead{margin-inline:auto}
  .hero__cta{justify-content:center}
  .hero__stats{justify-content:center}
  .services,.testimonials{grid-template-columns:1fr 1fr}
  .products{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .split,.contact-grid{grid-template-columns:1fr}
  .split__media{order:-1;max-width:480px;margin-inline:auto}
  .nav-links{display:none}
  .nav .btn{display:none}
  .menu-toggle{display:flex}
}
@media (max-width:620px){
  .services,.testimonials,.form-grid,.footer-grid,.media-pair{grid-template-columns:1fr}
  .products{grid-template-columns:repeat(2,1fr);gap:.8rem}
  .product-card__body{padding:1rem .9rem 1.1rem}
  .product-card__body h3{font-size:1.02rem}
  .product-card__body p{font-size:.78rem}
  .product-card__brand{font-size:.6rem}
  .product-card__price{font-size:1.2rem}
  .product-card__wa{width:38px;height:38px}
  .product-card__wa svg{width:19px;height:19px}
  .product-card__media{padding:1rem}
  .product-card__tag{font-size:.56rem;padding:.26rem .55rem}
  .hero__stats{gap:1.6rem}
  .media-pair img:first-child{margin-top:0}
  .footer-bottom{flex-direction:column;text-align:center;align-items:center}
  .hero__stage .badge--tl{left:0}
  .hero__stage .badge--br{right:0}
}

/* ----- 22. Hareket azaltma ----- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none}
}
