/* ============================================================
   SAFİ İSTANBUL — Landing
   Brand-driven design system
   ============================================================ */

:root {
  /* Brand colors — from brandbook */
  --bg:        #ECE9E3;
  --ink:       #38476A;
  --ink-deep:  #2A3654;
  --burgundy:  #6F3A46;
  --tan:       #C6A68E;
  --gold:      #F0DBA4;
  --sage:      #ACB6B6;
  --mute:      #9E8380;
  --line:      rgba(56, 71, 106, 0.14);
  --line-soft: rgba(56, 71, 106, 0.08);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --pad: clamp(20px, 4vw, 56px);
  --max: 1440px;

  --ease: cubic-bezier(0.6, 0.05, 0.1, 0.95);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--ink); color: var(--bg); }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* film grain — analog/premium texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.22  0 0 0 0 0.28  0 0 0 0 0.42  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* page frame — editorial brackets at corners */
.frame {
  position: fixed;
  inset: 14px;
  pointer-events: none;
  z-index: 90;
}
.frame::before, .frame::after,
.frame > span::before, .frame > span::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--ink);
  border-style: solid;
  border-width: 0;
  opacity: 0.7;
  transition: opacity 0.4s, border-color 0.4s;
}
.frame::before { top: 0; left: 0;     border-top-width: 1px;    border-left-width: 1px;  }
.frame::after  { top: 0; right: 0;    border-top-width: 1px;    border-right-width: 1px; }
.frame > span::before { bottom: 0; left: 0;  border-bottom-width: 1px; border-left-width: 1px;  }
.frame > span::after  { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
@media (max-width: 720px) { .frame { display: none; } }

/* dark sections invert frame color */
.is-dark-section .frame::before,
.is-dark-section .frame::after,
.is-dark-section .frame > span::before,
.is-dark-section .frame > span::after { border-color: var(--bg); }

/* right-side scroll rail — sticky section indicator */
.rail {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}
.rail.is-rail-hidden { opacity: 0; }
.rail__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.rail__divider {
  width: 1px;
  height: 80px;
  background: rgba(56, 71, 106, 0.18);
  position: relative;
  overflow: hidden;
}
.rail__divider span {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--ink);
  height: 0%;
  transition: height 0.25s var(--ease);
}
.rail__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.is-dark-section .rail__num,
.is-dark-section .rail__label { color: var(--bg); }
.is-dark-section .rail__divider { background: rgba(236, 233, 227, 0.22); }
.is-dark-section .rail__divider span { background: var(--gold); }
@media (max-width: 1100px) { .rail { display: none !important; } }
@media (max-width: 880px) {
  .cursor, .cursor-dot { display: none !important; }
  body { cursor: auto !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

/* ===== TYPOGRAPHY ===== */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 7vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display em { font-style: italic; font-weight: 300; color: var(--burgundy); }
.display--light { color: var(--bg); }
.display--light em { color: var(--gold); }

.eyebrow,
.section-num {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
}
.section-num--light { color: var(--bg); opacity: 0.7; }

.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  margin-bottom: clamp(48px, 7vw, 96px);
}
.section-head--center { text-align: center; }
.section-head--center .display { margin: 16px auto 0; max-width: 14ch; }
.section-head .section-num { margin-bottom: 24px; display: block; }
.section-lead {
  margin-top: 28px;
  max-width: 52ch;
  font-size: 1.05rem;
  opacity: 0.75;
  line-height: 1.6;
}
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* ===== CURSOR ===== */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: multiply;
  transition: transform 0.18s var(--ease-out), width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.25s;
  opacity: 0;
}
.cursor {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}
@media (hover: hover) and (pointer: fine) {
  .cursor, .cursor-dot { opacity: 1; }
  body { cursor: none; }
  a, button, [data-magnetic], [data-tilt] { cursor: none; }
  .cursor.is-hover { width: 64px; height: 64px; }
}

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__mark { text-align: center; margin-bottom: 32px; }
.loader__logo {
  width: clamp(160px, 22vw, 220px);
  height: auto;
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply;
  transform-origin: 50% 50%;
  animation: loader-reveal 1.9s var(--ease-out) forwards;
}
@keyframes loader-reveal {
  0%   { transform: scale(0.45); opacity: 0; filter: blur(12px); }
  55%  { opacity: 1; filter: blur(0); }
  100% { transform: scale(1); opacity: 1; filter: blur(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.loader__bar {
  width: min(280px, 40vw);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.loader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ink);
  transition: width 1.2s var(--ease);
}
.loader.is-loading .loader__bar span { width: 100%; }

/* ===== TOP INFO STRIP ===== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  height: 32px;
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease);
  overflow: hidden;
}
.topbar.is-hidden { transform: translateY(-100%); }
.topbar__inner {
  width: 100%;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 500;
  transition: color 0.3s, opacity 0.3s;
  opacity: 0.92;
}
a.topbar__item:hover { color: var(--gold); opacity: 1; }
.topbar__loc svg, .topbar__phone svg { opacity: 0.7; }
.topbar__status { opacity: 0.75; }
.topbar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(240, 219, 164, 0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.topbar__status.is-closed .topbar__dot {
  background: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(111, 58, 70, 0.22);
  animation: none;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 4px rgba(240, 219, 164, 0.18); }
  50%     { box-shadow: 0 0 0 8px rgba(240, 219, 164, 0.05); }
}

@media (max-width: 880px) {
  .topbar { font-size: 0.62rem; height: 28px; }
  .topbar__inner { gap: 12px; padding: 0 14px; }
  .topbar__loc { display: none; }
  .topbar__status span:last-child {
    font-size: inherit;
  }
}
@media (max-width: 480px) {
  .topbar__status .topbar__status-text { display: none; }
  .topbar__status::after {
    content: 'Açık';
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }
  .topbar__status.is-closed::after { content: 'Salı günleri kapalıyız'; }
  .topbar__inner { justify-content: center; }
  .topbar { height: 26px; }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px var(--pad);
  background: linear-gradient(180deg, rgba(236, 233, 227, 0.78) 0%, rgba(236, 233, 227, 0.1) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: top 0.4s var(--ease), padding 0.4s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 8px var(--pad);
}
.nav__logo { justify-self: start; }
.nav__links { justify-self: center; }
.nav .nav__cta { justify-self: end; }
.nav.is-scrolled {
  top: 0;
  padding: 8px var(--pad);
  background: rgba(236, 233, 227, 0.94);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: var(--line-soft);
}
@media (max-width: 880px) {
  .nav {
    top: 28px;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
  }
  .nav.is-scrolled { padding: 6px 16px; }
}
@media (max-width: 480px) {
  .nav { top: 26px; padding: 6px 14px; }
  .nav.is-scrolled { padding: 5px 14px; }
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.3s;
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo-img {
  width: 60px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: width 0.4s var(--ease);
}
.nav.is-scrolled .nav__logo-img { width: 50px; }
.nav__logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  font-weight: 500;
  align-self: center;
}
@media (max-width: 880px) {
  .nav__logo-sub { display: none; }
  .nav__logo-img { width: 56px; }
  .nav.is-scrolled .nav__logo-img { width: 48px; }
}
@media (max-width: 480px) {
  .nav__logo-img { width: 50px; }
  .nav.is-scrolled .nav__logo-img { width: 44px; }
}
.nav__links { display: flex; gap: 34px; align-items: center; }
.nav__links a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 120;
  position: relative;
  margin-right: -10px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.nav__burger.is-open span { background: var(--ink); }
.nav__burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links, .nav .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ===== MOBILE MENU (full-screen editorial) ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 110;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open { transform: translateY(0); }

.mobile-menu__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 0 24px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.mobile-menu__logo {
  width: 90px;
  height: auto;
  mix-blend-mode: multiply;
}
.mobile-menu__tag {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  font-weight: 500;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-menu__nav a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  transition: padding 0.3s var(--ease), background 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.is-open .mobile-menu__nav a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), padding 0.3s var(--ease), background 0.3s;
}
.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(6) { transition-delay: 0.40s; }
.mobile-menu__nav a:active { padding-left: 12px; background: rgba(56, 71, 106, 0.04); }

.mobile-menu__num {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--burgundy);
  font-variant-numeric: tabular-nums;
}
.mobile-menu__label {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 6.5vw, 2.4rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
}
.mobile-menu__label em {
  font-style: italic;
  color: var(--burgundy);
}
.mobile-menu__arrow {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  opacity: 0.5;
  transform: rotate(-45deg);
}
.mobile-menu__cta .mobile-menu__num,
.mobile-menu__cta .mobile-menu__arrow { color: var(--burgundy); opacity: 1; }

.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.mobile-menu__contact a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu__contact a:last-child { border-bottom: none; }

.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
  text-align: left;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  min-height: 44px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.3s var(--ease-out), border-color 0.4s;
  position: relative;
  white-space: nowrap;
}
.btn svg { transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--pill { color: var(--ink); }
.btn--pill:hover { background: var(--ink); color: var(--bg); }

.btn--ink { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-deep); }

.btn--ghost { color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn--cream { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn--cream:hover { background: var(--gold); border-color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px var(--pad) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 720px) {
  .hero { padding: 95px 20px 90px; }
}
@media (max-width: 480px) {
  .hero { padding: 85px 18px 80px; }
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(0.98) brightness(1.04);
  transform: scale(1.05);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(236, 233, 227, 0.62) 0%,
      rgba(236, 233, 227, 0.40) 22%,
      rgba(236, 233, 227, 0.50) 60%,
      rgba(236, 233, 227, 0.88) 100%
    ),
    linear-gradient(90deg, rgba(56, 71, 106, 0.22) 0%, rgba(56, 71, 106, 0) 55%);
}

.hero__meta {
  position: absolute;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(236, 233, 227, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}
.hero__meta--tl { top: 105px; left: var(--pad); }
.hero__meta--tr { top: 105px; right: var(--pad); }
@media (max-width: 880px) {
  .hero__meta--tl, .hero__meta--tr { top: 90px; }
  .hero__meta { font-size: 0.6rem; padding: 5px 10px; gap: 8px; letter-spacing: 0.18em; }
}
@media (max-width: 480px) {
  .hero__meta--tl, .hero__meta--tr { display: none; }
}
.hero__meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--burgundy);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%     { opacity: 1; transform: scale(1.4); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 11vw, 11rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 24px 0 32px;
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.4rem, 13vw, 4rem); margin: 20px 0 24px; }
  .hero__lead  { font-size: 0.95rem; margin-bottom: 28px; }
}
.hero__title em { font-style: italic; color: var(--burgundy); }

.reveal-line { display: block; overflow: hidden; }
.reveal-line span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
}
.is-ready .reveal-line span { transform: translateY(0); }
.is-ready .reveal-line:nth-child(2) span { transition-delay: 0.12s; }

.hero__lead {
  max-width: 44ch;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero__content .eyebrow {
  font-weight: 600;
  color: var(--burgundy);
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .hero__ctas { width: 100%; flex-direction: column; gap: 10px; }
  .hero__ctas .btn { width: 100%; justify-content: center; padding: 18px 24px; }
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--ink) 0%, var(--ink) 50%, transparent 50%);
  background-size: 100% 200%;
  animation: scrollLine 1.8s infinite var(--ease);
}
@keyframes scrollLine {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}

.hero__corner {
  position: absolute;
  z-index: 2;
  bottom: 36px; right: var(--pad);
  display: flex;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: rgba(236, 233, 227, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}

@media (max-width: 720px) {
  .hero__corner { display: none; }
  .hero__scroll { bottom: 20px; }
}

/* ===== MARQUEE ===== */
.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
}
.marquee__track i {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== MOMENTS / TESTIMONIALS ===== */
.moments {
  margin-top: clamp(40px, 5vw, 64px);
}
.moments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.moment {
  background: rgba(236, 233, 227, 0.03);
  border: 1px solid rgba(236, 233, 227, 0.12);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.4s, border-color 0.4s, transform 0.5s var(--ease-out);
}
.moment:hover {
  background: rgba(236, 233, 227, 0.06);
  border-color: rgba(240, 219, 164, 0.35);
  transform: translateY(-3px);
}
.moment__quote {
  color: var(--gold);
  opacity: 0.9;
  width: 22px;
  height: 22px;
}
.moment blockquote {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.moment__hook {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--bg);
}
.moment__detail {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--bg);
  opacity: 0.68;
  font-weight: 400;
}
.moment figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(236, 233, 227, 0.14);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0.75;
  font-weight: 500;
}
.moment__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(240, 219, 164, 0.4);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .moments__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .moment { padding: 26px 24px 20px; }
  .moment__hook { font-size: 1.2rem; }
}

