/* ============================================
   Catering Rasa Padma — Heirloom Menu Book
   DM Serif Display + Crimson Pro + Major Mono Display.
   Ivory paper + deep wine burgundy + antique brass + ink.
   ============================================ */

:root {
  --bg:         #f5ebd8;
  --bg-paper:   #faf3e2;
  --bg-cream:   #ece0c8;
  --bg-deep:    #5c1a2b;       /* deep wine burgundy */
  --bg-deep-2:  #441020;
  --bg-ink:     #2a1a14;

  --ink:        #2a1a14;
  --ink-soft:   #5e4a3f;
  --ink-mute:   #8b7864;
  --ink-line:   rgba(42,26,20,.14);
  --ink-line-l: rgba(42,26,20,.08);

  --wine:       #5c1a2b;
  --wine-d:     #3e0e1a;
  --wine-l:     #7c2a3d;

  --brass:      #b08d57;
  --brass-d:    #8b6a3d;
  --brass-l:    #cfae77;
  --brass-soft: rgba(176,141,87,.16);

  --line-brass: rgba(176,141,87,.38);
  --line-wine:  rgba(92,26,43,.28);
  --line-paper: rgba(245,235,216,.24);

  --ff-display: "DM Serif Display", "Playfair Display", Georgia, serif;
  --ff-body:    "Crimson Pro", "EB Garamond", Georgia, serif;
  --ff-mono:    "Major Mono Display", "Courier New", monospace;

  --wrap: 1240px;
  --pad:  clamp(18px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1400px 800px at 70% -5%, rgba(176,141,87,.08), transparent 65%),
    radial-gradient(900px 500px at 0% 30%, rgba(92,26,43,.04), transparent 65%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
figure, blockquote { margin: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.05;
  color: var(--ink);
}
h1 em, h2 em, h3 em, h4 em,
.h-display em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--wine);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.h-display {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5.6vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 22px;
}
.h-display.center { text-align: center; max-width: 960px; margin-left: auto; margin-right: auto; }
.h-display.ch { color: var(--bg); }
.h-display.ch em { color: var(--brass-l); }

.section-eye {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-d);
  margin: 0 auto 22px;
  display: flex; align-items: center; gap: 16px;
  justify-content: center;
  max-width: 640px;
}
.section-eye.light { color: var(--brass-l); }
.section-eye em { color: var(--wine); font-style: normal; font-family: var(--ff-display); font-size: 14px; margin: 0 2px; }
.se-line { flex: 1; height: 1px; background: var(--line-brass); display: inline-block; }
.section-eye.light .se-line { background: var(--line-brass); opacity: 0.55; }

.section-sub {
  font-family: var(--ff-body);
  font-size: 16.5px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
  line-height: 1.6;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .22s, background .22s, border-color .22s, color .22s, box-shadow .22s;
  line-height: 1;
}
.btn i { font-size: 17px; }
.btn-wine  { background: var(--wine); color: var(--bg); border-color: var(--wine); }
.btn-wine:hover { background: var(--wine-d); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(92,26,43,.3); }
.btn-brass { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.btn-brass:hover { background: var(--brass-l); color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(176,141,87,.35); }
.btn-line  { background: transparent; color: var(--ink); border: 1px solid var(--ink-line); }
.btn-line:hover { border-color: var(--wine); color: var(--wine); }
.btn-big { padding: 18px 32px; font-size: 17px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,235,216,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line-l);
  padding: 16px 0;
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-side {
  display: flex; gap: 22px;
  font-family: var(--ff-body);
  font-size: 15px;
  align-items: center;
}
.nav-r { justify-content: flex-end; }
.nav-side a:not(.nav-cta) {
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav-side a:not(.nav-cta):hover { color: var(--wine); }
.brand {
  display: flex; flex-direction: column; align-items: center;
  line-height: 1.1; gap: 2px;
}
.b-kick {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  color: var(--brass-d);
  text-transform: uppercase;
}
.b-name {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1;
}
.b-name em { font-style: italic; color: var(--wine); }
.b-city {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--wine); color: var(--bg);
  border-radius: 2px;
  font-size: 14px; font-weight: 600;
  transition: background .2s;
}
.nav-cta:hover { background: var(--wine-d); }
.nav-cta i { font-size: 14px; color: var(--brass-l); }

@media (max-width: 900px) {
  .nav-row { grid-template-columns: 1fr 1fr; }
  .brand { grid-column: 1 / 3; order: -1; margin-bottom: 8px; }
  .nav-l { justify-content: flex-start; }
  .nav-l a:nth-child(n+2) { display: none; }
  .nav-r a:not(.nav-cta) { display: none; }
}

/* ============ HERO · BOOK SPREAD ============ */
.hero {
  position: relative;
  padding: clamp(50px, 8vh, 90px) 0 clamp(60px, 10vh, 110px);
  overflow: hidden;
}
.hero-texture {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 20% 20%, rgba(176,141,87,.08), transparent 60%),
    radial-gradient(ellipse 500px 400px at 80% 80%, rgba(92,26,43,.05), transparent 60%);
}
.hero-spread {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 0;
  align-items: stretch;
}
.hero-spine {
  position: relative;
  width: 2px;
  background: linear-gradient(180deg, transparent 0, var(--line-brass) 15%, var(--line-brass) 85%, transparent 100%);
}
.hero-spine span {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px;
  background: var(--brass);
  border-radius: 50%;
}
.hero-spine span:nth-child(1) { top: 18%; }
.hero-spine span:nth-child(2) { top: 50%; }
.hero-spine span:nth-child(3) { top: 82%; }

