/* =========================================================
   Showbiz International — VIP Events & Experiences
   Gold on black, editorial luxury
   ========================================================= */

:root {
  --bg: #0a0907;
  --bg-elev: #14110d;
  --surface: #1a1612;
  --line: rgba(201, 162, 74, 0.18);
  --line-strong: rgba(201, 162, 74, 0.42);

  --gold: #c9a24a;
  --gold-bright: #e8c878;
  --gold-deep: #8a6f2e;

  --text: #f5f1e8;
  --text-dim: #b8b0a0;
  --text-muted: #7a7468;

  --font-display: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Switzer", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 2px;
  --max-width: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-lift: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--bg); }

/* Typography ------------------------------------------------ */

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--text);
}

h1 { font-size: clamp(3.2rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.05; }
h3 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); line-height: 1.15; }
h4 { font-size: 1.25rem; line-height: 1.3; }

.display-italic { font-style: italic; color: var(--gold-bright); }

p { color: var(--text-dim); max-width: 60ch; }
p.lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
  max-width: 52ch;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}

/* Navigation ------------------------------------------------ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.4rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 9, 7, 0.78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
}

.brand-mark { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
  /* Keep the gold mark crisp when scaled down */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  user-select: none;
  -webkit-user-drag: none;
}

.brand--foot .brand-logo { height: 44px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.35rem;
}

/* Screen-reader-only helper */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s var(--ease);
  position: relative;
}

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

.nav-cta { display: inline-flex; }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

@media (max-width: 720px) {
  .nav-inner { gap: 1rem; }
  a.btn.nav-cta { display: none; }
  .brand-name { font-size: 1.1rem; }
  .brand-tag { font-size: 0.55rem; letter-spacing: 0.28em; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-logo { height: 32px; }
  .brand--foot .brand-logo { height: 38px; }
}

/* Buttons --------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 14px 38px -12px rgba(201, 162, 74, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn svg { width: 15px; height: 15px; }

@media (max-width: 720px) {
  .btn { font-size: 0.7rem; letter-spacing: 0.16em; padding: 0.9rem 1.1rem; }
  .hero-ctas { width: 100%; flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-ctas .btn { justify-content: center; }
}

/* Sticky WhatsApp FAB -------------------------------------- */

.fab {
  position: fixed;
  bottom: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.25rem, 3vw, 2rem);
  z-index: 40;
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.4rem 0.9rem 1rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(232, 200, 120, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px -10px rgba(201, 162, 74, 0.5), 0 0 0 1px var(--gold-bright);
}

.fab svg { width: 20px; height: 20px; }

@media (max-width: 720px) {
  .fab { display: inline-flex; }
}
@media (max-width: 520px) {
  .fab .fab-label-long { display: none; }
}

/* Hero ------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-f1-rain.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,9,7,0.88) 0%, rgba(10,9,7,0.55) 38%, rgba(10,9,7,0.05) 62%, rgba(10,9,7,0) 100%),
    linear-gradient(180deg, rgba(10,9,7,0.55) 0%, rgba(10,9,7,0.15) 30%, rgba(10,9,7,0.35) 65%, rgba(10,9,7,0.96) 100%),
    radial-gradient(ellipse at 18% 55%, rgba(10,9,7,0.5), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.hero h1 {
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  max-width: 18ch;
  overflow-wrap: break-word;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 50ch;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(2rem, 5vw, 4rem);
  z-index: 2;
  text-align: right;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.hero-meta span { color: var(--text-dim); }

.hero-meta-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 0.4rem 0;
}

@media (max-width: 720px) {
  .hero-meta { display: none; }
}

/* Section heading block ------------------------------------ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
}

.section-head h2 { max-width: 16ch; }
.section-head p { max-width: 44ch; margin-left: auto; }

@media (max-width: 780px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-head p { margin-left: 0; }
}

/* Experience grid ------------------------------------------ */

.exp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.exp-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: var(--surface);
  isolation: isolate;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}

.exp-card:hover { border-color: var(--line-strong); }
.exp-card:hover .exp-card-img { transform: scale(1.06); }

.exp-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  z-index: 0;
}

.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.05) 0%, rgba(10,9,7,0.3) 45%, rgba(10,9,7,0.92) 100%);
  z-index: 1;
}

.exp-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.exp-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: block;
}

.exp-card h3 { margin-bottom: 0.6rem; }
.exp-card p { color: var(--text-dim); font-size: 0.95rem; max-width: none; }

