/* ═══════════════════════════════════════════════════
   ASTER BY JOSHUA PARIS — Shared Stylesheet
   Light ivory palette · Minimal & Elegant
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Backgrounds — warm ivory, parchment ── */
  --bg:          #F7F3EC;
  --bg-alt:      #EDE8DF;
  --bg-warm:     #E5DDD0;
  --bg-deep:     #16120E;   /* for hero, dark footer */

  /* ── Text ── */
  --ink:         #1C1710;
  --ink-dim:     rgba(28,23,16,0.56);
  --ink-faint:   rgba(28,23,16,0.32);

  /* ── Stone — darker for light background ── */
  --stone:       #8A6E48;
  --stone-lt:    #A08860;
  --stone-dim:   rgba(138,110,72,0.12);

  /* ── Aster signature purple — adjusted for light bg ── */
  --purple:      #6C5A96;
  --purple-lt:   #8E7CB8;
  --purple-dim:  rgba(108,90,150,0.10);

  /* ── Borders ── */
  --muted:       #9A9088;
  --border:      rgba(28,23,16,0.09);
  --border-s:    rgba(138,110,72,0.16);
  --border-p:    rgba(108,90,150,0.18);

  /* ── Typography ── */
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Inter', sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITIES ─── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 52px; }

.eyebrow {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.4rem;
}
.eyebrow--purple { color: var(--purple); }

.rule {
  width: 28px; height: 1px;
  background: var(--stone);
  margin: 1.6rem 0;
}
.rule--purple { background: var(--purple); }
.rule--center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 36px;
  transition: all 0.35s var(--ease);
}
.btn-fill {
  background: var(--ink);
  color: var(--bg);
}
.btn-fill:hover { background: var(--stone); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--border-s);
  color: var(--ink-dim);
}
.btn-ghost:hover { border-color: var(--stone); color: var(--stone); }
.btn-ghost--purple {
  border: 1px solid var(--border-p);
  color: var(--ink-dim);
}
.btn-ghost--purple:hover { border-color: var(--purple); color: var(--purple); }

/* Hero buttons — ghost style with warm ivory text, gold outline */
.btn-hero-reserve {
  background: rgba(255,255,255,0.10);
  color: #F7F3EC;
  border: 1px solid rgba(247,243,236,0.55);
  letter-spacing: 0.22em;
}
.btn-hero-reserve:hover { background: rgba(255,255,255,0.20); border-color: rgba(247,243,236,0.85); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }

.btn-hero-menu {
  background: rgba(255,255,255,0.10);
  color: #F7F3EC;
  border: 1px solid rgba(247,243,236,0.55);
  letter-spacing: 0.22em;
}
.btn-hero-menu:hover { background: rgba(255,255,255,0.20); border-color: rgba(247,243,236,0.85); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── PHOTO DIVIDER ─── */
.photo-divider {
  width: 100%; height: 52vh; min-height: 340px;
  position: relative; overflow: hidden;
}
.photo-divider img { width: 100%; height: 100%; object-fit: cover; }
.photo-divider::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(16,12,9,0.38) 0%,
    rgba(16,12,9,0.10) 40%,
    rgba(16,12,9,0.10) 60%,
    rgba(16,12,9,0.45) 100%);
}

/* Page switch animation */
.page { display: none; }
.page.active {
  display: block;
  animation: pageIn 0.42s ease both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  transition: all 0.45s var(--ease);
}
/* Default: transparent over dark hero — light text */
#nav .nav-links a          { color: rgba(247,243,236,0.70); }
#nav .nav-links a::after   { background: rgba(247,243,236,0.8); }
#nav .nav-links a:hover,
#nav .nav-links a.active   { color: rgba(247,243,236,1); }
#nav .nav-cta              { color: rgba(247,243,236,0.85); border-color: rgba(247,243,236,0.25); }
#nav .nav-cta:hover        { background: rgba(247,243,236,0.15); border-color: rgba(247,243,236,0.6); color: #fff; }
#nav .nav-hamburger span   { background: rgba(247,243,236,0.85); }

