/* ============================================================
   YE OLDE COLLEGE INN — Global Stylesheet
   Brand Palette: Navy #0B2F5B · Dark Red #8B0000 · Parchment #EDE6D8
   ============================================================ */

:root {
  --parchment:    #EDE6D8;
  --parchment-lt: #F5F0E8;
  --navy:         #0B2F5B;
  --navy-mid:     #154063;
  --navy-light:   #1A5276;
  --red:          #8B0000;
  --red-warm:     #5A2B1C;
  --gold:         #C4A35A;
  --gold-light:   #D4B96E;
  --body-dark:    #2C2C2C;
  --body-mid:     #605E5B;
  --white:        #FFFFFF;
  --border:       rgba(11,47,91,0.12);
  --shadow:       rgba(11,47,91,0.08);
  --radius:       4px;
  --transition:   0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--parchment);
  color: var(--body-dark);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45;
}

body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', serif;
  color: var(--navy);
  line-height: 1.25;
}

.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--red); }

.section-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--body-mid);
  max-width: 600px;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139,0,0,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ── TOP ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: ticker 35s linear infinite;
}

.announcement-item {
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--parchment);
}

.announcement-sep { color: var(--gold); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAVIGATION ── */
.nav-wrap {
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(237,230,216,0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
}

.nav-logo {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo span {
  font-style: italic;
  font-size: 1.3em;
  color: var(--navy-mid);
}

.nav-logo small {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.45rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--body-mid);
  font-style: normal;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
  font-size: 0.62rem !important;
}

.nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* ── HERO SECTION ── */
.hero {
  background: var(--navy);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 65%, rgba(139,0,0,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 35%, rgba(21,64,99,0.45) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(to right, var(--navy), var(--red) 35%, var(--gold) 50%, var(--red) 65%, var(--navy));
  z-index: 2;
}

.hero > * { position: relative; z-index: 1; }

.hero .eyebrow {
  color: rgba(237,230,216,0.5);
  margin-bottom: 1rem;
  animation: fadeUp 0.6s ease forwards 0.1s;
  opacity: 0;
}

.hero-logo {
  max-width: clamp(320px, 50vw, 600px);
  height: auto;
  margin: 0 auto 0.5rem;
  filter: brightness(0) invert(0.92);
  animation: fadeUp 0.8s ease forwards 0.2s;
  opacity: 0;
}

.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.95;
  color: var(--parchment);
  animation: fadeUp 0.8s ease forwards 0.2s;
  opacity: 0;
}

.hero-title span {
  display: block;
  font-style: italic;
  font-size: 0.72em;
  color: #C8D8EC;
}

.hero-tagline {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(237,230,216,0.45);
  margin: 0.8rem 0 2rem;
  animation: fadeUp 0.7s ease forwards 0.35s;
  opacity: 0;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 450px;
  margin: 0 auto 2rem;
  animation: fadeUp 0.7s ease forwards 0.45s;
  opacity: 0;
}

.hero-rule-line { flex: 1; height: 1px; background: rgba(237,230,216,0.18); }
.hero-rule-fleur { color: var(--gold); font-size: 1.2rem; }

.hero-desc {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.85;
  color: rgba(237,230,216,0.75);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s ease forwards 0.55s;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease forwards 0.65s;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(139,0,0,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(21,64,99,0.4) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(to right, var(--navy), var(--red) 35%, var(--gold) 50%, var(--red) 65%, var(--navy));
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero .eyebrow { color: rgba(237,230,216,0.5); }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.page-hero h1 em { color: #C8D8EC; }

.page-hero p {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: rgba(237,230,216,0.65);
  max-width: 550px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ── SECTIONS ── */
.section {
  padding: 5rem 0;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-fleur { color: var(--gold); font-size: 1rem; }

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--red-warm);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: '\201C';
  position: absolute;
  top: -2.5rem;
  left: 1rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 14rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.quote-band > * { position: relative; z-index: 1; }

.quote-text {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  line-height: 1.7;
  color: var(--parchment);
  max-width: 720px;
  margin: 0 auto 1.2rem;
}

.quote-attr {
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(237,230,216,0.55);
}

/* ── CARD STYLES ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: 0 6px 24px rgba(11,47,91,0.14);
  transform: translateY(-3px);
}

/* ── GRID LAYOUTS ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ── HOURS TABLE ── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 0.8rem 0;
  font-size: 0.9rem;
}

.hours-table td:first-child {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--navy);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--body-mid);
}

/* ── INFO BAND ── */
.info-band {
  background: var(--navy);
  padding: 4rem 0;
}

.info-band .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.info-block {
  text-align: center;
}

.info-block h3 {
  color: var(--parchment);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.info-block p {
  color: rgba(237,230,216,0.65);
  font-size: 0.9rem;
  line-height: 1.8;
}

.info-block a {
  color: var(--gold);
}
.info-block a:hover {
  color: var(--gold-light);
}

/* ── FEATURED CARD (media) ── */
.featured-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--navy);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 14px var(--shadow);
  transition: all var(--transition);
}

.featured-card:hover {
  box-shadow: 0 6px 28px rgba(11,47,91,0.16);
  border-left-color: var(--red);
  transform: translateY(-2px);
}

.featured-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.badge {
  display: inline-block;
  font-weight: 800;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--parchment);
  padding: 3px 10px;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.featured-source {
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body-mid);
  margin-bottom: 0.3rem;
}

.featured-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.featured-desc {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--body-mid);
  margin-bottom: 1rem;
}

/* ── MEDIA CARDS ── */
.media-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 1px 8px var(--shadow);
  transition: all var(--transition);
}

.media-card:hover {
  box-shadow: 0 4px 20px rgba(11,47,91,0.14);
  transform: translateY(-3px);
  border-color: rgba(11,47,91,0.25);
}

.tag {
  display: inline-block;
  font-weight: 800;
  font-size: 0.56rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
}

.tag-tv    { background: var(--navy);     color: var(--white); }
.tag-video { background: var(--red);      color: var(--white); }
.tag-pod   { background: var(--red-warm); color: var(--parchment); }
.tag-art   { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.tag-rev   { background: transparent; color: var(--red);  border: 1px solid var(--red); }

.media-source {
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.media-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.42;
  margin-bottom: 0.5rem;
}

.media-desc {
  font-size: 0.85rem;
  line-height: 1.72;
  color: var(--body-mid);
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 1px;
  transition: all var(--transition);
}

.card-link::after { content: '\2192'; }
.card-link:hover { color: var(--red); border-color: var(--red); gap: 0.6rem; }

/* ── TIMELINE ── */
.timeline-section {
  background: var(--navy);
  padding: 5rem 0;
}

.timeline-section .eyebrow { color: #C8D8EC; }
.timeline-section .section-title { color: var(--parchment); }
.timeline-section .section-title em { color: #C8D8EC; }

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 5px; bottom: 5px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(200,216,236,0.35) 8%, rgba(200,216,236,0.35) 92%, transparent);
}

.tl-item { position: relative; margin-bottom: 2.2rem; }
.tl-item:last-child { margin-bottom: 0; }

.tl-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.4rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--parchment);
  transform: translateX(-4px);
}

.tl-year {
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.tl-text {
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(237,230,216,0.72);
}

.tl-text strong { color: var(--parchment); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  border-top: 3px solid var(--red);
}

.footer-main {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-brand .nav-logo,
.footer-brand .nav-logo span {
  color: var(--parchment);
}

.footer-brand .nav-logo small {
  color: rgba(237,230,216,0.45);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(237,230,216,0.6);
  max-width: 320px;
}

.footer h4 {
  color: var(--parchment);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(237,230,216,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(237,230,216,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(237,230,216,0.3);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(237,230,216,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237,230,216,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── MENU PAGE ── */
.menu-category {
  margin-bottom: 3rem;
}

.menu-category h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.menu-category-desc {
  font-style: italic;
  color: var(--body-mid);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px dotted var(--border);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--body-mid);
  margin-top: 0.15rem;
  line-height: 1.5;
}

.menu-item-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  white-space: nowrap;
  margin-left: 1.5rem;
}

.menu-price {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--red);
  margin-left: 0.6rem;
}

.menu-price::before {
  content: '$';
}

/* ── GALLERY PAGE ── */
.photo-gallery {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

@media (max-width: 900px) {
  .photo-gallery { columns: 2; }
}

@media (max-width: 550px) {
  .photo-gallery { columns: 1; max-width: 500px; margin: 0 auto; }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11, 47, 91, 0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--parchment);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(237, 230, 216, 0.1);
  border: 1px solid rgba(237, 230, 216, 0.2);
  color: var(--parchment);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s;
  line-height: 1;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(237, 230, 216, 0.25); }

/* ── EVENTS PAGE ── */
.event-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.event-feature {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
}

.event-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.event-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.event-feature p {
  font-size: 0.88rem;
  color: var(--body-mid);
  line-height: 1.7;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.contact-info h3:first-child { margin-top: 0; }

.contact-info p {
  font-size: 0.9rem;
  color: var(--body-mid);
  line-height: 1.7;
}

.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
  margin-top: 1rem;
}

.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--body-dark);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--navy);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form .btn { margin-top: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--parchment);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.2rem;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    z-index: 105;
  }

  .nav-links.open { right: 0; }

  .nav-toggle { display: block; }

  .featured-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .featured-icon { display: none; }

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

  .hero { padding: 4rem 1.5rem 3.5rem; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-desc { margin: 0 auto; }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .container { padding: 0 1.25rem; }
}

/* ── AS FEATURED ON BAND ── */
.media-badges-band {
  background: var(--navy);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(196,163,90,0.2);
  border-bottom: 1px solid rgba(196,163,90,0.2);
}

.media-badges-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.85rem;
}