@media (max-width: 720px) {
  .moments { margin-top: 32px; }
  .moments__grid { grid-template-columns: 1fr; gap: 10px; }
  .moment {
    padding: 20px 18px;
    gap: 12px;
  }
  .moment__hook { font-size: 1.05rem; line-height: 1.3; }
  .moment__detail { font-size: 0.82rem; line-height: 1.5; }
  .moment__avatar { width: 34px; height: 34px; }
  .moment figcaption { font-size: 0.62rem; padding-top: 10px; gap: 10px; }
  .moment__quote { width: 22px; height: 22px; }
}

/* ===== RESERVE NOTICE ===== */
.reserve__notice {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
}
.reserve__notice span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

/* ===== FOOTER EXTRAS ===== */
.foot__maps {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.foot__maps:hover { color: var(--burgundy); border-color: var(--burgundy); }
.foot__h4--space { margin-top: 32px !important; }
.foot__bk {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}

/* ===== MENU (editorial) ===== */
.menu {
  padding: clamp(96px, 14vw, 180px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

/* sticky category nav */
.menu__nav {
  position: sticky;
  top: 64px;
  z-index: 20;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  margin-bottom: 80px;
  padding: 10px;
  background: rgba(236, 233, 227, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow-x: auto;
  scrollbar-width: none;
}
@media (max-width: 880px) { .menu__nav { top: 52px; } }
@media (max-width: 480px) { .menu__nav { top: 48px; } }
.menu__nav::-webkit-scrollbar { display: none; }
.menu__nav a {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-radius: 999px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.menu__nav a:hover { background: rgba(56, 71, 106, 0.06); }
.menu__nav a.is-active {
  background: var(--ink);
  color: var(--bg);
}

/* category */
.menu__cats {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 10vw, 140px);
}
.menu-cat { scroll-margin-top: 160px; }
.menu-cat__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.menu-cat__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--burgundy);
  line-height: 0.9;
}
.menu-cat__head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.menu-cat__head h3 em {
  font-style: italic;
  color: var(--burgundy);
  font-size: 0.6em;
  margin-left: 12px;
  opacity: 0.7;
}
.menu-cat__hours {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: right;
  font-weight: 500;
}

/* item list — 2 columns */
.m-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(40px, 6vw, 96px);
  row-gap: 32px;
}
@media (max-width: 480px) {
  .m-item__line h4 { font-size: 1.05rem; }
  .m-item__price { font-size: 0.95rem; }
}
.m-list--compact { row-gap: 18px; }

.m-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 0.3s;
}
.m-item:hover { border-color: var(--ink); }

