/* =========================================================
   Natura Çengelköy - Editorial Premium Design
   Üçler Proje & Koçakoğlu İnşaat
   93 Özel Konut | Çengelköy / İstanbul
   ========================================================= */

/* ─── CUSTOM PROPERTIES ─── */
:root{
  --nav-h: 72px;

  /* Yeşil palet */
  --forest: #2a4d32;
  --forest-deep: #1b3322;
  --sage: #6b8f71;
  --sage-light: #8aab8f;
  --mint: #d4e4d1;

  /* Gold */
  --gold: #b5975e;
  --gold-light: #d4b87a;
  --gold-dark: #8f7645;

  /* Nötr */
  --cream: #f5f2ec;
  --cream-dark: #ebe6dc;
  --warm-white: #faf9f6;
  --ink: #1a1f1a;
  --ink-light: rgba(26,31,26,.65);

  /* Efektler */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 16px rgba(26,31,26,.06);
  --shadow-md: 0 12px 40px rgba(26,31,26,.08);
  --shadow-lg: 0 24px 64px rgba(26,31,26,.12);
  --shadow-gold: 0 8px 30px rgba(181,151,94,.15);
  --ease-out: cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* KP */
  --kp-arrow-size: 64px;
  --kp-chev-size: 32px;
  --kp-chev-stroke: 5px;
  --kp-arrow-gap: 20px;
  --kp-slider-gutter: calc(var(--kp-arrow-size) + var(--kp-arrow-gap));
  --kp-lb-arrow: 44px;
  --kp-lb-chev: 16px;
}

