/* ============================================================
   VIBEYARD — Site Styles
   Fonts: Special Elite (headings), Source Code Pro (body/nav)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Source+Code+Pro:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --gold:              #ab8c52;
  --gold-hover:        #806430;
  --gold-light:        #e8d4ae;
  --text:              #212121;
  --text-light:        #646464;
  --black:             #000000;
  --white:             #ffffff;
  --bg-alt:            #f7f9fa;
  --border:            #f0f0f0;
  --border-dark:       #bdbdbd;

  --font-heading:      'Special Elite', serif;
  --font-body:         'Source Code Pro', monospace;

  --header-h:          72px;
  --outer:             50px;
  --gutter:            28px;
  --max-w:             1200px;
  --radius:            0px;
  --transition:        0.2s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: calc(var(--max-w) + var(--outer) * 2);
  margin-inline: auto;
  padding-inline: var(--outer);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--dark   { background: var(--text);  color: var(--white); }
.btn--dark:hover { background: #3b3b3b; }
.btn--gold   { background: var(--gold);  color: var(--white); }
.btn--gold:hover { background: var(--gold-hover); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); }
.btn--white   { background: var(--white); color: var(--text); }
.btn--white:hover { background: #e8e8e8; }
.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  height: 46px;
  box-sizing: border-box;
}
.btn--outline-dark:hover { background: var(--text); color: var(--white); }

/* ── Announcement Banner — hidden ─────────────────────────── */
.banner { display: none; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: clamp(26px, 3.5vw, 38px); width: auto; display: block; object-fit: contain; }
.nav__logo-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}
.nav__item--dropdown > a:not([href]) {
  cursor: default;
}
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 0;
  list-style: none;
  padding: 0.25rem 0;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  /* invisible top padding bridges the gap so hover doesn't break */
  margin-top: 0;
}
.nav__item--dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}
.nav__dropdown li a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.nav__dropdown li a:hover {
  background: var(--bg-alt);
  color: var(--gold);
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  display: block;
}
/* Mobile: dropdown inline */
@media (max-width: 600px) {
  .nav__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0.25rem 0.75rem;
    margin-top: 0.25rem;
    display: none;
  }
  .nav__item--dropdown.open .nav__dropdown { display: block; }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1510;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero__content { z-index: 1; }
.hero__sound {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.hero__sound:hover { background: rgba(0,0,0,0.7); }
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 var(--outer);
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 0 24px rgba(0,0,0,0.5);
}
.hero__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 480px;
  margin-inline: auto;
}
.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.visit-dropdown {
  position: relative;
  display: inline-block;
}
.visit-dropdown__btn {
  cursor: pointer;
  border: none;
}
.visit-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  list-style: none;
  padding: 0.25rem 0;
  z-index: 300;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  margin-top: 0;
  min-width: 0;
}
.visit-dropdown__menu li a {
  display: block;
  padding: 0.45rem 1.25rem;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.visit-dropdown__menu li a:hover {
  background: var(--bg-alt);
  color: var(--gold);
}
.visit-dropdown:hover .visit-dropdown__menu,
.visit-dropdown.open .visit-dropdown__menu {
  display: block;
}
.hero__btns .btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 15px 36px;
  line-height: 1;
  height: 52px;
  box-sizing: border-box;
}
.visit-dropdown { display: inline-flex; align-items: stretch; }
.visit-dropdown__btn { height: 52px; box-sizing: border-box; line-height: 1; }

/* ── Partner Logos — scrolling marquee ────────────────────── */
.partners {
  padding: 24px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners__label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1.2rem;
}
.partners__track-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.partners__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  pointer-events: none;
}

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

