/* ═══════════════════════════════════════════════════════
   THE BUCKING BARREL — Styles
   Inspired by cooksgarage.com design language
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,700;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ── Variables ── */
:root {
  --bg:          #111111;
  --bg-alt:      #1a1a1a;
  --bg-foot:     #0a0a0a;
  --orange:      #E87722;
  --orange-dim:  #c4611a;
  --text:        #EEEEEE;
  --text-mid:    #CCCCCC;
  --text-muted:  #999999;
  --text-dim:    #666666;
  --border:      #2a2a2a;
  --border-mid:  #333333;
  --radius:      4px;
  --ease:        0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding-top: 72px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ── Placeholder Images ── */
.img-ph {
  background: linear-gradient(135deg, #2a1a0a 0%, #1a1a1a 100%);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-ph span {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 0.82rem;
  color: #555;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: all 0.28s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  border: none;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-orange {
  background: var(--orange);
  color: #FFFFFF;
}
.btn-orange:hover {
  background: #f08c3a;
  transform: scale(1.03);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: #FFFFFF;
  transform: scale(1.03);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: scale(1.03);
}
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.btn-lg { padding: 16px 40px; font-size: 1.15rem; }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 72px;
  transition: box-shadow var(--ease);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 24px;
}
.nav-logo img { height: 55px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #CCCCCC;
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-social a {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color var(--ease);
}
.nav-social a:hover { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 1px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  z-index: 899;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #CCCCCC;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease), background var(--ease);
}
.mobile-nav a:hover { color: var(--orange); background: #222; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin: 16px 40px 20px; text-align: center; display: block; }

/* ══════════════════════════════════
   PAGE HEROES (inner pages)
══════════════════════════════════ */
.page-hero {
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 100px 0 72px;
  text-align: center;
}
.page-hero .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}
.page-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(52px, 9vw, 80px);
  color: #FFFFFF;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.page-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  max-width: 480px;
  margin: 0 auto;
}

/* ══════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════ */
.carousel {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 1;
}
.carousel-slide.active { opacity: 1; z-index: 2; }

.slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.slide-bg-1 {
  background-image: url('../Photos/venue-7.jpg');
  background-size: cover;
  background-position: center;
}
.slide-bg-2 {
  background-image: url('../Photos/venue-9.jpg');
  background-size: cover;
  background-position: center top;
}
.slide-bg-3 {
  background-image: url('../Photos/venue-3.jpg');
  background-size: cover;
  background-position: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 1;
}
.carousel-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 40px 100px;
  gap: 0;
}
.carousel-logo {
  width: 220px;
  max-width: 55vw;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.6));
}
.carousel-tagline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(40px, 6vw, 76px);
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 820px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.carousel-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #AAAAAA;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.carousel-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #444;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-dot.active { background: var(--orange); transform: scale(1.4); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  color: #666;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color var(--ease);
}
.carousel-arrow:hover { color: var(--orange); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-arrow svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ══════════════════════════════════
   SECTION WRAPPER PATTERN
══════════════════════════════════ */
.section { width: 100%; padding: 60px 0; box-sizing: border-box; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg); }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(36px, 5vw, 52px);
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0;
}
.section-title-center { text-align: center; }
.section-title-orange { color: var(--orange); }