/* ─── RESET ─── */
*,*::before,*::after{ box-sizing: border-box; }
html{ font-size:16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body{
  margin:0;
  background: var(--warm-white);
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}
a{ text-decoration:none; color: inherit; }
img{ max-width:100%; display: block; }

/* ─── GLOBAL TYPO ─── */
.font-serif{ font-family: "Playfair Display", Georgia, serif; }

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.reveal-up{
  opacity:0;
  transform: translateY(50px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-up.in{ opacity:1; transform: translateY(0); }

.reveal-left{
  opacity:0;
  transform: translateX(-60px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-left.in{ opacity:1; transform: translateX(0); }

.reveal-right{
  opacity:0;
  transform: translateX(60px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-right.in{ opacity:1; transform: translateX(0); }

.reveal-scale{
  opacity:0;
  transform: scale(.92);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-scale.in{ opacity:1; transform: scale(1); }

.reveal-fade{
  opacity:0;
  transition: opacity 1s var(--ease-out);
}
.reveal-fade.in{ opacity:1; }

/* Stagger delays */
.stagger-1{ transition-delay: .1s; }
.stagger-2{ transition-delay: .2s; }
.stagger-3{ transition-delay: .3s; }
.stagger-4{ transition-delay: .4s; }
.stagger-5{ transition-delay: .5s; }
.stagger-6{ transition-delay: .6s; }

/* Eski reveal uyumluluğu */
.reveal{
  opacity:0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in{ opacity:1; transform: translateY(0); }

/* =========================================================
   NAVBAR — koyu yarı saydam şerit (hero üzerinde)
   ========================================================= */
.navbar-hero{
  height: var(--nav-h);
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(14px) saturate(1.35);
  -webkit-backdrop-filter: blur(14px) saturate(1.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
  z-index: 1000;
}
.navbar-hero.scrolled{
  background: rgba(12, 14, 12, .78);
  backdrop-filter: blur(22px) saturate(1.65);
  -webkit-backdrop-filter: blur(22px) saturate(1.65);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .2), 0 1px 0 rgba(255, 255, 255, .07);
}

/* Logo */
.brand-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 6px;
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow-md);
  transition: all .3s var(--ease-out);
}
.brand-wrap:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.brand-logo-img{
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: 40px;
}

/* Nav links */
.navbar-hero .nav-link{
  color: rgba(255,255,255,.85);
  font-weight: 500;
  padding: .7rem .9rem;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  transition: color .25s ease;
}
.navbar-hero .nav-link:hover{ color:#fff; }
.navbar-hero .nav-link::after{
  content:"";
  position:absolute;
  left:50%; right:50%;
  bottom:.3rem;
  height:1px;
  background: var(--gold-light);
  transition: left .3s var(--ease-out), right .3s var(--ease-out);
}
.navbar-hero .nav-link:hover::after{
  left:.9rem; right:.9rem;
}

/* Offcanvas */
.offcanvas{
  background: var(--forest-deep);
  color:#fff;
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,.06) !important;
}
.offcanvas .nav-link{
  color: rgba(255,255,255,.85);
  font-size: 16px;
  letter-spacing: .1em;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .25s ease;
}
.offcanvas .nav-link:hover{
  color: var(--gold-light);
  padding-left: 8px;
}

/* =========================================================
   HERO - Botanical Cinematic
   ========================================================= */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item{
  height: 100vh;
  min-height: 600px;
}

/* Background image with parallax feel */
.hero-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  will-change: transform;
  filter: brightness(.78) saturate(.92);
  transition: transform 1s ease;
}
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.carousel-item.active .hero-bg{
  animation: slowZoom 16s ease-in-out forwards;
}

/* Multi-layer overlay */
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(105deg, rgba(13,24,16,.75) 0%, rgba(13,24,16,.30) 55%, rgba(13,24,16,.50) 100%),
    linear-gradient(180deg, rgba(13,24,16,.15) 0%, transparent 40%, rgba(13,24,16,.80) 100%);
  pointer-events:none;
}

/* Dekoratif dış çerçeve */
.hero::before{
  content:"";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(181,151,94,.12);
  z-index: 4;
  pointer-events: none;
  transition: opacity .5s;
}
/* Köşe aksanlar */
.hero::after{
  content:"";
  position: absolute;
  inset: 18px;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(181,151,94,.35) 30px, transparent 30px) top left / 30px 1px no-repeat,
    linear-gradient(to bottom, rgba(181,151,94,.35) 30px, transparent 30px) top left / 1px 30px no-repeat,
    linear-gradient(to left, rgba(181,151,94,.35) 30px, transparent 30px) bottom right / 30px 1px no-repeat,
    linear-gradient(to top, rgba(181,151,94,.35) 30px, transparent 30px) bottom right / 1px 30px no-repeat;
}

/* ============================
   BOTANICAL DECOR LAYERS
   ============================ */
.hero-botanicals{
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

/* Sol büyük dal */
.hero-leaf{
  position:absolute;
  pointer-events:none;
}
.hero-leaf--l1{
  left: -40px; top: -20px;
  width: 200px;
  opacity: .85;
  transform-origin: top center;
  animation: leaf-sway-l 9s ease-in-out infinite;
}
.hero-leaf--r1{
  right: -40px; top: -20px;
  width: 180px;
  opacity: .65;
  transform-origin: top center;
  animation: leaf-sway-r 11s ease-in-out infinite;
}
.hero-leaf--tr-cluster{
  top: -10px; right: -10px;
  width: 280px;
  opacity: .60;
  animation: leaf-sway-r 13s ease-in-out infinite reverse;
}
.hero-leaf--br{
  bottom: -10px; right: -10px;
  width: 260px;
  opacity: .45;
  transform: rotate(180deg);
  animation: leaf-sway-r 15s ease-in-out infinite;
}

/* Yüzen küçük yapraklar */
.hero-leaf--f1{
  width: 40px;
  top: 22%; left: 18%;
  animation: leaf-float 7s ease-in-out infinite;
  opacity: .7;
}
.hero-leaf--f2{
  width: 30px;
  top: 55%; right: 22%;
  animation: leaf-float 9s ease-in-out infinite 1.5s;
  opacity: .6;
}
.hero-leaf--f3{
  width: 26px;
  top: 35%; right: 38%;
  animation: leaf-float 11s ease-in-out infinite 3s;
  opacity: .5;
}

@keyframes leaf-sway-l{
  0%,100%{ transform: rotate(-4deg) translateY(0); }
  50%{ transform: rotate(0deg) translateY(-12px); }
}
@keyframes leaf-sway-r{
  0%,100%{ transform: rotate(4deg) translateY(0); }
  50%{ transform: rotate(0deg) translateY(-10px); }
}
@keyframes leaf-float{
  0%,100%{ transform: translateY(0) rotate(-8deg); opacity: .6; }
  33%{ transform: translateY(-18px) rotate(5deg); opacity: .9; }
  66%{ transform: translateY(-8px) rotate(-12deg); opacity: .7; }
}

/* ============================
   HERO CONTENT
   ============================ */
.hero-content{
  position: relative;
  z-index: 5;
  height: 100%;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 120px;
  display: flex;
  align-items: center;
}

/* Slide-in animasyonu için temel sınıflar */
.ha-kicker,
.ha-title,
.ha-divider,
.ha-actions{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.25,.46,.45,.94);
}
/* Tüm aktif slide'lar (geçiş + ilk yükleme) */
.carousel-item.active .ha-kicker  { opacity:1; transform:none; transition-delay: .35s; }
.carousel-item.active .ha-title   { opacity:1; transform:none; transition-delay: .55s; }
.carousel-item.active .ha-divider { opacity:1; transform:none; transition-delay: .78s; }
.carousel-item.active .ha-actions { opacity:1; transform:none; transition-delay: .95s; }
/* İlk yükleme: .carousel-item.active hemen render'da aktif — delay yeterli */

/* Kicker */
.hero-kicker{
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.hero-kicker-line{
  display:inline-block;
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

/* Başlık */
.hero-title{
  color:#fff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.06;
  font-size: clamp(44px, 5.5vw, 88px);
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
}

/* Divider */
.hero-divider{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-divider-line{
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,151,94,.6));
}
.hero-divider-line:last-child{
  background: linear-gradient(90deg, rgba(181,151,94,.6), transparent);
}
.hero-divider-leaf{
  width: 18px; height: 24px;
  flex-shrink: 0;
  animation: leaf-float 4s ease-in-out infinite;
}

/* Aksiyonlar */
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap: nowrap;
}
.btn-hero{
  border-radius: 0;
  padding: 16px 38px;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 0;
  min-width: 165px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: color .35s ease, box-shadow .35s ease;
  white-space: nowrap;
}
.btn-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.btn-hero > *{ position:relative; z-index:1; }
.btn-hero:hover::before{ transform: translateX(0); }
.btn-hero.gray{
  background: rgba(255,255,255,.08);
  color:#fff;
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.btn-hero.gray::before{ background: rgba(255,255,255,.12); }
.btn-hero.gray:hover{ border-color: rgba(255,255,255,.5); color:#fff; }
.btn-hero.blue{
  background: var(--gold);
  color: #1a1f1a;
}
.btn-hero.blue::before{ background: var(--gold-light); }
.btn-hero.blue:hover{ color: #1a1f1a; box-shadow: 0 8px 32px rgba(181,151,94,.4); }

/* ============================
   SLIDE COUNTER (sağ alt)
   ============================ */
.hero-counter{
  position: absolute;
  right: 36px; bottom: 60px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}
.hero-counter-cur{
  font-size: 38px;
  font-weight: 400;
  color: rgba(255,255,255,.92);
  line-height: 1;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.hero-counter-line{
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(181,151,94,.7), transparent);
}
.hero-counter-tot{
  font-size: 15px;
  color: rgba(255,255,255,.45);
}

/* ============================
   SLIDE DOTS
   ============================ */
.hero-dots{
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot{
  width: 28px; height: 2px;
  background: rgba(255,255,255,.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.hero-dot::after{
  content:'';
  position:absolute;
  top:0; left:0;
  height:100%; width:0%;
  background: var(--gold);
  transition: width 9s linear;
}
.hero-dot.active{
  width: 48px;
  background: rgba(255,255,255,.15);
}
.hero-dot.active::after{ width: 100%; }

/* ============================
   SOSYAL & SCROLL
   ============================ */
.hero-social{
  position:absolute; left:24px; top:50%; transform: translateY(-50%);
  z-index:6; display:flex; flex-direction:column; gap:4px;
}
.hero-social a{
  color: rgba(255,255,255,.45);
  font-size:13px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
  border: 1px solid transparent;
}
.hero-social a:hover{
  color: var(--gold-light);
  border-color: rgba(181,151,94,.3);
}

/* Slide bg num */
.hero-num-bg{
  position: absolute;
  right: -20px; bottom: -40px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,.025);
  z-index: 2;
  user-select:none;
  pointer-events:none;
  letter-spacing: -0.05em;
}

/* Scroll indicator */
.scroll-indicator{
  position:absolute; left:50%; bottom:20px; transform: translateX(-50%);
  z-index:6;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  pointer-events:none;
  opacity: .7;
}
.scroll-label{
  font-size: 8px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  display: none;
}
.scroll-line{
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse{
  0%,100%{ opacity:.25; transform: scaleY(.5) translateY(-10px); }
  50%{ opacity:.9; transform: scaleY(1) translateY(0); }
}

/* Carousel controls gizle (dots kullanıyoruz) */
.carousel-control-prev,
.carousel-control-next{ display: none; }

@media (max-width: 991.98px){
  .hero::before, .hero::after{ inset: 10px; }
  .hero-social{ display:none !important; }
  .btn-hero{ min-width:140px; padding: 14px 22px; }
  .hero-counter{ right:20px; bottom:50px; }
  .hero-counter-cur{ font-size:28px; }
  .hero-leaf--l1, .hero-leaf--r1{ width:130px; }
  .hero-leaf--tl, .hero-leaf--br{ width:200px; }
  .hero-leaf--f1, .hero-leaf--f2, .hero-leaf--f3{ display:none; }
}
@media (max-width:520px){
  .hero::before, .hero::after{ inset:8px; }
  .hero-title{ font-size: clamp(34px,10vw,54px); }
  .hero-leaf--tl, .hero-leaf--br{ width:160px; }
  .hero-num-bg{ display:none; }
}

/* =========================================================
   PROJE ALANI - Editorial Style
   ========================================================= */
.section-project{ background: var(--warm-white); }

.project-band{
  background: var(--forest);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.project-band::before{
  content:"";
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,151,94,.08), transparent 70%);
  pointer-events: none;
}
.project-band h2{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  margin: 0 0 24px 0;
  line-height: 1.15;
}
.project-band p{
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.9;
  opacity: .85;
  font-size: 16px;
  letter-spacing: .01em;
}

/* Sol panel */
.p-main{ padding: 0; background: var(--warm-white); }
.p-main .row{ margin:0; }
.p-main .row > [class*="col-"]{
  padding:0;
  display: flex;
  flex-direction: column;
}
.p-main .row > [class*="col-"] > *{
  flex: 1 1 auto;
  min-height: 0;
}

.p-main-left{
  background: #fff;
  display:flex;
  align-items:center;
  min-height: 560px;
  padding: 70px clamp(28px, 5vw, 90px);
}
.p-panel{ width: 100%; max-width: 640px; }
.p-mini{
  font-size: 11px;
  letter-spacing: .25em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.p-title{
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.8vw, 48px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 18px 0;
}
.p-line{
  width: 50px; height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}
.p-list{
  list-style:none; padding:0; margin:0 0 20px 0;
  display:grid; gap:16px;
}
.p-list li{
  display:flex; gap:14px; align-items:flex-start;
  color: var(--ink-light);
  font-size: 16px; line-height: 1.7;
}
.p-list i{
  color: var(--sage);
  margin-top:3px;
  font-size:14px;
  flex-shrink: 0;
}

/* Görsel — sütun yüksekliğini doldurur; altta boşluk kalmaz */
.p-main-media{
  position: relative;
  width: 100%;
  min-height: 560px;
  flex: 1 1 auto;
  overflow: hidden;
}
.p-main-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 2s var(--ease-out);
}
.p-main-media:hover img{ transform: scale(1.03); }

.p-badge{
  position:absolute;
  left: 28px; bottom: 28px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border:1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow-md);
}
.p-badge-big{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: var(--forest);
}
.p-badge-small{
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 6px;
  letter-spacing: .02em;
}

/* Split section */
.p-split{ background: var(--warm-white); }
.p-split .row{ margin: 0; }
.p-split .row > [class*="col-"]{
  padding: 0;
  display: flex;
  flex-direction: column;
}
.p-split .row > [class*="col-"] > *{
  flex: 1 1 auto;
  min-height: 0;
}
.p-split-media{
  position: relative;
  width: 100%;
  min-height: 560px;
  flex: 1 1 auto;
  overflow: hidden;
}
.p-split-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 2s var(--ease-out);
}
.p-split-media:hover img{ transform: scale(1.03); }

.p-split-info{
  height: 100%;
  min-height: 560px;
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color:#fff;
  padding: 80px clamp(28px, 5vw, 90px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  position: relative;
  overflow: hidden;
}
.p-split-info::before{
  content:"";
  position: absolute;
  bottom: -30%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,151,94,.06), transparent 70%);
  pointer-events: none;
}
.p-s-title{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 2.8vw, 48px);
  line-height: 1.12;
  margin: 0 0 18px 0;
}
.p-s-line{
  width: 50px; height: 1px;
  background: var(--gold-light);
  margin-bottom: 20px;
}
.p-s-text{
  max-width: 620px; margin: 0;
  opacity: .85; line-height: 1.9;
  font-size: 16px;
}

/* İstatistikler */
.p-stat{
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 18px;
  transition: all .35s var(--ease-out);
}
.p-stat:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
}
.p-stat-num{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
}
.p-stat-txt{
  margin-top: 8px;
  font-size: 12px;
  opacity: .8;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}

.p-btn{
  border-radius: 0;
  padding: 14px 24px;
  font-weight: 500;
  border: 0;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .3s var(--ease-out);
}
.p-btn-white{ background:#fff; color: var(--ink); }
.p-btn-white:hover{ background: var(--cream); box-shadow: var(--shadow-sm); }
.p-btn-outline{
  background: transparent;
  color:#fff;
  border: 1px solid rgba(255,255,255,.30);
}
.p-btn-outline:hover{
  background: rgba(255,255,255,.08);
  color:#fff;
  border-color: rgba(255,255,255,.5);
}

/* =========================================================
   LOKASYON
   ========================================================= */
.locVera{
  background:#fff;
  overflow:hidden;
}
.locVera-hero{
  position:relative;
  padding: 90px 0 60px;
}
.locVera-hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 400px at 10% 50%, rgba(107,143,113,.06), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.locVera-hero-inner{ position:relative; z-index:2; }
.locVera-title{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(40px, 4.5vw, 80px);
  line-height:1.05;
  margin:0;
}
.locVera-accent{ color: var(--sage); font-weight:500; }
.locVera-text{
  max-width:480px;
  margin-left:auto;
  color: var(--ink-light);
  font-size:16px;
  line-height:1.95;
}
.locVera-text p{ margin:0 0 10px 0; }
.locVera-text .muted{ opacity:.6; font-size: 16px; }

.locVera-gridWrap{
  position: relative;
  padding: 72px 0 100px;
  background:
    radial-gradient(ellipse 55% 90% at 0% 45%, rgba(107,143,113,.09), transparent 58%),
    radial-gradient(ellipse 55% 90% at 100% 55%, rgba(107,143,113,.08), transparent 58%),
    linear-gradient(180deg, #fff 0%, #fafcf9 100%);
  overflow: hidden;
}
.locVera-gridWrap::before,
.locVera-gridWrap::after{
  content: "";
  position: absolute;
  top: 50%;
  width: min(280px, 22vw);
  height: min(420px, 55vh);
  transform: translateY(-50%);
  pointer-events: none;
  opacity: .22;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 200' fill='none'%3E%3Cpath d='M20 180c8-40 4-85-12-120 18 28 22 68 12 120z' fill='%236b8f71'/%3E%3Cpath d='M95 175c-6-35 2-72 18-100-22 22-30 62-18 100z' fill='%236b8f71' opacity='.55'/%3E%3C/svg%3E") no-repeat center / contain;
}
.locVera-gridWrap::before{ left: -4%; }
.locVera-gridWrap::after{ right: -4%; transform: translateY(-50%) scaleX(-1); }
@media (max-width: 992px){
  .locVera-gridWrap::before,
  .locVera-gridWrap::after{ opacity: .12; width: min(200px, 30vw); }
}
.locVera-grid{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px 20px;
  align-items: stretch;
  justify-items: stretch;
  text-align:center;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 993px){
  .locVera[data-desktop-cols="4"] .locVera-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1240px;
  }
  .locVera[data-desktop-cols="3"] .locVera-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1080px;
  }
  .locVera[data-desktop-cols="4"] .locVera-item{
    min-height: 195px;
    padding: 22px 14px 20px;
  }
}
.locVera-item{
  width: 100%;
  max-width: none;
  min-height: 210px;
  padding: 26px 18px 24px;
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .35s, background .35s;
  border: 1px solid rgba(107,143,113,.16);
  background: linear-gradient(165deg, #fff 0%, #f7faf7 100%);
  box-shadow: 0 8px 28px rgba(26,31,26,.055);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.locVera-item:hover{
  transform: translateY(-8px);
  border-color: rgba(107,143,113,.32);
  box-shadow: 0 22px 50px rgba(26,31,26,.11);
  background: #fff;
}
.locVera-ico{
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  padding: 16px;
  border-radius: 50%;
  background: rgba(107,143,113,.11);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.locVera-ico svg{
  width: 100%;
  height: 100%;
  max-width: 40px;
  max-height: 40px;
  display: block;
}
.locVera-cap{
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
  line-height: 1.4;
  margin: 0;
  max-width: 16em;
}
.locVera-time{
  margin-top: auto;
  padding-top: 14px;
}
.locVera-time b{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -.02em;
}
.locVera-time b::after{
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(181,151,94,.55), transparent);
  opacity: .85;
}

/* =========================================================
   SOSYAL ALANLAR - Elegant Cards
   ========================================================= */
.section-social{
  position:relative;
  background: var(--cream);
  padding: 110px 0 100px;
  overflow:hidden;
}

/* Dekoratif blob'lar */
.s-vectors{ position:absolute; inset:0; pointer-events:none; z-index:0; }
.s-blob{ position:absolute; opacity:.3; z-index:0; }
.s-blob.blob-1{ left:-200px; top:-180px; width: 500px; height: 500px; }
.s-blob.blob-2{ right:-220px; bottom:-250px; width: 550px; height: 550px; opacity:.2; }
.s-blob svg{ width:100%; height:100%; display:block; }
.s-wrap{ position:relative; z-index:1; }

.s-olanaklarTop{
  display:flex; align-items:center; justify-content:center;
  gap:16px; margin: 0 0 20px;
  color: var(--gold);
  font-weight:600;
  letter-spacing:.2em;
  font-size:11px;
  text-transform:uppercase;
}
.s-olanaklarTop::before, .s-olanaklarTop::after{
  content:"";
  width:40px; height:1px;
  background: var(--gold);
  opacity:.4;
}

.s-heroRow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:30px;
  margin-bottom:36px;
}
.s-heroRight{
  flex:0 0 420px;
  max-width:420px;
  margin-left:auto;
  color: var(--ink-light);
  line-height:1.95;
  font-size:14px;
}
.s-titleBig{
  margin:0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  font-size: clamp(36px, 3.5vw, 64px);
  line-height:1.08;
}

.s-contentRow{
  display:grid;
  grid-template-columns: 1.55fr .6fr;
  gap:28px;
  align-items:start;
  margin-top:20px;
}
.s-mediaBox{
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: var(--cream-dark);
  border:1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.s-mediaBox::after{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.3);
  pointer-events: none;
}
.s-mediaBox img{
  width:100%; height:520px;
  display:block; object-fit:cover;
  transition: all .4s var(--ease-out);
}

/* Vertical ticker */
.s-list{ position:relative; overflow:visible; }
.s-list .s-clip{ overflow:hidden; }
.s-list .s-track{
  display:flex;
  flex-direction:column;
  gap:8px;
  will-change: transform;
}

#sosyalArrow{
  position:absolute;
  right: calc(100% + 12px);
  top: 0;
  transform: translateY(-50%);
  width:36px; height:36px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
  color: var(--sage);
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
  box-shadow: var(--shadow-sm);
  pointer-events:none;
  z-index:20;
}
.s-arrowBtn::after{
  content:"";
  position:absolute;
  right:-6px;
  width:0; height:0;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:6px solid #fff;
}

.s-item{
  width:100%; border:0;
  background:transparent;
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 10px;
  border-radius:12px;
  cursor:pointer;
  transition: all .25s var(--ease-out);
  text-align:left;
}
.s-item:hover{
  background: rgba(107,143,113,.06);
}

.s-dot{
  width:42px; height:42px;
  border-radius:50%;
  border:1.5px solid rgba(26,31,26,.12);
  background:#fff;
  position:relative;
  flex:0 0 42px;
  margin-top:2px;
  transition: all .3s var(--ease-out);
}
.s-dot::after{
  content:"";
  width:5px; height:5px;
  border-radius:50%;
  background: var(--ink);
  opacity:.5;
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%,-50%);
  transition: all .3s var(--ease-out);
}

.s-txt h4{
  margin:0 0 2px;
  font-weight:500;
  color: var(--ink);
  font-size:14px;
  line-height:1.3;
  transition: color .25s ease;
}
.s-txt p{
  margin:0;
  color: var(--ink-light);
  font-size:16px;
  line-height:1.5;
}

.s-item.is-active{
  background: rgba(107,143,113,.06);
}
.s-item.is-active .s-dot{
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(107,143,113,.08);
}
.s-item.is-active .s-dot::after{
  background: var(--sage);
  opacity: 1;
  width: 8px; height: 8px;
}
.s-item.is-active .s-txt h4{ color: var(--forest); }

/* =========================================================
   GALERİ - Forest Luxury Slider
   ========================================================= */
.vb-gallery{
  background:
    radial-gradient(900px 500px at 50% 60%, rgba(42,77,50,.18), transparent 70%),
    linear-gradient(180deg, #0d1810 0%, #111a13 60%, #0d1810 100%);
  padding: clamp(100px, 9vw, 160px) 0 clamp(80px, 7vw, 130px);
  overflow: hidden;
  position: relative;
}

/* Üst/Alt ince altın çizgi */
.vb-gallery::before,
.vb-gallery::after{
  content:"";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(181,151,94,.35) 30%, rgba(181,151,94,.35) 70%, transparent 100%);
}
.vb-gallery::before{ top: 0; }
.vb-gallery::after{ bottom: 0; }

/* Dekoratif yaprak öğeleri */
.vb-leaf{
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.vb-leaf--tl{
  top: -20px; left: -30px;
  width: 200px;
  opacity: .7;
  transform: rotate(-15deg);
  animation: vb-leaf-sway 8s ease-in-out infinite;
}
.vb-leaf--tr{
  top: -10px; right: -30px;
  width: 180px;
  opacity: .5;
  transform: rotate(20deg) scaleX(-1);
  animation: vb-leaf-sway 10s ease-in-out infinite reverse;
}
.vb-leaf--br{
  bottom: -20px; right: 5%;
  width: 260px;
  opacity: .4;
  animation: vb-leaf-sway 12s ease-in-out infinite;
}
@keyframes vb-leaf-sway{
  0%, 100%{ transform: rotate(-15deg) translateY(0); }
  50%{ transform: rotate(-12deg) translateY(-8px); }
}
.vb-leaf--tr{ animation-name: vb-leaf-sway-r; }
@keyframes vb-leaf-sway-r{
  0%, 100%{ transform: rotate(20deg) scaleX(-1) translateY(0); }
  50%{ transform: rotate(17deg) scaleX(-1) translateY(-6px); }
}
.vb-leaf--br{ animation-name: vb-leaf-sway-br; }
@keyframes vb-leaf-sway-br{
  0%, 100%{ transform: translateY(0) rotate(5deg); }
  50%{ transform: translateY(-10px) rotate(3deg); }
}

/* Orta süs */
.vb-ornament{
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(800px, 90%);
  pointer-events: none;
  z-index: 1;
  opacity: .8;
}

/* Wrap */
.vb-gallery .vb-wrap{
  width:100%; margin:0 auto;
  padding-inline: clamp(20px, 4vw, 60px);
  position: relative;
  z-index: 2;
}

/* Head */
.vb-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom: clamp(28px, 3vw, 44px);
}
.vb-head-left{ display:flex; flex-direction:column; gap:4px; }
.vb-kicker{
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-left: 22px;
}
.vb-kicker::before{
  content:'';
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--gold);
}
.vb-title{
  margin:0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing:.02em;
  color: rgba(255,255,255,.92);
  font-size: clamp(36px, 4vw, 68px);
  line-height: 1;
}

/* Arrows + counter */
.vb-arrows{
  display:flex; gap:12px;
  align-items:center;
  user-select:none;
}
.vb-arrow{
  width:52px; height:52px;
  border:1px solid rgba(181,151,94,.25);
  border-radius: 0;
  background:transparent;
  padding:0;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  position: relative;
  overflow: hidden;
  transition: border-color .35s ease, color .35s ease;
  color: rgba(255,255,255,.7);
}
.vb-arrow::before{
  content:'';
  position:absolute;
  inset:0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.vb-arrow:hover{ border-color: var(--gold); color: #1a1f1a; }
.vb-arrow:hover::before{ transform: scaleX(1); }
.vb-arrow svg{
  width: 20px; height: 20px;
  position: relative; z-index: 1;
}
.vb-arrow path{
  stroke: currentColor;
  stroke-width:1.8;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.vb-counter{
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,.55);
  display:flex; gap:4px; align-items:center;
  min-width: 58px;
  justify-content:center;
}
#vbCurrent{ color: var(--gold); font-size: 20px; }
.vb-sep{ opacity:.4; }

/* Progress bar */
.vb-progress-wrap{
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: clamp(28px, 3vw, 48px);
  position: relative;
}
.vb-progress-bar{
  position:absolute; top:0; left:0;
  height: 100%;
  background: linear-gradient(90deg, rgba(181,151,94,.3), var(--gold));
  transition: width .5s cubic-bezier(.4,0,.2,1);
  width: 0%;
}

/* Stage & Track */
.vb-stage{ position:relative; overflow:hidden; z-index: 2; }
.vb-track{
  display:flex;
  gap:16px;
  will-change: transform;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
  cursor: grab;
}
.vb-track:active{ cursor: grabbing; }

/* Item */
.vb-item{
  flex: 0 0 calc((100% - 16px*3)/4);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
/* Köşe dekor */
.vb-item-corner{
  position: absolute;
  width: 18px; height: 18px;
  pointer-events: none;
  z-index: 3;
  transition: all .4s ease;
  opacity: 0;
}
.vb-item-corner--tl{ top: 6px; left: 6px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.vb-item-corner--br{ bottom: 6px; right: 6px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.vb-item:hover .vb-item-corner{ opacity: 1; }
.vb-item:hover .vb-item-corner--tl{ top: 10px; left: 10px; }
.vb-item:hover .vb-item-corner--br{ bottom: 10px; right: 10px; }

/* Inner wrapper */
.vb-item-inner{
  position: relative;
  overflow: hidden;
}
.vb-item-inner img{
  width:100%;
  height: clamp(240px, 22vw, 400px);
  object-fit: cover;
  display:block;
  transform: scale(1.08);
  transition: transform 6s cubic-bezier(.25,.46,.45,.94), filter .8s ease;
  filter: brightness(.80) saturate(.88);
  will-change: transform;
}
/* Görünür kart: yavaşça orijinal boyuta küçül (zoom-out reveal) */
.vb-item.in-view .vb-item-inner img{
  transform: scale(1.0);
  filter: brightness(.90) saturate(.95);
}
/* Hover her zaman yaklaşır */
.vb-item:hover .vb-item-inner img{
  transform: scale(1.10) !important;
  filter: brightness(1) saturate(1.05) !important;
  transition: transform 1.0s cubic-bezier(.25,.46,.45,.94), filter .5s ease !important;
}

/* Overlay */
.vb-item-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,20,14,0) 40%,
    rgba(10,20,14,.75) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity .5s ease;
}
.vb-item:hover .vb-item-overlay{ opacity: 1; }
.vb-item-icon{
  width: 52px; height: 52px;
  border: 1px solid rgba(181,151,94,.6);
  display: grid;
  place-items: center;
  color: var(--gold);
  transform: scale(.7) rotate(-15deg);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.vb-item:hover .vb-item-icon{
  transform: scale(1) rotate(0deg);
}
.vb-item-icon svg{ width:22px; height:22px; }
.vb-item-cap{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 0 12px;
  transform: translateY(8px);
  transition: transform .5s ease .1s;
}
.vb-item:hover .vb-item-cap{ transform: translateY(0); }

/* Slider responsive */
@media (max-width: 1200px){ .vb-item{ flex: 0 0 calc((100% - 16px*2)/3); } }
@media (max-width: 900px) { .vb-item{ flex: 0 0 calc((100% - 16px)/2); } }
@media (max-width: 520px) { .vb-item{ flex: 0 0 86%; } .vb-track{ gap:12px; } }

/* Lightbox */
.vb-lb-content{
  background: rgba(10,20,14,.96);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
}
.vb-lb-leaf{
  position: absolute;
  top: 0; right: 0;
  width: 110px;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
  transform: rotate(25deg) translateX(20px);
}
.vb-lb-leaf svg{ width:100%; display:block; }
.vb-lb-img{
  width:100%; height:auto;
  display:block;
  max-height: 86vh;
  object-fit: contain;
  position: relative; z-index: 1;
}
.vb-lb-close{
  position:absolute;
  top:12px; right:12px;
  z-index:5;
  width:40px; height:40px;
  border:1px solid rgba(181,151,94,.35);
  background:transparent;
  color: rgba(255,255,255,.8);
  display:grid; place-items:center;
  cursor:pointer;
  transition: all .3s ease;
}
.vb-lb-close:hover{ background:var(--gold); color:#1a1f1a; border-color:var(--gold); }
.vb-lb-close svg{ width:16px; height:16px; }
.vb-lb-nav{
  position:absolute; top:50%; transform: translateY(-50%);
  width:48px; height:48px;
  border:1px solid rgba(181,151,94,.3);
  background:rgba(10,20,14,.6);
  color:rgba(255,255,255,.85);
  display:grid; place-items:center;
  font-size:20px; z-index:4;
  cursor:pointer;
  transition: all .3s ease;
  backdrop-filter: blur(8px);
}
.vb-lb-nav svg{ width:22px; height:22px; }
.vb-lb-nav:hover{ background:var(--gold); color:#1a1f1a; border-color:var(--gold); }
.vb-lb-prev{ left:12px; }
.vb-lb-next{ right:12px; }

/* =========================================================
   KAT PLANI
   ========================================================= */
.kp-katplani{
  padding:110px 0 130px;
  background:
    radial-gradient(800px 500px at 20% 25%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  overflow:hidden;
  position: relative;
}

.kp-top{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  margin-bottom:24px;
}
@media(max-width:992px){.kp-top{grid-template-columns:1fr}}

.kp-eyebrow{
  display:inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size:11px;
  letter-spacing:.2em;
  font-weight:600;
  text-transform: uppercase;
}
.kp-eyebrow::before{
  content:"";
  width: 24px; height: 1px;
  background: var(--gold-light);
  opacity: .5;
}
.kp-title{
  margin:18px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size:clamp(36px,4.5vw,66px);
  font-weight: 400;
  font-style: italic;
  letter-spacing:.02em;
  color: rgba(255,255,255,.95);
}
.kp-sub{
  color:rgba(255,255,255,.70);
  margin:0;
  font-size: 16px;
  line-height: 1.85;
  max-width: 560px;
}

.kp-switchCard{
  padding:14px;
}
.kp-tab{
  width:100%;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:10px;
  padding:14px 16px;
  color:rgba(255,255,255,.80);
  font-weight:500;
  letter-spacing:.06em;
  font-size: 16px;
  display:flex;
  align-items:center;
  gap:12px;
  transition: all .25s var(--ease-out);
}
.kp-tab + .kp-tab{margin-top:10px}
.kp-tab:hover{
  transform: translateY(-1px);
  background:rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
}
.kp-tab.active{
  background: rgba(181,151,94,.15);
  border-color: rgba(181,151,94,.30);
  color: #fff;
}
.kp-tabDot{
  width:6px; height:6px;
  border-radius:50%;
  background: var(--gold-light);
}

/* Slider */
.kp-pane{position:relative}
.kp-pane[hidden]{display:none}

.kp-slider{
  position:relative;
  margin-top:24px;
  padding-left: var(--kp-slider-gutter);
  padding-right: var(--kp-slider-gutter);
}

.kp-viewport{
  overflow:hidden;
  padding: 10px 0;
  scroll-behavior:smooth;
  overflow-x:auto;
  scrollbar-width:none;
  -ms-overflow-style:none;
  scroll-snap-type:x mandatory;
}
.kp-viewport::-webkit-scrollbar{display:none;}

.kp-track{
  display:flex;
  gap:20px;
  will-change:transform;
  padding-left: 1px;
  padding-right: 1px;
}

.kp-slide{
  flex:0 0 var(--kp-item-w, calc((100% - 40px)/3));
  scroll-snap-align:start;
}

.kp-card{
  background:rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  padding:12px;
  text-decoration:none;
  color:#fff;
  transition: all .35s var(--ease-out);
  border: 1px solid rgba(255,255,255,.06);
}
.kp-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
  border-color: rgba(181,151,94,.15);
}
.kp-cardFrame{
  background:#fff;
  border-radius: var(--radius);
  padding:14px;
}
.kp-cardFrame img{
  width:100%; height:320px;
  object-fit:contain;
  display:block;
}
.kp-cardCap{
  margin-top:12px;
  font-weight:400;
  letter-spacing:.04em;
  font-size: 16px;
  padding: 0 6px;
  color: rgba(255,255,255,.80);
}

/* Arrows */
.kp-arrow{
  position:absolute;
  top:58%;
  transform:translateY(-50%);
  width:var(--kp-arrow-size);
  height:var(--kp-arrow-size);
  background:none; border:0;
  cursor:pointer; z-index:5;
  opacity:.7;
  transition: opacity .2s ease, transform .2s ease;
}
.kp-arrow:hover{
  opacity:1;
  transform:translateY(-50%) scale(1.05);
}
.kp-arrow--left{ left: calc((var(--kp-slider-gutter) - var(--kp-arrow-size)) / 2); }
.kp-arrow--right{ right: calc((var(--kp-slider-gutter) - var(--kp-arrow-size)) / 2); }

.kp-chev{
  position:absolute; inset:0; margin:auto;
  width:var(--kp-chev-size);
  height:var(--kp-chev-size);
  border-top: var(--kp-chev-stroke) solid rgba(255,255,255,.70);
  border-right: var(--kp-chev-stroke) solid rgba(255,255,255,.70);
}
.kp-chev--l{transform:rotate(-135deg)}
.kp-chev--r{transform:rotate(45deg)}
.kp-arrow.is-disabled{ opacity:.12; pointer-events:none; }

@media(max-width:992px){
  :root{ --kp-arrow-size: 56px; --kp-chev-size: 28px; --kp-chev-stroke: 4px; --kp-arrow-gap: 16px; }
}
@media(max-width:576px){
  :root{ --kp-arrow-size: 48px; --kp-chev-size: 24px; --kp-chev-stroke: 3px; --kp-arrow-gap: 12px; }
  .kp-slider{ padding-left: calc(var(--kp-arrow-size) + 8px); padding-right: calc(var(--kp-arrow-size) + 8px); }
}

/* Modal Lightbox */
.modal-backdrop.show{ opacity: .55; }

.kp-lb{
  background: rgba(26,31,26,.90);
  border:1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow:hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
}
.kp-lbInner.kp-lbLayout{
  display:flex;
  flex-direction:row;
  align-items:stretch;
  width:100%;
  min-height:0;
}
.kp-lbLayout--solo .kp-lbLayout__side{ display:none !important; }
.kp-lbLayout__main{
  flex:1 1 auto;
  min-width:0;
  position:relative;
  padding:18px 18px 12px;
  display:flex;
  flex-direction:column;
}
.kp-lbLayout__side{
  flex:0 0 min(34%, 300px);
  max-width:320px;
  box-sizing:border-box;
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.55;
  overflow-y: auto;
  border-left: 1px solid rgba(181,151,94,.18);
}
.kp-lbSideThumb{
  flex-shrink:0;
  width:100%;
  max-height:min(28vh, 200px);
  object-fit:contain;
  margin-bottom:12px;
  border-radius:var(--radius, 8px);
  background:rgba(255,255,255,.06);
}
.kp-lbSideInner{
  margin-top:auto;
  white-space: pre-wrap;
}
#kpLightboxImg{
  width:100%; max-height: 78vh;
  object-fit: contain; display:block;
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
}
.kp-lbCap{
  margin-top: 10px;
  text-align:center;
  color: rgba(255,255,255,.85);
  font-weight: 400;
  letter-spacing:.03em;
  font-size: 16px;
}
@media (max-width: 767.98px){
  .kp-lbInner.kp-lbLayout{ flex-direction:column; }
  .kp-lbLayout__side{
    flex:0 0 auto;
    max-width:none;
    width:100%;
    max-height:40vh;
    border-left:none;
    border-top:1px solid rgba(181,151,94,.2);
  }
  #kpLightboxImg{ max-height:52vh; }
}

.kp-lbArrow{
  position:absolute; top:50%;
  transform: translateY(-50%);
  z-index:6;
  width: var(--kp-lb-arrow);
  height: var(--kp-lb-arrow);
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  display:grid; place-items:center;
  transition: all .25s var(--ease-out);
}
.kp-lbArrow:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(181,151,94,.3);
}
.kp-lbArrow--left{ left: 14px; }
.kp-lbArrow--right{ right: 14px; }

.kp-lbChev{
  width: var(--kp-lb-chev);
  height: var(--kp-lb-chev);
  border-top: 2px solid rgba(255,255,255,.80);
  border-right: 2px solid rgba(255,255,255,.80);
}
.kp-lbChev--l{ transform: rotate(-135deg); }
.kp-lbChev--r{ transform: rotate(45deg); }
.kp-lbArrow.is-disabled{ opacity:.15; pointer-events:none; }

.kp-viewport.is-dragging{ cursor: grabbing; }
.kp-viewport{ cursor: grab; }

/* =========================================================
   FOOTER - Forest Editorial (NF)
   ========================================================= */
.nf-footer{
  position: relative;
  overflow: hidden;
  padding: 110px 40px 40px;
  color: rgba(245,242,236,.85);
  font-family: "Montserrat", system-ui, sans-serif;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(181,151,94,.12), transparent 60%),
    radial-gradient(700px 380px at 10% 100%, rgba(107,143,113,.15), transparent 60%),
    linear-gradient(180deg, #2f4a36 0%, #1e3326 100%);
  isolation: isolate;
}
.nf-footer::before{
  content:'';
  position:absolute;
  inset: 28px 28px auto 28px;
  height: calc(100% - 56px);
  border: 1px solid rgba(181,151,94,.14);
  pointer-events:none;
  z-index: 0;
}

/* Ornamental top separator */
.nf-topleaf{
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 80vw);
  z-index: 2;
  pointer-events: none;
}
.nf-topleaf svg{ width:100%; height:auto; display:block; }

/* Background leaves */
.nf-bgleaf{
  position:absolute;
  width: 280px;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  pointer-events:none;
  z-index: 0;
  opacity: .55;
}
.nf-bgleaf--l{ left: -100px; transform: translateY(-50%) rotate(-8deg); }
.nf-bgleaf--r{ right: -100px; transform: translateY(-50%) rotate(8deg) scaleX(-1); }

.nf-inner{
  position: relative;
  z-index: 3;
  max-width: 1220px;
  margin: 0 auto;
  padding: 60px 30px 0;
}

/* Brand mark */
.nf-brand{
  text-align: center;
  margin-bottom: 80px;
}
.nf-brand-kicker{
  display: inline-block;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
}
.nf-brand-word{
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 1;
  margin: 0;
  color: #f5f2ec;
  letter-spacing: .01em;
  background: linear-gradient(180deg, #f5f2ec 0%, rgba(245,242,236,.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nf-brand-sub{
  font-size: 12px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}
.nf-brand-slogan{
  max-width: 520px;
  margin: 22px auto 0;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245,242,236,.55);
}

/* 4-col grid */
.nf-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 60px 0 50px;
  border-top: 1px solid rgba(181,151,94,.14);
  border-bottom: 1px solid rgba(181,151,94,.14);
}
.nf-col-title{
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}
.nf-col-title::after{
  content:'';
  position:absolute;
  left: 0; bottom: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* Link list */
.nf-links{
  list-style: none;
  margin: 0; padding: 0;
}
.nf-links li{ margin: 10px 0; }
.nf-links a{
  color: rgba(245,242,236,.70);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: .05em;
  position: relative;
  padding-left: 0;
  transition: color .3s ease, padding-left .3s ease;
}
.nf-links a::before{
  content:'';
  position:absolute;
  left: -18px; top: 50%;
  width: 10px; height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .3s ease, left .3s ease;
}
.nf-links a:hover{
  color: var(--gold);
  padding-left: 18px;
}
.nf-links a:hover::before{
  opacity: 1;
  left: 0;
}

/* Contact */
.nf-contact{
  list-style:none;
  margin:0; padding:0;
}
.nf-contact li{
  display:flex;
  align-items:center;
  gap: 12px;
  margin: 14px 0;
  font-size: 16px;
  color: rgba(245,242,236,.75);
}
.nf-contact a{
  color: rgba(245,242,236,.85);
  text-decoration:none;
  transition: color .25s ease;
}
.nf-contact a:hover{ color: var(--gold); }
.nf-ico{
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid rgba(181,151,94,.25);
  color: var(--gold);
  flex-shrink: 0;
}

/* Address */
.nf-addr{
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245,242,236,.70);
  margin-bottom: 18px;
}
.nf-mapbtn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(181,151,94,.35);
  color: var(--gold);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .35s ease;
}
.nf-mapbtn:hover{
  background: var(--gold);
  color: #10201a;
  border-color: var(--gold);
}

/* Social + newsletter */
.nf-social{
  display:flex;
  gap: 10px;
  margin-bottom: 26px;
}
.nf-social a{
  width: 40px; height: 40px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(181,151,94,.25);
  color: rgba(245,242,236,.75);
  text-decoration: none;
  transition: all .35s ease;
  font-size: 16px;
}
.nf-social a:hover{
  background: var(--gold);
  color: #10201a;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.nf-col-mini{
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245,242,236,.55);
  margin-bottom: 10px;
}
.nf-nlForm{
  display:flex;
  align-items:center;
  border: 1px solid rgba(181,151,94,.25);
  background: rgba(255,255,255,.02);
}
.nf-nlForm input{
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: 0;
  color: #f5f2ec;
  font-size: 12px;
  outline: none;
}
.nf-nlForm input::placeholder{
  color: rgba(245,242,236,.4);
}
.nf-nlForm button{
  width: 44px; height: 44px;
  background: var(--gold);
  border: 0;
  color: #10201a;
  font-size: 16px;
  cursor: pointer;
  transition: background .3s ease;
}
.nf-nlForm button:hover{ background: #d0b378; }

/* Partners */
.nf-partners{
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid rgba(181,151,94,.14);
}
.nf-partners-cap{
  display:block;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 22px;
}
.nf-partners-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 50px;
  flex-wrap: wrap;
}
.nf-partners-row img{
  height: 70px;
  max-width: 150px;
  object-fit: contain;
  opacity: .7;
  filter: brightness(1.1);
  transition: opacity .35s ease, transform .35s ease;
}
.nf-partners-row img:hover{
  opacity: 1;
  transform: translateY(-3px);
}

/* Bottom bar */
.nf-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
  padding: 26px 0 10px;
  font-size: 11px;
  letter-spacing: .05em;
  color: rgba(245,242,236,.45);
  flex-wrap: wrap;
}
.nf-copy strong{
  color: rgba(245,242,236,.75);
  font-weight: 500;
}
.nf-credit a{
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(181,151,94,.3);
  padding-bottom: 1px;
  transition: border-color .3s ease;
}
.nf-credit a:hover{ border-bottom-color: var(--gold); }

/* =========================================================
   AMBIENT SITE LEAVES
   ========================================================= */
.site-leaf{
  position: fixed;
  pointer-events: none;
  z-index: 1;
  opacity: .09;
  mix-blend-mode: multiply;
  transition: opacity .5s ease;
}
.site-leaf svg{ width:100%; height:100%; display:block; }
.site-leaf--tl{ top: 90px;  left: -60px;  width: 200px; transform: rotate(-14deg); }
.site-leaf--tr{ top: 130px; right: -60px; width: 220px; transform: rotate(22deg) scaleX(-1); }
.site-leaf--ml{ top: 50%;   left: -70px;  width: 190px; transform: translateY(-50%) rotate(10deg); }
.site-leaf--mr{ top: 50%;   right: -70px; width: 200px; transform: translateY(-50%) rotate(-14deg) scaleX(-1); }

/* Footer görünür olduğunda ambient yaprakları gizle */
body.footer-in-view .site-leaf{ opacity: 0; }

@media (max-width: 991.98px){
  .site-leaf{ opacity: .06; }
  .site-leaf--tl, .site-leaf--tr{ width: 140px; }
  .site-leaf--ml, .site-leaf--mr{ display:none; }
}
@media (max-width: 575.98px){
  .site-leaf--tl, .site-leaf--tr{ display:none; }
}

/* Kat planı şablon 2–4 lightbox okları (.vb-lb-nav galeride ayrı stillenir) */
.kp-lb-nav{
  position:absolute; top:50%; transform: translateY(-50%);
  width:44px; height:44px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; z-index:4;
  transition: all .25s var(--ease-out);
}
.kp-lb-nav:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(181,151,94,.25);
}
.kp-lb-prev{ left:14px; }
.kp-lb-next{ right:14px; }

