/* ============ FONTS ============ */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

/* ============ TOKENS / RESET ============ */
:root {
  --ink: #121212;
  --paper: #ffffff;
  --warm: #f7f5f1;
  --muted: #6e6a66;
  --muted-2: #56524e;
  --faint: #9a958f;
  --faint-2: #b5b0a9;
  --line: rgba(18, 18, 18, 0.1);
  --line-soft: rgba(18, 18, 18, 0.08);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Manrope', sans-serif;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
::selection { background: var(--ink); color: #fff; }
img { display: block; }

@keyframes abFadeUp { from { transform: translateY(26px); } to { transform: none; } }
@keyframes abFade { from { transform: translateY(10px); } to { transform: none; } }
@keyframes abCue { 0%, 100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(9px); opacity: 1; } }

/* ============ SHARED ============ */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: clamp(24px, 6vw, 96px); padding-right: clamp(24px, 6vw, 96px); }

.kicker {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--faint); margin: 0 0 22px; font-weight: 600;
}
.kicker.center { text-align: center; }
.kicker.light { color: rgba(255, 255, 255, 0.5); }

.display {
  font-family: var(--serif); font-weight: 400; line-height: 1.04;
  letter-spacing: -0.01em; margin: 0; color: var(--ink); text-wrap: balance;
}
.display.white { color: #fff; }
.body { font-size: 15px; line-height: 1.8; color: var(--muted-2); }

.page { animation: abFade .5s ease both; }
[hidden] { display: none !important; }

/* Buttons */
.btn {
  display: inline-block; cursor: pointer; text-decoration: none; text-align: center;
  padding: 15px 30px; font-family: var(--sans); font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid transparent;
  transition: all .4s cubic-bezier(.2, .7, .2, 1);
}
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(18, 18, 18, 0.25); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: transparent; color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.brand { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: baseline; gap: 9px; }
.brand-name { font-family: var(--sans); font-weight: 800; font-size: 18px; letter-spacing: 0.2em; color: var(--ink); }
.brand-name.lg { font-size: 22px; }
.brand-name.white { color: #fff; }
.brand-sub { font-family: var(--sans); font-weight: 500; font-size: 9px; letter-spacing: 0.32em; color: var(--faint); text-transform: uppercase; transform: translateY(-2px); }
.brand-sub.dim { color: rgba(255, 255, 255, 0.45); transform: translateY(-3px); }

.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); }
.nav-link {
  background: none; border: none; cursor: pointer; font-family: var(--sans);
  font-weight: 500; font-size: 13px; letter-spacing: 0.03em; color: var(--ink);
  padding: 4px 0; opacity: 0.6; border-bottom: 1px solid transparent;
  transition: opacity .3s ease;
}
.nav-link:hover { opacity: 1; }
.nav-link.active { opacity: 1; border-bottom-color: var(--ink); }

.lang { display: flex; align-items: center; gap: 7px; padding-left: clamp(6px, 1.5vw, 18px); border-left: 1px solid rgba(18, 18, 18, 0.12); margin-left: 4px; }
.lang-btn { cursor: pointer; background: none; border: none; padding: 0; font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: 0.06em; color: var(--faint-2); transition: color .3s ease; }
.lang-btn.active { font-weight: 700; color: var(--ink); }
.lang-sep { color: #d2cdc6; font-size: 12px; }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO (typographic) ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px clamp(24px, 6vw, 80px) 80px;
}
.hero-logo { width: clamp(58px, 8vw, 84px); height: auto; margin-bottom: 22px; animation: abFadeUp .8s cubic-bezier(.2, .7, .2, 1) both; }
.hero .kicker { animation: abFadeUp .8s cubic-bezier(.2, .7, .2, 1) .08s both; }
.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(42px, min(8.4vw, 10.6vh), 140px); line-height: 1.06;
  letter-spacing: -0.02em; margin: 0; color: var(--ink); text-wrap: balance;
  animation: abFadeUp .9s cubic-bezier(.2, .7, .2, 1) .14s both;
}
.hero-title em { font-weight: 300; }
.hero-sub {
  max-width: 480px; margin: clamp(34px, 5.5vh, 54px) 0 0; font-size: 15px;
  line-height: 1.7; color: var(--muted); animation: abFadeUp .9s cubic-bezier(.2, .7, .2, 1) .22s both;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; justify-content: center; animation: abFadeUp .9s cubic-bezier(.2, .7, .2, 1) .3s both; }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue span:first-child { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--faint-2); }
.scroll-line { width: 1px; height: 30px; background: linear-gradient(var(--ink), transparent); animation: abCue 1.8s ease-in-out infinite; }

/* ============ STRIP ============ */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px clamp(24px, 6vw, 96px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 56px);
}
.strip-inner span { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); font-weight: 600; white-space: nowrap; }

