:root {
  --bg: #f3ede2;
  --fg: #0d2230;
  --coral: #ff7a59;
  --brass: #d8b26e;
  --ink: #0d2230;
  --cream: #f3ede2;
  --kraft: #d7bf92;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --hand: "Caveat", "Segoe Print", cursive;
  --gutter: clamp(16px, 5vw, 72px);
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
figure { margin: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; line-height: 1; }
h2 { font-size: clamp(2.6rem, 7vw, 6rem); letter-spacing: -.02em; }
em { font-style: italic; color: var(--coral); }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.label { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; opacity: .7; margin: 0 0 1.4rem; }
section { position: relative; }
.btn { display: inline-block; margin-top: 28px; padding: 14px 24px; border-radius: 99px; background: var(--coral); color: var(--ink); font-weight: 700; transition: transform .3s var(--ease), background .3s; }
.btn:hover { transform: translateY(-3px); background: #ff9477; }

/* ---------- Atmosfer katmanları ---------- */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%; z-index: 90; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain .9s steps(5) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); }
}
.rays {
  position: fixed; left: -15%; right: -15%; top: -10vh; height: 110vh; z-index: 1; pointer-events: none; opacity: 0;
  background:
    repeating-linear-gradient(102deg, transparent 0 70px, rgba(190,235,240,.09) 70px 110px, transparent 110px 190px),
    repeating-linear-gradient(96deg, transparent 0 130px, rgba(190,235,240,.06) 130px 150px, transparent 150px 260px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
          mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
  filter: blur(8px); mix-blend-mode: screen; transform-origin: 50% 0;
  animation: rays 14s ease-in-out infinite alternate;
}
@keyframes rays { from { transform: skewX(-10deg) translateX(-2%); } to { transform: skewX(8deg) translateX(2%); } }
#ocean { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; opacity: 0; }
main, .nav, .depth { position: relative; z-index: 2; }

/* ---------- Açılış ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 100; background: #0f3443; color: var(--cream);
  display: grid; place-items: center; clip-path: inset(0% 0% 0% 0%);
}
.pl-word { position: relative; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(4rem, 16vw, 12rem); line-height: 1; letter-spacing: -.03em; padding: 0 .08em .1em; }
.pl-base { color: transparent; -webkit-text-stroke: 1px rgba(243,237,226,.35); }
.pl-fill { position: absolute; inset: 0; padding: inherit; color: var(--cream); clip-path: inset(100% 0 0 0); }
.pl-meta { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 32px; display: flex; justify-content: space-between; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; opacity: .7; }
.pl-count { font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  mix-blend-mode: difference; color: #fff;
}
.logo { font-family: var(--serif); font-size: 1.6rem; font-style: italic; }
.logo span { font-style: normal; font-size: .9em; margin-left: 4px; }
.nav nav { display: flex; gap: 28px; align-items: center; font-size: .9rem; font-weight: 600; }
.nav nav a:not(.nav-cta) { position: relative; }
.nav nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { border: 1px solid currentColor; padding: 8px 16px; border-radius: 99px; display: inline-flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #888; display: inline-block; flex-shrink: 0; }
.is-open .status-dot { background: #3ddc84; box-shadow: 0 0 0 0 rgba(61,220,132,.6); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 8px rgba(61,220,132,0); } 100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); } }
@media (max-width: 760px) { .nav nav a:not(.nav-cta) { display: none; } }

/* ---------- Derinlik ---------- */
.depth {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%);
  z-index: 40; display: flex; flex-direction: column; align-items: center; gap: 10px;
  mix-blend-mode: difference; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
}
.depth-line { width: 1px; height: 180px; background: currentColor; opacity: .5; position: relative; }
.depth-line::before { content: ""; position: absolute; inset: 0 -4px; background: repeating-linear-gradient(to bottom, currentColor 0 1px, transparent 1px 18px); opacity: .8; }
.depth-dot { position: absolute; left: -4px; top: 0; width: 9px; height: 9px; border-radius: 50%; background: #fff; }
.depth-val { font-variant-numeric: tabular-nums; min-width: 48px; text-align: center; }
@media (max-width: 760px) { .depth { display: none; } }

/* ---------- HERO ---------- */
.hero-stage { height: 100vh; min-height: 600px; position: relative; overflow: hidden; }
.hero-top {
  position: absolute; top: 88px; left: var(--gutter); right: var(--gutter); z-index: 3;
  display: flex; justify-content: space-between; font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
}
.arch {
  position: absolute; inset: 0; z-index: 2; overflow: hidden;
  clip-path: inset(18vh 32vw 30vh 32vw round 40vw 40vw 12px 12px);
}
.arch-img { width: 100%; height: 100%; object-fit: cover; transform-origin: 50% 60%; }
.arch-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,20,28,.2), rgba(5,20,28,.75)); opacity: 0; }
.arch-copy { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 22vh; color: var(--cream); }
.arch-copy h2 { font-size: clamp(2.8rem, 8vw, 7.5rem); letter-spacing: -.03em; line-height: .95; }
.arch-copy .line { display: block; overflow: hidden; padding-bottom: .06em; }
.arch-copy .line > span { display: block; }
.arch-copy .label, .arch-sub { opacity: 0; }
.arch-sub { font-size: 1.1rem; max-width: 36ch; margin-top: 1.4rem; }
.hero-title {
  position: absolute; left: 0; right: 0; bottom: 2vh; z-index: 3; text-align: center;
  font-size: min(22vw, 29vh); font-style: italic; font-weight: 300; letter-spacing: -.045em; line-height: .9;
}
.hero-title .mask { display: inline-block; overflow: hidden; padding: 0 .03em .08em; vertical-align: bottom; }
.hero-title .char { display: inline-block; will-change: transform; }
.scroll-hint { position: absolute; left: var(--gutter); bottom: 5vh; z-index: 3; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; display: flex; align-items: center; gap: 12px; opacity: .7; writing-mode: vertical-rl; transform: rotate(180deg); }
.scroll-hint span { width: 1px; height: 46px; background: currentColor; transform-origin: top; animation: drip 2s ease-in-out infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.waves { position: absolute; left: 0; right: 0; top: 100%; height: 100vh; z-index: 4; pointer-events: none; }
.wave { position: absolute; left: -5%; width: 110%; top: 0; }
.wave svg { display: block; width: 100%; height: 22vh; }
.wave i { display: block; height: 120vh; margin-top: -1px; }
.w3 { top: 0; }  .w3 path { fill: #9fc6cc; } .w3 i { background: #9fc6cc; }
.w2 { top: 5vh; } .w2 path { fill: #3f7f92; } .w2 i { background: #3f7f92; }
.w1 { top: 10vh; } .w1 path { fill: #0f3443; } .w1 i { background: #0f3443; }

@media (max-width: 760px) {
  .arch { clip-path: inset(20vh 10vw 26vh 10vw round 50vw 50vw 10px 10px); }
  .hero-top { top: 76px; font-size: .62rem; }
  .scroll-hint { display: none; }
  .arch-copy { bottom: 16vh; }
}

/* ---------- STORY ---------- */
.story { padding: 8vh 0 16vh; background: #0f3443; color: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(30px, 6vw, 100px); align-items: center; }
.story-text { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 3rem); line-height: 1.2; letter-spacing: -.01em; margin: 0; }
.story-text .w { opacity: .14; }
.story-photos { position: relative; height: clamp(420px, 60vh, 640px); }
.ph { position: absolute; overflow: hidden; border-radius: 6px; box-shadow: 0 30px 60px rgba(0,0,0,.35); }
.ph img { width: 100%; height: 125%; object-fit: cover; }
.ph-a { width: 68%; height: 78%; top: 0; right: 0; border-radius: 999px 999px 6px 6px; }
.ph-b { width: 48%; height: 46%; bottom: 0; left: 0; }
.ph-note { position: absolute; left: 52%; bottom: 4%; font-family: var(--hand); font-size: 1.8rem; color: var(--brass); transform: rotate(-6deg); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 14vh; border-top: 1px solid rgba(243,237,226,.2); padding-top: 32px; }
.stats strong { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 300; color: var(--brass); line-height: 1; }
.stats span { font-size: .9rem; opacity: .75; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } .story-photos { height: 440px; } }
@media (max-width: 600px) { .stats { grid-template-columns: 1fr; } }

/* ---------- MARQUEE ---------- */
.marquee { overflow: hidden; padding: 26px 0; background: var(--coral); color: var(--ink); transform: rotate(-2deg); margin: 0 -2vw; position: relative; z-index: 3; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.marquee-track { display: flex; gap: 36px; white-space: nowrap; width: max-content; font-family: var(--serif); font-size: clamp(2rem, 5vw, 4rem); font-style: italic; align-items: center; }
.marquee-track i { font-style: normal; font-size: .5em; }

/* ---------- SIGNATURE (yatay) ---------- */
.signature { overflow: hidden; }
.h-pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; gap: 7vh; padding-top: 60px; }
.h-head { padding: 0 var(--gutter); display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.h-progress { width: min(260px, 30vw); height: 2px; background: rgba(243,237,226,.18); margin-bottom: 14px; }
.h-progress span { display: block; height: 100%; background: var(--coral); transform-origin: left; transform: scaleX(0); }
.h-track { display: flex; gap: clamp(18px, 3vw, 44px); padding: 0 var(--gutter); width: max-content; }
.card { width: clamp(280px, 28vw, 400px); flex-shrink: 0; position: relative; display: flex; flex-direction: column; }
.card-img { position: relative; height: min(42vh, 400px); overflow: hidden; border-radius: 4px; box-shadow: 0 30px 50px rgba(0,0,0,.35); }
.card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35)); }
.card-img img { width: 130%; max-width: none; height: 100%; object-fit: cover; margin-left: -15%; }
.card-body { padding-top: 22px; }
.card-no { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; opacity: .6; }
.card h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin: 10px 0; line-height: 1.05; }
.card p { font-size: .95rem; opacity: .72; margin: 0; }

