/* ============================================================
   LANA'S — light & airy: ivory + wine + blush
   Palette: ivory #FAF3E9 · wine #851C2A · blush #E7B2C0 · rose #AC3E5D
   ============================================================ */

:root {
  --paper:      #FAF3E9;   /* warm ivory — main background */
  --paper-2:    #FFFFFF;   /* clean card */
  --paper-3:    #F3E8DB;   /* soft sand panel */

  --wine:       #851C2A;   /* primary brand wine — warm bordeaux */
  --wine-2:     #A12A3C;   /* hover / lighter warm wine */
  --wine-deep:  #55101C;   /* darkest warm wine — hero / feature / footer anchors */

  --blush:      #E7B2C0;   /* soft dusty rose (the gowns) — for dark surfaces & fills */
  --blush-2:    #F6E4E9;   /* pale blush tint */
  --rose:       #AC3E5D;   /* readable rose accent on light */
  --rose-soft:  #C66E86;

  --text:       #402028;   /* body text on ivory */
  --heading:    #6B1626;   /* headings on ivory — warm wine */
  --cream:      #FBF1EC;   /* light text on wine / dark anchors */
  --muted:      #927179;   /* secondary text on ivory (mauve) */

  --line:       rgba(133, 28, 42, .20);
  --line-2:     rgba(133, 28, 42, .12);
  --line-cream: rgba(251, 241, 236, .16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
section { position: relative; }
:is(#top, #story, #menu, #gallery, #visit) { scroll-margin-top: 84px; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--blush); }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: .01em;
  color: var(--heading);
}
.h2--light { color: var(--cream); }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  --c: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .85rem 1.6rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease),
              color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
/* primary — solid wine (used on the light sections) */
.btn--gold {
  background: var(--wine);
  color: var(--cream);
  box-shadow: 0 10px 26px -14px rgba(133,28,42,.6);
}
.btn--gold:hover {
  transform: translateY(-2px);
  background: var(--wine-2);
  box-shadow: 0 16px 36px -14px rgba(133,28,42,.7);
}
/* primary on dark surfaces — soft blush so it pops on imagery / wine */
.nav__order,
.mobile .btn--gold,
.hero__cta .btn--gold,
.feature__content .btn--gold,
.footer .btn--gold {
  background: linear-gradient(135deg, #F7DEE4, var(--blush));
  color: var(--wine);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,.5);
}
.nav__order:hover,
.mobile .btn--gold:hover,
.hero__cta .btn--gold:hover,
.feature__content .btn--gold:hover,
.footer .btn--gold:hover {
  background: linear-gradient(135deg, #FCEBEF, #EFC4CF);
  color: var(--wine-deep);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251,241,236,.5);
}
.btn--ghost:hover { border-color: var(--blush); color: var(--blush); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: .82rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .7rem; }

.link-gold {
  color: var(--wine);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.link-gold:hover { color: var(--rose); border-color: var(--rose); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.4rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav--scrolled {
  background: rgba(85, 16, 28, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-cream);
}
.nav--scrolled .nav__inner { padding-top: 1rem; padding-bottom: 1rem; }

.brand { display: flex; flex-direction: column; line-height: 1; color: var(--cream); }

/* ---- signage logo: vectorized artwork, recolored via CSS mask ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.logo {
  display: block;
  aspect-ratio: 2616.718609 / 1200.086350;
  background-color: currentColor;
  -webkit-mask: url("images/logo-lockup.svg") center / contain no-repeat;
          mask: url("images/logo-lockup.svg") center / contain no-repeat;
}
.brand__logo { width: clamp(120px, 11vw, 148px); }
.brand__sub {
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(251,241,236,.55);
  margin-top: .35rem;
}

.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: .3rem 0;
  transition: color .3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--blush);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--blush); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__toggle span {
  height: 1.5px; width: 100%;
  background: var(--cream);
  transition: transform .35s var(--ease), opacity .3s;
}
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- mobile menu ---------- */
.mobile {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(85, 16, 28, .975);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.mobile.is-open { opacity: 1; visibility: visible; }
.mobile__links { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile__links a:not(.btn) {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--cream);
  transition: color .3s;
}
.mobile__links a:not(.btn):hover { color: var(--blush); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem var(--pad) 6rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.08) contrast(1.05) brightness(.66) saturate(1.04);
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(133,28,42,.18), rgba(85,16,28,.82) 70%, var(--wine-deep) 100%),
    linear-gradient(to bottom, rgba(85,16,28,.5), rgba(133,28,42,.22) 35%, var(--wine-deep));
}
.hero__content { max-width: 880px; }
.hero__title {
  margin: 0 0 .35rem;
  color: var(--cream);
}
.hero__logo {
  width: min(700px, 86vw);
  margin-inline: auto;
  filter: drop-shadow(0 14px 50px rgba(0,0,0,.45));
}
.hero__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 4.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--blush);
  margin: 1.3rem 0 1.4rem;
}
.hero__lead {
  max-width: 520px;
  margin: 0 auto 2.4rem;
  color: rgba(251,241,236,.85);
  font-size: 1.02rem;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(251,241,236,.6);
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--blush), transparent); animation: scrollPulse 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100%{ transform: scaleY(.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line-cream);
  border-bottom: 1px solid var(--line-cream);
  background: var(--wine);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 2.2rem;
  width: max-content;
  animation: marquee 34s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--cream);
  white-space: nowrap;
}
.marquee__track .dot { color: var(--blush); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   LAYOUT WRAPPERS
   ============================================================ */
.story, .menu, .gallery, .visit { padding: clamp(4.5rem, 10vw, 8.5rem) var(--pad); max-width: var(--wrap); margin: 0 auto; }

/* ---------- story ---------- */
.story__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.story__media { position: relative; }
.story__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px;
  filter: saturate(1.03) contrast(1.02);
}
.story__media-frame { position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--line); border-radius: 3px; z-index: -1; }
.story__text p { color: var(--text); margin-top: 1.1rem; font-size: 1.05rem; }
.story__text .h2 { margin-bottom: .4rem; }
.story__text strong { color: var(--heading); font-weight: 600; }
.story__text em { font-family: var(--serif); font-style: italic; font-size: 1.12em; color: var(--rose); }
.signature { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--rose); margin-top: 1.6rem !important; }

