:root {
  --ink: #0b1020;
  --muted: #667085;
  --line: rgba(31, 52, 95, .14);
  --paper: #f3f6fb;
  --white: #fff;
  --brand: #1f345f;
  --accent: #5875c3;
  --accent-2: #21a08b;
  --soft: rgba(88, 117, 195, .1);
  --glass: rgba(255, 255, 255, .68);
  --shadow-sm: 0 10px 30px rgba(31, 52, 95, .1);
  --shadow: 0 30px 90px rgba(31, 52, 95, .16);
  --shadow-lg: 0 44px 120px rgba(31, 52, 95, .2);
  --radius: 8px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    linear-gradient(115deg, rgba(88, 117, 195, .18), transparent 34rem),
    linear-gradient(180deg, #fbfcff 0, var(--paper) 46rem, #f7f9fd 100%);
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: rgba(88, 117, 195, .22); }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent-2), var(--accent));
  transform-origin: left;
  transition: width .12s linear;
}

.v2-header {
  position: sticky;
  top: 14px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(1240px, calc(100% - 32px));
  min-height: calc(var(--logo-height, 48px) + 20px);
  margin: 14px auto -92px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 18px 60px rgba(17, 24, 39, .12);
  backdrop-filter: blur(24px) saturate(1.35);
  transition: transform .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease);
}
.is-scrolled .v2-header {
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 70px rgba(31, 52, 95, .16);
  transform: translateY(-4px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  min-height: var(--logo-height, 48px);
  color: var(--brand);
  text-decoration: none;
}
.brand-visual,
.brand-logo {
  display: inline-grid;
  place-items: center;
  width: var(--logo-width, 48px);
  height: var(--logo-height, 48px);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
  font-weight: 950;
}
.brand-text { display: grid; gap: 1px; min-width: 0; }
.brand-text strong { color: var(--brand); line-height: 1.1; }
.brand-text small { color: var(--muted); font-size: .8rem; }
.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  flex-wrap: nowrap;
  justify-self: end;
  max-width: 100%;
  padding: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(31, 52, 95, .08);
  border-radius: 14px;
  background: rgba(245, 248, 255, .72);
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.main-nav::-webkit-scrollbar {
  display: none;
}
.nav-indicator {
  display: none;
}
.main-nav a {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding: 9px 11px;
  border-radius: 10px;
  color: #5d687f;
  font-weight: 820;
  font-size: .9rem;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: color .24s ease, transform .24s var(--ease), background .24s ease, box-shadow .24s ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--brand);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(31, 52, 95, .14);
}
.main-nav a:hover { transform: translateY(-1px); }
.main-nav .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), #283f73);
  box-shadow: 0 10px 24px rgba(31, 52, 95, .26);
}
.main-nav .nav-cta:hover,
.main-nav .nav-cta.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), #283f73);
}