.hero-page { padding: 0 clamp(16px, 3vw, 42px); }
.hp-left { display: flex; flex-direction: column; justify-content: center; }
.hero-cat {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brass-d);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.hero-cat .hc-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-style: italic;
  color: var(--wine);
  line-height: 1;
  letter-spacing: 0;
}
.hp-left h1 {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}
.hp-left h1 em { font-style: italic; color: var(--wine); }
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 30px;
  font-style: italic;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-sign {
  padding-top: 22px;
  border-top: 1px solid var(--ink-line-l);
  display: flex; align-items: center; gap: 16px;
}
.hs-line {
  display: inline-block;
  width: 100px; height: 1px;
  background: var(--brass);
}
.hs-meta {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.hp-right {
  display: flex; flex-direction: column; gap: 24px;
  margin: 0;
}
.hero-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.hero-photo-border {
  position: absolute;
  inset: 14px;
  border: 1px solid var(--brass-l);
  pointer-events: none;
  z-index: 2;
}
.hero-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 22px 20px;
  display: flex; flex-direction: column; gap: 4px;
  background: linear-gradient(180deg, transparent, rgba(42,26,20,.88));
  color: var(--bg);
}
.hpc-kicker {
  font-family: var(--ff-mono); font-size: 10.5px;
  letter-spacing: 0.2em; color: var(--brass-l);
}
.hpc-title { font-family: var(--ff-display); font-style: italic; font-size: 18px; }
.hpc-sub { font-family: var(--ff-body); font-size: 13px; font-style: italic; color: rgba(245,235,216,.75); }

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  padding-top: 22px;
  border-top: 1px solid var(--ink-line);
}
.hero-facts li {
  display: flex; align-items: baseline; gap: 12px;
}
.hero-facts b {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--wine);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-facts b sup { font-size: 16px; vertical-align: super; color: var(--brass-d); }
.hero-facts span {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.5;
  color: var(--ink-soft);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-spread { grid-template-columns: 1fr; gap: 40px; }
  .hero-spine { display: none; }
  .hero-page { padding: 0; }
  .hero-photo { aspect-ratio: 4 / 3; }
  .hero-facts { grid-template-columns: 1fr; }
}

/* ============ SEAL STRIP ============ */
.seals {
  padding: clamp(56px, 9vh, 90px) 0;
  background: var(--bg-paper);
  border-top: 1px solid var(--ink-line-l);
  border-bottom: 1px solid var(--ink-line-l);
}
.seals-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 36px;
  align-items: start;
}
.seal { text-align: center; }
.seal-ring {
  width: 120px; height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--brass);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: inset 0 0 0 1px var(--brass-l), inset 0 0 0 8px var(--bg);
  transition: transform .4s, box-shadow .4s;
}
.seal-ring::before, .seal-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.seal-ring::before {
  inset: 6px;
  border: 1px dashed rgba(176,141,87,.55);
}
.seal:hover .seal-ring { transform: rotate(6deg); box-shadow: inset 0 0 0 1px var(--brass), inset 0 0 0 8px var(--bg), 0 16px 30px rgba(176,141,87,.25); }
.seal-ring-2 { border-color: var(--wine); box-shadow: inset 0 0 0 1px var(--wine-l), inset 0 0 0 8px var(--bg); }
.seal-ring-2::before { border-color: rgba(92,26,43,.4); }
.seal-ring-3 { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink-mute), inset 0 0 0 8px var(--bg); }
.seal-ring-3::before { border-color: rgba(42,26,20,.35); }