/* ============================================================
   MENU
   ============================================================ */
.menu__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.menu__note { color: var(--muted); font-size: .85rem; margin-top: .8rem; }
.menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 5vw, 4rem); }
.menu__cat {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--heading);
  padding-bottom: .7rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between;
}
.menu__cat--mt { margin-top: 2.6rem; }
.menu__cat-price { font-family: var(--sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.menu__cat-price::before { content: "$"; }

.item { margin-bottom: 1.35rem; }
.item--compact { margin-bottom: .55rem; }
.item__row { display: flex; align-items: baseline; gap: .4rem; }
.item__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--text); }
.item__lead { flex: 1; border-bottom: 1px dotted rgba(133,28,42,.28); transform: translateY(-5px); }
.item__price { font-family: var(--serif); font-size: 1.32rem; color: var(--rose); }
.item__price::before { content: "$"; font-size: .85em; opacity: .8; margin-right: 1px; }
.item__desc { font-size: .9rem; color: var(--muted); margin-top: .15rem; max-width: 32ch; }

/* ---- Something Special (Borscht) ---- */
.menu__special { margin-top: clamp(3rem, 6vw, 5rem); display: flex; justify-content: center; }
.menu__special-inner {
  position: relative;
  width: 100%;
  max-width: 720px;
  text-align: center;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.5rem, 5vw, 3.4rem);
  background:
    radial-gradient(120% 150% at 50% 0%, var(--blush-2), transparent 68%),
    var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 30px 60px -40px rgba(133,28,42,.4);
}
.menu__special-inner::before {
  content: "";
  position: absolute; inset: 7px;
  border: 1px solid rgba(133,28,42,.14);
  border-radius: 2px; pointer-events: none;
}
.menu__special-row { display: inline-flex; align-items: baseline; gap: .7rem; }
.menu__special-name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--heading); }
.menu__special-price { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.85rem); color: var(--rose); }
.menu__special-price::before { content: "$"; font-size: .8em; opacity: .8; margin-right: 1px; }
.menu__special-desc { max-width: 54ch; margin: .9rem auto 0; color: var(--text); font-size: 1rem; }
.menu__special-note { margin-top: .85rem; font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--rose); }

