:root {
  --ink: #0a0c0f;
  --ink2: #12151b;
  --paper: #f3eee6;
  --muted: rgba(243, 238, 230, 0.62);
  --gold: #d4b06a;
  --gold2: #f0d9a0;
  --line: rgba(243, 238, 230, 0.12);
  --ease: cubic-bezier(.22, 1, .36, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: Manrope, system-ui, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.noise {
  pointer-events: none; position: fixed; inset: 0; z-index: 80; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor {
  width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--gold);
  position: fixed; pointer-events: none; z-index: 90;
  left: 0; top: 0;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: width .28s var(--ease), height .28s var(--ease), background .28s, opacity .28s;
  opacity: 0;
}
.cursor.on { opacity: 1; }
.cursor.grow { width: 42px; height: 42px; background: rgba(212,176,106,.12); }
@media (pointer: coarse) { .cursor { display: none; } }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 28px;
  background: linear-gradient(to bottom, rgba(10,12,15,.88), transparent);
  backdrop-filter: blur(10px);
  transition: padding .4s var(--ease), background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 8px 28px;
  background: rgba(10,12,15,.92);
  border-bottom-color: var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; font-family: Syne, sans-serif; font-weight: 700; letter-spacing: .02em; }
.logo img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; }
.logo em { font-style: normal; color: var(--gold); font-weight: 600; }
.nav-links { display: flex; gap: 22px; font-size: 13px; opacity: .85; }
.nav-links a { position: relative; transition: color .3s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--gold2); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone, .nav-ig { font-size: 13px; color: var(--gold); letter-spacing: .04em; }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold); padding: 10px 16px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; color: var(--gold); font-size: 22px; cursor: pointer; }

.hero { position: relative; min-height: 100dvh; display: grid; place-items: end start; }
.hero-media { position: absolute; inset: 0; overflow: hidden; will-change: transform; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: ken 18s ease-in-out infinite alternate;
  transform-origin: 58% 42%;
  will-change: transform;
}
@keyframes ken {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.18) translate3d(-3%, 3%, 0); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,12,15,.94) 0%, rgba(10,12,15,.28) 46%, rgba(10,12,15,.4) 100%),
    radial-gradient(ellipse at 30% 80%, rgba(212,176,106,.18), transparent 50%);
}
.mesh-anim {
  position: absolute; inset: -25%;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.07) 18px 19px),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(212,176,106,.09) 18px 19px);
  animation: mesh 14s linear infinite;
  mix-blend-mode: overlay; pointer-events: none;
}
@keyframes mesh { to { transform: translate3d(-64px, -64px, 0); } }
.hero-copy { position: relative; z-index: 2; padding: 0 8vw 12vh; max-width: 920px; }
.eyebrow { color: var(--gold); letter-spacing: .22em; text-transform: uppercase; font-size: 11px; margin-bottom: 16px; }
h1, h2 { font-family: Instrument Serif, Georgia, serif; font-weight: 400; letter-spacing: -.03em; }
h1 { font-size: clamp(48px, 9vw, 118px); line-height: .92; }
h1 em, h2 em { font-style: italic; color: var(--gold2); }
.hero-title span,
.hero-title em {
  display: block;
  animation: lineUp 1.05s var(--ease) both;
}
.hero-title span:nth-child(1) { animation-delay: .12s; }
.hero-title em {
  animation-delay: .32s;
  background: linear-gradient(90deg, #c9a056, #fff4d0 42%, #d4b06a 58%, #f0d9a0);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: lineUp 1.05s var(--ease) .32s both, shine 3.2s linear 1.2s infinite;
}
.hero-title span:nth-child(3) { animation-delay: .5s; }
.hero-in { animation: lineUp .85s var(--ease) both; }
.eyebrow.hero-in { animation-delay: .05s; }
.lede.hero-in { animation-delay: .62s; }
.hero-badges.hero-in { animation-delay: .74s; }
.hero-actions.hero-in { animation-delay: .88s; }
@keyframes lineUp {
  from { opacity: 0; transform: translate3d(0, 36px, 0); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes shine {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}
.lede { margin-top: 22px; max-width: 540px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-badges span {
  border: 1px solid rgba(212,176,106,.35); color: var(--gold2);
  padding: 7px 12px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  animation: badgeIn .8s var(--ease) both;
}
.hero-badges span:nth-child(2) { animation-delay: .12s; }
.hero-badges span:nth-child(3) { animation-delay: .22s; }
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; padding: 14px 22px;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .35s;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.38), transparent 75%);
  transform: translateX(-130%);
  transition: transform .7s var(--ease);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,176,106,.28); }
