*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
:root{
  --bg:       #080706;
  --bg2:      #0F0E0C;
  --bg3:      #161410;
  --bg4:      #1E1B15;
  --gold:     #C9A84C;
  --gold2:    #E2C06A;
  --gold3:    #8B6E2A;
  --dim:      rgba(201,168,76,.12);
  --cream:    #F0EBE0;
  --muted:    rgba(240,235,224,.38);
  --faint:    rgba(240,235,224,.16);
  --ff-title: 'Bebas Neue', sans-serif;
  --ff-serif: 'Playfair Display', serif;
  --ff-body:  'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--cream); font-family: var(--ff-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* ── UTILITIES ─────────────────────────── */
.btn-gold {
  display: inline-block; font-family: var(--ff-body); font-size: .64rem;
  letter-spacing: .22em; text-transform: uppercase;
  background: var(--gold); color: #000; padding: 1rem 2.6rem;
  border: none; cursor: pointer; text-decoration: none;
  transition: background .25s, transform .15s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; font-family: var(--ff-body); font-size: .64rem;
  letter-spacing: .22em; text-transform: uppercase;
  background: transparent; color: var(--cream);
  padding: 1rem 2.2rem; border: 1px solid rgba(240,235,224,.22);
  cursor: pointer; text-decoration: none;
  transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.label-gold {
  font-size: .58rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem;
}
.label-gold::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: .45; }

.label-dark {
  font-size: .58rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold3); display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem;
}
.label-dark::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold3); opacity: .5; }

.sec-title {
  font-family: var(--ff-title); font-size: clamp(2.8rem,5.5vw,5rem);
  line-height: .92; letter-spacing: .04em; color: var(--cream);
}
.sec-title em {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400;
  font-size: .8em; color: var(--muted);
}
.sec-title-dark {
  font-family: var(--ff-title); font-size: clamp(2.8rem,5.5vw,5rem);
  line-height: .92; letter-spacing: .04em; color: #0a0906;
}
.sec-title-dark em {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400;
  font-size: .8em; color: rgba(10,9,6,.35);
}

/* ── NAV ───────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 1.8rem 5rem; display: flex; align-items: center; justify-content: space-between;
  transition: all .4s;
}
nav.stuck {
  background: rgba(8,7,6,.98); backdrop-filter: blur(20px);
  padding: 1rem 5rem; border-bottom: 1px solid rgba(201,168,76,.12);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; filter: invert(1) brightness(2); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--ff-body); font-size: .63rem; letter-spacing: .2em;
  text-transform: uppercase; background: var(--gold); color: #000;
  padding: .7rem 1.9rem; border: none; cursor: pointer; transition: background .25s;
}
.nav-cta:hover { background: var(--gold2); }

/* hamburger (mobile) */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: all .3s; }
.mobile-menu { display: none; }