.hero-shell {
  position: relative;
  height: min(860px, 100vh);
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #0a1428;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .88;
  transition: opacity .6s var(--ease), transform .8s var(--ease);
  transform: scale(1.03);
}
.hero-media.is-changing { opacity: .38; transform: scale(1.07); }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  animation: heroDrift 18s var(--ease) infinite alternate;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 12, 25, .9), rgba(20, 34, 64, .52) 46%, rgba(88, 117, 195, .12)),
    linear-gradient(0deg, rgba(8, 14, 28, .68), transparent 58%);
}
.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(243, 246, 251, .96));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 330px;
  color: var(--white);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 420px);
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}
.hero-content h1 {
  max-width: 920px;
  min-height: 2.73em;
  margin: 0;
  font-size: clamp(3.2rem, 7.8vw, 7.1rem);
  line-height: .91;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 22px 90px rgba(0, 0, 0, .34);
}
.hero-content p {
  max-width: 690px;
  min-height: 3.2em;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.42;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.button,
button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 13px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s ease;
}
.button:hover,
button:hover { transform: translateY(-2px); }
.button.primary,
button.primary {
  background: linear-gradient(180deg, #fff, #edf3ff);
  color: var(--brand);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
}
.button.secondary {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  backdrop-filter: blur(16px);
}
.button.card-cta {
  min-height: 40px;
  padding: 9px 14px;
  border-color: rgba(255, 255, 255, .2);
  background: linear-gradient(135deg, var(--brand), #283f73);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(31, 52, 95, .24);
  font-size: .9rem;
  white-space: nowrap;
}
.button.card-cta:hover {
  box-shadow: 0 16px 36px rgba(31, 52, 95, .32);
}
.button::after,
button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .34), transparent 56%);
  transform: translateX(-130%);
  transition: transform .7s var(--ease);
}
.button:hover::after,
button:hover::after { transform: translateX(130%); }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(12, 20, 39, .26);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px) saturate(1.25);
  transform: translateX(-50%);
}
.has-hero-stats .hero-dots { bottom: 126px; }
.hero-dots button {
  width: 9px;
  min-width: 0;
  height: 9px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .46);
  box-shadow: none;
  transition: width .28s var(--ease), background .28s ease, opacity .28s ease, transform .28s var(--ease);
}
.hero-dots button::after { display: none; }
.hero-dots button:hover { transform: scale(1.12); }
.hero-dots button[aria-current="true"] {
  width: 24px;
  background: var(--white);
  opacity: 1;
}
.hero-stats {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  background: rgba(20, 30, 52, .38);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .22);
  backdrop-filter: blur(24px) saturate(1.35);
  transform: translateX(-50%);
}
.hero-stats article {
  padding: 16px 18px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
}
.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-stats strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: .94rem;
  line-height: 1.28;
}

.section,
.quick-grid,
.feature-band {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: clamp(40px, 5vw, 70px) 0; }
.section-title {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.section-title span { display: none; }
.section-title h2 {
  margin: 0;
  max-width: 780px;
  color: var(--brand);
  font-size: clamp(2.1rem, 4.3vw, 4.3rem);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}
.section-title p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}
.section-title.compact { margin-bottom: 20px; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 18px;
  position: relative;
  z-index: 4;
}
.quick-grid article,
.slot-grid article,
.card,
.timeline article,
.prose-panel,
.form,
.featured-event {
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: transform .42s var(--ease), box-shadow .42s var(--ease), border-color .42s ease;
}
.quick-grid article:hover,
.slot-grid article:hover,
.card:hover,
.timeline article:hover,
.prose-panel:hover,
.featured-event:hover {
  border-color: rgba(88, 117, 195, .3);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.quick-grid article { padding: 22px; }
.quick-grid span,
.pill {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(88, 117, 195, .11);
  color: var(--brand);
  font-size: .76rem;
  font-weight: 950;
}
.quick-grid h2,
.quick-grid p { margin-bottom: 0; }
.quick-grid h2 { margin-top: 10px; font-size: 1.24rem; }
.quick-grid p,
.slot-grid p,
.slot-grid small,
.feature-grid p,
.event-copy p,
.card p,
.timeline p,
.timeline small,
.prose-panel p { color: var(--muted); }

.association-layout,
.reservation {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}
.prose-panel,
.form { padding: 26px; }
.prose-panel p { font-size: 1.06rem; }
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}
.facts div {
  padding: 14px;
  border: 1px solid rgba(31, 52, 95, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}
dt { color: var(--brand); font-weight: 950; }
dd { margin: 5px 0 0; color: var(--muted); overflow-wrap: anywhere; }

.slot-grid,
.cards,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.slot-grid article { padding: 18px; }
.slot-grid article > span { color: var(--accent); font-weight: 950; }
.slot-grid h3,
.slot-grid p { margin: 8px 0 0; }

.portrait-section,
.instagram-section {
  overflow: hidden;
}
.slider-frame {
  position: relative;
  overflow: hidden;
}
.slider-frame::before,
.slider-frame::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: min(10vw, 92px);
  pointer-events: none;
}
.slider-frame::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(243, 246, 251, 0));
}
.slider-frame::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(243, 246, 251, 0));
}
.portrait-track,
.instagram-track {
  display: flex;
  width: max-content;
  gap: 18px;
  will-change: transform;
}
.portrait-track figure {
  flex: 0 0 clamp(150px, var(--portrait-width, 320px), 300px);
  min-height: max(var(--portrait-height, 240px), 130px);
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: transparent;
  transition: transform .42s var(--ease), filter .42s ease;
}
.portrait-track figure:hover { transform: translateY(-6px) scale(1.03); filter: saturate(1.08); }
.portrait-track img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(31, 52, 95, .14);
}
.instagram-section {
  padding-top: 0;
}
.instagram-track figure {
  flex: 0 0 clamp(210px, 24vw, 320px);
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 22px 58px rgba(31, 52, 95, .14);
  transition: transform .42s var(--ease), box-shadow .42s var(--ease);
}
.instagram-track figure:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow);
}
.instagram-track a {
  display: block;
}
.instagram-track img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(0, 1.14fr);
  gap: 16px;
  align-items: stretch;
  padding: clamp(36px, 5vw, 64px) 0;
}
.feature-band-title {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}
.feature-media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 5.6s ease;
}
.feature-media img.is-active {
  opacity: 1;
  transform: scale(1);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.feature-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-sm);
  transition: transform .42s var(--ease), box-shadow .42s var(--ease);
}
.feature-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-grid svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 13px;
  background: linear-gradient(180deg, #f8fbff, #edf3ff);
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 12px 24px rgba(31, 52, 95, .1);
}
.feature-grid h3 { margin: 14px 0 6px; }
.feature-grid p { margin: 0; }