/* Solid state: scrolled on home, or any inner page */
#nav.scrolled,
#nav.nav-solid {
  background: rgba(247,243,236,0.97);
  backdrop-filter: blur(24px) saturate(1.2);
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
#nav.scrolled .nav-links a,
#nav.nav-solid .nav-links a        { color: var(--ink-dim); }
#nav.scrolled .nav-links a::after,
#nav.nav-solid .nav-links a::after { background: var(--stone); }
#nav.scrolled .nav-links a:hover,
#nav.nav-solid .nav-links a:hover,
#nav.scrolled .nav-links a.active,
#nav.nav-solid .nav-links a.active { color: var(--stone); }
#nav.scrolled .nav-cta,
#nav.nav-solid .nav-cta            { color: var(--stone); border-color: var(--border-s); }
#nav.scrolled .nav-cta:hover,
#nav.nav-solid .nav-cta:hover      { background: var(--stone); color: var(--bg); border-color: var(--stone); }
#nav.scrolled .nav-hamburger span,
#nav.nav-solid .nav-hamburger span { background: var(--ink); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img  { height: 88px; width: auto; object-fit: contain; object-position: left center; transition: opacity 0.3s; }
.nav-logo-img:hover { opacity: 0.80; }

.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 9px 24px;
  transition: all 0.35s var(--ease);
  border: 1px solid;
}

/* Language toggle */
.lang-toggle {
  background: none; border: 1px solid rgba(247,243,236,0.35);
  color: rgba(247,243,236,0.75);
  font-family: var(--ff-sans); font-size: 0.58rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 6px 11px; cursor: pointer;
  transition: all 0.3s; white-space: nowrap;
}
.lang-toggle:hover { border-color: rgba(247,243,236,0.7); color: #fff; }
#nav.scrolled .lang-toggle,
#nav.nav-solid .lang-toggle { border-color: var(--border-s); color: var(--stone); }
#nav.scrolled .lang-toggle:hover,
#nav.nav-solid .lang-toggle:hover { border-color: var(--stone); color: var(--ink); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1px; transition: all 0.3s; }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--bg);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.4rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--ff-serif); font-size: 2.2rem; font-weight: 300;
  letter-spacing: 0.05em; color: var(--ink);
  transition: color 0.3s;
}
.nav-drawer a:hover { color: var(--stone); }
.nav-drawer-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 1.2rem; color: var(--ink-faint); cursor: pointer;
  background: none; border: none;
}


/* ═══════════════════════════════════════════
   PAGE HERO (inner pages — light)
   ═══════════════════════════════════════════ */
.page-hero {
  padding: 168px 0 80px;
  background: var(--bg);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300; line-height: 1.05;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.page-title em { font-style: italic; color: var(--stone); }
.page-title--purple em { color: var(--purple); }
.page-rule {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--stone), transparent);
  margin: 2rem auto 0;
}
.page-rule--purple {
  background: linear-gradient(to bottom, transparent, var(--purple), transparent);
}


/* ═══════════════════════════════════════════
   HERO (home — dark photo)
   ═══════════════════════════════════════════ */
#hero {
  height: 100vh; min-height: 680px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; }
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(16,12,9,0.68) 0%,
    rgba(16,12,9,0.20) 32%,
    rgba(16,12,9,0.16) 58%,
    rgba(16,12,9,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; padding: 0 28px;
  margin-top: 8vh;
}
.hero-logo-img {
  height: 500px; width: auto;
  margin: 0 auto 3rem;
  opacity: 0.95;
}
.hero-title-wrap {
  margin-bottom: 2.8rem;
  text-align: center;
}
.hero-name {
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #F7F3EC;
  line-height: 1;
  text-transform: uppercase;
}
.hero-sub-name {
  font-family: var(--ff-serif);
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.28em;
  color: rgba(247,243,236,0.70);
  margin-top: 0.6rem;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3.8rem, 8.5vw, 7.4rem);
  font-weight: 300; line-height: 0.95; letter-spacing: 0.01em;
  color: #F7F3EC;
}
.hero-title em { font-style: italic; color: rgba(247,243,236,0.70); }
.hero-actions {
  margin-top: 5.5rem;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(247,243,236,0.28);
  animation: bob 3s ease-in-out infinite;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(247,243,236,0.35), transparent);
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}