/* Left-border accent heading */
.heading-accent {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

/* ══════════════════════════════════
   UPCOMING EVENTS (horizontal rows)
══════════════════════════════════ */
.events-list { width: 100%; }
.events-list .top-border { border-top: 1px solid var(--border); }

.event-row {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
  cursor: pointer;
  gap: 0;
}
.event-row:hover { background: #1c1c1c; margin: 0 -24px; padding-left: 24px; padding-right: 24px; }

.event-date-block {
  width: 70px;
  flex-shrink: 0;
  text-align: center;
  margin-right: 36px;
}
.event-month {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.event-day {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 52px;
  color: #FFFFFF;
  line-height: 1.0;
}
.event-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 34px;
  color: #FFFFFF;
  flex: 1;
  letter-spacing: 0.03em;
  line-height: 1;
}
.event-time {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 36px;
  white-space: nowrap;
  flex-shrink: 0;
}
.event-tag-pill {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 3px 10px;
  border-radius: 100px;
  margin-right: 16px;
  flex-shrink: 0;
}

.events-view-all {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  transition: all var(--ease);
}
.events-view-all:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ── Filter bar ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--border-mid);
  color: var(--text-muted);
  border: none;
  padding: 9px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { color: var(--orange); }
.filter-btn.active { background: var(--orange); color: #FFFFFF; }

/* ══════════════════════════════════
   WHO WE ARE
══════════════════════════════════ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.who-col {
  padding: 48px 48px;
}
.who-col + .who-col {
  border-left: 1px solid var(--border);
}
.who-col-icon {
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 24px;
}
.who-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1;
}
.who-col p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 48px auto 0;
}
.pricing-block {
  text-align: center;
  padding: 60px 80px;
}
.pricing-block:first-child {
  border-right: 1px solid var(--border);
}
.pricing-amount {
  font-family: 'Libre Baskerville', serif;
  font-size: 64px;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.pricing-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.pricing-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}

/* ══════════════════════════════════
   INSTAGRAM STRIP
══════════════════════════════════ */
.insta-strip { width: 100%; background: var(--bg); padding: 80px 0; text-align: center; }
.insta-handle {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.insta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 36px;
}
.insta-grid .img-ph { height: 200px; }

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.brand-story {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #CCCCCC;
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto;
}
.brand-story p + p { margin-top: 20px; }

.coming-callout {
  border-left: 3px solid var(--orange);
  padding: 28px 36px;
  background: var(--bg-alt);
  margin: 48px auto;
  max-width: 700px;
}
.coming-callout h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.coming-callout p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.photo-grid-2x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.photo-grid-2x3 .img-ph { height: 260px; }

/* ══════════════════════════════════
   BOOK PAGE FORMS
══════════════════════════════════ */
.form-section {
  max-width: 760px;
  margin: 0 auto 64px;
}
.form-section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.form-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-divider {
  height: 1px;
  background: var(--border);
  margin: 56px 0;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; font-style: italic; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E87722' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--bg-alt); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

/* ══════════════════════════════════
   SPACE PAGE
══════════════════════════════════ */
.space-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.space-section:last-of-type { border-bottom: none; }
.space-section.flip { direction: rtl; }
.space-section.flip > * { direction: ltr; }
.space-img { height: 360px; border-radius: var(--radius); overflow: hidden; }
.space-content .section-eyebrow { margin-bottom: 10px; }
.space-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 1;
}
.space-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.space-content .btn { margin-top: 12px; }

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.use-case-tile {
  background: var(--bg-alt);
  padding: 36px 28px;
  transition: background var(--ease);
  cursor: default;
}
.use-case-tile:hover { background: #222222; }
.use-case-tile h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  transition: color var(--ease);
}
.use-case-tile:hover h4 { color: var(--orange); }
.use-case-tile p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.pricing-table th {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: #161616;
}
.pricing-table td { color: var(--text-muted); }
.pricing-table td:first-child { color: var(--text); font-weight: 700; font-family: 'Libre Baskerville', serif; font-size: 1.05rem; letter-spacing: 0.04em; }
.pricing-table tr:hover td { background: #1c1c1c; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--bg-foot);
  border-top: 1px solid #1f1f1f;
  padding: 72px 0 36px;
}
.footer-top {
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.footer-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 28px;
}
.footer-subscribe-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-subscribe-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}
.footer-subscribe-form input {
  flex: 1;
  padding: 12px 18px;
  background: #1a1a1a;
  border: 1px solid var(--border-mid);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
}
.footer-subscribe-form input::placeholder { color: #555; }
.footer-subscribe-form input:focus { border-color: var(--orange); }
.footer-subscribe-form button {
  background: var(--orange);
  color: #FFFFFF;
  border: none;
  padding: 12px 22px;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--ease);
}
.footer-subscribe-form button:hover { background: #f08c3a; }

.footer-mid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col li + li { margin-top: 8px; }
.footer-col a,
.footer-col address p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #555;
  transition: color var(--ease);
  font-style: normal;
}
.footer-col a:hover { color: var(--orange); }
.footer-col address p { color: #555; line-height: 1.7; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: #1a1a1a;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  color: var(--text-muted);
  transition: all var(--ease);
  letter-spacing: 0.04em;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }

.footer-bottom {
  padding: 28px 0 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 32px;
}
.footer-bottom span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: #555;
  line-height: 1.6;
}
.footer-bottom a {
  color: #555;
  transition: color 0.2s ease;
}
.footer-bottom a:hover { color: var(--orange); }