.m-item__line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.m-item__line h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  flex-shrink: 0;
}
.m-item__dots {
  flex: 1;
  border-bottom: 1.5px dotted rgba(56, 71, 106, 0.3);
  transform: translateY(-5px);
  min-width: 16px;
}
.m-item__price {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--burgundy);
  white-space: nowrap;
  flex-shrink: 0;
}
.m-item__desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
  max-width: 50ch;
}
.m-item__en {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--mute);
  margin-top: 2px;
  max-width: 50ch;
}

.menu__notice {
  margin-top: clamp(72px, 10vw, 120px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.6;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}
.menu__notice-en { margin-top: 4px; opacity: 0.8; }

@media (max-width: 880px) {
  .menu-cat__head {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .menu-cat__hours {
    grid-column: 1 / -1;
    text-align: left;
    padding-top: 8px;
  }
  .m-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .menu__nav a { padding: 9px 14px; font-size: 0.74rem; }
}

/* ===== AMBIANCE ===== */
.ambiance {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 140px);
}
.ambiance__sticky { padding: 0 var(--pad); }
.ambiance__intro {
  max-width: 680px;
  margin-bottom: 64px;
}
.ambiance__intro .section-num { color: var(--bg); opacity: 0.7; }
.ambiance__intro .display { color: var(--bg); margin: 16px 0 24px; }
.ambiance__intro .display em { color: var(--gold); }
.ambiance__intro p {
  font-size: 1.05rem;
  opacity: 0.78;
  max-width: 50ch;
}

.ambiance__rail {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.ambiance__rail::-webkit-scrollbar { display: none; }
.ambiance__rail:active { cursor: grabbing; }
.ambiance__track {
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
  width: max-content;
}
.amb {
  flex-shrink: 0;
  width: clamp(300px, 36vw, 460px);
  position: relative;
}
@media (max-width: 600px) {
  .amb { width: 80vw; }
}
.amb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.95);
  transition: transform 1s var(--ease-out), filter 0.6s;
}
.amb:hover img { transform: scale(1.03); filter: saturate(1) brightness(1); }
.amb figcaption {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}
.amb figcaption span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