/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { aspect-ratio: 3/4; overflow: hidden; background: var(--bg-alt); }
.about-img-main img { transition: transform 8s var(--ease); }
.about-img-main:hover img { transform: scale(1.03); }
.about-img-accent {
  position: absolute; width: 52%; aspect-ratio: 1/1;
  bottom: -40px; right: -40px;
  overflow: hidden; background: var(--bg-alt);
  outline: 5px solid var(--bg);
}
.about-img-accent img { transition: transform 8s var(--ease); }
.about-img-accent:hover img { transform: scale(1.03); }
.about-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 300; line-height: 1.18; color: var(--ink); margin-bottom: 1.8rem;
}
.about-heading em { font-style: italic; color: var(--stone); }
.about-body { font-size: 0.86rem; line-height: 1.95; color: var(--ink-dim); margin-bottom: 1.4rem; }
.about-body strong { color: var(--ink); font-weight: 400; }
.about-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.about-tag {
  font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--border-p); padding: 6px 14px; color: var(--purple);
}


/* ═══════════════════════════════════════════
   SPACES
   ═══════════════════════════════════════════ */
.spaces-header { text-align: center; margin-bottom: 64px; }
.spaces-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--ink);
}
.spaces-sub { font-size: 0.76rem; color: var(--ink-faint); margin-top: 0.8rem; }
.spaces-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; align-items: stretch; }
.space-item { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.space-item .img-wrap { aspect-ratio: 2/3; overflow: hidden; background: var(--bg-alt); flex-shrink: 0; }
.space-item .img-wrap img { transition: transform 0.8s var(--ease); }
.space-item:hover .img-wrap img { transform: scale(1.05); }
.space-info {
  padding: 20px 24px 26px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-p);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.space-title { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.4rem; }
.space-desc { font-size: 0.74rem; color: var(--ink-dim); line-height: 1.7; }


/* ═══════════════════════════════════════════
   MENU
   ═══════════════════════════════════════════ */
.menu-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 300; color: var(--ink);
}
.menu-sub { font-size: 0.76rem; color: var(--ink-faint); margin-top: 0.85rem; line-height: 1.8; }
.menu-tabs {
  display: flex; justify-content: center;
  border-bottom: 1px solid var(--border); margin-bottom: 52px;
}
.menu-tab {
  font-size: 0.60rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 12px 28px; color: var(--ink-faint); cursor: pointer;
  transition: color 0.3s; border-bottom: 1px solid transparent; margin-bottom: -1px;
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: var(--ff-sans);
}
.menu-tab.active { color: var(--stone); border-bottom: 1px solid var(--stone); }
.menu-tab:hover { color: var(--stone-lt); }
.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 0 68px; }
.menu-item {
  padding: 22px 0; border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 5px;
}
.menu-item-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-item-name { font-family: var(--ff-serif); font-size: 1.08rem; font-weight: 400; color: var(--ink); }
.menu-item-price { font-size: 0.68rem; color: var(--stone); white-space: nowrap; }
.menu-item-desc { font-size: 0.74rem; color: var(--ink-dim); line-height: 1.65; }
.menu-item-tag { font-size: 0.54rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.menu-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px;
}
.menu-gallery-item { aspect-ratio: 3/4; overflow: hidden; background: var(--bg-alt); }
.menu-gallery-item img { transition: transform 0.75s var(--ease); }
.menu-gallery-item:hover img { transform: scale(1.06); }
.menu-note {
  text-align: center; margin-top: 36px;
  font-size: 0.72rem; color: var(--ink-faint); font-style: italic;
  font-family: var(--ff-serif);
}


/* ═══════════════════════════════════════════
   PEOPLE
   ═══════════════════════════════════════════ */
.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.people-img-wrap { position: relative; }
.people-img { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-alt); }
.people-img img { transition: transform 8s var(--ease); }
.people-img:hover img { transform: scale(1.03); }
.people-quote {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--purple);
  color: #fff;
  padding: 22px 24px; max-width: 230px;
  font-family: var(--ff-serif); font-size: 0.92rem; font-style: italic; line-height: 1.55;
}
.people-name {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 300; line-height: 1.08; color: var(--ink); margin-bottom: 1.6rem;
}
.people-name em { font-style: italic; color: var(--stone); }
.people-body { font-size: 0.85rem; line-height: 1.95; color: var(--ink-dim); margin-bottom: 1.2rem; }
.people-body strong { color: var(--ink); font-weight: 400; }
.people-timeline {
  margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem;
  border-left: 1px solid var(--border-p); padding-left: 20px;
}
.people-tl-role { font-size: 0.76rem; color: var(--ink); line-height: 1.5; }
.people-tl-place { font-size: 0.70rem; color: var(--muted); }