/* Kraft kağıt fiyat etiketi (iple asılı) */
.tag {
  position: absolute; top: -14px; right: 18px; z-index: 3;
  width: 124px; padding: 28px 12px 14px; color: #3a2a14; text-align: center;
  transform-origin: 50% -34px;
  filter: drop-shadow(0 10px 12px rgba(0,0,0,.4));
}
.tag::before { content: ""; position: absolute; left: 50%; top: -34px; width: 1px; height: 44px; background: #cbb68b; z-index: 2; }
.tag > .tag-bg { position: absolute; inset: 0; z-index: -1; }
.tag-name { display: block; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; border-bottom: 1px dashed rgba(58,42,20,.4); padding-bottom: 6px; }
.tag-price { display: block; font-family: var(--hand); font-size: 2.1rem; font-weight: 700; line-height: 1; margin-top: 6px; color: #7a1f0f; }
.tag-unit { font-family: var(--hand); font-size: 1.1rem; }
.tag-bg {
  background:
    radial-gradient(circle at 50% 12px, #123f50 0 4px, #b9a275 4.5px 6px, transparent 6.5px),
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(0,0,0,.1)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 .45  0 0 0 0 .33  0 0 0 0 .18  0 0 0 .25 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E"),
    var(--kraft);
  clip-path: polygon(22% 0, 78% 0, 100% 14%, 100% 100%, 0 100%, 0 14%);
}

/* ---------- PROCESS ---------- */
.process { padding: 18vh 0; }
.steps { position: relative; margin-top: 10vh; padding-left: 70px; }
.steps-line { position: absolute; left: 0; top: 0; width: 40px; height: 100%; color: var(--brass); }
.step { display: grid; grid-template-columns: 110px 1fr 1fr; gap: clamp(20px, 4vw, 60px); align-items: center; padding: 7vh 0; border-bottom: 1px solid rgba(243,237,226,.12); }
.step-no { font-family: var(--serif); font-size: 4rem; font-style: italic; color: var(--brass); line-height: 1; }
.step h3 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 12px; }
.step p { max-width: 42ch; opacity: .8; margin: 0; }
.step-ph { height: clamp(220px, 32vh, 340px); overflow: hidden; border-radius: 4px; clip-path: inset(0 0 100% 0); }
.step-ph img { width: 100%; height: 120%; object-fit: cover; }
.step:nth-child(odd) .step-ph { border-radius: 4px 160px 4px 4px; }
@media (max-width: 860px) { .step { grid-template-columns: 70px 1fr; } .step-ph { grid-column: 1 / -1; } }
@media (max-width: 600px) { .steps { padding-left: 44px; } .step-no { font-size: 2.6rem; } }

/* ---------- MENU ---------- */
.menu { padding: 16vh 0; }
.menu-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.menu-hint { font-family: var(--hand); font-size: 1.5rem; color: var(--brass); margin: 0 0 10px; transform: rotate(-3deg); }
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 6vh 0 4vh; }
.tabs button {
  font: 600 .88rem var(--sans); color: inherit; background: transparent; cursor: pointer;
  border: 1px solid rgba(243,237,226,.3); padding: 10px 18px; border-radius: 99px; transition: .25s;
}
.tabs button:hover { border-color: var(--coral); }
.tabs button[aria-selected="true"] { background: var(--coral); border-color: var(--coral); color: var(--ink); }
.menu-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 60px; }
.menu-list li { display: flex; align-items: baseline; gap: 12px; padding: 18px 0; border-bottom: 1px solid rgba(243,237,226,.12); position: relative; cursor: default; }
.menu-list li::before { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.menu-list li:hover::before { transform: scaleX(1); }
.menu-list .n { font-family: var(--serif); font-size: 1.25rem; transition: transform .4s var(--ease), color .3s; }
.menu-list li:hover .n { transform: translateX(8px); color: var(--coral); }
.menu-list .dots { flex: 1; border-bottom: 1px dotted rgba(243,237,226,.3); transform: translateY(-5px); min-width: 20px; }
.menu-list .u { font-size: .78rem; opacity: .6; white-space: nowrap; }
.menu-list .p { font-weight: 700; color: var(--brass); white-space: nowrap; font-variant-numeric: tabular-nums; }
.note { font-size: .82rem; opacity: .55; margin-top: 30px; }
.menu-preview {
  position: fixed; left: 0; top: 0; z-index: 30; width: 240px; height: 300px; pointer-events: none;
  border-radius: 4px; overflow: hidden; opacity: 0; box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.menu-preview img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .menu-list { grid-template-columns: 1fr; } .menu-preview, .menu-hint { display: none; } }
@media (hover: none) { .menu-preview, .menu-hint { display: none; } }

/* ---------- SANDWICH ---------- */
.sw-pin { min-height: 100vh; display: grid; grid-template-columns: .8fr 1.3fr; gap: clamp(24px, 4vw, 60px); align-items: center; padding: 10vh var(--gutter) 6vh; max-width: 1440px; margin: 0 auto; }
.sw-sub { opacity: .75; margin: 1.2rem 0 0; }
.sw-layers { list-style: none; padding: 0; margin: 3.5vh 0 3vh; counter-reset: l; }
.sw-layers li { counter-increment: l; font-size: 1.05rem; padding: 7px 0; opacity: .25; transition: opacity .35s, transform .35s var(--ease), color .35s; position: relative; }
.sw-layers li::before { content: "0" counter(l); font-size: .72rem; color: var(--coral); margin-right: 14px; letter-spacing: .1em; }
.sw-layers li small { opacity: .6; font-size: .8em; margin-left: 6px; }
.sw-layers li.on { opacity: .75; }
.sw-layers li.active { opacity: 1; transform: translateX(10px); color: var(--coral); }
.sw-choice { font-size: .88rem; opacity: .65; max-width: 44ch; }
.sw-price { font-family: var(--serif); font-size: 1.4rem; margin: 18px 0 0; }
.sw-price strong { color: var(--coral); font-size: 2.6rem; font-weight: 400; }
.sw-stage { position: relative; }
.sw-stage svg { width: 100%; height: auto; display: block; overflow: visible; }
.sw-caption { display: flex; align-items: baseline; gap: 16px; margin-top: 18px; padding-left: 4%; min-height: 3.2em; }
.sw-step { font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--brass); line-height: 1; font-variant-numeric: tabular-nums; }
.sw-cap-text { margin: 0; font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
@media (max-width: 960px) {
  .sw-pin { grid-template-columns: 1fr; padding-top: 11vh; gap: 8px; align-content: center; }
  .sw-stage { order: -1; }
  .sw-layers, .sw-choice, .sw-sub { display: none; }
  .sw-text h2 { font-size: 2.4rem; }
  .sw-price { margin-top: 8px; }
}

/* ---------- REVIEWS ---------- */
.reviews { padding: 18vh 0 14vh; }
.rv-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.rating { display: flex; align-items: center; gap: 18px; }
.rating-num { font-family: var(--serif); font-weight: 300; font-size: clamp(4rem, 8vw, 6.5rem); line-height: .9; color: var(--brass); font-variant-numeric: tabular-nums; }
.stars { position: relative; font-size: 1.5rem; letter-spacing: 3px; color: rgba(243,237,226,.2); line-height: 1; }
.stars-fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: var(--brass); width: 98%; }
.rating-meta { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }
.rv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 9vh; align-items: start; }
.rv { margin: 0; padding: 28px 24px 22px; background: #f3ede2; color: var(--ink); border-radius: 3px; position: relative; box-shadow: 0 24px 40px rgba(0,0,0,.35); }
.rv:nth-child(1) { transform: rotate(-2deg); } .rv:nth-child(2) { transform: rotate(1.5deg); margin-top: 60px; }
.rv:nth-child(3) { transform: rotate(-1deg); margin-top: 20px; } .rv:nth-child(4) { transform: rotate(2deg); margin-top: 80px; }
.rv::before { content: ""; position: absolute; top: -12px; left: 50%; width: 90px; height: 26px; transform: translateX(-50%) rotate(-3deg); background: rgba(216,178,110,.55); box-shadow: 0 2px 4px rgba(0,0,0,.15); }
.rv p { font-family: var(--serif); font-size: 1.12rem; line-height: 1.4; margin: 0 0 18px; }
.rv cite { font-style: normal; font-weight: 700; font-size: .85rem; display: flex; justify-content: space-between; }
.rv cite span { color: #c98a2c; letter-spacing: 1px; }
.rv-link { display: inline-block; margin-top: 8vh; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.rv-link:hover { color: var(--coral); }
@media (max-width: 1000px) { .rv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .rv-grid { grid-template-columns: 1fr; } .rv { margin-top: 0 !important; } }

/* ---------- GALLERY ---------- */
.gallery { height: 150vh; overflow: hidden; display: grid; place-items: center; }
.g-cols { position: absolute; inset: -20vh -4vw; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2vw; opacity: .6; }
.g-col { display: flex; flex-direction: column; gap: 2vw; }
.g-col:nth-child(2) { margin-top: -30vh; }
.g-col img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 4px; filter: saturate(.85) brightness(.85); }
.gallery::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(5,24,32,.9) 15%, rgba(5,24,32,.25) 70%); pointer-events: none; }
.g-center { position: relative; z-index: 2; text-align: center; padding: 0 var(--gutter); }
.g-center h2 { font-size: clamp(2.6rem, 7vw, 6rem); }