.footer-btm-credit { margin-left: auto; }

@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-btm-credit { margin-left: 0; }
}

/* ══════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════ */
.text-orange { color: var(--orange); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* Fade-up animation */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up img { transform: scale(1.0); transition: transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.08s; }
.fade-up.visible img { transform: scale(1.03); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.38s; }

/* ══════════════════════════════════
   PHOTO PAGE HEROES
══════════════════════════════════ */
.page-hero-photo {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 120px 0 60px;
}
.page-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.page-hero-photo .container {
  position: relative;
  z-index: 2;
}
.page-hero-photo h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(48px, 8vw, 72px);
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.page-hero-photo p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #CCCCCC;
  max-width: 480px;
}

/* ══════════════════════════════════
   ABOUT PAGE — PHOTO SECTIONS
══════════════════════════════════ */
.about-photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.about-photo-split.flip { direction: rtl; }
.about-photo-split.flip > * { direction: ltr; }
.about-split-photo {
  overflow: hidden;
}
.about-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-split-content {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
}
.about-split-content h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 44px;
  color: var(--orange);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.about-split-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.about-full-photo {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.about-full-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coming-soon-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
.coming-soon-strip h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  color: var(--orange);
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .about-photo-split { grid-template-columns: 1fr; direction: ltr !important; }
  .about-photo-split.flip { direction: ltr; }
  .about-split-photo { min-height: 260px; }
  .about-split-content { padding: 40px 28px; }
  .about-full-photo { height: 260px; }
  .page-hero-photo { min-height: 280px; padding: 100px 0 48px; }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 960px) {
  .space-section { grid-template-columns: 1fr; gap: 36px; }
  .space-section.flip { direction: ltr; }
  .space-img { height: 260px; }
  .who-grid { grid-template-columns: 1fr; }
  .who-col + .who-col { border-left: none; border-top: 1px solid var(--border); }
  .who-col { padding: 36px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-block:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-block { padding: 48px 40px; }
  .footer-mid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .hamburger { display: flex; }
  .nav-right .nav-social { display: none; }

  .event-row { flex-wrap: wrap; gap: 8px; padding: 20px 0; }
  .event-time { margin: 0 0 0 106px; width: 100%; order: 3; }
  .event-row .btn { margin-left: auto; order: 4; }
  .event-name { font-size: 22px; }

  .photo-grid-2x3 { grid-template-columns: 1fr 1fr; }
  .use-cases-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-mid { grid-template-columns: 1fr; }
  .footer-subscribe-form { flex-direction: column; }
  .footer-subscribe-form input { border-right: 1px solid var(--border-mid); border-radius: var(--radius) var(--radius) 0 0; border-bottom: none; }
  .footer-subscribe-form button { border-radius: 0 0 var(--radius) var(--radius); }
}

@media (max-width: 520px) {
  .container { padding: 0 24px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 80px 0 56px; }
  .carousel-tagline { font-size: 28px; }
  .carousel-logo { width: 160px; }
  .carousel-actions { flex-direction: column; gap: 12px; }
  .photo-grid-2x3 { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { gap: 8px; }
  .pricing-block { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════
   MISSING / SUPPLEMENT STYLES
══════════════════════════════════ */

/* Generic h2 */
h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(36px, 5vw, 56px);
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

/* section-label (alias for section-eyebrow) */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}

/* section-heading centered */
.section-heading { margin-bottom: 48px; }
.section-heading.centered { text-align: center; }
.section-heading p { color: var(--text-muted); margin-top: 12px; }

/* page-hero background layer */
.page-hero { position: relative; overflow: hidden; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { max-width: 680px; }
.page-hero-content p { color: var(--text-muted); font-size: 1rem; margin-top: 12px; max-width: 480px; }

/* nav-cta position fix */
.nav-cta { justify-self: end; }

/* section-header (events heading with link) */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.section-header h2 { margin-bottom: 0; }
.section-header-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  padding-bottom: 4px;
  transition: opacity var(--ease);
}
.section-header-link:hover { opacity: 0.75; }

/* event-list wraps event rows */
.event-list { border-top: 1px solid var(--border); }
.event-info { flex: 1; }
.event-desc { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }
.event-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border-mid);
  padding: 4px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* events page month groupings */
.events-month-group { margin-bottom: 56px; }
.events-month-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 20px 0 12px;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}
.events-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.events-empty a { color: var(--orange); }

/* filter bar full-width wrapper */
.filter-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ══════════════════════════════════
   WHO WE ARE — CINEMATIC
══════════════════════════════════ */
.who-section {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url('../Photos/venue-1.jpg');
  background-size: cover;
  background-position: center;
}
.who-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.60);
  z-index: 1;
}
.who-cinematic {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.who-cinematic h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(40px, 6vw, 68px);
  color: #FFFFFF;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.who-cinematic p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* pricing per / note */
.pricing-per {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing-block p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}
.pricing-note {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 24px;
}

/* instagram strip header */
.insta-strip { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.insta-header .section-label { margin-bottom: 0; }
.insta-handle {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  transition: opacity var(--ease);
}
.insta-handle:hover { opacity: 0.75; }
.insta-ph { height: 180px; }
.insta-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.insta-item:hover img { transform: scale(1.05); }

/* cta-bar */
.cta-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-bar-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.cta-bar-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* about page */
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.about-ph { height: 280px; }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-split-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-split-text h2 { margin-bottom: 20px; }
.coming-soon-callout {
  border-left: 3px solid var(--orange);
  padding: 36px 40px;
  background: var(--bg-alt);
}
.coming-soon-callout h2 { margin-bottom: 12px; }
.coming-soon-callout p { color: var(--text-muted); line-height: 1.8; }
.bar-callout {
  background: var(--bg-alt);
  border: 1px solid var(--border-mid);
  border-left: 3px solid var(--orange);
  padding: 28px 32px;
}
.bar-callout h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.bar-callout p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; }

/* book page forms */
.form-section-heading { margin-bottom: 36px; }
.form-section-heading h2 { margin-bottom: 10px; }
.form-section-heading p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 40px 48px;
}
.form-wrap-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.form-wrap-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* space page */
.space-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.space-section-alt { background: var(--bg-alt); }
.space-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.space-split-flip { direction: rtl; }
.space-split-flip > * { direction: ltr; }
.space-split-text h2 { margin-bottom: 16px; }
.space-split-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.space-feature-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.space-feature-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.space-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--orange);
}