/* ============ ABOUT ============ */
.about {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 13vh, 160px) clamp(24px, 6vw, 96px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center;
}
.about-text .display { font-size: clamp(34px, 4.2vw, 64px); margin-bottom: 30px; }
.about-text .body { margin: 0 0 20px; max-width: 460px; }
.about-text .body:last-of-type { margin-bottom: 0; }
.about-stat { display: flex; align-items: baseline; gap: 14px; margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(18, 18, 18, 0.12); }
.about-stat-n { font-family: var(--serif); font-size: 30px; color: var(--ink); }
.about-stat-l { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.about-img img { width: 100%; height: clamp(320px, 52vh, 600px); object-fit: cover; border-radius: 2px; }

/* ============ PROCESS ============ */
.process { background: var(--warm); border-top: 1px solid var(--line-soft); }
.process .container { padding-top: clamp(80px, 13vh, 160px); padding-bottom: clamp(80px, 13vh, 160px); }
.process-head { margin-bottom: clamp(40px, 6vh, 72px); }
.process-head .kicker { margin-bottom: 18px; }
.process-head .display { font-size: clamp(34px, 4.4vw, 68px); line-height: 1.02; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-card { background: var(--warm); padding: clamp(28px, 3vw, 44px) clamp(20px, 2vw, 32px); min-height: 280px; display: flex; flex-direction: column; transition: background .4s ease; }
.process-card:hover { background: #fff; }
.process-card .n { font-family: var(--serif); font-size: 44px; color: #cfc9c0; line-height: 1; margin-bottom: auto; }
.process-card h3 { font-size: 17px; font-weight: 700; letter-spacing: 0.02em; margin: 28px 0 12px; color: var(--ink); }
.process-card p { font-size: 13.5px; line-height: 1.7; color: var(--muted); margin: 0; }

/* ============ TESTIMONIALS ============ */
.testi { max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 13vh, 160px) clamp(24px, 6vw, 96px); }
.testi .kicker { margin-bottom: clamp(40px, 6vh, 64px); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); }
.testi-card { margin: 0; display: flex; flex-direction: column; }
.testi-quote-mark { font-family: var(--serif); font-size: 54px; line-height: 0.6; color: #d8d2c9; height: 26px; }
.testi-card blockquote { font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 1.7vw, 26px); line-height: 1.4; color: #2a2926; margin: 18px 0 26px; }
.testi-card figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 3px; padding-top: 18px; border-top: 1px solid rgba(18, 18, 18, 0.12); }
.testi-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

/* ============ VISIT ============ */
.visit { background: var(--warm); border-top: 1px solid var(--line-soft); }
.visit-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 13vh, 160px) clamp(24px, 6vw, 96px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.visit-text .display { font-size: clamp(34px, 4.4vw, 68px); line-height: 1.02; margin-bottom: 36px; }
.visit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 460px; }
.visit-col-title { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); margin: 0 0 10px; font-weight: 600; }
.visit-col-body { font-size: 15px; line-height: 1.7; color: #2a2926; margin: 0; }
.visit-text .btn { margin-top: 40px; }
.visit-img img { width: 100%; height: clamp(320px, 50vh, 560px); object-fit: cover; border-radius: 2px; }

/* ============ MENU PAGE ============ */
#menu { padding-top: 64px; }
.menu-head { max-width: 1120px; margin: 0 auto; padding: clamp(56px, 10vh, 120px) clamp(24px, 6vw, 80px) clamp(60px, 9vh, 110px); text-align: center; }
.menu-head .kicker { letter-spacing: 0.34em; }
.menu-title { font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 9vw, 132px); line-height: 0.92; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.menu-intro { max-width: 460px; margin: 28px auto 0; font-size: 15px; line-height: 1.7; color: var(--muted); }
.menu-body { max-width: 1040px; margin: 0 auto; padding: 0 clamp(24px, 6vw, 80px) clamp(70px, 11vh, 140px); }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px) clamp(48px, 7vw, 110px); }
.menu-cat h2 { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink); margin: 0 0 24px; padding-bottom: 16px; border-bottom: 1px solid var(--ink); }
.menu-item { display: flex; align-items: baseline; gap: 10px; padding: 13px 0; }
.menu-item-name { font-family: var(--serif); font-size: 22px; color: #2a2926; flex-shrink: 1; }
.menu-item-dots { flex: 1; min-width: 14px; border-bottom: 1px dotted rgba(18, 18, 18, 0.28); transform: translateY(-5px); }
.menu-item-price { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); flex-shrink: 0; letter-spacing: 0.02em; }
.menu-note { text-align: center; margin: clamp(50px, 8vh, 90px) 0 0; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint-2); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: #fff; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 12vh, 140px) clamp(24px, 6vw, 96px) clamp(40px, 6vh, 64px); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: end; padding-bottom: clamp(50px, 8vh, 90px); border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.footer-top .display { font-size: clamp(34px, 4.6vw, 68px); line-height: 1.0; margin-bottom: 14px; }
.footer-sub { font-size: 14.5px; line-height: 1.7; color: rgba(255, 255, 255, 0.6); margin: 0; max-width: 380px; }
.footer-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-top: clamp(36px, 5vh, 56px); }
.footer-social { display: flex; gap: 26px; }
.footer-social a { font-size: 12px; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color .3s; }
.footer-social a:hover { color: #fff; }
.footer-rights { margin: 28px 0 0; font-size: 11px; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.38); }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--line-soft); padding: 8px clamp(20px, 5vw, 56px) 20px; transform: translateY(-120%); transition: transform .35s cubic-bezier(.2, .7, .2, 1); }
  .nav-links.open { transform: translateY(0); }
  .nav-link { width: 100%; padding: 14px 0; font-size: 15px; opacity: 1; border-bottom: 1px solid var(--line-soft); }
  .nav-link.active { border-bottom-color: var(--line-soft); }
  .lang { border-left: none; padding-left: 0; margin-left: 0; padding-top: 14px; }
  .nav-toggle { display: flex; }

  .about, .visit-inner { grid-template-columns: 1fr; }
  .about-img, .visit-img { order: -1; }
  .footer-top { grid-template-columns: 1fr; align-items: start; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 0; }
  .visit-cols { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-cta, .footer-cta { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