/* ---------- VISIT ---------- */
.visit { padding: 20vh 0 0; overflow: hidden; }
.visit-bg { position: absolute; inset: 0; z-index: -1; }
.visit-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; filter: saturate(.7); }
.visit-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #041219 0%, rgba(4,18,25,.4) 40%, #041219 100%); }
.visit-title { font-size: clamp(3rem, 9vw, 8rem); letter-spacing: -.03em; }
.open-badge { display: inline-flex; align-items: center; gap: 10px; margin: 36px 0 0; padding: 10px 18px; border-radius: 99px; background: rgba(243,237,226,.08); border: 1px solid rgba(243,237,226,.16); font-weight: 600; font-size: .95rem; }
.visit-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; margin-top: 8vh; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vcard { border: 1px solid rgba(243,237,226,.16); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 10px; min-height: 190px; background: rgba(4,18,25,.55); backdrop-filter: blur(6px); transition: background .3s, color .3s, transform .3s var(--ease); }
.vcard span { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; opacity: .6; }
.vcard strong { font-family: var(--serif); font-weight: 400; font-size: 1.55rem; line-height: 1.15; }
.vcard em { margin-top: auto; font-style: normal; font-size: .85rem; font-weight: 600; }
a.vcard:hover { background: var(--coral); color: var(--ink); transform: translateY(-4px); }
a.vcard:hover em { color: var(--ink); }
.map { border-radius: 18px; overflow: hidden; border: 1px solid rgba(243,237,226,.16); min-height: 396px; }
.map iframe { display: block; width: 100%; height: 100%; min-height: 396px; border: 0; filter: grayscale(.7) invert(.9) hue-rotate(180deg) contrast(.9); }
@media (max-width: 960px) { .visit-layout { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .visit-grid { grid-template-columns: 1fr; } }
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 40px var(--gutter); margin-top: 16vh; border-top: 1px solid rgba(243,237,226,.12); font-size: .85rem; opacity: .7; }
.foot a:hover { color: var(--coral); }

/* ---------- Hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .rays, .scroll-hint span { animation: none; }
}
html.no-motion .preloader,
html.no-motion .arch-copy,
html.no-motion .waves,
html.no-motion #ocean,
html.no-motion .rays { display: none; }
html.no-motion body.is-loading { overflow: auto; }
html.no-motion .story-text .w,
html.no-motion .sw-layers li { opacity: 1; }
html.no-motion .sw-caption { display: none; }
html.no-motion .step-ph { clip-path: none; }

/* Admin panelinden "tükendi" işaretlenen ürünler */
.menu-list li.sold .n { opacity: .45; text-decoration: line-through; text-decoration-thickness: 1px; }
.menu-list li.sold .dots, .menu-list li.sold .u { opacity: .4; }
.menu-list .sold-badge { color: var(--coral); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; border: 1px solid currentColor; padding: 3px 10px; border-radius: 99px; }