/* use-case-grid (alias) */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
}
.use-case-tile {
  background: var(--bg-alt);
  padding: 40px 32px;
  transition: background var(--ease);
}
.use-case-tile:hover { background: #222; }
.use-case-tile span {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  transition: color var(--ease);
  display: block;
}
.use-case-tile:hover span { color: var(--orange); }

/* footer-grid / footer-brand */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 4px;
}
.footer-col p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

/* carousel prev/next (HTML uses .carousel-prev/.carousel-next, CSS had .carousel-arrow) */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  color: #555;
  font-size: 22px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color var(--ease);
}
.carousel-prev:hover, .carousel-next:hover { color: var(--orange); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

/* responsive supplements */
@media (max-width: 960px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .space-split { grid-template-columns: 1fr; gap: 36px; }
  .space-split-flip { direction: ltr; }
  .about-photo-grid { grid-template-columns: 1fr 1fr; }
  .cta-bar-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .use-case-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-cta { display: none; }
  .filter-pills { padding: 0 24px; }
  .who-inner { padding: 0 24px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 24px 36px; }
  .coming-soon-callout { padding: 28px 24px; }
}
@media (max-width: 520px) {
  .about-photo-grid { grid-template-columns: 1fr; }
  .use-case-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Nav Map Link ── */
.nav-map-link {
  color: var(--orange) !important;
  border: 1px solid rgba(232,119,34,0.35);
  border-radius: 3px;
  padding: 5px 10px !important;
  font-size: 0.75rem !important;
  transition: background var(--ease), border-color var(--ease);
}
.nav-map-link:hover {
  background: rgba(232,119,34,0.12);
  border-color: var(--orange);
  color: var(--orange) !important;
}

/* ══════════════════════════════════
   VIDEO HERO
══════════════════════════════════ */
.video-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.68) 40%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
}
.video-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 0 72px 100px;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}
.hero-logo {
  width: 210px;
  max-width: 52vw;
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.7));
}
.hero-tagline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(62px, 10vw, 116px);
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.32);
}
.hero-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  text-decoration: none;
  animation: heroScrollBounce 2.4s ease-in-out infinite;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}