.featured-event {
  display: grid;
  grid-template-columns: minmax(180px, .48fr) minmax(0, 1fr) minmax(90px, 130px);
  gap: 20px;
  align-items: center;
  padding: 16px;
}
.event-poster {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(233, 30, 99, .12);
}
.event-copy h3 {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
}
.event-copy p { margin: 0; }
.event-qr {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.card { overflow: hidden; }
.card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.card:hover > img { transform: scale(1.025); }
.card > div { padding: 18px; }
.card h3 { margin: 12px 0 8px; color: var(--brand); }
.joelette-band {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.joelette-band .feature-media {
  min-height: 100%;
}
.joelette-card-list {
  display: grid;
  gap: 12px;
  align-content: start;
}
.joelette-card {
  padding: 18px;
}
.joelette-card p {
  margin: 0 0 8px;
}
.joelette-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin: 12px 0 8px;
}
.joelette-card-head h3 {
  margin: 0;
  min-width: 0;
}
.joelette-reserve-button {
  justify-self: end;
}
.pill.available { background: #ddf7e9; color: #126236; }
.pill.reserved { background: #fff0bf; color: #6b4e00; }
.pill.maintenance { background: #ffe0d5; color: #7b2d12; }

.timeline {
  display: grid;
  gap: 12px;
}
.timeline article {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding: 17px;
}
.timeline time {
  color: var(--accent);
  font-weight: 950;
}
.timeline h3,
.timeline p { margin: 0 0 6px; }
.event-link-button {
  margin-top: 10px;
}

.form {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 850;
}
.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(31, 52, 95, .13);
  border-radius: 13px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font: inherit;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s var(--ease);
}
input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(88, 117, 195, .18);
  transform: translateY(-1px);
}
textarea { resize: vertical; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.date-picker {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.date-picker input {
  cursor: pointer;
}
.date-picker-button {
  display: grid;
  place-items: center;
  width: 48px;
  min-width: 48px;
  padding: 12px;
  border-radius: 13px;
}
.date-picker-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.date-picker button::after {
  display: none;
}
.date-picker-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  width: min(330px, calc(100vw - 40px));
  padding: 14px;
  border: 1px solid rgba(31, 52, 95, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 70px rgba(31, 52, 95, .18);
  backdrop-filter: blur(18px);
}
.date-picker-head {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--ink);
}
.date-picker-head strong {
  text-align: center;
  text-transform: capitalize;
}
.date-picker-head button,
.date-picker-grid button {
  min-width: 0;
  padding: 0;
  border-radius: 11px;
}
.date-picker-head button {
  width: 38px;
  height: 38px;
}
.date-picker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}
.date-picker-grid span,
.date-picker-grid button {
  display: grid;
  place-items: center;
  min-height: 36px;
  font-size: .86rem;
}
.date-picker-grid > span:not(.date-picker-empty) {
  color: var(--muted);
  font-weight: 900;
}
.date-picker-grid button {
  border: 1px solid rgba(31, 52, 95, .1);
  background: rgba(31, 52, 95, .04);
  color: var(--ink);
  box-shadow: none;
}
.date-picker-grid button:not(:disabled):hover,
.date-picker-grid button.is-selected {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}
.date-picker-grid button:disabled {
  cursor: not-allowed;
  opacity: .28;
  background: transparent;
  color: var(--muted);
}
.toast {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 28px clamp(16px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .84);
}
footer span { color: var(--muted); }
.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
  transition: transform .24s var(--ease), border-color .24s ease, color .24s ease;
}
.social-links svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}
.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}
.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.can-animate .reveal {
  opacity: .96;
  transform: translateY(14px) scale(.996);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.can-animate .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-content > * {
  animation: heroIn .9s var(--ease) both;
}
.hero-content > :nth-child(2) { animation-delay: .08s; }
.hero-content > :nth-child(3) { animation-delay: .16s; }
.hero-content > :nth-child(4) { animation-delay: .24s; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(-1.2%, -.8%, 0); }
  to { transform: scale(1.1) translate3d(1.2%, .8%, 0); }
}