.partners__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── Features / Benefits ──────────────────────────────────── */
.features {
  padding: 55px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.feature__icon { font-size: 1.4rem; margin-bottom: 0.8rem; }
.feature__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.feature__desc {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Products Grid ────────────────────────────────────────── */
.products {
  padding: 60px 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

/* ── Product Card ─────────────────────────────────────────── */
.card { display: flex; flex-direction: column; }
.card__img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.card:hover .card__img img { transform: scale(1.04); }
.card__add {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 12px;
  background: var(--text);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.22s ease, background var(--transition);
}
.card:hover .card__add { transform: translateY(0); }
.card__add:hover { background: #3b3b3b; }
.card__body { padding: 14px 0 0; flex: 1; }
.card__type {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}
.card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.card__price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ── Process Section ──────────────────────────────────────── */
.process { background: var(--white); }
.process__intro {
  padding: 70px 0 50px;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.process__intro .section-eyebrow { display: block; margin-bottom: 0.8rem; }
.process__intro .section-title { margin-bottom: 1.5rem; }
.process__intro-body {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
}
.process__block {
  position: relative;
  overflow: hidden;
}
.process__block img {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  object-fit: cover;
  display: block;
}
.process__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.5));
  color: var(--white);
  padding: 2rem var(--outer);
}
.process__caption p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 0 24px rgba(0,0,0,0.5);
}
.process__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.process__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Brand Story ──────────────────────────────────────────── */
.story {
  background: var(--bg-alt);
  overflow: hidden;
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}
.story__text {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.story__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.story__body {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.story__img {
  overflow: hidden;
  position: relative;
}
.story__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

/* ── Newsletter ───────────────────────────────────────────── */
.newsletter {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.newsletter .container { padding: 0 var(--outer); }
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 28px 0;
  flex-wrap: wrap;
}
.newsletter__img { display: none; }
.newsletter__text {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__eyebrow { display: none; }
.newsletter__title {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  margin: 0;
}
.newsletter__sub { display: none; }
.newsletter__form { display: flex; width: 280px; }
.newsletter__input {
  width: 100%;
  flex: none;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.05em;
  border: 1px solid #aaa;
  border-right: none;
  background: var(--white);
  color: var(--text);
  outline: none;
}
.newsletter__input::placeholder { color: var(--text-light); }
.newsletter__input:focus { border-color: var(--text); }
.newsletter__insta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}
.newsletter__insta svg {
  opacity: 0.6;
  flex-shrink: 0;
}
.newsletter__insta-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.newsletter__insta-links a {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  text-transform: lowercase;
  transition: color var(--transition);
}
.newsletter__insta-links a:hover { color: var(--gold); }
.newsletter__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border);
}
.newsletter__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: opacity var(--transition);
}
.newsletter__socials a:hover { opacity: 0.5; }

.venue-social-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.venue-social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: opacity var(--transition);
}
.venue-social-bar a:hover { opacity: 0.5; }