/* ══════════════════════════════════
   VENUE GALLERY (Splide)
══════════════════════════════════ */
.gallery-section { padding-bottom: 0; }
.gallery-heading-wrap {
  padding: 0 40px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.venue-splide .splide__slide {
  height: 520px;
  overflow: hidden;
  border-radius: 4px;
}
.venue-splide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.venue-splide .splide__slide:hover img { transform: scale(1.03); }
.venue-splide .splide__track { padding-bottom: 20px !important; }
.venue-splide .splide__pagination__page {
  background: #444;
  transition: background 0.3s;
}
.venue-splide .splide__pagination__page.is-active { background: var(--orange); transform: scale(1.3); }
.venue-splide .splide__arrow {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(232,119,34,0.3);
}
.venue-splide .splide__arrow:hover { background: var(--orange); }
.venue-splide .splide__arrow svg { fill: #fff; }

/* ══════════════════════════════════
   GOOGLE MAPS SECTION
══════════════════════════════════ */
.maps-section { background: var(--bg-alt); }
.maps-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
}
.maps-text {}
.maps-text .section-eyebrow { margin-bottom: 10px; }
.maps-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(34px, 5vw, 52px);
  color: #FFFFFF;
  line-height: 1.05;
  margin-bottom: 20px;
}
.maps-address-line {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.maps-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 28px;
}
.maps-embed-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-mid);
}
.maps-embed-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
  filter: grayscale(40%) contrast(1.1);
}
.maps-embed-sm { border-radius: 4px; overflow: hidden; border: 1px solid var(--border-mid); margin-top: 24px; }
.maps-embed-sm iframe { width: 100%; height: 280px; display: block; border: none; filter: grayscale(40%) contrast(1.1); }

/* ══════════════════════════════════
   STICKY MOBILE CTA BAR
══════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0a0a0a;
  border-top: 1px solid #2a2a2a;
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta-bar-inner {
  display: flex;
  gap: 10px;
  padding: 10px 16px;
}
.mcta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mcta-call {
  background: var(--orange);
  color: #fff;
}
.mcta-call:hover { background: #f08c3a; }
.mcta-text {
  background: var(--orange);
  color: #fff;
}
.mcta-text:hover { background: #f08c3a; }

/* ══════════════════════════════════
   DIRECT CONTACT BUTTONS (book/forms)
══════════════════════════════════ */
.direct-contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 0 8px;
}
.direct-contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.direct-contact-label::before,
.direct-contact-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-mid);
}
.direct-contact-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.direct-contact-btns .btn { min-width: 160px; }