.seal-top, .seal-bot {
  position: absolute;
  left: 50%; transform-origin: center;
  font-family: var(--ff-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--brass-d);
  text-transform: uppercase;
  white-space: nowrap;
}
.seal-top    { top: 8px; transform: translateX(-50%); }
.seal-bot    { bottom: 8px; transform: translateX(-50%); }
.seal-ring-2 .seal-top, .seal-ring-2 .seal-bot { color: var(--wine); }
.seal-ring-3 .seal-top, .seal-ring-3 .seal-bot { color: var(--ink-soft); }
.seal-center {
  font-family: var(--ff-display);
  font-size: 34px;
  color: var(--brass);
  line-height: 1;
}
.seal-ring-2 .seal-center { color: var(--wine); font-size: 38px; }
.seal-ring-3 .seal-center { color: var(--ink); font-size: 30px; }

.seal p {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}
.seal-divider {
  width: 1px;
  background: var(--ink-line);
  align-self: stretch;
}

@media (max-width: 900px) {
  .seals-row { grid-template-columns: 1fr; gap: 40px; }
  .seal-divider { width: auto; height: 1px; }
}

/* ============ FILOSOFI ============ */
.filo { padding: clamp(80px, 13vh, 140px) 0; }
.filo-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 68px;
  align-items: center;
}
.filo-portrait { text-align: center; }
.fp-oval {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 22px;
  aspect-ratio: 3 / 4;
  border-radius: 46%;
  overflow: hidden;
  border: 1px solid var(--brass);
  box-shadow: 0 24px 50px rgba(92,26,43,.14);
}
.fp-oval::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 46%;
  border: 1px dashed var(--line-brass);
  pointer-events: none;
}
.fp-oval img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.08);
}
.filo-portrait figcaption {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.fp-mono {
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--brass-d);
  text-transform: uppercase;
}
.fp-name {
  font-family: var(--ff-display);
  font-size: 26px; font-style: italic;
  color: var(--wine);
  line-height: 1;
}
.fp-cred {
  font-family: var(--ff-body);
  font-size: 13.5px; font-style: italic;
  color: var(--ink-mute);
}

.filo-letter { max-width: 640px; }
.filo-kicker {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--brass-d);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.fk-line {
  width: 42px; height: 1px; background: var(--brass);
  display: inline-block;
}
.filo-letter .h-display {
  font-size: clamp(32px, 4.8vw, 54px);
  margin-bottom: 26px;
  line-height: 1.08;
}
.filo-quote {
  position: relative;
  background: var(--bg-paper);
  border-left: 3px solid var(--wine);
  padding: 26px 30px 26px 48px;
  margin: 0 0 28px;
  font-family: var(--ff-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}
.fq-mark {
  position: absolute;
  top: 10px; left: 18px;
  font-family: var(--ff-display);
  font-size: 60px;
  font-style: italic;
  color: var(--brass);
  opacity: 0.45;
  line-height: 1;
}
.filo-quote em { font-style: italic; color: var(--wine); }
.filo-letter > p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
  color: var(--ink-soft);
}
.filo-letter > p em { font-family: var(--ff-display); font-style: italic; color: var(--wine); font-size: 18px; }
.filo-meta {
  margin: 26px 0 28px;
  padding: 22px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  display: grid; gap: 10px;
}
.filo-meta li {
  display: flex; align-items: baseline; gap: 14px;
  font-size: 14.5px;
  color: var(--ink);
  font-style: italic;
}
.filo-meta li span {
  font-family: var(--ff-mono);
  font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--brass-d);
  min-width: 28px;
  font-style: normal;
}