.btn-gold:hover::after { transform: translateX(130%); }
.btn-ghost { border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold2); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; right: 8vw; bottom: 8vh; z-index: 2;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll i {
  width: 1px; height: 42px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(.35); opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; gap: 28px; width: max-content; animation: slideLtr 18s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: Syne, sans-serif; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.marquee i {
  width: 6px; height: 6px; background: var(--gold); display: block;
  animation: diamond 4.5s ease-in-out infinite;
}
@keyframes diamond {
  0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
  50% { transform: rotate(225deg) scale(.7); opacity: .55; }
}
@keyframes slideLtr { from { transform: translateX(-50%); } to { transform: translateX(0); } }

section { padding: 100px 8vw; }
.sec-head { margin-bottom: 48px; max-width: 680px; }
.sec-note { margin-top: 16px; color: var(--muted); line-height: 1.6; }
h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card {
  background: var(--ink2); overflow: hidden; border: 1px solid var(--line);
  transition: transform .55s var(--ease), border-color .4s, box-shadow .55s;
}
.card img { height: 220px; width: 100%; object-fit: cover; filter: saturate(.92); transition: transform 1s var(--ease); }
.card:hover { transform: translateY(-10px); border-color: rgba(212,176,106,.4); box-shadow: 0 28px 50px rgba(0,0,0,.4); }
.card:hover img { transform: scale(1.08); }
.card-body { padding: 20px; }
.card-body span { color: var(--gold); font-size: 12px; letter-spacing: .16em; }
.card-body h3 { font-family: Syne, sans-serif; font-size: 18px; margin: 8px 0 8px; }
.card-body p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.specs { background: linear-gradient(180deg, transparent, rgba(212,176,106,.04), transparent); }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.spec-card {
  position: relative;
  border: 1px solid var(--line); padding: 32px 26px 28px;
  background: linear-gradient(180deg, rgba(24,20,14,.55), rgba(18,21,27,.85));
  transition: border-color .4s, transform .5s var(--ease), box-shadow .5s;
}
.spec-card:hover { transform: translateY(-8px); border-color: rgba(212,176,106,.5); box-shadow: 0 22px 48px rgba(0,0,0,.32); }
.spec-card.featured {
  border-color: rgba(212,176,106,.5);
  box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 1px 0 rgba(212,176,106,.18);
}
.spec-tag {
  display: inline-block; margin-bottom: 14px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(212,176,106,.35); padding: 5px 10px;
}
.spec-card b {
  font-family: Instrument Serif, serif; color: var(--gold2); font-size: 52px;
  font-weight: 400; display: block; line-height: .9; margin-bottom: 10px;
}
.spec-card h3 { font-family: Syne, sans-serif; font-size: 16px; margin-bottom: 18px; }
.spec-card dl { display: grid; gap: 8px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.spec-card dl div { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.spec-card dt { color: var(--muted); }
.spec-card dd { color: var(--gold2); font-weight: 700; font-family: Syne, sans-serif; }
.spec-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.load-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px;
}
.load-row div {
  border: 1px solid rgba(212,176,106,.28); padding: 26px 22px;
  background: linear-gradient(180deg, rgba(212,176,106,.08), transparent);
  transition: transform .45s var(--ease), border-color .35s;
}
.load-row div:hover { transform: translateY(-4px); border-color: rgba(212,176,106,.55); }
.load-row strong { display: block; font-family: Instrument Serif, serif; font-size: 42px; color: var(--gold2); margin-bottom: 8px; }
.load-row span { color: var(--muted); font-size: 14px; line-height: 1.45; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.split-rev { grid-template-columns: .9fr 1.1fr; }
.split-media { position: relative; }
.split-media .img-main {
  width: 100%; height: 520px; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.split:hover .img-main { transform: scale(1.03); }
.img-float {
  position: absolute; width: 42%; right: -8%; bottom: -10%;
  border: 8px solid var(--ink); box-shadow: 0 30px 60px rgba(0,0,0,.45);
  animation: float 5.5s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-10px); } }
.split-copy p { color: var(--muted); line-height: 1.65; margin: 16px 0 20px; }
.split-copy ul { list-style: none; margin-bottom: 28px; }
.split-copy li { padding: 8px 0 8px 18px; position: relative; color: var(--paper); }
.split-copy li::before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }

.proof-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.proof-grid img {
  width: 100%; height: 480px; object-fit: cover; object-position: center;
  transition: transform 1s var(--ease);
}
.proof-grid figure { overflow: hidden; }
.proof-grid figure:hover img { transform: scale(1.05); }
.proof-grid figcaption { margin-top: 10px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

.bosluk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.bosluk-grid img {
  height: 360px; width: 100%; object-fit: cover; margin-bottom: 16px;
  transition: transform 1s var(--ease);
}
.bosluk-grid article { overflow: hidden; transition: transform .5s var(--ease); }
.bosluk-grid article:hover { transform: translateY(-6px); }
.bosluk-grid article:hover img { transform: scale(1.05); }
.bosluk-grid h3 { font-family: Syne, sans-serif; margin-bottom: 8px; }
.bosluk-grid p { color: var(--muted); }

.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.city-grid article {
  border: 1px solid var(--line); padding: 22px 22px 18px; background: var(--ink2);
  transition: transform .45s var(--ease), border-color .35s;
}
.city-grid article:hover { transform: translateY(-4px); border-color: rgba(212,176,106,.4); }
.city-grid h3 { font-family: Syne, sans-serif; color: var(--gold2); margin-bottom: 10px; font-size: 18px; }
.city-grid p { color: var(--muted); font-size: 14px; line-height: 1.55; }

.reviews { padding-right: 0; padding-left: 0; overflow: hidden; }
.reviews .sec-head { padding: 0 8vw; }
.review-marquee { overflow: hidden; }
.review-track { display: flex; gap: 16px; width: max-content; animation: reviewsLtr 42s linear infinite; padding: 0 8vw; }
.review-track:hover { animation-play-state: paused; }
.review-card {
  width: 320px; flex: 0 0 320px;
  border: 1px solid var(--line); background: var(--ink2); padding: 22px;
  transition: transform .4s var(--ease), border-color .35s;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(212,176,106,.4); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 12px; margin-bottom: 10px; }
.review-card p { font-size: 14px; line-height: 1.55; color: var(--paper); min-height: 88px; }
.review-card cite { display: block; margin-top: 14px; font-style: normal; font-size: 12px; color: var(--muted); letter-spacing: .04em; }
@keyframes reviewsLtr { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; list-style: none; }
.steps li { transition: transform .45s var(--ease); }
.steps li:hover { transform: translateY(-6px); }
.steps span { color: var(--gold); font-family: Syne, sans-serif; font-size: 13px; }
.steps h3 { margin: 10px 0 8px; font-family: Syne, sans-serif; }
.steps p { color: var(--muted); font-size: 14px; }

.cta-band {
  margin: 0 8vw 80px; padding: 64px 48px;
  background: linear-gradient(135deg, #16120c, #0a0c0f 55%, #1a160e);
  border: 1px solid rgba(212,176,106,.25); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,176,106,.16), transparent 68%);
  top: -160px; left: 50%; transform: translateX(-50%);
  animation: glow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glow {
  0%, 100% { opacity: .5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}
.cta-logo {
  width: 92px; height: 92px; object-fit: cover; margin: 0 auto 18px; border-radius: 12px;
  animation: float 5s ease-in-out infinite; position: relative;
}
.cta-band p { color: var(--muted); margin: 16px 0 8px; }
.cta-band .hero-actions { margin-top: 24px; }

footer {
  padding: 40px 8vw 120px; display: grid; gap: 16px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: 14px;
}
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
footer strong { color: var(--paper); display: block; margin-bottom: 4px; }
footer a { display: block; color: var(--gold); margin-top: 6px; }
.copy { opacity: .5; font-size: 12px; margin-top: 8px; }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #041; display: grid; place-items: center;
  font-weight: 800; box-shadow: 0 12px 30px rgba(0,0,0,.35);
  animation: waPulse 2.6s ease-in-out infinite;
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); animation-play-state: paused; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
}
.mobile-bar { display: none; }

.nav.open .nav-links {
  display: flex; flex-direction: column;
  position: absolute; top: 68px; left: 0; right: 0;
  background: rgba(10,12,15,.96); padding: 18px 28px 24px; gap: 16px;
}

@media (max-width: 980px) {
  .nav-links, .nav-phone, .nav-ig { display: none; }
  .nav.open .nav-links { display: flex; }
  .nav-toggle { display: block; }
  .cards, .spec-grid, .load-row, .split, .split-rev, .proof-grid, .bosluk-grid, .city-grid, .steps {
    grid-template-columns: 1fr;
  }
  .split-media .img-main, .proof-grid img { height: 320px; }
  .img-float { display: none; }
  h1 { font-size: 48px; }
  section { padding: 72px 22px; }
  .reviews .sec-head { padding: 0 22px; }
  .hero-copy { padding: 0 22px 14vh; }
  .cta-band { margin: 0 22px 60px; padding: 48px 22px; }
  .wa-float { display: none; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1.15fr; position: fixed;
    left: 12px; right: 12px; bottom: 12px; z-index: 70; gap: 8px;
  }
  .mobile-bar a {
    text-align: center; padding: 14px 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 11px;
    border: 1px solid var(--gold); color: var(--gold); background: rgba(10,12,15,.92); backdrop-filter: blur(8px);
  }
  .mobile-bar a.ig { border-color: #c13584; color: #f3eee6; background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); }
  .mobile-bar a.wa { background: #25d366; color: #041; border-color: #25d366; }
  footer { padding-bottom: 110px; }
}

@media (min-width: 981px) {
  .mobile-bar { display: none; }
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  filter: blur(6px);
  transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; filter: blur(0); }

.nav.open .nav-links {
  animation: menuDrop .4s var(--ease);
}
@keyframes menuDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img, .mesh-anim { animation: none; }
  .marquee-track, .review-track { animation-duration: 80s; }
  .hero-title em {
    color: var(--gold2);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--gold2);
  }
  .js .reveal { filter: none; }
}