/* ══════════════════════════════════
   AOS OVERRIDE — respect prefers-reduced-motion
══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-aos] { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* ══════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════ */
@media (max-width: 900px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 60px; }
  .maps-inner { grid-template-columns: 1fr; gap: 32px; }
  .venue-splide .splide__slide { height: 320px; }
  .gallery-heading-wrap { padding: 0 24px 28px; }
}
@media (max-width: 600px) {
  .video-hero-content { padding: 0 28px 96px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .venue-splide .splide__slide { height: 240px; }
}

/* ══════════════════════════════════
   HERO — NEW SUB-ELEMENTS
══════════════════════════════════ */
.hero-text-block {
  max-width: 600px;
}
.hero-place {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 20px;
}
.hero-secondary {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 40px);
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.hero-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.36);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ══════════════════════════════════
   ORIGIN SECTION (replaces who-section)
══════════════════════════════════ */
.origin-section {
  background: #0c0c0c;
  border-top: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
  padding: 108px 0;
}
.origin-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.origin-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 24px;
}
.origin-headline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.origin-body {
  padding-top: 16px;
}
.origin-body p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #AAAAAA;
  line-height: 1.82;
  margin-bottom: 20px;
}
.origin-body p:last-of-type { margin-bottom: 32px; }
.origin-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1px solid rgba(232,119,34,0.36);
  padding-bottom: 3px;
  transition: border-color var(--ease), opacity var(--ease);
  display: inline-block;
}
.origin-link:hover { border-color: var(--orange); opacity: 0.75; }

/* ══════════════════════════════════
   RATES SECTION (replaces pricing)
══════════════════════════════════ */
.rates-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.rates-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(24px, 3.2vw, 42px);
  color: #FFFFFF;
  letter-spacing: 0.01em;
  margin-bottom: 56px;
  line-height: 1;
}
.rates-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 56px;
  align-items: end;
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rate-divider {
  background: var(--border);
  align-self: stretch;
}
.rate-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
  display: block;
}
.rate-number {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  color: var(--orange);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  display: block;
}
.rate-unit {
  font-size: 0.36em;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  vertical-align: middle;
  margin-left: 6px;
  font-weight: 700;
  text-transform: uppercase;
}
.rate-detail {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 300px;
}
.rates-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 28px;
  line-height: 1.65;
}

/* ── Responsive for new sections ── */
@media (max-width: 960px) {
  .origin-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 720px) {
  .rates-split {
    grid-template-columns: 1fr;
    gap: 52px 0;
  }
  .rate-divider { height: 1px; align-self: auto; }
}
@media (max-width: 600px) {
  .origin-inner { padding: 0 28px; }
  .origin-section { padding: 72px 0; }
  .origin-headline { font-size: clamp(22px, 7vw, 36px); }
  .hero-secondary { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════
   AVAILABILITY CALENDAR
   ═══════════════════════════════════════════════════════ */

.cal-section { background: var(--bg); border-bottom: 1px solid var(--border); }
.cal-section .section-heading p { color: var(--text-muted); margin-top: 10px; font-size: 0.95rem; line-height: 1.6; }

.cal-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}

/* — Header — */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  background: #141414;
  border-bottom: 1px solid var(--border);
}
.cal-month-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 30px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1;
}
.cal-nav {
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}
.cal-nav:hover { border-color: var(--orange); color: var(--orange); }

/* — Day name headers — */
.cal-day-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #101010;
  border-bottom: 1px solid var(--border);
}
.cal-day-headers span {
  font-family: 'Inter', sans-serif;
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  padding: 13px 0;
}

/* — Date grid — */
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.90rem;
  font-weight: 700;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
}
.cal-cell:nth-child(7n) { border-right: none; }

.cal-empty { background: transparent; cursor: default; }