/* ═══════════════════════════════════════════
   EXPERIENCE GALLERY
   ═══════════════════════════════════════════ */
.exp-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--ink);
}
.exp-sub { font-size: 0.76rem; color: var(--ink-faint); margin-top: 0.7rem; }
.gallery-strip {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1.25fr;
  gap: 2px;
}
.gcell { overflow: hidden; position: relative; cursor: pointer; }
.gcell .img-wrap { aspect-ratio: 9/16; background: var(--bg-alt); overflow: hidden; }
.gcell:nth-child(1) .img-wrap,
.gcell:nth-child(5) .img-wrap { aspect-ratio: 3/4; }
.gcell .img-wrap img { transition: transform 0.8s var(--ease); }
.gcell:hover .img-wrap img { transform: scale(1.05); }
.gcell .lbl {
  position: absolute; bottom: 14px; left: 16px;
  font-size: 0.54rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247,243,236,0.45); z-index: 1;
}
.exp-footer {
  text-align: center; padding: 40px 0 72px;
  font-size: 0.70rem; color: var(--ink-faint); letter-spacing: 0.08em;
}
.exp-footer a { color: var(--stone); transition: opacity 0.3s; }
.exp-footer a:hover { opacity: 0.65; }


/* ═══════════════════════════════════════════
   RESERVATIONS
   ═══════════════════════════════════════════ */
.res-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 88px; align-items: start; }
.res-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--ink); margin-bottom: 1.4rem;
}
.res-body { font-size: 0.84rem; line-height: 1.9; color: var(--ink-dim); margin-bottom: 2rem; }
.res-info-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.res-info-item { display: flex; gap: 14px; align-items: flex-start; }
.res-info-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border-s);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--stone); font-size: 0.7rem;
}
.res-info-detail { font-size: 0.76rem; color: var(--ink-dim); line-height: 1.65; }
.res-info-detail strong { color: var(--ink); font-weight: 400; display: block; }
.res-widget-wrap {
  border: 1px solid var(--border-p);
  padding: 40px; position: relative;
  background: rgba(108,90,150,0.04);
}
.res-widget-wrap::before {
  content: 'Reserve a Table';
  position: absolute; top: -11px; left: 24px;
  background: var(--bg); padding: 0 10px;
  font-size: 0.56rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--purple);
}
#reservation-embed-placeholder {
  min-height: 260px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  border: 1px dashed rgba(108,90,150,0.20);
  color: var(--ink-faint); font-size: 0.70rem; text-align: center; padding: 32px;
}
#reservation-embed-placeholder .embed-title {
  font-family: var(--ff-serif); font-size: 1.4rem;
  color: var(--ink); opacity: 0.85; font-weight: 300;
}


/* ═══════════════════════════════════════════
   PRIVATE DINING
   ═══════════════════════════════════════════ */
.private-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.private-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.private-img img { transition: transform 8s var(--ease); }
.private-img:hover img { transform: scale(1.03); }
.private-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; color: var(--ink); margin-bottom: 1.4rem;
}
.private-heading em { font-style: italic; color: var(--stone); }
.private-body { font-size: 0.84rem; line-height: 1.9; color: var(--ink-dim); margin-bottom: 2rem; }


/* ═══════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════ */
.loc-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 72px; margin-bottom: 0; }
.loc-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 300; color: var(--ink); margin-bottom: 1.8rem;
}
.loc-detail { font-size: 0.78rem; line-height: 1.8; color: var(--ink-dim); margin-bottom: 0.4rem; }
.loc-detail strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 0.15rem; }
.loc-hours { margin-top: 2rem; }
.loc-hours-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: 0.76rem;
}
.loc-hours-day { color: var(--muted); }
.loc-hours-time { color: var(--ink); }
.loc-map-wrap { height: 360px; background: var(--bg-alt); overflow: hidden; position: relative; }
.loc-map-wrap iframe { width: 100%; height: 100%; border: 0; }
.loc-map-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: var(--ink-faint); font-size: 0.66rem; letter-spacing: 0.15em; text-align: center;
}