.ambiance__progress {
  margin-top: 32px;
  height: 1px;
  background: rgba(236, 233, 227, 0.18);
  position: relative;
  max-width: 320px;
}
.ambiance__progress span {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 12%;
  background: var(--gold);
  transition: width 0.2s linear;
}

/* ===== WHY ===== */
.why {
  padding: clamp(96px, 14vw, 180px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.why__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.why__item {
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.4s;
}
.why__item:last-child { border-right: none; }
.why__item:hover { background: rgba(56, 71, 106, 0.03); }
.why__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 3rem;
  color: var(--burgundy);
  line-height: 1;
}
.why__item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}
.why__item p {
  font-size: 0.92rem;
  opacity: 0.72;
  line-height: 1.6;
  max-width: 32ch;
}

@media (max-width: 980px) {
  .why__list { grid-template-columns: repeat(2, 1fr); }
  .why__item { padding: 32px 24px 32px 0; }
  .why__item:nth-child(2n) { border-right: none; padding-right: 0; }
}
@media (max-width: 600px) {
  .why__list { grid-template-columns: 1fr; }
  .why__item { border-right: none !important; padding: 28px 0; }
  .why__num { font-size: 2.4rem; }
}

/* ===== RESERVE ===== */
.reserve {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(96px, 14vw, 180px) var(--pad);
  position: relative;
  overflow: hidden;
}
.reserve::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(111, 58, 70, 0.45), transparent 60%);
  pointer-events: none;
}
.reserve__inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.reserve .section-num { display: block; margin-bottom: 20px; }
.reserve .display { margin: 0 auto; max-width: 14ch; }
.reserve__lead {
  margin: 32px auto 56px;
  max-width: 50ch;
  opacity: 0.78;
  font-size: 1.05rem;
  line-height: 1.6;
}

