/* CSS CUSTOM PROPERTIES */
:root {
  --black: #1a0a08;
  --burgundy: #531926;
  --green: #2d4a1e;
  --gold: #b8860b;
  --gold-light: #d4aa50;
  --gold-pale: #e8d5a0;
  --cream: #f5edd8;
  --parchment: #f0e2c8;
  --brown: #c4976a;
  --font-display: "Playfair Display", serif;
  --font-poetic: "IM Fell English", serif;
  --font-body: "Cormorant Garamond", serif;
  --font-label: "Montserrat", sans-serif;
  --border-gold: 1px solid rgba(184, 134, 11, 0.35);
  --gradient-gold: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}

/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* SVG dot texture overlay — fixed behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='1' fill='%23b8860b'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 24px 24px;
}

/* All sections sit above the dot overlay */
section,
nav,
footer {
  position: relative;
  z-index: 1;
}

/* SECTION BORDERS & DIVIDERS */
.section-border-top {
  border-top: 3px solid transparent;
  border-image: var(--gradient-gold) 1;
}

.vine-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 1.4rem 0;
}
.vine-rule::before,
.vine-rule::after {
  content: "";
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: var(--gradient-gold);
}
.vine-rule span {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

/* Section tag label */
.section-tag {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* General section padding */
.section-pad {
  padding: 100px 5vw;
}

/* Section header block (tag + heading + rule) */
.section-header {
  margin-bottom: 0;
}

/* Centred section wrapper */
.centred {
  text-align: center;
}

.max-w {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* SVG vine background mixin (applied per section) */
.vine-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 10 Q80 30 60 50 Q40 30 60 10Z' fill='%23b8860b'/%3E%3Cpath d='M20 60 Q40 40 60 60 Q40 80 20 60Z' fill='%23b8860b'/%3E%3Cpath d='M100 60 Q80 40 60 60 Q80 80 100 60Z' fill='%23b8860b'/%3E%3Cpath d='M60 70 Q80 90 60 110 Q40 90 60 70Z' fill='%23b8860b'/%3E%3Ccircle cx='60' cy='60' r='4' fill='%23b8860b'/%3E%3Cline x1='60' y1='10' x2='60' y2='110' stroke='%23b8860b' stroke-width='1'/%3E%3Cline x1='20' y1='60' x2='100' y2='60' stroke='%23b8860b' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 120px;
}

/* All content inside vine-bg needs z-index above the ::after */
.vine-bg > * {
  position: relative;
  z-index: 1;
}

/* TYPOGRAPHY HELPERS */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--gold-light);
  line-height: 1.15;
}

.italic-gold {
  font-style: italic;
  color: var(--gold-light);
}

p {
  font-family: var(--font-body);
  color: var(--cream);
  font-weight: 300;
}

/* CTA BUTTON — double border */
.btn-cta {
  position: relative;
  display: inline-block;
  padding: 14px 44px;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-decoration: none;
  border: 2px solid var(--gold);
  background: rgba(83, 25, 38, 0.6);
  cursor: pointer;
  transition: background 0.35s, color 0.35s;
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(184, 134, 11, 0.45);
  pointer-events: none;
  transition: border-color 0.35s;
}
.btn-cta:hover {
  background: var(--burgundy);
  color: var(--cream);
}
.btn-cta:hover::before {
  border-color: var(--gold);
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: linear-gradient(to bottom, rgba(26, 10, 8, 0.97), transparent);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a[aria-current="page"] {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(184, 134, 11, 0.6);
  padding-bottom: 2px;
}

/* HERO */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5vw 80px;
  overflow: hidden;
  background: radial-gradient(
      ellipse 62% 58% at 50% 64%,
      rgba(60, 8, 24, 0.98) 0%,
      rgba(40, 5, 15, 0.75) 48%,
      transparent 74%
    ),
    radial-gradient(
      ellipse 42% 38% at 72% 28%,
      rgba(120, 20, 45, 0.22) 0%,
      rgba(80, 10, 30, 0.1) 28%,
      transparent 68%
    ),
    radial-gradient(
      ellipse 90% 90% at 50% 50%,
      rgba(50, 5, 18, 0.7) 0%,
      transparent 100%
    ),
    #1a0408;
  background-attachment: fixed;
}

#hero::before {
  content: "";
  position: absolute;
  inset: -10% -6% auto;
  height: 78%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse 42% 34% at 50% 40%,
    rgba(212, 170, 80, 0.16) 0%,
    rgba(83, 25, 38, 0.18) 32%,
    transparent 72%
  );
  filter: blur(12px);
}