.exp-card-link {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}
.exp-card:hover .exp-card-link { gap: 0.85rem; }
.exp-card-link svg { width: 14px; height: 14px; }

/* Card spans */
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.span-5 { grid-column: span 5; }
.span-7 { grid-column: span 7; }

.exp-card.tall { aspect-ratio: 3 / 4; }
.exp-card.wide { aspect-ratio: 16 / 10; }

@media (max-width: 980px) {
  .exp-grid { grid-template-columns: repeat(6, 1fr); }
  .span-6, .span-4, .span-8, .span-5, .span-7 { grid-column: span 6; }
  .exp-card { aspect-ratio: 4 / 5; }
}

/* Split section (image + content) --------------------------- */

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split.reverse { grid-template-columns: 1fr 1.1fr; }

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy h2 { margin-bottom: 1.5rem; }

@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split-media { aspect-ratio: 16 / 10; }
}

/* Standard (credibility) section --------------------------- */

.standard {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.principle {
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line);
  position: relative;
}
.principle:last-child { border-right: none; }

.principle-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}

.principle h4 { margin-bottom: 0.75rem; font-family: var(--font-display); font-weight: 400; }
.principle p { font-size: 0.95rem; color: var(--text-dim); }

@media (max-width: 900px) {
  .principles { grid-template-columns: repeat(2, 1fr); }
  .principle { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .principle:nth-child(2n) { border-right: none; }
  .principle:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .principles { grid-template-columns: 1fr; }
  .principle { border-right: none !important; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: none; }
}

/* Process --------------------------------------------------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.step {
  padding-top: 2rem;
  border-top: 1px solid var(--line-strong);
  position: relative;
}

.step-num {
  position: absolute;
  top: -0.85rem;
  left: 0;
  background: var(--bg);
  padding-right: 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.step h3 { margin-bottom: 0.9rem; font-size: 1.5rem; }
.step p { font-size: 0.98rem; }

@media (max-width: 780px) { .process-grid { grid-template-columns: 1fr; } }

/* CTA banner ----------------------------------------------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
}

.cta-banner h2 {
  max-width: 20ch;
  margin: 1.5rem auto 1.75rem;
}

.cta-banner p { margin: 0 auto 2.5rem; color: var(--text-dim); }

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/monaco-harbour.png");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(0.9);
}

.cta-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,9,7,0.55) 0%, rgba(10,9,7,0.9) 80%);
}

/* Footer ---------------------------------------------------- */

footer {
  padding: clamp(4rem, 7vw, 6rem) 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.foot-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.foot-col a { color: var(--text-dim); font-size: 0.92rem; transition: color 0.25s var(--ease); }
.foot-col a:hover { color: var(--gold); }

.foot-brand .brand { margin-bottom: 1.25rem; }
.foot-brand p { font-size: 0.92rem; max-width: 38ch; }

.foot-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

@media (max-width: 860px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* Motion / reveal ------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* Rules / dividers ----------------------------------------- */

.hairline {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  margin: clamp(3rem, 6vw, 5rem) 0;
}

/* Upcoming Events ------------------------------------------ */

.events .section-head {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 860px) {
  .events .section-head { grid-template-columns: 1fr; }
}

.events-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  padding: 1.25rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-chip {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.filter-chip:hover {
  color: var(--gold-bright);
  border-color: var(--line-strong);
}
.filter-chip.is-active {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.events-month {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.events-month.is-empty { display: none; }

.events-month-label {
  position: sticky;
  top: calc(var(--nav-h, 76px) + 1.5rem);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
}
.events-month-label::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.9rem;
  opacity: 0.75;
}

.events-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.event-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.event-row.is-hidden { display: none; }
.event-row:hover {
  background: linear-gradient(90deg, rgba(201,162,74,0.05), transparent 70%);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.event-date {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.event-main {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.event-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.005em;
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  align-items: center;
}
.event-cat {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0.15rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}
.event-venue { color: var(--text-dim); }

.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.event-cta svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.event-cta:hover {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}
.event-cta:hover svg { transform: translateX(3px); }

.events-note {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  max-width: none;
}

@media (max-width: 860px) {
  .events-month { grid-template-columns: 1fr; gap: 1.25rem; }
  .events-month-label { position: static; }
  .event-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1.35rem 0;
  }
  .event-row:hover { padding-left: 0; padding-right: 0; }
  .event-cta { align-self: flex-start; margin-top: 0.35rem; }
}