.reserve__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.reserve__form-wide { grid-column: span 3 / span 3; }
.reserve__form label { display: flex; flex-direction: column; gap: 8px; }
.reserve__form span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}
.reserve__form input,
.reserve__form select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(236, 233, 227, 0.3);
  color: var(--bg);
  padding: 12px 0;
  font-size: 1rem;
  border-radius: 0;
  transition: border-color 0.4s;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.reserve__form input:focus,
.reserve__form select:focus {
  outline: none;
  border-color: var(--gold);
}
.reserve__form input::placeholder { color: rgba(236, 233, 227, 0.4); }
.reserve__form select option { background: var(--ink); color: var(--bg); }
.reserve__form input::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.5); }

.reserve__form button {
  grid-column: span 3 / span 3;
  justify-self: center;
  margin-top: 16px;
}

.reserve__alt {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 0.92rem;
  opacity: 0.85;
}
.reserve__alt a {
  border-bottom: 1px solid rgba(236, 233, 227, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.reserve__alt a:hover { border-color: var(--gold); }

@media (max-width: 720px) {
  .reserve__form { grid-template-columns: 1fr 1fr; gap: 14px; }
  .reserve__form-wide, .reserve__form button { grid-column: span 2 / span 2; }
  .reserve__form input,
  .reserve__form select { padding: 14px 0; font-size: 1.05rem; }
  .reserve__form button { width: 100%; padding: 18px 24px; justify-content: center; }
  .reserve__alt { flex-direction: column; gap: 10px; }
  .reserve__alt span { display: none; }
}
@media (max-width: 480px) {
  .reserve__form { grid-template-columns: 1fr; }
  .reserve__form-wide, .reserve__form button { grid-column: span 1 / span 1; }
}

/* ===== FOOTER ===== */
.foot {
  background: var(--bg);
  padding: clamp(72px, 11vw, 120px) clamp(28px, 5vw, 80px) 28px;
  border-top: 1px solid var(--line);
}
.foot__top {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 3fr;
  gap: clamp(48px, 6vw, 120px);
  padding-bottom: 72px;
}

/* BRAND COLUMN */
.foot__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.foot__logo { width: 130px; height: auto; mix-blend-mode: multiply; }
.foot__sub {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 500;
}
.foot__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--burgundy);
  letter-spacing: -0.01em;
  margin-top: 4px;
  max-width: 16ch;
}
.foot__certs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 280px;
}
.foot__certs li {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  opacity: 0.78;
}
.foot__certs span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
  font-size: 0.88rem;
}