@media (max-width: 860px) {
  .v2-header {
    position: sticky;
    top: 8px;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 8px;
    width: calc(100% - 20px);
    min-height: auto;
    margin: 8px auto -108px;
    padding: 8px;
    border-radius: 16px;
  }
  .brand {
    justify-content: center;
    min-width: 0;
    width: 100%;
    min-height: 34px;
  }
  .brand-logo {
    width: min(var(--logo-width, 48px), 170px);
    height: min(var(--logo-height, 48px), 42px);
  }
  .brand-text { display: none; }
  .main-nav {
    justify-content: center;
    width: 100%;
    justify-self: stretch;
    gap: 2px;
    padding: 3px;
  }
  .main-nav a {
    padding: 7px 6px;
    font-size: 0;
  }
  .main-nav a::before {
    content: attr(data-short);
    font-size: .69rem;
    line-height: 1;
  }
  .main-nav .nav-cta {
    box-shadow: 0 10px 24px rgba(31, 52, 95, .26);
  }
  .hero-shell {
    height: 810px;
    min-height: 810px;
  }
  .hero-content {
    width: min(100% - 24px, 1120px);
    padding: 132px 0 360px;
  }
  .hero-label {
    max-width: 100%;
    font-size: .66rem;
    white-space: normal;
  }
  .hero-content h1 {
    min-height: 3.76em;
    font-size: clamp(2.7rem, 13vw, 4rem);
    line-height: .94;
  }
  .hero-content p {
    min-height: 4.3em;
    font-size: 1rem;
  }
  .hero-actions { margin-top: 18px; }
  .hero-dots { bottom: 26px; }
  .has-hero-stats .hero-dots { bottom: 206px; }
  .hero-stats,
  .association-layout,
  .reservation,
  .feature-band,
  .joelette-band,
  .featured-event,
  .timeline article,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    bottom: 12px;
    width: calc(100% - 24px);
    background: rgba(20, 30, 52, .56);
  }
  .hero-stats article { padding: 12px; }
  .section,
  .quick-grid,
  .feature-band,
  .joelette-band {
    width: calc(100% - 24px);
  }
  .section { padding: 36px 0; }
  .section-title h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .quick-grid { margin-top: 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .joelette-band .feature-media {
    min-height: 320px;
  }
  .feature-band > img { min-height: 270px; }
  .portrait-track figure {
    flex-basis: clamp(128px, var(--portrait-width, 320px), 72vw);
  }
  .instagram-track figure {
    flex-basis: min(72vw, 280px);
  }
  footer { align-items: flex-start; }
}

@media (max-width: 360px) {
  .main-nav a {
    padding-inline: 3px;
  }
  .main-nav a::before {
    font-size: .6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .can-animate .reveal {
    opacity: 1;
    transform: none;
  }
}