/* ── HERO ──────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/whiskey-cigar.jpg') center / cover no-repeat;
  opacity: .15; filter: saturate(.5);
}
.hero-vign {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,7,6,.97) 40%, rgba(8,7,6,.3) 100%),
    radial-gradient(ellipse at center, transparent 35%, rgba(8,7,6,.9) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 0 5rem; width: 100%; }
.hero-tag {
  font-size: .58rem; letter-spacing: .55em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; opacity: 0; animation: up .9s ease .3s forwards;
}
.hero-tag::before { content: ''; width: 22px; height: 1px; background: var(--gold); display: block; }
h1.hero-h1 {
  font-family: var(--ff-title); font-size: clamp(5rem,13vw,12rem);
  line-height: .88; letter-spacing: .06em; color: var(--cream);
  opacity: 0; animation: up 1.1s ease .5s forwards;
}
.hero-sub {
  font-size: .64rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--muted); margin: .8rem 0 2.5rem;
  opacity: 0; animation: up .9s ease .8s forwards;
}
.hero-desc {
  font-family: var(--ff-serif); font-style: italic; font-size: 1.08rem;
  color: rgba(240,235,224,.5); max-width: 380px; line-height: 2;
  margin-bottom: 2.8rem; opacity: 0; animation: up .9s ease 1s forwards;
}
.hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; opacity: 0; animation: up .9s ease 1.2s forwards; }

.hero-scroll {
  position: absolute; right: 3.5rem; bottom: 3.5rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  opacity: 0; animation: fadein 1s ease 2.2s forwards;
}
.hero-scroll span { font-size: .52rem; letter-spacing: .35em; text-transform: uppercase; color: var(--faint); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: pulse 2s ease-in-out infinite; }

.hero-loc {
  position: absolute; left: 5rem; bottom: 3.5rem; z-index: 2;
  opacity: 0; animation: fadein 1s ease 1.8s forwards;
}
.hero-loc a {
  font-size: .55rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--faint); text-decoration: none; display: flex; align-items: center; gap: .5rem;
  transition: color .3s;
}
.hero-loc a:hover { color: var(--gold); }
.hero-loc svg { width: 11px; height: 11px; fill: currentColor; flex-shrink: 0; }

/* ── TICKER ────────────────────────────── */
.ticker { overflow: hidden; background: var(--gold); padding: .8rem 0; white-space: nowrap; }
.ticker-track { display: inline-block; animation: ticker 30s linear infinite; }
.ticker-item { font-family: var(--ff-title); font-size: .8rem; letter-spacing: .38em; color: #000; display: inline-block; margin: 0 2rem; }
.ticker-dot { display: inline-block; width: 4px; height: 4px; background: rgba(0,0,0,.3); transform: rotate(45deg); vertical-align: middle; margin: 0 1.2rem; }

/* ── ABOUT ─────────────────────────────── */
#about { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; overflow: hidden; }
.about-left { background: #F0EBE0; padding: 8rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.about-h2 { font-family: var(--ff-title); font-size: clamp(3rem,5vw,5.5rem); line-height: .92; letter-spacing: .04em; color: #0a0906; margin-bottom: 2rem; }
.about-body { font-size: .9rem; font-weight: 300; color: rgba(10,9,6,.55); line-height: 2; max-width: 400px; }
.about-body + .about-body { margin-top: 1rem; }
.about-stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(10,9,6,.1); }
.astat-n { font-family: var(--ff-title); font-size: 2.8rem; color: #0a0906; display: block; line-height: 1; }
.astat-l { font-size: .52rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold3); }
.about-right { background: var(--bg2); position: relative; overflow: hidden; }
.about-right img { width: 100%; height: 100%; object-fit: cover; opacity: .55; filter: saturate(.7); }
.about-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,7,6,.8) 0%, rgba(201,168,76,.04) 100%); }
.about-badge { position: absolute; bottom: 3rem; left: 3rem; z-index: 2; border: 1px solid rgba(201,168,76,.25); padding: 1.4rem 2rem; background: rgba(8,7,6,.5); backdrop-filter: blur(8px); }
.badge-lbl { font-size: .5rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .4rem; }
.badge-name { font-family: var(--ff-title); font-size: 1.3rem; letter-spacing: .1em; color: var(--cream); }

/* ── GALLERY ───────────────────────────── */
#gallery { background: var(--bg2); padding: 7rem 5rem; }
.section-head { margin-bottom: 3.5rem; }

/* 6-photo masonry grid */
.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
}
.photo-cell { position: relative; overflow: hidden; background: var(--bg4); }
.photo-cell.tall { grid-row: 1 / 3; }
.photo-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; display: block; }
.photo-cell:hover img { transform: scale(1.05); }
.photo-fog { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,7,6,.85) 0%, transparent 50%); opacity: 0; transition: opacity .4s; }
.photo-cell:hover .photo-fog { opacity: 1; }
.photo-cap { position: absolute; bottom: 1.4rem; left: 1.6rem; z-index: 2; opacity: 0; transform: translateY(6px); transition: all .4s; }
.photo-cell:hover .photo-cap { opacity: 1; transform: translateY(0); }
.photo-cap span { font-family: var(--ff-title); font-size: 1rem; letter-spacing: .08em; color: var(--cream); display: block; }
.photo-cap small { font-size: .48rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }

