/* ============================================================
   LOVISA MALIN — faithful reproduction of the Figma template
   Design canvas: 1920 x 14409 (scaled to viewport width)
   Teal #014762 · Gold #BDA078 · Cream #F5F5EB · Grey #95A3AE
   Display: Cormorant Garamond (closest to premium "Brand")
   Body/UI: Poppins (exact)
   ============================================================ */

:root{
  --teal:#2B2A24;   /* warm anthracite (natural, was navy) */
  --gold:#A89478;   /* muted taupe (natural, was gold) */
  --cream:#F4F1EA;  /* warm cream */
  --grey:#9C968B;
  --ink:#1E1C18;
  --line:#C9C4BA;
}

*{ margin:0; padding:0; box-sizing:border-box; }

/* ---------- preloader (3s splash, self-clearing via CSS even if JS fails) ---------- */
#preloader{ position:fixed; inset:0; z-index:99999; display:flex; align-items:center; justify-content:center;
  background:#26251F; animation:pl-out .7s ease 2s forwards; }
#preloader img{ width:min(360px,62vw); height:auto; animation:pl-in 1.1s cubic-bezier(.2,.7,.2,1) both; }
@keyframes pl-in{ from{ opacity:0; transform:scale(.92) } to{ opacity:1; transform:none } }
@keyframes pl-out{ to{ opacity:0; visibility:hidden } }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{ background:#ffffff; color:var(--ink); font-family:'Poppins',sans-serif; -webkit-font-smoothing:antialiased; }
img{ display:block; }
a{ color:inherit; text-decoration:none; }

/* ---------- scale-to-fit stage ---------- */
#stage-wrap{ position:relative; width:100%; overflow:hidden; }
#stage{
  position:absolute; top:0; left:0;
  width:1920px; height:14705px;
  transform-origin:top left;
  background:#ffffff;
}
.section{ position:absolute; left:0; width:1920px; }
.abs{ position:absolute; }

