/* =====================================================
   THE BARNYARD CO. — STYLESHEET
   Dark-mode, industrial-rustic, editorial aesthetic
   ===================================================== */

/* ── Custom Properties ── */
:root {
  --bg:          #111110;
  --bg-2:        #181816;
  --bg-3:        #1f1e1b;
  --surface:     #252320;
  --surface-2:   #2e2b27;
  --border:      rgba(200, 180, 140, 0.12);

  --terra:       #c0632a;
  --terra-light: #d97b42;
  --terra-pale:  rgba(192, 99, 42, 0.18);

  --cream:       #f0e8d8;
  --cream-dim:   #c8bfaa;
  --olive:       #5c6645;
  --olive-light: #7a8a5a;
  --wood:        #7a5c38;
  --wood-light:  #9a7a50;

  --text:        #e8dfc8;
  --text-muted:  #8a8070;
  --text-dim:    #5a5248;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  border: none;
  outline: none;
  color: inherit;
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-heading em {
  font-style: italic;
  color: var(--terra-light);
}

.section-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.link-arrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--terra-light);
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  transition: gap var(--transition);
}

.link-arrow:hover { opacity: 0.8; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--terra);
  color: var(--cream);
  border: 1.5px solid var(--terra);
}

.btn--primary:hover {
  background: var(--terra-light);
  border-color: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 99, 42, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(240, 232, 216, 0.35);
}

.btn--outline:hover {
  border-color: var(--cream);
  background: rgba(240, 232, 216, 0.07);
  transform: translateY(-2px);
}

.btn--full { width: 100%; text-align: center; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--right {
  transform: translateY(0) translateX(28px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1.1s ease 0.3s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2.5rem;
  overflow: visible;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(17, 17, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 2.5rem;
  box-shadow: 0 1px 0 var(--border);
}

.nav__logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
}

.nav__logo-img {
  width: 90px;
  height: auto;
  flex-shrink: 0;
  filter: invert(1) brightness(1.1);
  transition: opacity var(--transition);
}

.nav__logo-img:hover { opacity: 0.8; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--cream); }

.nav__cta {
  background: var(--terra) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}

.nav__cta:hover { background: var(--terra-light) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Photo background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo {
  position: absolute;
  inset: 0;
  background: url('images/barnyard-1.png') center center / cover no-repeat;
  transform-origin: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 3, 0.45) 0%,
    rgba(8, 6, 3, 0.2) 35%,
    rgba(8, 6, 3, 0.25) 60%,
    rgba(8, 6, 3, 0.78) 100%
  );
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__logo-img {
  width: 220px;
  height: auto;
  filter: invert(1) brightness(1.1) drop-shadow(0 4px 30px rgba(0,0,0,0.5));
}

.hero__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--terra-light);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  background: var(--bg-2);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about__text .section-heading {
  margin-bottom: 1.2rem;
}