.filo-sign { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.fs-signature { display: flex; flex-direction: column; gap: 2px; }
.fss-curve {
  font-family: "DM Serif Display", cursive;
  font-size: 34px;
  font-style: italic;
  color: var(--wine);
  line-height: 1;
  transform: rotate(-4deg);
  transform-origin: left;
  letter-spacing: -0.01em;
}
.fss-line { width: 220px; height: 1px; background: var(--ink); margin-top: 4px; }
.fs-stamp {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 900px) {
  .filo-grid { grid-template-columns: 1fr; gap: 48px; }
  .fp-oval { max-width: 260px; }
}

/* ============ MENU · PRIX FIXE ============ */
.menu {
  padding: clamp(80px, 13vh, 140px) 0;
  background: var(--bg-paper);
  border-top: 1px solid var(--ink-line-l);
  border-bottom: 1px solid var(--ink-line-l);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.course {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--ink-line);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border-radius: 2px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.course:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(92,26,43,.13);
  border-color: var(--brass);
}
.course-hi {
  border: 2px solid var(--wine);
  background: var(--bg);
}
.course-hi .c-cta { border-color: var(--wine); }
.c-ribbon {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 14px;
  background: var(--wine);
  color: var(--bg);
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 3;
  border-radius: 2px;
}
.c-head {
  grid-column: 1 / 3;
  padding: 14px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px dashed var(--ink-line);
  background: var(--bg-paper);
}
.c-num, .c-qty {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.c-num { color: var(--wine); font-weight: 500; }
.c-qty { color: var(--ink-mute); }
.c-photo {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.c-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(0.95);
  transition: transform .7s;
}
.course:hover .c-photo img { transform: scale(1.04); }
.c-photo-label {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  background: rgba(42,26,20,.82);
  color: var(--brass-l);
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
}
.c-body {
  padding: 22px 26px 26px;
  display: flex; flex-direction: column;
}
.course h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 4px;
  line-height: 1.05;
}
.course h3 em { font-style: italic; color: var(--wine); }
.c-cap {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0 0 16px;
  line-height: 1.45;
}
.c-menu { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; flex-grow: 1; }
.c-menu li {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
}
.c-menu li > span:first-child { flex-shrink: 0; }
.c-menu .c-leader {
  flex: 1;
  border-bottom: 1px dotted var(--ink-line);
  position: relative;
  top: -4px;
  min-width: 16px;
}
.c-menu li > span:last-child {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--brass-d);
  flex-shrink: 0;
}
.c-foot {
  padding-top: 16px;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
}
.c-price {
  display: flex; align-items: baseline; gap: 4px;
}
.cp-amt {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--wine);
  letter-spacing: -0.015em;
  line-height: 1;
}
.cp-amt sup { font-size: 16px; }
.cp-per {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.c-cta {
  display: inline-block;
  padding: 11px 16px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: background .2s, color .2s;
}
.c-cta:hover { background: var(--ink); color: var(--bg); }
.c-cta-hi {
  background: var(--wine);
  color: var(--bg);
  border-color: var(--wine);
}
.c-cta-hi:hover { background: var(--wine-d); color: var(--bg); }

.menu-note {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  text-align: center;
  max-width: 860px;
  margin: 32px auto 0;
}

@media (max-width: 1000px) {
  .menu-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .course { grid-template-columns: 1fr; }
  .c-photo { min-height: 200px; }
}

/* ============ TASTING INVITE ============ */
.tasting {
  background: var(--bg-deep);
  color: var(--bg);
  padding: clamp(50px, 8vh, 80px) 0;
  border-top: 1px solid var(--line-brass);
  border-bottom: 1px solid var(--line-brass);
}
.t-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.t-ornament {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--brass);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.t-copy .h-display {
  color: var(--bg);
  font-size: clamp(26px, 3.8vw, 42px);
  margin: 0 0 16px;
}
.t-copy .h-display em { color: var(--brass-l); }
.t-copy p {
  color: rgba(245,235,216,.78);
  font-size: 16px;
  font-style: italic;
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}
.t-action { text-align: right; }
.t-note {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: rgba(245,235,216,.55);
  text-transform: uppercase;
  margin: 14px 0 0;
}

@media (max-width: 900px) {
  .t-row { grid-template-columns: 1fr; gap: 24px; }
  .t-action { text-align: left; }
}

/* ============ GALERI · MASONRY ============ */
.galeri { padding: clamp(80px, 13vh, 140px) 0; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}
.gal {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .4s;
}
.gal img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s;
  filter: contrast(1.03) saturate(0.97);
}
.gal:hover img { transform: scale(1.05); }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(207,174,119,.28);
  pointer-events: none; z-index: 2;
}
.gal figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(42,26,20,.92));
  color: var(--bg);
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.4;
  z-index: 3;
}
.gal figcaption span {
  display: block;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--brass-l);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-style: normal;
}

@media (max-width: 900px) {
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gal-tall { grid-row: span 1; }
  .gal-wide { grid-column: span 2; }
}
@media (max-width: 500px) {
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gal-wide { grid-column: span 1; }
}