.cal-past { color: #2c2c2c; cursor: default; }

.cal-available {
  color: #DDDDDD;
  cursor: pointer;
}
.cal-available:hover {
  background: rgba(232,119,34,0.14);
  color: var(--orange);
}

/* Booked: reddish tint with diagonal strike */
.cal-booked {
  color: #5a2818;
  background: rgba(155,38,18,0.12);
  cursor: not-allowed;
}
.cal-booked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 14%;
  width: 72%;
  height: 1px;
  background: rgba(200,58,38,0.32);
  transform: rotate(-20deg);
  pointer-events: none;
}

/* Today: orange inset ring */
.cal-today {
  box-shadow: inset 0 0 0 1.5px var(--orange) !important;
  color: var(--orange) !important;
}

/* Selected: solid orange fill */
.cal-selected {
  background: var(--orange) !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}
.cal-selected::after { display: none; }

/* — Legend — */
.cal-legend {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 16px 32px;
  border-top: 1px solid var(--border);
  background: #101010;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.cal-dot-available { background: #CCCCCC; }
.cal-dot-booked { background: rgba(155,38,18,0.55); border: 1px solid rgba(200,58,38,0.4); }
.cal-dot-today { background: transparent; box-shadow: inset 0 0 0 1.5px var(--orange); }
.cal-dot-selected { background: var(--orange); }

.cal-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.6;
}

/* — Responsive — */
@media (max-width: 600px) {
  .cal-header { padding: 16px 20px; }
  .cal-month-label { font-size: 24px; }
  .cal-legend { padding: 14px 20px; gap: 14px; }
  .cal-cell { font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════════════════
   HERO — EDITORIAL REDESIGN
   Creative Direction: Two typefaces — Caveat too large for
   the room, Playfair italic below like cursive on a napkin —
   the gap between their scales is the entire composition.
   ═══════════════════════════════════════════════════════ */

/* Centered vignette: dark edges, warm center lets the video breathe */
.hero-ed-wrap .hero-ed-veil {
  background: radial-gradient(
    ellipse 90% 80% at 50% 52%,
    rgba(10,6,2,0.48) 0%,
    rgba(4,2,0,0.86) 62%,
    rgba(2,1,0,0.97) 100%
  );
}

/* Center the content — override left/bottom-aligned defaults */
.hero-ed-wrap .hero-ed-frame {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.hero-ed {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  padding: 0 40px;
  width: 100%;
}

/* — cap: short rule + location — */
.hero-ed-cap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 52px;
}
.hero-ed-tick {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--orange);
  opacity: 0.60;
}
.hero-ed-loc {
  font-family: 'Inter', sans-serif;
  font-size: 0.80rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
  opacity: 1;
}

/* — headline: the scale gap does all the work — */
.hero-ed-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}
.hero-ed-main {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(56px, 10vw, 128px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 36px rgba(0,0,0,0.32);
}
.hero-ed-sub {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(30px, 4.6vw, 70px);
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 14px;
  transform: translateX(2.5%); /* deliberate near-miss of perfect center */
}

/* — foot: rule + meta + bare text CTA — */
.hero-ed-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-ed-rule {
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(232,119,34,0.40);
}
.hero-ed-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin: 0;
  line-height: 1;
}
.hero-ed-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,119,34,0.34);
  padding-bottom: 2px;
  margin-top: 4px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.hero-ed-link:hover {
  border-color: var(--orange);
  opacity: 0.68;
}

/* responsive */
@media (max-width: 600px) {
  .hero-ed { padding: 0 28px; }
  .hero-ed-cap { margin-bottom: 36px; gap: 14px; }
  .hero-ed-type { margin-bottom: 44px; }
  .hero-ed-main { font-size: clamp(40px, 11vw, 72px); }
  .hero-ed-sub { font-size: clamp(22px, 6vw, 40px); transform: none; }
}