/* ═══════════════════════════════════════════
   NEWS & EVENTS
   ═══════════════════════════════════════════ */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.news-item {
  padding: 40px 40px 44px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.news-item:hover { background: var(--bg-warm); }
.news-date {
  font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 1rem;
}
.news-title {
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 300;
  color: var(--ink); line-height: 1.2; margin-bottom: 0.8rem;
}
.news-body { font-size: 0.78rem; color: var(--ink-dim); line-height: 1.75; }
.news-tag {
  display: inline-block; margin-top: 1.2rem;
  font-size: 0.54rem; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--border-p); padding: 5px 12px; color: var(--purple);
}

.press-list { display: flex; flex-direction: column; }
.press-item {
  display: flex; gap: 32px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.press-pub {
  font-size: 0.60rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--stone); min-width: 160px; flex-shrink: 0;
}
.press-quote {
  font-family: var(--ff-serif); font-size: 1.0rem; font-style: italic;
  color: var(--ink-dim); line-height: 1.5; flex: 1;
}
.press-year { font-size: 0.64rem; color: var(--muted); flex-shrink: 0; }


/* ═══════════════════════════════════════════
   FOOTER — dark, grounding
   ═══════════════════════════════════════════ */
footer {
  background: var(--bg-deep);
  border-top: none;
  padding: 64px 0 36px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo-img { height: 73px; width: auto; object-fit: contain; object-position: left; opacity: 0.80; margin-bottom: 1.2rem; }
.footer-tagline { font-size: 0.68rem; color: rgba(247,243,236,0.28); line-height: 1.8; max-width: 240px; }
.footer-col-title {
  font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(247,243,236,0.35); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.74rem; color: rgba(247,243,236,0.35); transition: color 0.3s; }
.footer-links a:hover { color: rgba(247,243,236,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(247,243,236,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.60rem; color: rgba(247,243,236,0.18); }
.footer-social { display: flex; gap: 1.2rem; align-items: center; }
.footer-social a {
  font-size: 0.60rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(247,243,236,0.26); transition: color 0.3s;
}
.footer-social a:hover { color: rgba(247,243,236,0.70); }

/* Michelin badge */
.michelin-badge {
  display: flex; align-items: center; gap: 10px;
}
.michelin-badge svg { flex-shrink: 0; }
.michelin-label {
  font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247,243,236,0.38); line-height: 1.5;
}


/* ═══════════════════════════════════════════
   INQUIRY FORM
   ═══════════════════════════════════════════ */
.inquiry-form { display: flex; flex-direction: column; gap: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label {
  font-size: 0.58rem; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--stone);
}
.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.form-input::placeholder { color: var(--muted); opacity: 0.5; }
.form-input:focus { border-bottom-color: var(--stone); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.62rem; color: var(--muted); margin-top: 12px;
  text-align: center; line-height: 1.6; opacity: 0.7;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .about-grid, .people-grid, .res-grid, .private-inner { grid-template-columns: 1fr; gap: 52px; }
  .about-img-accent { display: none; }
  .people-quote { position: static; max-width: 100%; margin-top: 20px; }
  .loc-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-panel.active { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr 1fr; }
  .gcell:nth-child(4), .gcell:nth-child(5) { display: none; }
  .spaces-grid { grid-template-columns: 1fr 1fr; }
  .menu-gallery { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .press-item { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .page-hero { padding: 138px 0 68px; }
  .nav-links, .nav-cta { display: none; }
  .lang-toggle { display: none; }
  .nav-hamburger { display: flex; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gcell:nth-child(3), .gcell:nth-child(4), .gcell:nth-child(5) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .res-widget-wrap { padding: 24px 16px; }
  .spaces-grid { grid-template-columns: 1fr; }
  .menu-gallery { grid-template-columns: repeat(2, 1fr); }
  .menu-tabs { flex-wrap: wrap; justify-content: flex-start; }
  .photo-divider { height: 36vh; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-logo-img { height: 62px; }
  .footer-logo-img { height: 57px; }
  .hero-logo-img { height: 280px; }
  .news-item { padding: 28px 24px 32px; }
}