.media-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.media-badge {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.82rem;
  color: rgba(237,230,216,0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  white-space: nowrap;
}

.media-badge:hover { color: var(--gold); }

.media-badge-sep {
  color: rgba(196,163,90,0.4);
  font-size: 0.7rem;
}

@media (max-width: 600px) {
  .media-badge-sep { display: none; }
  .media-badge { font-size: 0.78rem; }
}

/* ── SEED OIL FREE SECTION ── */
.seed-oil-section {
  background: var(--navy);
  padding: 4.5rem 0;
}

.seed-oil-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.seed-oil-badge {
  font-size: 5rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.seed-oil-content h2 {
  color: var(--parchment);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}

.seed-oil-content h2 em { color: var(--gold); }

.seed-oil-content p {
  color: rgba(237,230,216,0.7);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 560px;
}

@media (max-width: 600px) {
  .seed-oil-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .seed-oil-badge { font-size: 3.5rem; }
  .seed-oil-content p { max-width: 100%; }
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--parchment-lt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--body-mid);
  line-height: 1.8;
  flex: 1;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── VISITING NEW ORLEANS ── */
.visit-nola-section { background: var(--parchment); }

.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.visit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border-left: 4px solid var(--navy);
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.visit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(11,47,91,0.12);
}

.visit-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.visit-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.visit-card p {
  font-size: 0.87rem;
  color: var(--body-mid);
  line-height: 1.75;
}

/* ── INSTAGRAM SECTION ── */
.instagram-section {
  background: var(--navy);
  padding: 5rem 0;
}

.instagram-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.instagram-text h2 {
  color: var(--parchment);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.instagram-text h2 em { color: var(--gold); }

.instagram-text p {
  color: rgba(237,230,216,0.7);
  font-size: 0.95rem;
  line-height: 1.85;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}

.instagram-tile {
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  position: relative;
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.85);
}

.instagram-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

@media (max-width: 768px) {
  .instagram-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .instagram-grid { gap: 4px; }
}