/* ── Floating Trade Enquiry CTA ───────────────────────────── */
.floating-trade-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border: 1.5px solid var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition: background 0.2s, color 0.2s;
}
.floating-trade-cta:hover {
  background: var(--text);
  color: var(--white);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 36px 0 20px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
}
.footer__social { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__social a {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: lowercase;
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--gold); }
.footer__contact {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.footer__contact a { color: var(--text); text-decoration: underline; }
.footer__contact a:hover { color: var(--gold); }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.5rem;
  list-style: none;
}
.footer__links a {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-light);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--text); }
.footer__email { font-size: 11px; color: var(--text-light); }
.footer__email a { color: var(--text); }
.footer__email a:hover { color: var(--gold); }
.footer__copy {
  font-size: 11px;
  color: var(--border-dark);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  width: 100%;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ── Age Gate ─────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 15, 10, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.age-gate.hidden { display: none; }
.age-gate__box {
  background: var(--white);
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.age-gate__logo {
  height: 32px;
  width: auto;
  margin-bottom: 0.5rem;
}
.age-gate__tagline {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
}
.age-gate__question {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: var(--text);
  line-height: 1.3;
}
.age-gate__note {
  font-size: 0.78rem;
  color: var(--text-light);
  max-width: 300px;
  line-height: 1.6;
}
.age-gate__btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }

/* ── Buy Dropdown ─────────────────────────────────────────── */
.buy-dropdown { position: relative; display: inline-block; }
.buy-dropdown__btn { cursor: pointer; height: 46px; box-sizing: border-box; }
.buy-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  list-style: none;
  padding: 0.25rem 0;
  z-index: 200;
  margin-top: 0;
}
.buy-dropdown:hover .buy-dropdown__menu,
.buy-dropdown.open .buy-dropdown__menu { display: block; }
.buy-dropdown__menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  gap: 1rem;
  transition: background var(--transition);
}
.buy-dropdown__menu li a:hover { background: var(--bg-alt); }
.buy-dropdown__flag { font-size: 14px; margin-right: 4px; }
.buy-dropdown__price {
  color: var(--text-light);
  font-size: 10px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ── Product Detail Page ──────────────────────────────────── */
.product-page { padding: 60px 0 80px; }
.product-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.product-page__gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.product-page__gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #ffffff;
}
.product-page__breadcrumb {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.product-page__breadcrumb a { color: var(--text-light); }
.product-page__breadcrumb a:hover { color: var(--text); }
.product-page__type {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.product-page__name {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.product-page__price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.product-page__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.product-page__label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.6rem;
  display: block;
}
.product-page__variants {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.variant-btn {
  padding: 9px 18px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}
.variant-btn:hover, .variant-btn.active { background: var(--text); color: var(--white); border-color: var(--text); }
.variant-btn.sold-out { opacity: 0.45; cursor: not-allowed; text-decoration: line-through; }
.product-page__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.product-page__specs {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.product-page__specs h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td {
  padding: 6px 0;
  font-size: 0.84rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.specs-table td:first-child {
  font-weight: 500;
  color: var(--text);
  width: 45%;
  letter-spacing: 0.04em;
}
.specs-table td:last-child { color: var(--text-light); }

/* ── Collection / Shop Page ───────────────────────────────── */
.collection-hero {
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.collection-hero .section-title { margin-top: 0.6rem; }
.collection-hero__img {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  margin-top: 36px;
}
.collection-hero__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 600px) {
  .collection-hero__img { height: 280px; }
}

/* ── Process Page ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #1a1510;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem var(--outer);
  width: 100%;
}
.page-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.6rem;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-page { padding: 70px 0; }
.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-page__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.contact-page__sub {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-page__email {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold);
  display: block;
  margin-top: 1rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  border: 1px solid var(--border-dark);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--text); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-check { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 1.2rem; }
.form-check input { margin-top: 3px; accent-color: var(--text); }
.form-check label { font-size: 0.88rem; color: var(--text-light); }

/* ── Events Page ──────────────────────────────────────────── */
.events-page { padding: 70px 0; }
.events-empty {
  text-align: center;
  padding: 80px 0;
}
.events-empty p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ── Venue Pages ──────────────────────────────────────────── */
.venue-gallery {
  width: 100%;
  padding: 3rem 4rem 2.5rem;
  background: var(--white);
}
.venue-gallery__label {
  display: flex;
  flex-direction: column;
}
.venue-gallery__pre,
.venue-gallery__post {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
}
.venue-gallery__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--text);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  margin: 0.5rem 0;
  display: inline-block;
  display: inline-block;
}
@media (max-width: 700px) {
  .venue-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }
  .venue-gallery__item { height: 50vw; min-height: 240px; }
  .venue-gallery__label { bottom: 1.5rem; left: 1.5rem; }
}

.venue-hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
}
.venue-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 3rem 4rem;
}
.venue-hero__card {
  background: var(--white);
  padding: 1.6rem 2rem;
  max-width: 400px;
}
.venue-hero__pre,
.venue-hero__post {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  display: block;
}
.venue-hero__title {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--text);
  color: var(--white);
  padding: 0.25rem 0.65rem;
  margin: 0.55rem 0;
}
.venue-hero__badge {
  background: var(--text);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  align-self: flex-end;
}
/* Reusable venue tag block */
.venue-tag {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
}
.venue-tag-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.4rem;
}
.venue-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.5rem;
}
.venue-name-tag {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.25rem;
}
/* Welcome section */
.venue-welcome { overflow: hidden; }
.venue-welcome__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.venue-welcome__text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.venue-welcome__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--text);
  margin-bottom: 1.25rem;
}
.venue-welcome__text p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 0.9rem;
}
.venue-welcome__img {
  overflow: hidden;
  position: relative;
}
.venue-welcome__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Event Formats section */
.venue-formats {
  padding: 0;
  background: var(--bg-alt);
}
.venue-formats__hdr {
  text-align: center;
  padding: 60px 0 3rem;
  margin-bottom: 0;
}
.venue-formats__hdr h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 0.6rem;
}
.venue-formats__hdr p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-light);
}
/* Wine Only row */
.venue-format-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--white);
  margin-bottom: 0;
}
.venue-format-row__text {
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.venue-format-row__label { margin-bottom: 2rem; }
.venue-format-row__img {
  overflow: hidden;
  position: relative;
  min-height: 520px;
}
.venue-format-row__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-list {
  list-style: disc;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.venue-list li {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text);
}
.venue-list--star { list-style: none; padding-left: 0; }
.venue-list--star li::before { content: '✳  '; color: var(--gold); }
/* Food & Wine block */
.venue-food {
  background: var(--white);
  padding: 0;
}
.venue-food__hdr {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.venue-food__desc {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 380px;
  padding-top: 0.4rem;
}
.venue-food__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
/* Pricing cards */
.venue-pricing-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.venue-card {
  border: 1px solid var(--border-dark);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.venue-card--dark {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.venue-card__lbl {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.venue-card--dark .venue-card__lbl { color: rgba(255,255,255,0.5); }
.venue-card__item {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
}
.venue-card__plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 0.2rem 0;
}
.venue-card__note {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 0.4rem;
}
.venue-card--dark .venue-card__note { color: rgba(255,255,255,0.6); }
.venue-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-top: auto;
  padding-top: 1rem;
  line-height: 1;
}
.venue-card__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.venue-card--dark .venue-card__price small { color: rgba(255,255,255,0.5); }
.venue-food__photo {
  overflow: hidden;
  position: relative;
  min-height: 420px;
}
.venue-food__inner .venue-pricing-pair {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background: var(--white);
}
.venue-food__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-notes {
  background: none;
  color: var(--text-light);
  padding: 0.75rem 0;
  font-size: 0.78rem;
  line-height: 1.6;
  margin-top: 1rem;
}
.venue-notes strong {
  letter-spacing: 0.18em;
  margin-right: 0.75rem;
  font-size: 9px;
  text-transform: uppercase;
}
/* Guided tasting add-on */
.venue-addon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  margin-top: 0;
}
.venue-addon__img {
  overflow: hidden;
  position: relative;
}
.venue-addon__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-addon__content {
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-alt);
}
.venue-addon__lbl {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.venue-addon__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text);
  margin: 0.4rem 0 1rem;
}
.venue-addon__body {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}
.venue-addon__price-box {
  margin-top: 2rem;
}
.venue-addon__amt {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text);
  line-height: 1;
}
.venue-addon__pp {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}
@media (max-width: 960px) {
  .venue-addon { grid-template-columns: 1fr; }
  .venue-addon__img { min-height: 320px; position: relative; order: 1; }
  .venue-addon__content { padding: 48px 36px; order: 2; }
}
/* Music & Sound */
.venue-music { overflow: hidden; }
.venue-music__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.venue-music__img {
  overflow: hidden;
  position: relative;
}
.venue-music__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-music__text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.venue-music__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--text);
  margin: 0.5rem 0 1.75rem;
}
.venue-music__text p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1rem;
}
/* Booking section */
.venue-booking {
  padding: 60px 0 80px;
  background: var(--bg-alt);
}
.venue-booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.venue-booking__col > * { margin-bottom: 1rem; }
.venue-booking__subtitle {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--text);
  margin: 0.4rem 0 1.5rem;
}
.venue-booking__col p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text);
}
.venue-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.venue-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.venue-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
}
.venue-input {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border-dark);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}
.venue-input:focus { border-color: var(--text); }
.venue-input::placeholder { color: var(--text-light); }
.venue-textarea {
  resize: vertical;
  min-height: 110px;
}