/* SVG vine overlay for hero */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cpath d='M80 10 Q110 40 80 70 Q50 40 80 10Z' fill='none' stroke='%23b8860b' stroke-width='1.5'/%3E%3Cpath d='M80 90 Q110 120 80 150 Q50 120 80 90Z' fill='none' stroke='%23b8860b' stroke-width='1.5'/%3E%3Cpath d='M10 80 Q40 50 70 80 Q40 110 10 80Z' fill='none' stroke='%23b8860b' stroke-width='1.5'/%3E%3Cpath d='M90 80 Q120 50 150 80 Q120 110 90 80Z' fill='none' stroke='%23b8860b' stroke-width='1.5'/%3E%3Ccircle cx='80' cy='80' r='5' fill='none' stroke='%23b8860b' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 140px 140px;
}

#hero > * {
  position: relative;
  z-index: 1;
  animation: heroReveal 1.1s ease-out both;
}

.hero-eyebrow {
  animation-delay: 0.08s;
}

.hero-crest {
  animation-delay: 0.18s;
}

.hero-ornament {
  animation-delay: 0.28s;
}

#hero-title {
  animation-delay: 0.38s;
}

.hero-subtitle {
  animation-delay: 0.55s;
}

.hero-date {
  animation-delay: 0.68s;
}

.btn-cta {
  animation-delay: 0.82s;
}

.hero-scroll-hint {
  animation-delay: 1s;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.hero-crest {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}

.hero-ornament {
  font-size: 1rem;
  letter-spacing: 0.6em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
}

.hero-title-la {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5.2rem, 16vw, 12rem);
  color: var(--gold-light);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-shadow: 0 0 90px rgba(184, 134, 11, 0.72),
    0 0 180px rgba(184, 134, 11, 0.32), 0 0 340px rgba(184, 134, 11, 0.16);
}

.hero-title-baronesa {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3.2rem, 9.5vw, 7.2rem);
  color: var(--gold-light);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-shadow: 0 0 70px rgba(184, 134, 11, 0.6),
    0 0 150px rgba(184, 134, 11, 0.28);
  margin-bottom: 1.6rem;
}

.hero-subtitle {
  font-family: var(--font-poetic);
  font-style: italic;
  font-size: 1.3rem;
  color: #f7ebd4;
  max-width: 620px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.hero-date {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f0dfb0;
  margin-bottom: 2.4rem;
  font-variant-numeric: oldstyle-nums;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 56px;
  left: 47%;
  transform: translateX(-50%);
  font-family: var(--font-poetic);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  max-width: calc(100vw - 48px);
  text-align: center;
  animation: floatDown 2.2s ease-in-out infinite;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes floatDown {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(7px);
  }
}

/* ABOUT / OUR STORY */
#about {
  background: var(--burgundy);
  padding: 100px 5vw;
}

#about .about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

#about h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.3rem;
}

#about p {
  margin-top: 1.1rem;
  font-size: 1.15rem;
  color: var(--parchment);
  font-style: italic;
}

#about > * {
  position: relative;
  z-index: 1;
}

/* EVENT DETAILS CARDS */
#details {
  background: var(--black);
  padding: 100px 5vw;
}

#details h2 {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 3rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  border: 1.5px solid rgba(184, 134, 11, 0.3);
  max-width: 900px;
  margin: 0 auto;
}

.detail-card {
  padding: 44px 32px;
  background: var(--black);
  border: 1.5px solid rgba(184, 134, 11, 0.3);
  text-align: center;
  transition: background 0.3s;
}
.detail-card:hover {
  background: rgba(83, 25, 38, 0.6);
}

.detail-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.detail-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.detail-card p {
  font-family: var(--font-poetic);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--parchment);
}

/* DRESS CODE */
#dress-code {
  background: radial-gradient(
    circle at 50% 15%,
    rgba(83, 25, 38, 0.45) 0%,
    var(--black) 75%
  );
  padding: 100px 5vw;
}

#dress-code h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.dress-code-panel {
  max-width: 820px;
  margin: 2.1rem auto 0;
  border: 1px solid rgba(184, 134, 11, 0.35);
  box-shadow: inset 0 0 0 1px rgba(184, 134, 11, 0.2);
  background: rgba(26, 10, 8, 0.68);
  padding: 38px 28px;
  text-align: center;
}

.dress-code-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  color: var(--gold-light);
}

.dress-code-rule {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.06rem;
  color: var(--parchment);
}

.dress-code-boards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.dress-board {
  display: block;
  border: 1px solid rgba(184, 134, 11, 0.45);
  background: rgba(83, 25, 38, 0.56);
  color: var(--gold-pale);
  text-decoration: none;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 12px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.dress-board:hover {
  background: rgba(83, 25, 38, 0.86);
  color: var(--gold-light);
  border-color: rgba(184, 134, 11, 0.75);
}

/* DINNER MENU */
#menu {
  background: var(--burgundy);
  padding: 100px 5vw;
}