.about__body {
  color: var(--cream-dim);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* About photo card */
.about__photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.about__photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__photo-card:hover img {
  transform: scale(1.04);
}

.about__photo-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(17, 17, 16, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.45rem 0.9rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Pull quote */
.about__quote {
  text-align: center;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.pull-quote {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--terra-light);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Press bar */
.press-bar {
  text-align: center;
  margin-top: 3.5rem;
}

.press-bar__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.press-bar__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.press-logo {
  opacity: 0.45;
  transition: opacity var(--transition);
}

.press-logo:hover { opacity: 0.8; }

.press-logo__text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  display: block;
  line-height: 1.4;
}

.press-logo__text--sm { font-size: 0.65rem; }

/* =====================================================
   EXPERIENCE / GALLERY
   ===================================================== */
.experience {
  background: var(--bg);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__visual {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item--tall .gallery__visual {
  aspect-ratio: unset;
  height: 100%;
  min-height: 380px;
}

.gallery__item--wide .gallery__visual {
  aspect-ratio: 16/7;
}

.gallery__item:hover .gallery__visual {
  transform: scale(1.04);
}

.gv__scene {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5rem;
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.2rem;
  background: linear-gradient(to top, rgba(10,8,4,0.9) 0%, transparent 100%);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__caption { opacity: 1; }

/* Gallery visuals */
.gv--bar       { background: linear-gradient(160deg, #120e08 0%, #0a0806 100%); }
.gv--books     { background: linear-gradient(160deg, #16110a 0%, #0c0906 100%); }
.gv--coffee    { background: linear-gradient(160deg, #100d08 0%, #0a0806 100%); }

/* Photo gallery cards */
.gv--photo {
  background: #0a0806;
}

.gv--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover .gv--photo img {
  transform: scale(1.05);
}

/* Staircase */
.staircase {
  position: relative;
  width: 120px;
  height: 200px;
}

.stair {
  position: absolute;
  left: 0;
  height: 12px;
  background: linear-gradient(90deg, #5a3a18, #7a5228);
  border-radius: 2px 2px 0 0;
}

.stair--1 { bottom: 0;   width: 120px; }
.stair--2 { bottom: 30px; width: 100px; }
.stair--3 { bottom: 60px; width: 80px; }
.stair--4 { bottom: 90px; width: 60px; }
.stair--5 { bottom: 120px; width: 40px; }

.stair-railing {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 2px;
  height: 130px;
  background: linear-gradient(180deg, rgba(180,140,80,0.6) 0%, rgba(120,90,40,0.4) 100%);
}

.stair-railing::before {
  content: '';
  position: absolute;
  top: 0; left: -60px;
  width: 2px;
  height: 110px;
  background: inherit;
  transform: skewY(-30deg);
  transform-origin: top;
}

/* Bar setup */
.bar-setup { position: relative; width: 90%; }

.bar-counter {
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #5a3a18, #7a5228, #5a3a18);
  border-radius: 4px;
  margin-top: 100px;
  box-shadow: 0 2px 12px rgba(90,58,24,0.5);
}

.bar-shelf {
  position: absolute;
  width: 80%;
  left: 10%;
  height: 4px;
  background: rgba(90, 58, 24, 0.6);
}

.bar-shelf--1 { top: 20px; }
.bar-shelf--2 { top: 55px; }

.bottle {
  display: inline-block;
  width: 10px;
  height: 32px;
  background: linear-gradient(180deg, rgba(200,160,80,0.6) 0%, rgba(100,70,20,0.8) 100%);
  border-radius: 3px 3px 1px 1px;
  margin: 0 3px;
  position: relative;
  top: -32px;
}

.bottle--tall { height: 42px; top: -42px; }
.bottle--short { height: 24px; top: -24px; }

.bar-light {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background: rgba(180,140,60,0.5);
}

.bar-light::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -10px;
  width: 24px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(255,200,60,0.8) 0%, rgba(200,130,20,0.4) 60%, transparent 100%);
  border-radius: 50%;
}

/* Books */
.bookshelf { display: flex; flex-direction: column; gap: 4px; }

.book-row {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  border-bottom: 2px solid rgba(90, 58, 24, 0.5);
  padding-bottom: 4px;
}

.book {
  display: inline-block;
  border-radius: 2px 2px 0 0;
}

.b--tall  { width: 12px; height: 52px; }
.b--med   { width: 11px; height: 40px; }
.b--short { width: 10px; height: 30px; }

.b--terra  { background: linear-gradient(180deg, #a05030 0%, #703518 100%); }
.b--cream  { background: linear-gradient(180deg, #d0c8a8 0%, #a09878 100%); }
.b--olive  { background: linear-gradient(180deg, #505c2c 0%, #384018 100%); }
.b--brown  { background: linear-gradient(180deg, #7a5028 0%, #503214 100%); }

/* Dining */
.dining-scene {
  position: relative;
  width: 100%;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}

.dining-table {
  position: relative;
  text-align: center;
}

.dt__surface {
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg, #5a3a18, #7a5228, #5a3a18);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(90,58,24,0.4);
}

.dt__candle {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 24px;
  background: #c8b878;
  border-radius: 1px;
}

.dt__candle::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 12px;
  background: radial-gradient(ellipse at 50% 70%, #ffee88 0%, #ffaa22 50%, transparent 100%);
  border-radius: 50%;
}

.dining-lamp {
  position: absolute;
  top: 0;
  width: 2px;
  background: rgba(180,140,60,0.3);
}

.dl--1 { left: 16%; height: 60px; }
.dl--2 { left: 50%; height: 40px; }
.dl--3 { right: 16%; height: 55px; }

.dining-lamp::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -10px;
  width: 22px;
  height: 15px;
  background: radial-gradient(ellipse at 50% 30%, #d4890a 0%, #7a4a08 70%, transparent 100%);
  border-radius: 2px 2px 50% 50%;
}

/* Courtyard */
.courtyard { position: relative; width: 100%; height: 100%; }

.cy-sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, #1a2a3a 0%, #0a1520 100%);
}

.cy-plant {
  position: absolute;
  bottom: 0;
  width: 80px;
  height: 140px;
}

.cy-plant::before, .cy-plant::after {
  content: '';
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}

.cy-plant--1 {
  left: 5%;
}

.cy-plant--1::before {
  width: 50px; height: 120px;
  left: 0;
  background: linear-gradient(160deg, #2a4020 0%, #1a3010 100%);
}

.cy-plant--1::after {
  width: 40px; height: 90px;
  left: 35px;
  background: linear-gradient(150deg, #3a5828 0%, #2a4018 100%);
}

.cy-plant--2 {
  right: 5%;
}

.cy-plant--2::before {
  width: 55px; height: 130px;
  right: 0;
  background: linear-gradient(160deg, #2a4020 0%, #1a3010 100%);
}

.cy-plant--2::after {
  width: 45px; height: 100px;
  right: 40px;
  background: linear-gradient(150deg, #3a5828 0%, #2a4018 100%);
}

.cy-table {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, #5a3a18, #7a5228, #5a3a18);
  border-radius: 2px;
}

/* Coffee corner */
.coffee-corner {
  position: relative;
  width: 120px;
  text-align: center;
}

.espresso-machine {
  width: 70px;
  height: 70px;
  background: linear-gradient(160deg, #3a3530 0%, #1e1c18 100%);
  border-radius: 6px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(150,120,70,0.3);
}

.espresso-machine::before {
  content: '';
  position: absolute;
  top: 12px; left: 8px;
  width: 22px; height: 22px;
  background: radial-gradient(circle, #c0a060 0%, #6a4a18 100%);
  border-radius: 50%;
}

.espresso-machine::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(120,90,40,0.6);
}

.coffee-cup {
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 22px;
  background: var(--cream);
  border-radius: 2px 2px 4px 4px;
}

.cc--1 { left: 5px; bottom: 0; }
.cc--2 { right: 5px; bottom: 0; }

.coffee-cup::after {
  content: '';
  position: absolute;
  right: -8px; top: 4px;
  width: 8px; height: 10px;
  border: 2px solid var(--cream);
  border-left: none;
  border-radius: 0 4px 4px 0;
}

.steam {
  position: absolute;
  bottom: 22px;
  width: 2px;
  height: 0;
  background: transparent;
  animation: steamRise 2s ease infinite;
}

.s--1 { left: 20px; animation-delay: 0s; }
.s--2 { right: 20px; animation-delay: 0.6s; }

@keyframes steamRise {
  0%   { height: 0; opacity: 0; bottom: 22px; }
  50%  { height: 20px; opacity: 0.4; }
  100% { height: 30px; opacity: 0; bottom: 40px; }
}

/* =====================================================
   MENU
   ===================================================== */
.menu {
  background: var(--bg-2);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  border-color: rgba(192, 99, 42, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.menu-card__icon {
  width: 44px;
  height: 44px;
  color: var(--terra-light);
  margin-bottom: 1.2rem;
}

.menu-card__icon svg {
  width: 100%;
  height: 100%;
}

.menu-card__category {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.menu-card__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu-card__items li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.item-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.item-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-card__link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--terra-light);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: 0.25rem;
}

.menu-card__link:hover { opacity: 0.75; }

/* =====================================================
   EVENTS
   ===================================================== */
.events {
  background: var(--bg);
  position: relative;
}

.events::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/barnyard-2.jpg') center 30% / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.event-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  cursor: pointer;
  transition: transform var(--transition);
}

.event-card:hover { transform: translateY(-4px); }

.event-card__bg {
  position: absolute;
  inset: 0;
}

.event-card__bg--1 {
  background: linear-gradient(135deg, #1a0f06 0%, #2a1a0a 50%, #1a0f06 100%);
}

.event-card__bg--1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(192,99,42,0.04) 20px,
    rgba(192,99,42,0.04) 21px
  );
}

.event-card__bg--2 {
  background: linear-gradient(135deg, #0f1a0a 0%, #1a2a10 50%, #0f1a0a 100%);
}

.event-card__bg--2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(90,120,50,0.06) 24px,
    rgba(90,120,50,0.06) 25px
  );
}

.event-card__bg--3 {
  background: linear-gradient(135deg, #12100a 0%, #201a10 50%, #12100a 100%);
}

.event-card__bg--3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(180,140,60,0.08) 0%, transparent 60%);
}

.event-card__bg--4 {
  background: linear-gradient(135deg, #0a0f1a 0%, #101520 50%, #0a0f1a 100%);
}

.event-card__bg--4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(60,90,140,0.1) 0%, transparent 60%);
}

.event-card__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(10,8,4,0.85) 0%, transparent 60%);
}

.event-date {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-light);
  display: block;
  margin-bottom: 0.5rem;
}

.event-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.event-desc {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.event-time {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.events__cta {
  text-align: center;
}

.events__cta p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

/* =====================================================
   VISIT
   ===================================================== */
.visit {
  background: var(--bg-2);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.info-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.info-block:last-child { border-bottom: none; }

.info-block__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 0.6rem;
}

.info-block__text {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

.info-block__text strong { color: var(--cream); font-weight: 500; }

.info-link {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.info-link:hover { color: var(--terra-light); }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream-dim);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.social-link:hover { color: var(--cream); }

.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Reservation Form */
.reservation-anchor {
  display: block;
  height: 0;
  margin-top: -1rem;
}

.reservation-form {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.reservation-form__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form__field:last-child { margin-bottom: 0; }

.form__field label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form__field input,
.form__field select,
.form__field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.88rem;
  transition: border-color var(--transition);
  width: 100%;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: rgba(192, 99, 42, 0.5);
  outline: none;
}

.form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8070' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  cursor: pointer;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--text-dim);
}

.form__field textarea { resize: vertical; }

.form__note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.8rem;
  text-align: center;
}

.form__note a { color: var(--terra-light); }

.form__success {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--olive-light);
}

.form__success svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.form__success p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

/* Map */
.map-container {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

.map-container iframe {
  filter: grayscale(80%) invert(90%) hue-rotate(180deg) brightness(0.9) saturate(0.6);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #0c0a08;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__logo-img {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  filter: invert(1) brightness(0.9);
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.footer__tagline {
  font-family: var(--font-script);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--cream); }

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--terra);
  color: var(--terra-light);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  text-align: center;
}

.footer__bottom p {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { max-width: 480px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
  .visit__grid { grid-template-columns: 1fr; }
  .map-container { height: 360px; position: static; }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.6rem 1.2rem;
    flex-wrap: wrap;
    overflow: visible;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }

  .nav__links.open { display: flex; }

  .nav__links li { width: 100%; }

  .nav__links a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__links .nav__cta {
    margin-top: 1rem;
    border-radius: var(--radius);
    padding: 0.7rem 1.2rem !important;
    border-bottom: none !important;
  }

  .nav__toggle { display: flex; }

  .section { padding: 5rem 0; }

  .menu__grid { grid-template-columns: 1fr; }
  .events__grid { grid-template-columns: 1fr; }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__visual { aspect-ratio: 16/9; }
  .gallery__item--tall .gallery__visual { min-height: 0; }
  .gallery__item--wide .gallery__visual { aspect-ratio: 16/9; }

  .gallery__caption { opacity: 1; }

  .form__row { grid-template-columns: 1fr; }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .press-bar__logos { gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav__logo-img { width: 90px; }
  .hero__logo-img { width: 160px; }
  .hero__tagline { font-size: 1.1rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn { padding: 0.8rem 1.8rem; }
  .section-heading { font-size: 2rem; }
  .pull-quote { font-size: 1.4rem; }
}