/* ============ SERTIFIKAT ============ */
.sert { padding: clamp(80px, 13vh, 140px) 0; background: var(--bg-cream); border-top: 1px solid var(--ink-line-l); }
.sert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}
.sert-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--ink-line);
  padding: 0;
  border-radius: 2px;
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
  min-height: 280px;
}
.sert-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(42,26,20,.1); }
.sc-head {
  padding: 14px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px dashed var(--ink-line);
  background: var(--bg-paper);
}
.sc-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
}
.sc-barcode {
  width: 84px; height: 18px;
  background-image: repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 2px, var(--ink) 2px 4px, transparent 4px 5px, var(--ink) 5px 7px, transparent 7px 9px);
}
.sc-body {
  padding: 22px 24px 26px;
  position: relative;
}
.sc-body h4 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 4px;
}
.sc-meta {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--brass-d);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-line-l);
}
.sc-desc {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  line-height: 1.55;
}
.sc-verify {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin: 0;
}
.sc-verify em {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 13px;
  color: var(--wine);
  text-transform: none;
  letter-spacing: 0;
}
.sc-seal {
  position: absolute;
  bottom: 16px; right: 18px;
  opacity: 0.9;
}
.sc-seal-outer {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brass-soft);
  border: 2px dashed var(--brass);
  display: inline-flex;
  align-items: center; justify-content: center;
  transform: rotate(-12deg);
}
.sc-seal-inner {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--wine);
}

@media (max-width: 900px) { .sert-grid { grid-template-columns: 1fr; } }

/* ============ PROSES · RITUAL ============ */
.proses { padding: clamp(80px, 13vh, 140px) 0; }
.ritual {
  display: flex; flex-direction: column;
  gap: 0;
  margin-top: 16px;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.ritual li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  position: relative;
  padding-bottom: 36px;
}
.ritual li::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 72px; bottom: 0;
  width: 1px;
  background: var(--line-brass);
}
.ritual li:last-child::before { display: none; }
.ritual-dot {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-paper);
  border: 2px solid var(--brass);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 0 6px var(--bg-paper), inset 0 0 0 7px var(--line-brass);
  transition: transform .3s;
}
.ritual li:hover .ritual-dot { transform: scale(1.08) rotate(6deg); }
.ritual-dot span {
  font-family: var(--ff-display);
  font-size: 26px;
  font-style: italic;
  color: var(--wine);
  line-height: 1;
}
.ritual-body h4 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1.1;
}
.ritual-body p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 10px;
  font-style: italic;
}
.ritual-time {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--brass-d);
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .ritual li { grid-template-columns: 56px 1fr; gap: 18px; }
  .ritual-dot { width: 56px; height: 56px; box-shadow: inset 0 0 0 4px var(--bg-paper), inset 0 0 0 5px var(--line-brass); }
  .ritual-dot span { font-size: 19px; }
  .ritual li::before { left: 27px; top: 50px; }
  .ritual-body h4 { font-size: 22px; }
}

/* ============ TESTIMONI · GUESTBOOK ============ */
.testi { padding: clamp(80px, 13vh, 140px) 0; background: var(--bg-paper); border-top: 1px solid var(--ink-line-l); }
.guest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.guest {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--ink-line);
  padding: 28px 28px 24px;
  border-radius: 2px;
  transition: transform .3s, box-shadow .3s;
}
.guest::before {
  content: "";
  position: absolute;
  left: 14px; right: 14px; top: 14px; bottom: 14px;
  border: 1px dashed var(--line-brass);
  pointer-events: none;
}
.gu-1 { transform: rotate(-0.8deg); }
.gu-2 { transform: rotate(0.6deg); }
.gu-3 { transform: rotate(-0.4deg); }
.guest:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 22px 48px rgba(92,26,43,.12);
}
.gu-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-line-l);
  position: relative; z-index: 2;
}
.gu-date {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.gu-stars { color: var(--brass); font-size: 12px; letter-spacing: 0.1em; }
.guest blockquote {
  position: relative;
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 22px;
  z-index: 2;
}
.guest blockquote em { color: var(--wine); font-weight: 500; font-style: italic; }
.gu-mark {
  position: absolute;
  top: -22px; left: -6px;
  font-family: var(--ff-display);
  font-size: 64px;
  color: var(--brass);
  opacity: 0.35;
  line-height: 1;
  font-style: italic;
}
.guest footer {
  display: flex; align-items: center; gap: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-line);
  position: relative; z-index: 2;
}
.gu-sig { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.gu-name {
  font-family: var(--ff-display);
  font-size: 19px;
  font-style: italic;
  color: var(--wine);
  line-height: 1;
  letter-spacing: -0.005em;
}
.gu-venue {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}
.gu-seal {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--brass-l);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(92,26,43,.25);
}

