/* ─── Hero ─── */
.hero {
  position: relative; height: 100vh; width: 100%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal);
  background-image: url('../assets/images/real-dining-room.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.65) 100%);
}
.hero-content {
  position: relative; z-index: 3; text-align: center;
  padding: 0 clamp(20px, 4vw, 64px); max-width: 900px;
}
.hero-eyebrow {
  font-size: .8rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.0;
  color: #fff; margin-bottom: 24px;
}
.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 300;
  color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 40px;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ─── Location ─── */
.location {
  background: var(--bg);
  padding: clamp(100px, 12vh, 160px) clamp(20px, 4vw, 64px);
}
.location-inner {
  display: flex; max-width: 1200px; margin: 0 auto; gap: 64px; align-items: center;
}
.location-text {
  flex: 1;
}
.location-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 20px;
}
.location-lead {
  font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin-bottom: 40px; max-width: 440px;
}
.location-details {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 32px;
}
.detail-label {
  display: block; font-size: .7rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 8px;
}
.detail-value {
  font-size: .95rem; color: var(--charcoal); line-height: 1.6;
}
.location-map {
  flex: 1; overflow: hidden; min-height: 400px;
}
.location-map iframe {
  width: 100%; height: 100%; min-height: 400px;
}

@media (max-width: 768px) {
  .location-inner { flex-direction: column; }
  .location-details { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; width: 100%; }
  .location-map iframe { min-height: 300px; }
}

/* ─── Dine / Drink / Gather ─── */
.dine, .drink, .gather {
  position: relative; display: flex; min-height: 85vh;
  background: var(--bg);
}
.dine-image, .drink-image, .gather-image {
  position: relative; flex: 1; overflow: hidden;
}
.dine-image img, .drink-image img, .gather-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.dine-text, .drink-text, .gather-text {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 80px);
}
.dine-text h2, .drink-text h2, .gather-text h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 24px;
}
.dine-text p, .drink-text p, .gather-text p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted); line-height: 1.75; max-width: 460px; margin-bottom: 28px;
}
.drink { flex-direction: row-reverse; background: var(--bg-warm); }
.gather { background: var(--bg-warm); }

@media (max-width: 768px) {
  .dine, .drink, .gather { flex-direction: column; min-height: auto; }
  .dine-image, .drink-image, .gather-image { height: 50vh; }
  .drink { flex-direction: column; }
}

/* ─── Menus ─── */
.menus { background: var(--bg); padding: 0; }
.menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.menu-item {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.menu-item img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1.2s var(--ease);
}
.menu-item:hover img { transform: scale(1.06); }
.menu-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3); transition: background .5s;
}
.menu-item:hover .menu-item-overlay { background: rgba(0,0,0,.15); }
.menu-item-label {
  position: relative; z-index: 2;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300;
  color: #fff; letter-spacing: .04em;
}

@media (max-width: 768px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── What's On ─── */
.whats-on {
  background: var(--bg-warm);
  padding: clamp(100px, 12vh, 160px) 0;
}
.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 12px;
}
.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  padding: 0 clamp(20px, 4vw, 64px);
}
.event-card {
  position: relative; overflow: hidden;
  background: #fff;
}
.event-image { height: 280px; overflow: hidden; }
.event-image img { width: 100%; height: 100%; object-fit: cover; }
.event-text { padding: 28px 28px 36px; }
.event-tag {
  display: inline-block;
  font-size: .65rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 12px;
}
.event-text h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: 12px; line-height: 1.15;
}
.event-text p {
  font-size: .95rem; color: var(--muted); line-height: 1.65;
}

@media (max-width: 1024px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; padding: 0 20px; }
}

/* ─── Reviews ─── */
.reviews {
  background: var(--bg);
  padding: clamp(100px, 12vh, 160px) clamp(20px, 4vw, 64px);
}
.reviews-rating {
  font-size: 1rem; color: var(--muted); margin-top: 12px;
}
.reviews-rating .stars {
  color: var(--copper); letter-spacing: .15em; margin-right: 8px;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.review-card {
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  padding: 36px 32px;
}
.review-card .stars {
  font-size: .9rem; color: var(--copper); letter-spacing: .15em; margin-bottom: 16px;
}
.review-card p {
  font-size: .95rem; color: var(--charcoal); line-height: 1.75; font-style: italic;
  margin-bottom: 20px;
}
.review-card cite {
  font-size: .8rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); font-style: normal;
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ─── Functions ─── */
.functions {
  position: relative; display: flex; min-height: 85vh;
  background: var(--bg-warm);
}
.functions-image {
  flex: 1; overflow: hidden;
}
.functions-image img { width: 100%; height: 100%; object-fit: cover; }
.functions-text {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 80px);
}
.functions-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 24px; max-width: 480px;
}
.functions-text > p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--muted); line-height: 1.75; max-width: 420px; margin-bottom: 32px;
}
.functions-list {
  margin-bottom: 24px;
}
.function-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.08);
}
.function-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 400; color: var(--ink);
}
.function-detail {
  font-size: .9rem; color: var(--muted);
}
.functions-text .arrow-link { margin-bottom: 12px; }

@media (max-width: 768px) {
  .functions { flex-direction: column; }
  .functions-image { height: 45vh; }
}

/* ─── Reservations ─── */
.reservations {
  background: var(--bg-warm);
  padding: clamp(100px, 12vh, 160px) clamp(20px, 4vw, 64px);
}
.reservations-inner {
  max-width: 560px; margin: 0 auto; text-align: center;
}
.reservations-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 12px;
}
.reservations-inner > p {
  font-size: 1rem; color: var(--muted); margin-bottom: 40px;
}
.reservation-form { text-align: left; }