/* Venue responsive */
@media (max-width: 960px) {
  .venue-welcome__inner,
  .venue-format-row,
  .venue-food__inner,
  .venue-music__inner,
  .venue-booking__grid { grid-template-columns: 1fr; }
  .venue-welcome__img,
  .venue-format-row__img,
  .venue-food__photo,
  .venue-music__img { min-height: 320px; position: relative; }
  .venue-welcome__text,
  .venue-format-row__text,
  .venue-music__text { padding: 48px 36px; }
  .venue-format-row__img { order: 1; }
  .venue-format-row__text { order: 2; }
  .venue-booking__grid { gap: 3rem; }
  .venue-hero__overlay { padding: 2rem; }
  .venue-hero__badge { display: none; }
  .venue-food__hdr { flex-direction: column; gap: 1rem; }
}
@media (max-width: 600px) {
  .venue-pricing-pair { grid-template-columns: 1fr; }
  .venue-addon { flex-direction: column; align-items: flex-start; }
  .venue-hero { height: 70vh; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --outer: 30px; --gutter: 20px; }
  .products__grid          { grid-template-columns: repeat(2, 1fr); }
  .story__inner            { grid-template-columns: 1fr; height: auto; }
  .story__img              { order: -1; min-height: 480px; height: 480px; }
  .story__text             { padding: 48px 36px; }

  .newsletter__inner       { gap: 1rem; }
  .newsletter__text        { gap: 1rem; }
  .features__grid          { gap: 1.5rem; }
  .process__block img      { height: 55vh; }
  .product-page__inner     { grid-template-columns: 1fr; gap: 2rem; }
  .product-page__gallery   { position: static; }
  .contact-page__inner     { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  :root { --outer: 24px; --gutter: 16px; --header-h: 60px; }
  .nav__links          { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem var(--outer);
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    z-index: 100;
  }
  .nav__toggle         { display: flex; position: absolute; right: var(--outer); }
  .nav                 { justify-content: center; position: relative; }
  .nav__logo           { margin: 0 auto; }
  .features__grid      { grid-template-columns: 1fr; }
  .products__grid      { grid-template-columns: 1fr; }
  .hero__btns          { flex-direction: row; justify-content: center; flex-wrap: nowrap; gap: 0.6rem; }
  .hero__btns .btn     { flex: 1 1 0; min-width: 0; padding: 10px 8px; font-size: 11px; height: 36px; }
  .hero__btns .visit-dropdown { flex: 1 1 0; min-width: 0; }
  .hero__btns .visit-dropdown .visit-dropdown__btn { width: 100%; height: 36px; padding: 10px 8px; box-sizing: border-box; }
  .product-page__cta   { flex-wrap: nowrap; gap: 0.6rem; }
  .product-page__cta .buy-dropdown { flex: 1 1 0; min-width: 0; display: flex; }
  .product-page__cta .buy-dropdown .buy-dropdown__btn { width: 100%; height: 36px; padding: 10px 8px; }
  .product-page__cta .btn--outline-dark { flex: 1 1 0; min-width: 0; height: 36px; padding: 10px 8px; text-align: center; }
  .newsletter__inner        { flex-direction: column; align-items: center; padding: 20px 16px; gap: 0.5rem; }
  .newsletter__text         { flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; width: 100%; }
  .newsletter__form         { flex-direction: column; width: 100%; max-width: 260px; margin: 0 auto; gap: 0.4rem; }
  .newsletter__input        { flex: unset; width: 100%; padding: 9px 12px; font-size: 11px; border-right: 1px solid #aaa; }
  .newsletter__form .btn    { width: 100%; justify-content: center; }
  .newsletter__insta        { display: none; }
  .newsletter__socials      { display: none; }
  .process__block img  { height: 45vw; min-height: 260px; }
  .story__img          { min-height: 360px; height: 360px; }

  /* Hide hover-only "View Product" overlay — no hover on touch */
  .card__add { display: none; }

  /* Bump all text 1pt larger for readability */
  body { font-size: 17px; }
  p, li, td, label, input, textarea, select { font-size: 1em; }
}
@media (max-width: 480px) {
  .story__img { min-height: 280px; height: 280px; }
  .venue-format-row__text,
  .venue-music__text { padding: 36px 20px; }
  .venue-food__inner .venue-pricing-pair { padding: 32px 20px; }
  .venue-booking { padding: 40px 0 56px; }
  .venue-format-row__img,
  .venue-food__photo,
  .venue-music__img { min-height: 260px; }
  .venue-addon__content { padding: 40px 20px; }
}

/* ── Events Page ──────────────────────────────────────────── */
.events-page { padding: 60px 0 80px; }
.events-page .section-header { margin-bottom: 48px; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.event-card--link { text-decoration: none; color: inherit; }
.event-card--link:hover { opacity: 0.9; }
.event-card {
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.event-card__img {
  overflow: hidden;
  background: var(--bg-alt);
}
.event-card__img img {
  width: 100%;
  height: auto;
  display: block;
}
.event-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card__img--placeholder span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.event-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.event-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.event-card__date {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.event-card__tag {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--text);
  color: var(--white);
  padding: 3px 8px;
}
.event-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}
.event-card__venue {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.event-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.event-card__time {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: auto;
}
.event-card__footer {
  padding: 0 24px 24px;
}

.events-section-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.events-past { margin-top: 64px; opacity: 0.7; }

.event-card__presenter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
  text-decoration: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.event-card__presenter:hover { color: var(--text); }
.event-card__presenter-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; }
  .event-card__img { height: 220px; }
}