/* ── VIDEOS ────────────────────────────── */
#videos { background: var(--bg); padding: 7rem 5rem; }
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 3.5rem; }
.vid-slot { position: relative; overflow: hidden; background: var(--bg3); min-height: 300px; display: flex; align-items: center; justify-content: center; }
.vid-slot video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.vid-center { position: relative; z-index: 2; text-align: center; }
.vid-play {
  width: 56px; height: 56px; border: 1px solid rgba(201,168,76,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; transition: background .3s, border-color .3s;
}
.vid-slot:hover .vid-play { background: var(--dim); border-color: var(--gold); }
.vid-play svg { width: 14px; height: 14px; margin-left: 2px; }
.vid-lbl { font-size: .54rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.vid-fog { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,7,6,.8) 0%, transparent 55%); pointer-events: none; }
.vid-cap { position: absolute; bottom: 1.5rem; left: 1.8rem; right: 1.8rem; z-index: 2; }
.vid-cap-t { font-family: var(--ff-title); font-size: 1.3rem; letter-spacing: .06em; color: var(--cream); display: block; }
.vid-cap-s { font-size: .52rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); display: block; margin-top: .2rem; }
.ig-bar {
  background: var(--bg3); border: 1px solid rgba(201,168,76,.12);
  padding: 1.1rem 2rem; margin-top: 1.8rem;
  display: flex; align-items: center; gap: 1rem; justify-content: center;
}
.ig-bar svg { flex-shrink: 0; }
.ig-bar p { font-size: .68rem; color: var(--muted); }
.ig-bar a { color: var(--gold); text-decoration: none; }

/* ── EXPERIENCE ────────────────────────── */
#experience { background: var(--bg2); padding: 7rem 5rem; }
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 4rem; }
.exp-card { background: var(--bg3); padding: 3.5rem 2.8rem; position: relative; transition: background .4s; }
.exp-bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s; }
.exp-card:hover { background: var(--bg4); }
.exp-card:hover .exp-bar { transform: scaleX(1); }
.exp-icon { width: 46px; height: 46px; border: 1px solid rgba(201,168,76,.22); display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; transition: border-color .3s; }
.exp-card:hover .exp-icon { border-color: rgba(201,168,76,.6); }
.exp-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.exp-title { font-family: var(--ff-title); font-size: 1.5rem; letter-spacing: .05em; color: var(--cream); margin-bottom: .9rem; }
.exp-body { font-size: .86rem; font-weight: 300; color: var(--muted); line-height: 1.9; }
.exp-foot { margin-top: 2rem; font-size: .52rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: .7rem; opacity: .75; }
.exp-foot::before { content: ''; width: 14px; height: 1px; background: var(--gold); display: block; }

