/* ============================================================
   pages.css — inner page specific styles
   (menu, gallery, wineclub, reserve)
   ============================================================ */

/* ── HAPPY HOUR (menu page) ── */
.hh-sec {
  background: #000;
  color: var(--text);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid var(--border);
}
.hh-left h2 { font-family: var(--font-serif); font-size: 2.5rem; margin-bottom: .4rem; }
.hh-sub {
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); opacity: .7; margin-bottom: 2rem;
}
.hh-list { list-style: none; }
.hh-list li {
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(248,244,239,.8);
}
.hh-list li:last-child { border: none; }
.hh-list li .name { flex: 1; }
.hh-right h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); margin-bottom: .8rem; }
.hh-right p {
  font-size: .82rem; color: var(--text-muted); line-height: 1.9;
  font-family: var(--font-body); font-style: italic; margin-bottom: 1rem;
}
.key-box { margin-top: 1.5rem; padding: 1.5rem; border: 1px solid var(--border-gold); background: rgba(201,168,76,.04); }
.key-label { font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.key-row { font-size: .75rem; color: var(--text-muted); line-height: 2.2; display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }

/* ── GALLERY ── */
.gallery-intro {
  padding: 2rem 4rem;
  font-family: var(--font-body); font-style: italic;
  font-size: 1rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.gallery-wrap { padding: 4px; background: var(--bg2); }
.gallery-row { display: grid; gap: 4px; margin-bottom: 4px; }
.gallery-row.two     { grid-template-columns: 1fr 1fr; }
.gallery-row.three   { grid-template-columns: 1fr 1fr 1fr; }
.gallery-row.featured{ grid-template-columns: 2fr 1fr; }
.gallery-cell { overflow: hidden; position: relative; height: 350px; cursor: pointer; }
.gallery-cell.tall   { height: 580px; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72); transition: filter .5s, transform .6s; }
.gallery-cell:hover img { filter: brightness(1); transform: scale(1.04); }
.gallery-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,.65), transparent);
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-cell:hover .gallery-over { opacity: 1; }
.gallery-cap { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: white; font-weight: 700; }
.side-stack { display: flex; flex-direction: column; gap: 4px; }

/* ── WINE CLUB ── */
.wc-hero { height: calc(100vh - 66px); position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.wc-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.35); }
.wc-hero-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,.92) 0%, rgba(10,8,6,.3) 60%, transparent 100%);
}
.wc-hero-content { position: relative; z-index: 1; padding: 5rem 4rem; max-width: 700px; }
.wc-eyebrow { font-size: .6rem; letter-spacing: .4em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.wc-title { font-family: var(--font-serif); font-size: clamp(3rem,7vw,5.5rem); color: white; line-height: 1.05; margin-bottom: 1.5rem; }
.wc-desc { font-family: var(--font-body); font-style: italic; font-size: 1.1rem; color: rgba(248,244,239,.65); line-height: 1.85; margin-bottom: 2.5rem; }

.membership-wrap { padding: 5rem 4rem; background: var(--bg2); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.mem-col h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); margin-bottom: 2rem; }
.mem-list { list-style: none; margin-bottom: 2.5rem; }
.mem-list li {
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: flex; gap: .8rem;
}
.mem-list li::before { content: '—'; color: var(--red); flex-shrink: 0; }
.mem-list li:last-child { border: none; }

.waitlist-form { background: var(--bg4); padding: 2.5rem; border: 1px solid var(--border-gold); }
.waitlist-form h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); margin-bottom: .5rem; }
.waitlist-form .sub { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 1.5rem; display: block; }

/* ── RESERVE ── */
.res-wrap { padding: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1200px; margin: 0 auto; }
.res-col h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--text); margin-bottom: .5rem; line-height: 1.15; }
.res-col .sub { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem; display: block; }
.res-col p { font-size: .82rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.5rem; }
.res-link {
  display: block; font-size: .82rem; color: var(--text-muted);
  text-decoration: none; padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.res-link:hover { color: var(--gold); padding-left: .5rem; border-color: var(--border-gold); }

.yelp-box { background: var(--bg3); border: 1px solid var(--border); padding: 2.5rem; margin-bottom: 2rem; }
.yelp-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.yelp-logo { background: #d32323; color: white; font-weight: 900; font-size: 1.1rem; padding: .4rem .9rem; letter-spacing: .05em; border-radius: 3px; font-family: Georgia, serif; }
.yelp-stars { color: #d32323; font-size: 1rem; letter-spacing: .1em; }
.yelp-count { font-size: .72rem; color: var(--text-muted); }
.yelp-quote { font-family: var(--font-body); font-style: italic; font-size: .95rem; color: rgba(248,244,239,.65); line-height: 1.8; margin-bottom: 1.2rem; }
.yelp-name  { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); opacity: .7; }

.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.hours-grid { display: flex; flex-direction: column; gap: 0; }
.hours-row { display: flex; justify-content: space-between; padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: .8rem; }
.hours-row:last-child { border: none; }
.hours-day  { color: var(--text-muted); }
.hours-time { color: var(--gold); }

/* ── SHARED FORM ── */
.form-field {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .9rem 1rem;
  font-family: var(--font-ui);
  font-size: .82rem;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color .3s;
}
.form-field:focus { border-color: var(--red); }
.form-field::placeholder { color: var(--text-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hh-sec       { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 2.5rem; }
  .gallery-row.three   { grid-template-columns: 1fr; }
  .gallery-row.featured{ grid-template-columns: 1fr; }
  .side-stack { flex-direction: column; }
  .gallery-cell { height: 250px !important; }
  .gallery-intro { padding: 1.5rem; }
  .wc-hero-content { padding: 2.5rem 1.5rem; }
  .wc-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .membership-wrap { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .waitlist-form { padding: 2rem 1.5rem; }
  .res-wrap { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .hours-row { font-size: .75rem; }
}