/* Şablon 2–4 kat planı: görsel + sağ panel */
.kp-lb2{
  display:flex;
  flex-direction:row;
  align-items:stretch;
  width:100%;
  min-height:0;
}
.kp-lb2--solo .kp-lb2-side{ display:none !important; }
.kp-lb2-main{
  flex:1 1 auto;
  min-width:0;
  position:relative;
  padding:18px;
  display:flex;
  flex-direction:column;
}
.kp-lb2-side{
  flex:0 0 min(34%, 300px);
  max-width:320px;
  box-sizing:border-box;
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.55;
  overflow-y: auto;
  border-left: 1px solid rgba(181,151,94,.18);
}
.kp-lb2-main .kp-lb-img{ max-height:72vh; width:100%; object-fit:contain; }
.kp-lb-cap{
  margin-top:10px;
  text-align:center;
  color: rgba(255,255,255,.82);
  font-size: 16px;
}
@media (max-width: 767.98px){
  .kp-lb2{ flex-direction:column; }
  .kp-lb2-side{
    flex:0 0 auto;
    max-width:none;
    width:100%;
    max-height:40vh;
    border-left:none;
    border-top:1px solid rgba(181,151,94,.2);
  }
  .kp-lb2-main .kp-lb-img{ max-height:50vh; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px){
  .brand-wrap{ padding: 8px 5px; border-radius: 8px; margin-top: -10px; }
  .brand-logo-img{ height: 55px; margin-top:5px; }
  .hero::before{ inset: 12px; }
  .hero-social{ display:none !important; }
  .btn-hero{ min-width:140px; padding: 14px 22px; }
  .project-band{ padding:70px 0; }
  .p-main-left{ min-height:auto; padding: 40px 22px; }
  .p-main-media{ min-height: 360px; }
  .p-split-media{ min-height: 360px; }
  .locVera-hero{ padding:60px 0 40px; }
  .locVera-text{ margin-left:0; max-width:100%; }
  .locVera-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 14px; }
  .locVera-item{ min-height: 190px; padding: 22px 14px 20px; }
  .section-social{ padding:80px 0 70px; }
  .s-heroRow{ flex-direction:column; gap:12px; }
  .s-heroRight{ max-width:none; margin-left:0; flex:0 0 0; }
  .s-contentRow{ grid-template-columns:1fr; gap:16px; }
  .s-mediaBox img{ height:340px; }
  .s-arrowBtn{ display:none; }
  .nf-footer{ padding: 90px 18px 30px; }
  .nf-footer::before{ inset: 16px 16px auto 16px; height: calc(100% - 32px); }
  .nf-inner{ padding: 40px 10px 0; }
  .nf-grid{ grid-template-columns: repeat(2, 1fr); gap: 40px; padding: 46px 0 40px; }
  .nf-brand{ margin-bottom: 50px; }
  .nf-bottom{ justify-content:center; text-align:center; }
}
@media (max-width: 520px){
  .hero::before{ inset: 8px; }
  .locVera-grid{ grid-template-columns:1fr; gap: 14px; }
  .locVera-item{ min-height: 0; }
  .locVera-title{ font-size:36px; }
  .s-mediaBox img{ height:260px; }
  .p-title { font-size: 24px; }
  .s-titleBig { font-size: 28px; }
  .vb-title { font-size: 28px; }
  .kp-title { font-size: 28px; }
  .kp-cardFrame img { height: auto; }
  .nf-grid{ grid-template-columns: 1fr; gap: 34px; }
  .nf-partners-row{ gap: 28px; }
  .nf-partners-row img { height: 48px; }
  .nf-bgleaf{ width: 220px; }
  .vb-arrow{ width:40px; height:40px; }
  .vb-arrow svg{ width:16px; height:16px; }
}
/* =========================================================
   VAZİYET PLANI — referans: kağıt tonu, sol lejant, büyük vaziyet
   ========================================================= */