.menu__note--foot { text-align: center; margin-top: clamp(2.4rem, 5vw, 3.4rem); }

.menu__cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ============================================================
   FEATURE (full-bleed)
   ============================================================ */
.feature {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
  overflow: hidden;
}
.feature__media { position: absolute; inset: 0; z-index: -2; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.12) contrast(1.06) brightness(.6) saturate(1); }
.feature__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(74,12,24,.92) 0%, rgba(85,16,28,.7) 38%, rgba(85,16,28,.1) 75%); }
.feature__content { max-width: 520px; }
.feature__copy { color: rgba(251,241,236,.88); font-size: 1.08rem; margin: 1.2rem 0 2rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}
.gallery__item { position: relative; overflow: hidden; border-radius: 3px; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(231,178,192,.4), rgba(133,28,42,.45));
  mix-blend-mode: multiply;
  opacity: .32; transition: opacity .5s;
}
.gallery__item:hover img { transform: scale(1.06); filter: saturate(1.05) contrast(1.02); }
.gallery__item:hover::after { opacity: 0; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__follow { text-align: center; margin-top: 2.4rem; color: var(--muted); letter-spacing: .04em; }
.gallery__follow a { color: var(--rose); margin-left: .3rem; }

/* ============================================================
   VISIT
   ============================================================ */
.visit__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: stretch; }
.visit__block { margin-top: 1.8rem; }
.visit__block h4 { font-family: var(--sans); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--rose); margin-bottom: .5rem; }
.visit__block p { color: var(--text); font-size: 1.05rem; }
.visit__block p span:first-child { display: inline-block; min-width: 7.5rem; color: var(--muted); }
.visit__hours-note { font-size: .78rem !important; color: var(--muted) !important; font-style: italic; margin-top: .5rem; }
.visit__social { display: flex; gap: 1rem; margin-top: 1.8rem; }
.visit__social a {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--wine);
  transition: background .3s, color .3s, transform .3s, border-color .3s;
}
.visit__social a:hover { background: var(--wine); color: var(--cream); border-color: var(--wine); transform: translateY(-3px); }
.visit__order { margin-top: 2rem; }
.visit__map { min-height: 420px; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); }
.visit__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.15) contrast(1.03); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta { text-align: center; padding: clamp(4rem, 9vw, 7rem) var(--pad); background:
    radial-gradient(90% 140% at 50% 0%, var(--blush-2), var(--paper) 72%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta__inner { max-width: 640px; margin: 0 auto; }
.cta .h2 { margin-bottom: 2rem; }
.cta .h2--light { color: var(--heading); }   /* light band → dark heading */

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--wine-deep); padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem; }
.footer__grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-cream); }
.footer__logo { width: clamp(220px, 26vw, 320px); color: var(--cream); }
.footer__tag { color: rgba(251,241,236,.6); margin-top: .6rem; font-size: .9rem; }
.footer__col h5 { font-family: var(--sans); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--blush); margin-bottom: .9rem; }
.footer__col p { color: rgba(251,241,236,.72); font-size: .95rem; margin-bottom: .4rem; }
.footer__bottom { max-width: var(--wrap); margin: 1.6rem auto 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: rgba(251,241,236,.5); font-size: .82rem; }

/* ============================================================
   REVEAL (progressive — no-JS shows everything)
   ============================================================ */
.reveal-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .nav__links, .nav__order { display: none; }
  .nav__toggle { display: flex; }
  .story__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 460px; margin: 0 auto; }
  .menu__grid { grid-template-columns: 1fr 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .menu__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .item__desc { max-width: none; }
  .hero { padding-top: 7rem; }
}

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
}