#menu h2 {
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.3rem;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.menu-col {
  border: var(--border-gold);
  padding: 36px 28px;
  background: rgba(26, 10, 8, 0.4);
  position: relative;
}

.menu-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.menu-col-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 0.9rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.menu-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}
.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.menu-item-v {
  font-family: var(--font-poetic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
}

.menu-item-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--brown);
  margin-top: 0.2rem;
}

.menu-footer-note {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
}

/* WINE MENU */
#wine {
  background: linear-gradient(
      160deg,
      rgba(26, 46, 16, 0.9) 0%,
      rgba(14, 26, 9, 0.88) 40%,
      rgba(26, 10, 8, 0.94) 100%
    ),
    url("grapes-top.png") center / cover no-repeat;
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}

#wine::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: url("grapes-top.png") bottom center / cover no-repeat;
  transform: scaleY(-1);
  opacity: 0.16;
  filter: blur(1px) brightness(0.5);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

#wine > * {
  position: relative;
  z-index: 1;
}

#wine h2 {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.3rem;
}

/* Champagne panel */
.champagne-panel {
  border: var(--border-gold);
  max-width: 680px;
  margin: 3rem auto 0;
  padding: 32px 36px;
  background: rgba(26, 10, 8, 0.55);
  text-align: center;
}

.champagne-panel-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.champagne-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Wine columns */
.wine-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 3.5rem auto 0;
}

@media (max-width: 640px) {
  .wine-columns {
    grid-template-columns: 1fr;
  }
  .champagne-pair {
    grid-template-columns: 1fr;
  }
}

.wine-col-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--gold-light);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.4);
  margin-bottom: 1.4rem;
}

.wine-entry {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.12);
}
.wine-entry:last-child {
  border-bottom: none;
}

.wine-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
}

.wine-meta {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.15rem 0;
}

.wine-note {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--brown);
}

/* EVENING PROGRAMME */
#programme {
  background: var(--black);
  padding: 100px 5vw;
}

#programme h2 {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 3.5rem;
}

.programme-list {
  max-width: 800px;
  margin: 0 auto;
}

.programme-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
  position: relative;
  transition: padding-left 0.3s;
}
.programme-item:last-child {
  border-bottom: none;
}

.programme-item::before {
  content: "✦";
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.programme-item:hover::before {
  opacity: 1;
}

.prog-time {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  padding-top: 0.25rem;
}

.prog-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.prog-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--brown);
}

/* DISTINGUISHED GUESTS */
#guests {
  background: linear-gradient(160deg, var(--burgundy), #250410);
  padding: 100px 5vw;
  text-align: center;
}

#guests h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.3rem;
}

.guests-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.guest-card {
  width: 240px;
  border: var(--border-gold);
  padding: 40px 28px;
  background: rgba(26, 10, 8, 0.5);
  transition: background 0.3s;
}
.guest-card:hover {
  background: var(--burgundy);
}

.guest-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 1rem;
}

.guest-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.guest-title {
  font-family: var(--font-label);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* AWARDS */
#awards {
  background: var(--black);
  padding: 100px 5vw;
}

#awards h2 {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 3.2rem;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1060px;
  margin: 0 auto;
}

.award-card {
  border: var(--border-gold);
  padding: 40px 28px;
  background: rgba(26, 10, 8, 0.3);
  position: relative;
  text-align: center;
}

.award-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.award-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
}

.award-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.award-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--brown);
}

/* TICKETS */
#tickets {
  background: linear-gradient(160deg, #531926, #250410 60%, #1a0a08);
  padding: 110px 5vw;
  text-align: center;
}

#tickets h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.3rem;
}

.tickets-para {
  font-family: var(--font-poetic);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--parchment);
  max-width: 600px;
  margin: 1.8rem auto 2.4rem;
  line-height: 1.8;
}

.tickets-deadline {
  margin-top: 2rem;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
}

/* FOOTER */
footer {
  background: linear-gradient(to bottom, #12080a, #080304 60%, #040102);
  padding: 70px 5vw 50px;
  text-align: center;
  border-top: 3px solid transparent;
  border-image: var(--gradient-gold) 1;
}

.footer-flourish {
  font-size: 1.4rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.6rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.6rem;
}

.footer-meta {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.2rem;
}

.footer-links {
  margin-bottom: 1.8rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-pale);
  text-decoration: none;
  margin: 0 0.7rem;
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.65;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .menu-columns {
    grid-template-columns: 1fr;
  }
  .programme-item {
    grid-template-columns: 90px 1fr;
    gap: 1rem;
  }
  .nav-links {
    gap: 1.4rem;
  }
  .champagne-pair {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-links {
    display: none;
  }
}