/* ══════════════════════════════════
   EVENT CARDS
══════════════════════════════════ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.event-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.event-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.28s cubic-bezier(0.16,1,0.3,1),
              box-shadow   0.28s cubic-bezier(0.16,1,0.3,1),
              transform    0.28s cubic-bezier(0.16,1,0.3,1);
}
.event-card:hover {
  border-color: rgba(232,119,34,0.45);
  box-shadow: 0 6px 28px rgba(0,0,0,0.38);
  transform: translateY(-3px);
}
.event-card.expanded { border-color: rgba(232,119,34,0.55); }

.event-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.event-card-month {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.5;
}
.event-card-day {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 54px;
  color: #FFFFFF;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.event-card-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border-mid);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: flex-start;
}

.event-card-mid { flex: 1; margin-bottom: 18px; }
.event-card-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 23px;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin-bottom: 6px;
}
.event-card-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.event-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.event-card-toggle {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.22s ease;
}
.event-card-toggle:hover { color: var(--orange); }
.event-card-toggle-icon {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.event-card.expanded .event-card-toggle-icon { transform: rotate(180deg); }

.event-card-expand {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.16,1,0.3,1),
              padding-top 0.42s cubic-bezier(0.16,1,0.3,1);
}
.event-card.expanded .event-card-expand {
  max-height: 160px;
  padding-top: 14px;
}
.event-card-expand p {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.event-card-private-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 960px) {
  .event-grid,
  .event-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .event-grid,
  .event-grid-3 { grid-template-columns: 1fr; gap: 12px; }
}

/* ══════════════════════════════════
   HERO PHOTO CAROUSEL (background)
══════════════════════════════════ */
.hero-carousel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-carousel-slide.active {
  opacity: 1;
  animation: heroBgKenBurns 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes heroBgKenBurns {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0);  }
}

/* Hero carousel arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  transition: background 0.28s cubic-bezier(0.16,1,0.3,1),
              border-color 0.28s cubic-bezier(0.16,1,0.3,1),
              color 0.28s cubic-bezier(0.16,1,0.3,1),
              transform 0.28s cubic-bezier(0.16,1,0.3,1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-arrow:hover {
  background: rgba(232,119,34,0.22);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}
.hero-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-arrow-prev { left: 32px; }
.hero-arrow-next { right: 32px; }

@media (max-width: 600px) {
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow svg { width: 16px; height: 16px; }
  .hero-arrow-prev { left: 14px; }
  .hero-arrow-next { right: 14px; }
}

.hero-dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.16,1,0.3,1),
              transform  0.35s cubic-bezier(0.16,1,0.3,1),
              width      0.35s cubic-bezier(0.16,1,0.3,1);
}
.hero-dot:hover { background: rgba(255,255,255,0.65); }
.hero-dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
  transform: none;
}

/* ══════════════════════════════════
   HERO LOAD ANIMATIONS
══════════════════════════════════ */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes heroRevealSub {
  from { opacity: 0; transform: translateX(2.5%) translateY(20px); }
  to   { opacity: 1; transform: translateX(2.5%) translateY(0);    }
}
.hero-ed-cap  { animation: heroReveal 0.8s cubic-bezier(0.16,1,0.3,1) 0.05s both; }
.hero-ed-logo { animation: heroReveal 0.8s cubic-bezier(0.16,1,0.3,1) 0.22s both; }
.hero-ed-foot { animation: heroReveal 0.8s cubic-bezier(0.16,1,0.3,1) 0.42s both; }

.hero-ed-logo {
  width: clamp(220px, 36vw, 380px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 28px rgba(0,0,0,0.55));
}

/* ══════════════════════════════════
   AOS — reduce translate distance to match design
══════════════════════════════════ */
body [data-aos="fade-up"] {
  transform: translate3d(0, 28px, 0);
}
body [data-aos="fade-up"].aos-animate {
  transform: translate3d(0, 0, 0);
}

/* ── space-split-img: clip scaled image to bounds ── */
.space-split-img { overflow: hidden; }

/* ══════════════════════════════════
   REDUCED MOTION OVERRIDES
══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-ed-cap, .hero-ed-logo, .hero-ed-foot {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .fade-up img { transition: none; transform: none; }
}