@media (max-width: 900px) { .guest-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ============ CTA DARK ============ */
.cta {
  position: relative;
  padding: clamp(70px, 11vh, 110px) 0;
  background: var(--bg-ink);
  color: var(--bg);
  overflow: hidden;
  border-top: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 15% 50%, rgba(176,141,87,.14), transparent 60%),
    radial-gradient(500px 400px at 85% 50%, rgba(92,26,43,.15), transparent 60%);
  pointer-events: none;
}
.cta-ornament {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 80px;
  color: var(--brass);
  opacity: 0.22;
  line-height: 1;
}
.cta-o-l { left: 6%; }
.cta-o-r { right: 6%; }
.cta-box {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-box .h-display.ch { margin-bottom: 18px; }
.cta-box > p {
  color: rgba(245,235,216,.76);
  font-size: 17px;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.cta-note {
  margin: 16px 0 0;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: rgba(245,235,216,.5);
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .cta-ornament { display: none; }
}

/* ============ FAQ ============ */
.faq { padding: clamp(80px, 13vh, 140px) 0; }
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq-aside { position: sticky; top: 110px; }
.faq-aside .section-eye { margin-left: 0; margin-right: 0; justify-content: flex-start; }
.faq-aside .section-eye .se-line:last-child { display: none; }
.faq-aside .h-display {
  text-align: left;
  max-width: none;
  margin-left: 0; margin-right: 0;
}
.fa-sub {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 10px 0 24px;
  max-width: 380px;
}
.faq-list details {
  border-bottom: 1px solid var(--ink-line);
  padding: 22px 0;
}
.faq-list details:first-child { border-top: 1px solid var(--ink-line); }
.faq-list summary {
  list-style: none;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  display: flex; justify-content: space-between; gap: 18px;
  align-items: center;
  color: var(--ink);
  transition: color .2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "❖";
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--brass);
  transition: transform .3s, color .3s;
  flex-shrink: 0;
}
.faq-list details[open] summary { color: var(--wine); }
.faq-list details[open] summary::after {
  color: var(--wine);
  transform: rotate(45deg);
}
.faq-list details p {
  margin: 14px 0 0;
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: italic;
}
.faq-list details p em {
  font-family: var(--ff-body);
  font-style: italic;
  color: var(--wine);
  font-weight: 500;
}

@media (max-width: 900px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 36px; }
  .faq-aside { position: static; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-ink);
  color: rgba(245,235,216,.7);
  padding: clamp(60px, 10vh, 90px) 0 30px;
  border-top: 3px double var(--brass);
}
.footer a { transition: color .2s; }
.footer a:hover { color: var(--brass-l); }
.foot-top {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(176,141,87,.24);
  margin-bottom: 36px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}
.foot-brand .b-name { color: var(--bg); }
.foot-brand .b-name em { color: var(--brass-l); }
.foot-brand .b-kick, .foot-brand .b-city { color: rgba(245,235,216,.55); }
.foot-tag {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245,235,216,.7);
  margin: 0;
  max-width: 780px;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
.foot-cols h4 {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-l);
  margin: 0 0 14px;
}
.foot-cols ul { display: flex; flex-direction: column; gap: 8px; font-size: 15px; font-style: italic; }
.foot-cols ul em { font-family: var(--ff-body); font-style: italic; color: var(--brass-l); font-weight: 500; }
.foot-bot {
  padding-top: 24px;
  border-top: 1px solid rgba(176,141,87,.16);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245,235,216,.5);
}
.foot-bot em { font-family: var(--ff-body); font-style: italic; color: var(--brass-l); letter-spacing: 0; text-transform: none; font-size: 14px; }

@media (max-width: 700px) {
  .foot-cols { grid-template-columns: 1fr 1fr; }
}

/* ============ FAB ============ */
.fab {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(37,211,102,.38);
  transition: transform .22s, box-shadow .22s;
}
.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(37,211,102,.5);
}
.fab i { font-size: 22px; }
@media (max-width: 620px) {
  .fab span { display: none; }
  .fab { padding: 14px 16px; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