/* COLS */
.foot__cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
}
.foot__col { display: flex; flex-direction: column; }
.foot__cols h4 {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  opacity: 0.65;
}
.foot__cols p {
  font-size: 0.94rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.foot__cols p:last-child { margin-bottom: 0; }
.foot__cols a { transition: color 0.3s; }
.foot__cols a:hover { color: var(--burgundy); }
.foot__bk-day {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}
.foot__closed {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}
.foot__cols strong { font-weight: 500; }

/* MAP */
.foot__map {
  margin: 14px 0 12px;
  max-width: 320px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(56, 71, 106, 0.04);
  aspect-ratio: 16 / 10;
  position: relative;
  filter: saturate(0.85) contrast(0.95);
  transition: filter 0.4s, border-color 0.3s;
}
.foot__map:hover { filter: saturate(1) contrast(1); border-color: var(--ink); }
.foot__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.foot__bot {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  opacity: 0.6;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.foot__bot a:hover { color: var(--burgundy); opacity: 1; }

@media (max-width: 980px) {
  .foot__top { grid-template-columns: 1fr; gap: 48px; }
  .foot__cols { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .foot__bot { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 720px) {
  .foot__cols { grid-template-columns: 1fr; gap: 32px; }
  .foot__map { aspect-ratio: 16 / 9; }
}
@media (max-width: 480px) {
  .foot__bot { font-size: 0.7rem; }
  .foot__quote { font-size: 1.2rem; }
}

/* ===== REVEAL UTIL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-line span { opacity: 1; transform: none; }
}