/* ── MENU ──────────────────────────────── */
#menu { background: #F0EBE0; padding: 7rem 5rem; }
.menu-top { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; margin-bottom: 4rem; }
.menu-top-r p { font-size: .9rem; font-weight: 300; color: rgba(10,9,6,.5); line-height: 2; }
.menu-tabs { display: flex; border-bottom: 1px solid rgba(10,9,6,.1); margin-bottom: 3.5rem; overflow-x: auto; }
.menu-tab {
  font-family: var(--ff-body); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(10,9,6,.38); padding: .9rem 1.7rem; background: none;
  border: none; border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; white-space: nowrap; transition: color .3s, border-color .3s;
}
.menu-tab.active { color: #0a0906; border-bottom-color: var(--gold); }
.menu-tab:hover:not(.active) { color: rgba(10,9,6,.6); }
.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 0 5rem; }
.menu-item { padding: 1.4rem 0; border-bottom: 1px solid rgba(10,9,6,.07); display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; }
.mi-name { font-family: var(--ff-serif); font-size: 1rem; font-weight: 700; color: #0a0906; display: block; margin-bottom: .2rem; }
.mi-desc { font-size: .77rem; font-weight: 300; color: rgba(10,9,6,.4); font-style: italic; }
.mi-badge { font-size: .42rem; letter-spacing: .12em; text-transform: uppercase; background: var(--gold); color: #000; padding: .15rem .5rem; display: inline-block; margin-left: .4rem; vertical-align: middle; }
.mi-price { font-family: var(--ff-title); font-size: 1.2rem; color: #0a0906; white-space: nowrap; }
.mi-cur { font-size: .65rem; color: #7a6e5a; margin-right: .1rem; font-family: var(--ff-body); }
.menu-foot { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(10,9,6,.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.menu-note { font-size: .78rem; font-weight: 300; color: rgba(10,9,6,.35); font-style: italic; }

/* ── EVENTS ────────────────────────────── */
#events { background: var(--bg); padding: 7rem 5rem; }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 4rem; }
.ev-card { background: var(--bg3); padding: 3rem 2.8rem; border-top: 2px solid transparent; transition: border-color .4s, background .3s; }
.ev-card:hover { background: var(--bg4); border-top-color: var(--gold); }
.ev-date { display: inline-flex; flex-direction: column; align-items: center; border: 1px solid rgba(201,168,76,.22); padding: .6rem 1rem; margin-bottom: 1.8rem; min-width: 60px; }
.ev-month { font-size: .48rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.ev-day { font-family: var(--ff-title); font-size: 2rem; color: var(--cream); line-height: 1.1; }
.ev-title { font-family: var(--ff-title); font-size: 1.35rem; letter-spacing: .04em; color: var(--cream); margin-bottom: .7rem; }
.ev-body { font-size: .84rem; font-weight: 300; color: var(--muted); line-height: 1.85; margin-bottom: 1.8rem; }
.ev-tag { font-size: .5rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,.22); padding: .35rem .9rem; display: inline-block; }

/* ── BOE ───────────────────────────────── */
#boe { background: #F0EBE0; padding: 7rem 5rem; }
.boe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-top: 4rem; }
.boe-h3 { font-family: var(--ff-title); font-size: clamp(2.5rem,4.5vw,4.5rem); line-height: .92; letter-spacing: .04em; color: #0a0906; margin-bottom: 1.4rem; }
.boe-h3 em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: rgba(10,9,6,.35); font-size: .82em; }
.boe-body { font-size: .9rem; font-weight: 300; color: rgba(10,9,6,.52); line-height: 2; margin-bottom: 2.2rem; max-width: 420px; }
.boe-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; }
.boe-pill { font-size: .54rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(10,9,6,.6); border: 1px solid rgba(10,9,6,.18); padding: .42rem 1rem; }
.boe-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.boe-imgs { position: relative; height: 480px; }
.boe-img-a { position: absolute; top: 0; left: 0; right: 4rem; bottom: 4rem; overflow: hidden; }
.boe-img-a img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.boe-img-b { position: absolute; bottom: 0; right: 0; width: 55%; aspect-ratio: 4/3; overflow: hidden; border: 4px solid #F0EBE0; box-shadow: 0 16px 48px rgba(0,0,0,.15); }
.boe-img-b img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.boe-cta { background: var(--bg); padding: 2.5rem 3rem; margin-top: 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.boe-cta-t { font-family: var(--ff-title); font-size: 1.4rem; letter-spacing: .06em; color: var(--cream); }
.boe-cta-s { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: .2rem; }

/* ── MODAL ─────────────────────────────── */
.modal-ov { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal-ov.open { display: flex; }
.modal-back { position: absolute; inset: 0; background: rgba(8,7,6,.9); backdrop-filter: blur(14px); }
.modal-box {
  position: relative; z-index: 2; background: var(--bg2);
  border: 1px solid rgba(201,168,76,.16); width: 100%; max-width: 640px;
  max-height: 92vh; overflow-y: auto; animation: modal-in .38s ease;
}
.modal-hd { padding: 2.5rem 3rem 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; }
.modal-lbl { font-size: .5rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .4rem; }
.modal-ttl { font-family: var(--ff-title); font-size: 2.2rem; letter-spacing: .06em; color: var(--cream); }
.modal-x { width: 34px; height: 34px; border: 1px solid var(--faint); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .4rem; transition: border-color .3s; }
.modal-x:hover { border-color: rgba(240,235,224,.4); }
.modal-x svg { width: 12px; height: 12px; stroke: var(--muted); stroke-width: 2; fill: none; stroke-linecap: round; }
.modal-bd { padding: 1.8rem 3rem 3rem; }
.modal-sub { font-size: .84rem; font-weight: 300; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.8; }
.modal-tel { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.8rem; font-size: .78rem; color: var(--faint); }
.modal-tel svg { width: 13px; height: 13px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0; }
.modal-tel a { color: var(--gold); text-decoration: none; }
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; }
.fg { display: flex; flex-direction: column; gap: .45rem; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: .49rem; letter-spacing: .32em; text-transform: uppercase; color: rgba(201,168,76,.55); }
.fg input, .fg select, .fg textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(240,235,224,.1);
  color: var(--cream); font-family: var(--ff-serif); font-size: .9rem; font-style: italic;
  padding: .7rem 0; outline: none; width: 100%; transition: border-color .3s;
  appearance: none; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg input::placeholder { color: rgba(240,235,224,.18); }
.fg select option { background: var(--bg2); color: var(--cream); font-style: normal; font-family: var(--ff-body); }
.fg textarea { resize: none; height: 65px; }
.modal-submit {
  width: 100%; margin-top: 2rem; grid-column: 1/-1;
  font-family: var(--ff-body); font-size: .63rem; letter-spacing: .28em; text-transform: uppercase;
  color: #000; background: var(--gold); border: none; padding: 1.2rem; cursor: pointer; transition: background .25s;
}
.modal-submit:hover { background: var(--gold2); }
#modal-ok { display: none; grid-column: 1/-1; font-family: var(--ff-serif); font-style: italic; text-align: center; font-size: 1rem; color: var(--cream); padding: 1.4rem; border: 1px solid rgba(201,168,76,.2); margin-top: 1rem; }
@keyframes modal-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── FOOTER ────────────────────────────── */
footer { background: var(--bg); border-top: 1px solid rgba(240,235,224,.05); padding: 6rem 5rem 3rem; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 5rem; margin-bottom: 5rem; }
.ft-logo img { height: 36px; filter: invert(1) brightness(2); opacity: .65; }
.ft-tagline { font-family: var(--ff-serif); font-style: italic; font-size: .88rem; color: var(--muted); max-width: 255px; line-height: 1.95; margin-top: 1.2rem; }
.ft-col-h { font-size: .5rem; letter-spacing: .48em; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 1.8rem; }
.ft-links { list-style: none; }
.ft-links li + li { margin-top: .8rem; }
.ft-links a { font-size: .85rem; font-weight: 300; color: var(--muted); text-decoration: none; transition: color .3s; }
.ft-links a:hover { color: var(--gold); }
.ft-info { font-size: .85rem; font-weight: 300; color: var(--muted); line-height: 1.9; }
.ft-info strong { font-size: .48rem; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); display: block; font-weight: 400; margin-bottom: .12rem; margin-top: 1rem; }
.ft-info strong:first-child { margin-top: 0; }
.ft-info a { color: var(--muted); text-decoration: none; transition: color .3s; }
.ft-info a:hover { color: var(--gold); }
.ft-div { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.ft-div::before, .ft-div::after { content: ''; flex: 1; height: 1px; background: rgba(240,235,224,.05); }
.ft-gem { width: 5px; height: 5px; background: var(--gold); opacity: .35; transform: rotate(45deg); flex-shrink: 0; }
.ft-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.ft-copy { font-size: .52rem; letter-spacing: .14em; color: rgba(240,235,224,.15); }
.ft-soc { display: flex; gap: 1.8rem; }
.ft-soc a { font-size: .52rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .3s; }
.ft-soc a:hover { color: var(--gold); }

/* ── REVEAL ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .32s; }

/* ── KEYFRAMES ─────────────────────────── */
@keyframes up    { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadein{ from { opacity:0; } to { opacity:1; } }
@keyframes ticker{ 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes pulse { 0%,100% { opacity:.2; } 50% { opacity:.8; } }

/* ── RESPONSIVE ────────────────────────── */
@media(max-width: 960px) {
  nav, nav.stuck { padding: 1.2rem 1.6rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner, .hero-loc { padding-left: 1.6rem; }
  .hero-inner { padding-right: 1.6rem; }
  .hero-loc { left: 1.6rem; }
  .hero-scroll { display: none; }
  #about { grid-template-columns: 1fr; }
  .about-right { min-height: 300px; }
  #gallery, #videos, #experience, #menu, #events, #boe { padding: 5rem 1.6rem; }
  footer { padding: 5rem 1.6rem 2.5rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-cell.tall { grid-row: auto; min-height: 240px; }
  .photo-cell { min-height: 200px; }
  .video-grid, .exp-grid, .events-grid { grid-template-columns: 1fr; }
  .boe-grid { grid-template-columns: 1fr; gap: 3rem; }
  .boe-imgs { height: 300px; }
  .menu-top { grid-template-columns: 1fr; gap: 2rem; }
  .menu-panel.active { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ft-bot { flex-direction: column; text-align: center; }
  .modal-hd, .modal-bd { padding-left: 1.6rem; padding-right: 1.6rem; }
  .res-grid { grid-template-columns: 1fr; }
  .boe-cta { flex-direction: column; align-items: flex-start; }
}