.vp-section{
  --vp-paper: #f5f2ed;
  --vp-tan: #b59a7a;
  --vp-tan-soft: #e8dfd4;
  --vp-charcoal: #2c2c2c;
  position: relative;
  padding: clamp(80px, 11vw, 120px) 0;
  background-color: var(--vp-paper);
  background-image:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255,255,255,.55) 0%, transparent 55%),
    repeating-linear-gradient(
      -12deg,
      transparent 0,
      transparent 3px,
      rgba(42, 77, 50, 0.012) 3px,
      rgba(42, 77, 50, 0.012) 4px
    );
  overflow: hidden;
  border-top: 1px solid rgba(181, 154, 122, 0.18);
}
.vp-deco{
  position: absolute;
  width: min(320px, 44vw);
  height: min(400px, 52vh);
  pointer-events: none;
  opacity: 0.16;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 200' fill='none'%3E%3Cpath d='M20 180c8-40 4-85-12-120 18 28 22 68 12 120z' fill='%232a4d32'/%3E%3C/svg%3E") no-repeat center / contain;
}
.vp-deco--tl{ top: -5%; left: -5%; }
.vp-deco--br{ bottom: -8%; right: -3%; transform: scaleX(-1); }

.vp-inner{ position: relative; z-index: 1; }
.vp-grid{
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.32fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
/* Lejant kapalı / boş: sol metin harita yüksekliğinde ortalanır, harita daha baskın */
.vp-section--no-legend .vp-grid{
  align-items: stretch;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 4vw, 52px);
}
.vp-section--no-legend .vp-col--text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
  padding-right: clamp(8px, 2vw, 28px);
}
.vp-section--no-legend .vp-desc{
  margin-bottom: 0;
}
.vp-kicker{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--vp-tan);
  margin: 0 0 16px;
}
.vp-title{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--vp-charcoal);
  line-height: 1.12;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.vp-desc{
  font-size: 15px;
  line-height: 1.82;
  color: #5a5a5a;
  margin: 0 0 32px;
  max-width: 440px;
}
.vp-legend{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
}
.vp-legend__item{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.vp-legend__ico{
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--vp-tan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d3d3d;
}
.vp-legend__ico svg{
  width: 22px;
  height: 22px;
  display: block;
}
.vp-legend__dot{
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--vp-tan);
  display: block;
}

.vp-legend__label{
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vp-charcoal);
}

.vp-col--visual{ position: relative; }
.vp-motto{
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  color: #8a7358;
  text-align: right;
  margin: 0 0 18px;
  padding-right: 8px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.vp-mapWrap{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}
.vp-map{
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.vp-map--placeholder{
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-light);
  background: linear-gradient(145deg, #fff, var(--vp-paper));
}
.vp-compass{
  position: absolute;
  top: 18px;
  right: 18px;
  width: auto;
  height: clamp(76px, 11vw, 112px);
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px){
  .vp-grid{ grid-template-columns: 1fr; }
  .vp-section--no-legend .vp-col--text{
    display: block;
    padding-right: 0;
    justify-content: unset;
  }
  .vp-section--no-legend .vp-desc{
    margin-bottom: 24px;
  }
  .vp-motto{ text-align: left; padding-right: 0; }
  .vp-compass{
    top: auto;
    bottom: 14px;
    right: 14px;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce){
  .carousel-item.active .hero-bg{ animation: none !important; }
  .reveal-up, .reveal-left, .reveal-right,
  .reveal-scale, .reveal-fade, .reveal{ transition: none !important; }
  .locVera-item{ transition: none !important; }
  .locVera-item:hover{ transform: none; }
}