/* ---------- typography ---------- */
.disp{
  font-family:'Fraunces', serif;
  font-weight:600;
  font-optical-sizing:auto;
  font-variation-settings:"opsz" 144, "SOFT" 0, "WONK" 0;
  line-height:1;
  letter-spacing:.005em;
  white-space:nowrap;
}
.logo-txt{ font-family:'Fraunces',serif; font-weight:600; font-size:32px; letter-spacing:.18em; color:#fff; white-space:nowrap; font-optical-sizing:auto; }
.wordmark-lg{ font-family:'Fraunces',serif; font-weight:600; letter-spacing:.06em; white-space:nowrap; line-height:1; font-optical-sizing:auto; }
.teal{ color:var(--teal); }
.gold{ color:var(--gold); }
.white{ color:#fff; }

/* legibility over photos: soft shadow on light text (invisible on flat dark bg) */
.disp.white, .logo-txt{ text-shadow:0 2px 6px rgba(20,18,14,.38), 0 12px 44px rgba(20,18,14,.30); }
.body.white, .body-sm.white{ text-shadow:0 1px 3px rgba(20,18,14,.42), 0 6px 22px rgba(20,18,14,.25); }
.eyebrow{ text-shadow:0 1px 3px rgba(20,18,14,.35); }
.wordmark-lg{ text-shadow:0 2px 6px rgba(18,15,10,.6), 0 5px 20px rgba(18,15,10,.6), 0 14px 46px rgba(18,15,10,.5); }

.eyebrow{
  font-family:'Poppins',sans-serif; font-weight:600; font-size:20px;
  letter-spacing:4px; text-transform:uppercase; color:#fff; white-space:nowrap;
}
.body{ font-family:'Poppins',sans-serif; font-weight:300; font-size:20px; line-height:34px; }
.body p{ margin-bottom:34px; }
.body p:last-child{ margin-bottom:0; }
.body-sm{ font-family:'Poppins',sans-serif; font-weight:300; font-size:16px; line-height:26px; }
.label-strong{ font-family:'Poppins',sans-serif; font-weight:600; font-size:20px; line-height:34px; white-space:nowrap; }

/* ---------- nav ---------- */
.nav{ display:flex; gap:80px; align-items:center; }
.nav a{ font-family:'Poppins',sans-serif; font-weight:500; font-size:20px; color:#fff; position:relative; transition:opacity .25s; }
.nav a::after{ content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--gold); transition:width .3s ease; }
.nav a:hover::after{ width:100%; }

/* ---------- inline tel/mail links ---------- */
.tel-link{ font-family:'Poppins',sans-serif; font-weight:400; font-size:20px; letter-spacing:.02em; white-space:nowrap; transition:color .3s; }
.tel-link:hover{ color:var(--gold); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 32px; border-radius:50px; border:1px solid var(--gold);
  font-family:'Poppins',sans-serif; font-weight:300; font-size:20px; color:var(--ink);
  background:transparent; cursor:pointer; white-space:nowrap;
  transition:background .35s ease, color .35s ease, transform .35s ease;
}
.btn.white{ border-color:#fff; color:#fff; }
.btn .arrow{ width:93px; aspect-ratio:93.5 / 7.36; height:auto; transition:transform .35s ease; }
.btn.sm .arrow{ width:62px; }
.btn:hover{ background:var(--gold); color:#fff; }
.btn.white:hover{ background:#fff; color:var(--teal); }
.btn:hover .arrow{ transform:translateX(8px); filter:brightness(0) invert(1); }
.btn.white:hover .arrow{ filter:none; }

/* ---------- image tiles ---------- */
.tile{ position:absolute; overflow:hidden; background:#d6d6d6; }
.tile img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 1.2s cubic-bezier(.2,.7,.2,1); }
.tile.zoom:hover img{ transform:scale(1.06); }
.tile .veil{ position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(24,21,17,.28) 0%, rgba(24,21,17,.52) 38%, rgba(24,21,17,.60) 66%, rgba(24,21,17,.32) 100%); }

/* ---------- reveal animations ---------- */
.reveal{ opacity:0; transform:translateY(46px); transition:opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; } .reveal.d4{ transition-delay:.32s; }
.reveal-img{ clip-path:inset(0 0 100% 0); transition:clip-path 1.15s cubic-bezier(.5,.15,.15,1); }
.reveal-img.in{ clip-path:inset(0 0 0 0); }

/* ---------- hero ---------- */
#hero{ top:0; height:1016px; overflow:hidden; background:var(--teal); }
#hero .hero-slides{ position:absolute; inset:0; overflow:hidden; }
#hero .slide{ position:absolute; inset:-8px; background:center/cover no-repeat; opacity:0; transition:opacity 1.4s ease; will-change:opacity; }
#hero .slide.on{ opacity:1; }
#hero .bg-grad{ position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(25,23,19,.86) 0%, rgba(25,23,19,.58) 30%, rgba(25,23,19,.22) 52%, rgba(25,23,19,0) 74%), linear-gradient(180deg, rgba(25,23,19,.38) 0%, rgba(25,23,19,0) 42%, rgba(25,23,19,.38) 100%); }
#hero .panel{ position:absolute; left:1099px; top:194px; width:821px; height:822px; background:var(--teal); overflow:hidden; }
#hero .panel .goldstrip{ position:absolute; left:765px; top:0; width:56px; height:822px; background:var(--gold); }
#hero .panel .arc{ position:absolute; right:-460px; top:-180px; width:1400px; opacity:.13; }

/* hero slider dashes */
.dashes{ position:absolute; left:106px; bottom:59px; display:flex; gap:16px; }
.dashes span{ width:96px; height:2px; background:rgba(255,255,255,.45); display:block; transition:background .3s; cursor:pointer; }
.dashes span.on{ background:#fff; }

/* ---------- decorative arcs ---------- */
.arc-dec{ position:absolute; pointer-events:none; opacity:.13; }
.disp-img{ position:absolute; height:auto; }

/* ---------- form ---------- */
.field{ width:587px; height:52px; border-bottom:1px solid var(--line); position:relative; background:transparent; }
.field input{ width:100%; height:100%; border:0; background:transparent; padding:0 20px;
  font-family:'Poppins',sans-serif; font-weight:300; font-style:italic; font-size:20px; color:var(--ink); outline:none; }
.field input::placeholder{ color:rgba(0,0,0,.4); font-style:italic; }
.msg{ width:587px; height:160px; border:1px solid var(--line); position:relative; }
.msg textarea{ width:100%; height:100%; border:0; background:transparent; padding:14px 19px; resize:none;
  font-family:'Poppins',sans-serif; font-weight:300; font-style:italic; font-size:20px; color:var(--ink); outline:none; }
.msg textarea::placeholder{ color:rgba(0,0,0,.4); font-style:italic; }
.chk{ width:20px; height:20px; border:1px solid var(--line); background:#fff; cursor:pointer; }
.chk.on{ background:var(--gold); border-color:var(--gold); }

/* ---------- stats strip (band panel) ---------- */
.stats{ display:grid; grid-template-columns:1fr 1fr; gap:30px 44px; }
.stat{ display:flex; flex-direction:column; gap:4px; }
.stat-num{ font-family:'Fraunces',serif; font-weight:600; font-size:46px; line-height:1; color:#CBB184; font-optical-sizing:auto; }
.stat-label{ font-family:'Poppins',sans-serif; font-weight:400; font-size:13.5px; letter-spacing:.02em; color:rgba(255,255,255,.86); }

/* ---------- form feedback ---------- */
.form-msg, .nl-msg{ font-family:'Poppins',sans-serif; font-weight:400; font-size:16px; line-height:22px; min-height:22px; }
.form-msg{ margin-top:20px; }
.form-msg.ok, .nl-msg.ok{ color:#3f7d54; }
.form-msg.err, .nl-msg.err{ color:#b4463c; }
.nl-msg{ font-size:14px; color:rgba(255,255,255,.85); margin-top:14px; }
.nl-msg.ok{ color:#d7c39c; } .nl-msg.err{ color:#e6b9b3; }
.btn[disabled]{ opacity:.55; pointer-events:none; }

/* ---------- info modal (privacy / terms) ---------- */
.modal-overlay{ position:fixed; inset:0; z-index:999; display:none; align-items:center; justify-content:center;
  background:rgba(20,18,14,.62); backdrop-filter:blur(3px); padding:24px; }
.modal-overlay.on{ display:flex; }
.modal-box{ position:relative; width:min(640px,100%); max-height:82vh; overflow-y:auto; background:var(--cream);
  border-top:4px solid var(--gold); border-radius:6px; padding:52px 48px 44px; box-shadow:0 30px 90px rgba(20,18,14,.45); }
.modal-box h3{ font-family:'Fraunces',serif; font-weight:600; font-size:30px; color:var(--teal); margin-bottom:20px; letter-spacing:.01em; }
.modal-box p{ font-family:'Poppins',sans-serif; font-weight:300; font-size:16px; line-height:26px; color:var(--ink); margin-bottom:16px; }
.modal-box p:last-child{ margin-bottom:0; }
.modal-box strong{ font-weight:600; }
.modal-close{ position:absolute; top:16px; right:18px; width:40px; height:40px; border:0; background:transparent;
  font-size:30px; line-height:1; color:var(--teal); cursor:pointer; border-radius:50%; transition:background .25s; }
.modal-close:hover{ background:rgba(0,0,0,.07); }

/* ---------- footer social ---------- */
.soc{ width:43.5px; height:43.5px; border-radius:50%; border:1.165px solid var(--grey);
  display:flex; align-items:center; justify-content:center; transition:background .3s,border-color .3s; }
.soc:hover{ background:var(--gold); border-color:var(--gold); }
.soc img{ width:21.75px; height:21.75px; }
.newsletter{ width:336px; height:62px; border:1px solid #fff; border-radius:50px; display:flex; align-items:center; padding:0 32px; }
.newsletter input{ background:transparent; border:0; outline:none; color:#fff; font-family:'Poppins'; font-weight:300; font-size:16px; width:100%; }
.newsletter input::placeholder{ color:rgba(255,255,255,.75); }

/* ---------- sticky WhatsApp (stage DIŞINDA: transform:scale fixed'i bozar) ---------- */
.wa-float{
  position:fixed;
  right:calc(20px + env(safe-area-inset-right, 0px));
  bottom:calc(20px + env(safe-area-inset-bottom, 0px));
  width:62px; height:62px;
  z-index:900; /* modal overlay (999) altında kalır */
  display:block; border-radius:50%;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
  transition:transform .3s cubic-bezier(.2,.7,.2,1);
}
.wa-float img{ width:100%; height:100%; animation:wa-breath 2.8s ease-in-out infinite; }
.wa-float{ animation:wa-halo 2.8s ease-out infinite; }
@keyframes wa-breath{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.055); } }
@keyframes wa-halo{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.42); }
  70%{ box-shadow:0 0 0 15px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}
.wa-float:active{ transform:scale(.94); }
@media (hover:hover){
  .wa-float:hover{ transform:scale(1.08); animation:none; }
  .wa-float:hover img{ animation:none; }
}
@media (prefers-reduced-motion:reduce){ .wa-float, .wa-float img{ animation:none; } }

/* ============================================================
   MOBILE (≤820px) — scale-stage yerine gerçek akışlı düzen
   ============================================================ */
#mobile, #mMenuBtn, #mNav{ display:none; }

@media (max-width:820px){
  #stage-wrap{ display:none; }
  #mobile{ display:block; }

  /* --- hamburger (fixed, her bölümde erişilir) --- */
  #mMenuBtn{
    display:flex; position:fixed; z-index:960;
    top:calc(12px + env(safe-area-inset-top, 0px));
    right:calc(14px + env(safe-area-inset-right, 0px));
    width:46px; height:46px; border-radius:50%; border:0; cursor:pointer;
    background:rgba(38,37,31,.55); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
    flex-direction:column; align-items:center; justify-content:center; gap:6px;
    -webkit-tap-highlight-color:transparent;
  }
  #mMenuBtn span{ display:block; width:20px; height:2px; background:#fff; transition:transform .3s ease; }
  #mMenuBtn.on span:nth-child(1){ transform:translateY(4px) rotate(45deg); }
  #mMenuBtn.on span:nth-child(2){ transform:translateY(-4px) rotate(-45deg); }

  /* --- tam ekran menü --- */
  #mNav.on{ display:flex; }
  #mNav{
    position:fixed; inset:0; z-index:950; background:var(--teal);
    flex-direction:column; align-items:center; justify-content:center; gap:32px; padding:24px;
  }
  #mNav > a{ font-family:'Fraunces',serif; font-weight:600; font-size:34px; color:var(--cream);
    font-optical-sizing:auto; padding:4px 12px; }
  .m-nav-foot{ margin-top:24px; display:flex; flex-direction:column; align-items:center; gap:12px; }
  .m-nav-foot a{ font-family:'Poppins',sans-serif; font-weight:300; font-size:17px; color:rgba(255,255,255,.8); padding:4px 8px; }

  /* --- genel --- */
  .m-sec{ padding:64px 22px; }
  .m-cream{ background:var(--cream); }
  .m-disp{
    font-family:'Fraunces',serif; font-weight:600; font-optical-sizing:auto;
    font-variation-settings:"opsz" 144, "SOFT" 0, "WONK" 0;
    font-size:clamp(38px,11vw,48px); line-height:1.04; letter-spacing:.005em; margin-bottom:26px;
  }
  .m-asil{ font-size:.55em; }
  .m-body{ font-family:'Poppins',sans-serif; font-weight:300; font-size:17px; line-height:29px; }
  .m-body p{ margin-bottom:22px; }
  .m-body p:last-child{ margin-bottom:0; }
  #mobile .body-sm{ font-size:16.5px; line-height:26px; }
  #mobile .btn{ font-size:18px; padding:14px 26px; }
  #mobile .btn .arrow{ width:62px; }

  /* --- hero --- */
  .m-hero{ position:relative; min-height:100vh; min-height:100svh; overflow:hidden;
    background:var(--teal); display:flex; align-items:flex-end; }
  .m-hero-bg{ position:absolute; inset:0; background:center/cover no-repeat; }
  .m-hero-grad{ position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(25,23,19,.55) 0%, rgba(25,23,19,.18) 38%, rgba(25,23,19,.82) 100%); }
  .m-header{ position:absolute; top:0; left:0; right:0; display:flex; align-items:center; gap:12px;
    padding:calc(14px + env(safe-area-inset-top, 0px)) 72px 0 20px; }
  .m-header img{ height:44px; }
  .m-logo-txt{ font-family:'Fraunces',serif; font-weight:600; font-size:19px; letter-spacing:.16em;
    color:#fff; white-space:nowrap; font-optical-sizing:auto; text-shadow:0 2px 6px rgba(20,18,14,.38); }
  .m-hero-inner{ position:relative; width:100%; padding:0 22px calc(56px + env(safe-area-inset-bottom, 0px)); }
  .m-hero-inner .eyebrow{ font-size:16px; letter-spacing:3px; margin-bottom:14px; }
  .m-hero-inner .m-disp{ font-size:clamp(46px,14vw,62px); margin-bottom:18px; color:#fff;
    text-shadow:0 2px 6px rgba(20,18,14,.38), 0 12px 44px rgba(20,18,14,.30); }
  .m-hero-inner .m-body{ margin-bottom:26px; max-width:520px;
    text-shadow:0 1px 3px rgba(20,18,14,.42), 0 6px 22px rgba(20,18,14,.25); }
  .m-hero-cta{ display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
  .m-hero-cta .tel-link{ font-size:18px; }

  /* --- hizmet mini satırları + büyük kartlar --- */
  .m-feature{ display:flex; gap:16px; align-items:center; margin-bottom:22px; }
  .m-thumb{ width:72px; height:72px; flex:0 0 72px; overflow:hidden; }
  .m-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
  .m-feature .label-strong{ font-size:18px; line-height:25px; }
  .m-feature .body-sm{ font-size:15.5px; line-height:23px; color:#5c5850; }
  .m-card{ position:relative; overflow:hidden; margin-top:22px; aspect-ratio:4/5; }
  .m-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
  .m-card-cap{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center;
    justify-content:center; gap:8px; text-align:center; }
  .m-card-title{ font-family:'Fraunces',serif; font-weight:600; font-size:clamp(34px,11vw,44px); color:#fff;
    line-height:1.02; font-optical-sizing:auto; text-shadow:0 2px 6px rgba(20,18,14,.38); }
  .m-card-sub{ font-family:'Poppins',sans-serif; font-weight:300; font-size:15.5px; color:#fff;
    text-shadow:0 1px 3px rgba(20,18,14,.42); }

  /* --- görsel blokları --- */
  .m-img{ overflow:hidden; margin:30px 0; }
  .m-img img{ width:100%; height:auto; display:block; }

  /* --- band --- */
  .m-band{ background:var(--teal); }
  .m-band-panel{ padding:56px 22px 48px 26px; border-left:10px solid var(--gold); }
  .m-band-panel .btn{ margin:26px 0 34px; }
  .m-band .stats{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:24px 22px; }
  .m-band .stat-num{ font-size:clamp(26px,8vw,38px); white-space:nowrap; }
  .m-band .stat-label{ font-size:15px; }
  .m-band-img{ position:relative; }
  .m-band-img img{ width:100%; height:auto; display:block; }
  .m-band-word{ position:absolute; left:16px; bottom:14px; font-family:'Fraunces',serif; font-weight:600;
    font-size:clamp(40px,11.5vw,54px); letter-spacing:.06em; color:#fff; white-space:nowrap;
    font-optical-sizing:auto; text-shadow:0 2px 6px rgba(18,15,10,.6), 0 5px 20px rgba(18,15,10,.6); }

  /* --- zanaat / miras --- */
  .m-zanaat{ position:relative; background:var(--teal); padding:60px 0; overflow:hidden; }
  .m-zanaat-img{ margin:0 22px; overflow:hidden; }
  .m-zanaat-img img{ width:100%; height:auto; display:block; }
  .m-zanaat-word{ position:absolute; left:50%; transform:translateX(-50%); font-family:'Fraunces',serif;
    font-weight:600; font-size:clamp(52px,15vw,72px); color:#fff; white-space:nowrap;
    font-optical-sizing:auto; text-shadow:0 2px 6px rgba(20,18,14,.38), 0 12px 44px rgba(20,18,14,.30); }
  .m-zanaat-word.top{ top:22px; }
  .m-zanaat-word.bot{ bottom:22px; }

  /* --- galeri --- */
  .m-galeri{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:26px; }
  .m-tile{ position:relative; overflow:hidden; aspect-ratio:3/4; }
  .m-tile img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

  /* --- konum --- */
  .m-konum{ background:var(--teal); padding:64px 22px; }
  .m-konum .eyebrow{ margin-bottom:12px; }
  .m-konum .m-disp{ margin-bottom:6px; }
  .m-konum p.body-sm{ margin:16px 0 8px; max-width:420px; }
  .m-konum a.body-sm{ display:inline-block; margin-bottom:22px; }
  .m-konum .btn{ margin-bottom:30px; }
  .m-konum iframe{ width:100%; height:340px; border:0; border-radius:6px; filter:grayscale(.15); display:block; }

  /* --- form (iOS zoom önleme: input font ≥16px) --- */
  .m-form .field{ width:100%; margin-top:26px; }
  .m-form .field input{ font-size:16.5px; padding:0 12px; }
  .m-form .msg{ width:100%; margin-top:26px; height:150px; }
  .m-form .msg textarea{ font-size:16.5px; }
  .m-kvkk{ display:flex; align-items:flex-start; gap:14px; margin-top:22px; }
  .m-kvkk .chk{ flex:0 0 20px; margin-top:3px; }
  .m-form .btn{ margin-top:26px; }

  /* --- footer (alt boşluk: WhatsApp butonu içerik örtmesin) --- */
  .m-footer{ background:var(--teal); padding:56px 22px calc(96px + env(safe-area-inset-bottom, 0px)); }
  .m-foot-brand{ display:flex; align-items:center; gap:14px; margin-bottom:38px; }
  .m-foot-brand img{ height:56px; }
  .m-foot-brand .wordmark-lg{ font-size:clamp(30px,8.5vw,40px); text-shadow:none; }
  .m-foot-cols{ display:flex; flex-direction:column; gap:30px; }
  .m-foot-cols .label-strong{ margin-bottom:8px; }
  .m-foot-cols .newsletter{ width:100%; max-width:360px; height:56px; margin:6px 0 14px; }
  .m-foot-cols .newsletter input{ font-size:16.5px; }
  .m-foot-legal{ margin-top:38px; border-top:1px solid rgba(255,255,255,.18); padding-top:22px;
    display:flex; flex-direction:column; gap:10px; }

  /* --- modal + preloader mobil --- */
  .modal-box{ padding:32px 24px 28px; max-height:86vh; }
  .modal-box h3{ font-size:24px; }
  #preloader img{ width:min(280px,64vw); }
}
@media (max-width:768px){
  .wa-float{
    width:56px; height:56px; /* iOS 44pt / Android 48dp minimumun üstünde */
    right:calc(14px + env(safe-area-inset-right, 0px));
    bottom:calc(14px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================
   HERO VİDEO (atölyede çekilen gerçek görüntü)
   Poster önce boyanır, video hazır olunca üstüne geçer.
   ============================================================ */
.hero-media{ position:absolute; inset:0; overflow:hidden; }
.hero-poster{ position:absolute; inset:0; background:center/cover no-repeat; }
#hero .hero-video, #m-hero .m-hero-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; opacity:0; transition:opacity .9s ease; z-index:0;
}
#hero .hero-video.ready, #m-hero .m-hero-video.ready{ opacity:1; }
#hero .hero-poster, .m-hero-bg{ z-index:0; }
#hero .bg-grad, .m-hero-grad{ z-index:1; }
#hero .abs, #hero .dashes{ z-index:2; }
.m-hero .m-header, .m-hero-inner{ z-index:2; }
/* veri tasarrufu / hareket hassasiyeti: video yerine poster kalsın */
@media (prefers-reduced-motion:reduce){
  #hero .hero-video, #m-hero .m-hero-video{ display:none; }
}

/* ============================================================
   GALERİ SAYFASI (galeri.html) — akışlı responsive düzen,
   ana sayfayla aynı tasarım dili (Fraunces + Poppins, antrasit/taupe/krem)
   ============================================================ */
.page-galeri{ background:var(--cream); }

/* --- header --- */
.g-header{
  position:sticky; top:0; z-index:800; display:flex; align-items:center; gap:clamp(16px,3vw,40px);
  background:var(--teal); padding:14px clamp(18px,4vw,64px);
  padding-top:calc(14px + env(safe-area-inset-top, 0px));
}
.g-brand{ display:flex; align-items:center; gap:12px; }
.g-brand img{ height:44px; width:auto; }
.g-brand-txt{ font-family:'Fraunces',serif; font-weight:600; font-size:20px; letter-spacing:.16em;
  color:#fff; white-space:nowrap; font-optical-sizing:auto; }
.g-nav{ display:flex; gap:clamp(18px,2.4vw,36px); margin-left:auto; }
.g-nav a{ font-family:'Poppins',sans-serif; font-weight:400; font-size:16px; color:rgba(255,255,255,.86);
  position:relative; padding:4px 0; transition:color .25s; white-space:nowrap; }
.g-nav a:hover{ color:#fff; }
.g-nav a.on{ color:var(--gold); }
.g-nav a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:1px;
  background:var(--gold); transition:width .3s ease; }
.g-nav a:hover::after, .g-nav a.on::after{ width:100%; }
.g-tel{ font-family:'Poppins',sans-serif; font-weight:500; font-size:16px; color:#fff; white-space:nowrap; }
/* mobil menü ve düğmesi masaüstünde kapalı (media query'de açılır) */
#gMenuBtn, #gNav{ display:none; }

/* --- giriş --- */
.g-intro{ max-width:1560px; margin:0 auto; text-align:center;
  padding:clamp(44px,6.5vw,88px) clamp(18px,4vw,64px) clamp(24px,3vw,36px); }
.g-intro .eyebrow{ color:var(--gold); text-shadow:none; margin-bottom:14px; }
.g-title{ font-family:'Fraunces',serif; font-weight:600; font-optical-sizing:auto;
  font-variation-settings:"opsz" 144; font-size:clamp(48px,9vw,104px); line-height:1;
  letter-spacing:.01em; color:var(--teal); }
.g-lead{ font-family:'Poppins',sans-serif; font-weight:300; font-size:clamp(16px,1.5vw,19px);
  line-height:1.75; color:#4a463f; max-width:680px; margin:20px auto 0; }

/* --- filtre çipleri --- */
.g-filters{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
  padding:0 clamp(18px,4vw,64px) clamp(26px,3vw,38px); }
.g-chip{ font-family:'Poppins',sans-serif; font-weight:400; font-size:15px; color:var(--ink);
  background:transparent; border:1px solid var(--line); border-radius:50px; padding:9px 20px;
  cursor:pointer; -webkit-tap-highlight-color:transparent;
  transition:background .3s ease, color .3s ease, border-color .3s ease; }
.g-chip:hover{ border-color:var(--gold); color:#6d5f45; }
.g-chip.on{ background:var(--teal); border-color:var(--teal); color:#fff; }

/* --- ızgara (masonry: kolon akışı) --- */
.g-grid{ max-width:1560px; margin:0 auto; column-count:3; column-gap:14px;
  padding:0 clamp(18px,4vw,64px) clamp(56px,7vw,86px); }
.g-item{ break-inside:avoid; -webkit-column-break-inside:avoid; margin:0 0 14px;
  position:relative; overflow:hidden; background:#ded9d0; cursor:zoom-in; }
.g-item img{ width:100%; height:auto; display:block;
  transition:transform 1.1s cubic-bezier(.2,.7,.2,1); }
.g-item:hover img{ transform:scale(1.05); }
.g-item figcaption{ position:absolute; left:0; right:0; bottom:0; padding:40px 18px 15px; color:#fff;
  font-family:'Poppins',sans-serif; font-weight:400; font-size:15px;
  background:linear-gradient(180deg, rgba(24,21,17,0) 0%, rgba(24,21,17,.74) 100%);
  opacity:0; transform:translateY(8px); transition:opacity .35s ease, transform .35s ease; }
.g-item:hover figcaption{ opacity:1; transform:none; }
.g-item.hide{ display:none; }
/* dokunmatikte hover yok — başlık hep görünsün */
@media (hover:none){
  .g-item figcaption{ opacity:1; transform:none; }
  .g-item:hover img{ transform:none; }
}

/* --- alt CTA --- */
.g-cta{ background:var(--teal); text-align:center;
  padding:clamp(52px,7vw,88px) clamp(18px,4vw,64px); }
.g-cta-title{ font-family:'Fraunces',serif; font-weight:600; font-optical-sizing:auto;
  font-size:clamp(30px,4.4vw,54px); line-height:1.1; color:#fff; }
.g-cta-body{ font-family:'Poppins',sans-serif; font-weight:300; font-size:clamp(15px,1.5vw,18px);
  line-height:1.75; color:rgba(255,255,255,.82); max-width:560px; margin:18px auto 30px; }
.g-cta-row{ display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap; }
.g-cta .btn{ border-color:var(--gold); color:#fff; }
.g-cta .btn:hover{ background:var(--gold); color:#fff; }
.g-cta .btn .arrow{ filter:brightness(0) invert(1); }
.g-cta .tel-link{ color:var(--gold); }

/* --- footer --- */
.g-footer{ background:#211F1B; padding:clamp(46px,6vw,72px) clamp(18px,4vw,64px)
  calc(clamp(40px,5vw,56px) + env(safe-area-inset-bottom, 0px)); }
.g-foot-brand{ display:flex; align-items:center; gap:14px; margin-bottom:36px; }
.g-foot-brand img{ height:56px; width:auto; }
.g-foot-brand .wordmark-lg{ font-size:clamp(30px,5vw,44px); text-shadow:none; }
.g-foot-cols{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:30px;
  max-width:1100px; }
.g-foot-cols .label-strong{ margin-bottom:8px; }
.g-foot-cols .body-sm{ color:rgba(255,255,255,.78); }
.g-foot-legal{ margin-top:36px; border-top:1px solid rgba(255,255,255,.16); padding-top:20px; }

/* --- lightbox --- */
.lb{ position:fixed; inset:0; z-index:1000; display:none; align-items:center; justify-content:center;
  background:rgba(16,15,12,.95); padding:clamp(14px,3vw,44px); }
.lb.on{ display:flex; }
.lb-stage{ display:flex; flex-direction:column; align-items:center; gap:14px; max-width:100%; }
.lb-stage img{ max-width:100%; max-height:80vh; width:auto; height:auto; object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.55); }
.lb-stage figcaption{ font-family:'Poppins',sans-serif; font-weight:300; font-size:15px;
  color:rgba(255,255,255,.84); text-align:center; max-width:640px; }
.lb-close, .lb-nav{ position:absolute; background:rgba(255,255,255,.10); border:0; color:#fff;
  cursor:pointer; border-radius:50%; display:flex; align-items:center; justify-content:center;
  transition:background .25s ease; -webkit-tap-highlight-color:transparent; }
.lb-close:hover, .lb-nav:hover{ background:rgba(255,255,255,.22); }
.lb-close{ top:calc(16px + env(safe-area-inset-top, 0px)); right:16px; width:46px; height:46px;
  font-size:30px; line-height:1; }
.lb-nav{ top:50%; transform:translateY(-50%); width:54px; height:54px; font-size:34px; line-height:1;
  padding-bottom:4px; }
.lb-prev{ left:clamp(10px,2vw,28px); }
.lb-next{ right:clamp(10px,2vw,28px); }

/* --- galeri: tablet/mobil --- */
@media (max-width:1100px){ .g-grid{ column-count:2; } }
@media (max-width:900px){
  .g-nav, .g-tel{ display:none; }
  #gMenuBtn{
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
    margin-left:auto; width:46px; height:46px; border-radius:50%; border:0; cursor:pointer;
    background:rgba(255,255,255,.12); -webkit-tap-highlight-color:transparent;
  }
  #gMenuBtn span{ display:block; width:20px; height:2px; background:#fff; transition:transform .3s ease; }
  #gMenuBtn.on span:nth-child(1){ transform:translateY(4px) rotate(45deg); }
  #gMenuBtn.on span:nth-child(2){ transform:translateY(-4px) rotate(-45deg); }
  #gNav{ display:none; }
  #gNav.on{ display:flex; position:fixed; inset:0; z-index:950; background:var(--teal);
    flex-direction:column; align-items:center; justify-content:center; gap:30px; padding:24px; }
  #gNav > a{ font-family:'Fraunces',serif; font-weight:600; font-size:34px; color:var(--cream);
    font-optical-sizing:auto; padding:4px 12px; }
  #gNav .m-nav-foot{ margin-top:24px; display:flex; flex-direction:column; align-items:center; gap:12px; }
  #gNav .m-nav-foot a{ font-family:'Poppins',sans-serif; font-weight:300; font-size:17px;
    color:rgba(255,255,255,.8); padding:4px 8px; }
  .g-foot-cols{ grid-template-columns:1fr; gap:26px; }
}
@media (max-width:640px){
  .g-grid{ column-count:1; }
  .g-brand img{ height:38px; }
  .g-brand-txt{ font-size:17px; }
  .lb-nav{ width:44px; height:44px; font-size:28px; }
}
