/* ============================================================
   FESTIVAL OF THE LEAF — Unified Stylesheet
   Design system by Ideator · Architecture by Planner
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Montserrat:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* BACKGROUNDS */
  --fotl-bg-base:        #0d0a07;
  --fotl-bg-raised:      #131008;
  --fotl-bg-surface:     #1C1610;
  --fotl-bg-footer:      #080705;

  /* GOLD ACCENT SYSTEM */
  --fotl-gold:           #D4AF37;
  --fotl-gold-bright:    #E2C14A;
  --fotl-gold-muted:     #8B6914;
  --fotl-gold-deep:      #5C4510;
  --fotl-gold-glow:      rgba(201, 147, 58, 0.15);
  --fotl-gold-overlay:   rgba(201, 147, 58, 0.08);

  /* TEXT */
  --fotl-text-primary:   #F5EDD6;
  --fotl-text-secondary: #9E8A6A;
  --fotl-text-tertiary:  #6B5A45;
  --fotl-text-on-gold:   #0d0a07;

  /* BORDERS */
  --fotl-border-subtle:  #2A2018;
  --fotl-border-mid:     #3D2E1A;
  --fotl-border-gold:    #C9933A;

  /* OVERLAYS */
  --fotl-overlay-10:     rgba(13, 10, 7, 0.10);
  --fotl-overlay-40:     rgba(13, 10, 7, 0.40);
  --fotl-overlay-65:     rgba(13, 10, 7, 0.65);
  --fotl-overlay-85:     rgba(13, 10, 7, 0.85);
  --fotl-overlay-95:     rgba(13, 10, 7, 0.95);

  /* TYPOGRAPHY */
  --fotl-font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --fotl-font-ui:      'Montserrat', 'Helvetica Neue', 'Arial', sans-serif;
  --fotl-font-body:    'Inter', 'Helvetica Neue', 'Arial', sans-serif;

  /* TYPE SCALE */
  --fotl-text-hero:    clamp(45px, 6.4vw, 86px);
  --fotl-text-h1:      clamp(44px, 6vw, 80px);
  --fotl-text-h2:      clamp(34px, 4.5vw, 60px);
  --fotl-text-h3:      clamp(26px, 3.5vw, 44px);
  --fotl-text-h4:      clamp(20px, 2.5vw, 32px);
  --fotl-text-h5:      clamp(17px, 2vw, 24px);
  --fotl-text-body-lg: 18px;
  --fotl-text-body:    16px;
  --fotl-text-body-sm: 14px;
  --fotl-text-small:   13px;
  --fotl-text-label:   11px;
  --fotl-text-nav:     12px;
  --fotl-text-cta:     12px;
  --fotl-text-price:   clamp(40px, 5vw, 64px);

  /* LINE HEIGHTS */
  --fotl-lh-tight:   1.05;
  --fotl-lh-heading: 1.15;
  --fotl-lh-body:    1.65;
  --fotl-lh-ui:      1.2;

  /* LETTER SPACING */
  --fotl-ls-display:  -0.02em;
  --fotl-ls-heading:  -0.01em;
  --fotl-ls-body:      0em;
  --fotl-ls-label:     0.15em;
  --fotl-ls-nav:       0.12em;
  --fotl-ls-cta:       0.1em;

  /* SPACING */
  --fotl-space-xs:   8px;
  --fotl-space-sm:   16px;
  --fotl-space-md:   24px;
  --fotl-space-lg:   40px;
  --fotl-space-xl:   64px;
  --fotl-space-2xl:  96px;
  --fotl-space-3xl:  128px;

  /* TRANSITIONS */
  --fotl-transition-fast:   0.15s ease;
  --fotl-transition-mid:    0.25s ease;
  --fotl-transition-slow:   0.4s ease;
  --fotl-transition-reveal: 0.6s ease;

  /* LAYOUT */
  --nav-height: 80px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--fotl-bg-base);
  color: var(--fotl-text-primary);
  font-family: var(--fotl-font-body);
  font-size: var(--fotl-text-body);
  font-weight: 300;
  line-height: var(--fotl-lh-body);
  -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;
}

ul, ol {
  list-style: none;
}

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

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.fotl-label {
  font-family: var(--fotl-font-ui);
  font-size: var(--fotl-text-label);
  font-weight: 600;
  letter-spacing: var(--fotl-ls-label);
  text-transform: uppercase;
  color: var(--fotl-gold);
  display: block;
  margin-bottom: 16px;
}

.fotl-display {
  font-family: var(--fotl-font-display);
  font-size: var(--fotl-text-hero);
  font-weight: 400;
  line-height: var(--fotl-lh-tight);
  letter-spacing: var(--fotl-ls-display);
  color: var(--fotl-text-primary);
}

.fotl-h2 {
  font-family: var(--fotl-font-display);
  font-size: var(--fotl-text-h2);
  font-weight: 500;
  line-height: var(--fotl-lh-heading);
  letter-spacing: var(--fotl-ls-heading);
  color: var(--fotl-text-primary);
}

.fotl-h3 {
  font-family: var(--fotl-font-display);
  font-size: var(--fotl-text-h3);
  font-weight: 500;
  line-height: var(--fotl-lh-heading);
  letter-spacing: var(--fotl-ls-heading);
  color: var(--fotl-text-primary);
}

.fotl-body-lead {
  font-family: var(--fotl-font-body);
  font-size: var(--fotl-text-body-lg);
  font-weight: 300;
  line-height: var(--fotl-lh-body);
  color: var(--fotl-text-secondary);
  max-width: 60ch;
}

/* ============================================================
   BUTTONS & LINKS
   ============================================================ */

.fotl-btn-primary {
  font-family: var(--fotl-font-ui);
  font-size: var(--fotl-text-cta);
  font-weight: 600;
  letter-spacing: var(--fotl-ls-cta);
  text-transform: uppercase;
  color: var(--fotl-text-on-gold);
  background: var(--fotl-gold);
  border: 2px solid var(--fotl-gold);
  border-radius: 2px;
  padding: 15px 36px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background var(--fotl-transition-fast), border-color var(--fotl-transition-fast), transform var(--fotl-transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.fotl-btn-primary:hover {
  background: var(--fotl-gold-bright);
  border-color: var(--fotl-gold-bright);
  transform: translateY(-1px);
}

.fotl-btn-primary:active {
  transform: translateY(0);
}

.fotl-btn-secondary {
  font-family: var(--fotl-font-ui);
  font-size: var(--fotl-text-cta);
  font-weight: 600;
  letter-spacing: var(--fotl-ls-cta);
  text-transform: uppercase;
  color: var(--fotl-gold);
  background: transparent;
  border: 2px solid var(--fotl-gold);
  border-radius: 2px;
  padding: 15px 36px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background var(--fotl-transition-fast), color var(--fotl-transition-fast), transform var(--fotl-transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.fotl-btn-secondary:hover {
  background: var(--fotl-gold);
  color: var(--fotl-text-on-gold);
  transform: translateY(-1px);
}

.fotl-btn-ghost {
  font-family: var(--fotl-font-ui);
  font-size: var(--fotl-text-cta);
  font-weight: 500;
  letter-spacing: var(--fotl-ls-cta);
  text-transform: uppercase;
  color: var(--fotl-text-primary);
  background: transparent;
  border: 1px solid rgba(245, 237, 214, 0.35);
  border-radius: 2px;
  padding: 15px 32px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background var(--fotl-transition-fast), border-color var(--fotl-transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.fotl-btn-ghost:hover {
  background: rgba(245, 237, 214, 0.08);
  border-color: rgba(245, 237, 214, 0.6);
}

.fotl-btn-full {
  width: 100%;
  justify-content: center;
}

.fotl-link-arrow {
  font-family: var(--fotl-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fotl-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--fotl-transition-fast), color var(--fotl-transition-fast);
}

.fotl-link-arrow::after {
  content: '→';
  transition: transform var(--fotl-transition-fast);
  display: inline-block;
}

.fotl-link-arrow:hover {
  color: var(--fotl-gold-bright);
  gap: 12px;
}

.fotl-link-arrow:hover::after {
  transform: translateX(2px);
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */

.fotl-section {
  padding: 120px 40px;
}

.fotl-section--tight {
  padding: 80px 40px;
}

.fotl-section--flush {
  padding: 0;
}

.fotl-section--raised {
  background: var(--fotl-bg-raised);
}

.fotl-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.fotl-container--narrow {
  max-width: 800px;
  margin: 0 auto;
}

.fotl-container--text {
  max-width: 680px;
}

/* Section intro block */
.fotl-section-intro {
  margin-bottom: var(--fotl-space-xl);
}

.fotl-section-intro .fotl-h2 {
  margin-bottom: var(--fotl-space-md);
}

.fotl-section-intro .fotl-body-lead {
  margin-top: var(--fotl-space-md);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fotl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--fotl-transition-reveal), transform var(--fotl-transition-reveal);
}

.fotl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fotl-card-grid .fotl-reveal:nth-child(1) { transition-delay: 0s; }
.fotl-card-grid .fotl-reveal:nth-child(2) { transition-delay: 0.1s; }
.fotl-card-grid .fotl-reveal:nth-child(3) { transition-delay: 0.2s; }

.fotl-pricing-grid .fotl-reveal:nth-child(1) { transition-delay: 0s; }
.fotl-pricing-grid .fotl-reveal:nth-child(2) { transition-delay: 0.1s; }
.fotl-pricing-grid .fotl-reveal:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.fotl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  transition: background var(--fotl-transition-slow), backdrop-filter var(--fotl-transition-slow), border-bottom var(--fotl-transition-slow);
  z-index: 1000;
}

.fotl-nav.is-scrolled {
  background: rgba(13, 10, 7, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fotl-border-subtle);
}

.fotl-nav__wordmark {
  font-family: var(--fotl-font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fotl-text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.fotl-nav__wordmark span.leaf {
  color: var(--fotl-gold);
  font-size: 18px;
  line-height: 1;
}

.fotl-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.fotl-nav__links a {
  font-family: var(--fotl-font-ui);
  font-size: var(--fotl-text-nav);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fotl-text-primary);
  text-decoration: none;
  transition: color var(--fotl-transition-fast);
}

.fotl-nav__links a:hover,
.fotl-nav__links a.active {
  color: var(--fotl-text-primary);
}

.fotl-nav__links a.active {
  color: var(--fotl-gold);
}

.fotl-nav__cta {
  display: flex;
  align-items: center;
  gap: var(--fotl-space-md);
}

/* Hamburger — mobile only */
.fotl-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.fotl-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fotl-text-primary);
  border-radius: 2px;
  transition: transform var(--fotl-transition-mid), opacity var(--fotl-transition-mid);
}

.fotl-nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--fotl-gold);
}

.fotl-nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.fotl-nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--fotl-gold);
}

/* Mobile overlay menu */
.fotl-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 10, 7, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 40px 60px;
  gap: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease-out;
}

.fotl-nav__overlay.is-open {
  transform: translateY(0);
}

.fotl-nav__overlay a {
  font-family: var(--fotl-font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--fotl-text-primary);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--fotl-border-subtle);
  width: 100%;
  transition: color var(--fotl-transition-fast);
  line-height: 1.2;
}

.fotl-nav__overlay a:first-child {
  border-top: 1px solid var(--fotl-border-subtle);
}

.fotl-nav__overlay a:hover {
  color: var(--fotl-gold);
}

.fotl-nav__overlay .fotl-btn-primary {
  margin-top: 40px;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */

.fotl-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.fotl-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.fotl-hero__bg--dark {
  background: var(--fotl-bg-base);
}

.fotl-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13, 10, 7, 0.72)  0%,
    rgba(13, 10, 7, 0.32) 30%,
    rgba(13, 10, 7, 0.55) 60%,
    rgba(13, 10, 7, 0.88) 80%,
    rgba(13, 10, 7, 0.97) 100%
  );
}

.fotl-hero__overlay--left {
  background: linear-gradient(
    to right,
    var(--fotl-overlay-95)  0%,
    var(--fotl-overlay-65) 50%,
    var(--fotl-overlay-10) 100%
  );
}

.fotl-hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 24px) 80px 18% 80px;
  width: 100%;
}

.fotl-hero__content .fotl-label {
  margin-bottom: 20px;
}

.fotl-hero__content .fotl-display {
  max-width: 860px;
  margin-bottom: 20px;
}

.fotl-hero__content .fotl-body-lead {
  max-width: 900px;
  margin-bottom: 36px;
  color: rgba(245, 237, 214, 0.75);
}

.fotl-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.fotl-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.5;
  transition: opacity var(--fotl-transition-mid);
  animation: bounce 1.8s ease-in-out infinite;
  color: var(--fotl-gold);
  font-size: 20px;
  line-height: 1;
}

.fotl-scroll-indicator.hidden {
  opacity: 0;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Saturday hero — no image placeholder */
.fotl-hero--saturday .fotl-hero__bg--dark {
  background: radial-gradient(ellipse at 60% 40%, rgba(93, 70, 22, 0.3) 0%, var(--fotl-bg-base) 70%);
}

/* ============================================================
   EVENT CARD GRID (index.html #events)
   ============================================================ */

.fotl-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fotl-event-card {
  background: var(--fotl-bg-raised);
  border: 1px solid var(--fotl-border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--fotl-transition-mid), border-color var(--fotl-transition-mid), box-shadow var(--fotl-transition-mid);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.fotl-event-card:hover {
  transform: translateY(-6px);
  border-color: var(--fotl-gold-muted);
  box-shadow: 0 16px 48px var(--fotl-gold-glow), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.fotl-event-card__image {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--fotl-bg-surface);
}

.fotl-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--fotl-transition-slow);
}

.fotl-event-card:hover .fotl-event-card__image img {
  transform: scale(1.03);
}

.fotl-event-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--fotl-bg-raised) 100%);
}

.fotl-event-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fotl-event-card__body .fotl-label {
  margin-bottom: 12px;
  font-size: 10px;
}

.fotl-event-card__title {
  font-family: var(--fotl-font-display);
  font-size: var(--fotl-text-h4);
  font-weight: 500;
  color: var(--fotl-text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.fotl-event-card__desc {
  font-family: var(--fotl-font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* ============================================================
   FEATURE BLOCK (alternating image + text)
   ============================================================ */

.fotl-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.fotl-feature__image {
  position: relative;
  overflow: hidden;
  background: var(--fotl-bg-raised);
}

.fotl-feature__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--fotl-transition-slow);
}

.fotl-feature:hover .fotl-feature__image img {
  transform: scale(1.02);
}

.fotl-feature__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--fotl-bg-base);
}

.fotl-feature--alt .fotl-feature__image { order: -1; }
.fotl-feature--alt .fotl-feature__text { 
  background: var(--fotl-bg-raised);
}

.fotl-feature__text .fotl-label {
  margin-bottom: 16px;
}

.fotl-feature__text .fotl-h3 {
  margin-bottom: 20px;
}

.fotl-feature__text p {
  font-family: var(--fotl-font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 16px;
}

.fotl-feature__text p:last-of-type {
  margin-bottom: 36px;
}

/* ============================================================
   INCLUSIONS LIST
   ============================================================ */

.fotl-inclusions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: var(--fotl-space-xl);
}

.fotl-inclusion-item {
  background: var(--fotl-bg-surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--fotl-border-subtle);
}

.fotl-inclusion-item__icon {
  font-size: 28px;
  line-height: 1;
  color: var(--fotl-gold);
}

.fotl-inclusion-item__title {
  font-family: var(--fotl-font-display);
  font-size: var(--fotl-text-h5);
  font-weight: 500;
  color: var(--fotl-text-primary);
  line-height: 1.2;
}

.fotl-inclusion-item__desc {
  font-family: var(--fotl-font-body);
  font-size: var(--fotl-text-body-sm);
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   PRICING BLOCK
   ============================================================ */

.fotl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--fotl-space-xl);
}

.fotl-pricing-card {
  background: var(--fotl-bg-surface);
  border: 1px solid var(--fotl-border-subtle);
  border-top: 3px solid var(--fotl-gold);
  border-radius: 4px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.fotl-pricing-card--featured {
  border-top-color: var(--fotl-gold-bright);
  background: var(--fotl-bg-raised);
  box-shadow: 0 0 40px var(--fotl-gold-glow);
}

.fotl-pricing-card .fotl-label {
  margin-bottom: 20px;
}

.fotl-pricing-card__price {
  font-family: var(--fotl-font-display);
  font-size: var(--fotl-text-price);
  font-weight: 400;
  color: var(--fotl-text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.fotl-pricing-card__subtext {
  font-family: var(--fotl-font-body);
  font-size: 13px;
  color: var(--fotl-text-tertiary);
  margin-bottom: 28px;
}

.fotl-pricing-card__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.fotl-pricing-card__includes li {
  font-family: var(--fotl-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--fotl-border-subtle);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.fotl-pricing-card__includes li::before {
  content: '—';
  color: var(--fotl-gold-muted);
  flex-shrink: 0;
}

/* ============================================================
   VENUE BLOCK
   ============================================================ */

.fotl-venue-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.fotl-venue-block__image {
  position: relative;
  overflow: hidden;
}

.fotl-venue-block__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fotl-venue-block__content {
  background: var(--fotl-bg-raised);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fotl-venue-block__address {
  font-family: var(--fotl-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--fotl-text-tertiary);
  line-height: 1.5;
  margin-bottom: var(--fotl-space-lg);
}

.fotl-venue-block__copy {
  margin-bottom: var(--fotl-space-lg);
}

.fotl-venue-block__copy p {
  font-family: var(--fotl-font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.fotl-venue-block__copy p:last-child {
  margin-bottom: 0;
  color: var(--fotl-text-primary);
  font-weight: 400;
}

.fotl-venue-block__awards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: var(--fotl-space-lg);
}

.fotl-venue-block__award {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--fotl-border-subtle);
}

.fotl-venue-block__award:first-child {
  border-top: 1px solid var(--fotl-border-subtle);
}

.fotl-venue-block__award-icon {
  color: var(--fotl-gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fotl-venue-block__award-text {
  font-family: var(--fotl-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.5;
}

.fotl-venue-block__award-text strong {
  font-weight: 500;
  color: var(--fotl-text-primary);
  display: block;
  margin-bottom: 2px;
}

.fotl-venue-block__quote {
  font-family: var(--fotl-font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--fotl-text-primary);
  line-height: 1.4;
  margin-top: 8px;
  padding-left: 16px;
  border-left: 2px solid var(--fotl-gold);
}

/* ============================================================
   FORM PLACEHOLDER (Keap Embed)
   ============================================================ */

.fotl-form-section {
  background: var(--fotl-bg-raised);
}

.fotl-form-container {
  background: var(--fotl-bg-surface);
  border: 1px solid var(--fotl-border-subtle);
  border-top: 3px solid var(--fotl-gold);
  border-radius: 4px;
  padding: 48px 40px;
  max-width: 680px;
  margin: 0 auto;
}

.fotl-form-placeholder {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px dashed var(--fotl-border-mid);
  border-radius: 2px;
}

.fotl-form-fallback {
  text-align: center;
}

.fotl-form-fallback p {
  font-family: var(--fotl-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--fotl-text-tertiary);
  margin-bottom: 16px;
}

.fotl-form-fallback a {
  color: var(--fotl-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--fotl-transition-fast);
}

.fotl-form-fallback a:hover {
  color: var(--fotl-gold-bright);
}

/* ============================================================
   COMPETITION / CSWC SPECIFIC BLOCKS
   ============================================================ */

.fotl-competition-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.fotl-entry-detail {
  background: var(--fotl-bg-surface);
  border: 1px solid var(--fotl-border-subtle);
  border-top: 3px solid var(--fotl-gold);
  border-radius: 4px;
  padding: 40px;
}

.fotl-entry-detail .fotl-label {
  margin-bottom: 20px;
}

.fotl-entry-detail__price {
  font-family: var(--fotl-font-display);
  font-size: var(--fotl-text-price);
  font-weight: 400;
  color: var(--fotl-text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.fotl-entry-detail__subtext {
  font-family: var(--fotl-font-body);
  font-size: 13px;
  color: var(--fotl-text-tertiary);
  margin-bottom: 24px;
}

.fotl-entry-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.fotl-entry-detail__list li {
  font-family: var(--fotl-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--fotl-border-subtle);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.fotl-entry-detail__list li::before {
  content: '—';
  color: var(--fotl-gold-muted);
  flex-shrink: 0;
}

.fotl-prize-block {
  background: var(--fotl-bg-raised);
  border: 1px solid var(--fotl-border-subtle);
  border-radius: 4px;
  padding: 40px;
}

.fotl-prize-block .fotl-label {
  margin-bottom: 16px;
}

.fotl-prize-block__headline {
  font-family: var(--fotl-font-display);
  font-size: var(--fotl-text-h3);
  font-weight: 500;
  color: var(--fotl-text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.fotl-prize-block__desc {
  font-family: var(--fotl-font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.fotl-prize-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.fotl-prize-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--fotl-border-subtle);
  align-items: flex-start;
}

.fotl-prize-item:first-child {
  border-top: 1px solid var(--fotl-border-subtle);
}

.fotl-prize-item__icon {
  color: var(--fotl-gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fotl-prize-item__text {
  font-family: var(--fotl-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.5;
}

/* Format block */
.fotl-format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--fotl-space-xl);
}

.fotl-format-item {
  padding: 40px 32px;
  background: var(--fotl-bg-raised);
  border: 1px solid var(--fotl-border-subtle);
  border-radius: 4px;
}

.fotl-format-item__number {
  font-family: var(--fotl-font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--fotl-gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.fotl-format-item__title {
  font-family: var(--fotl-font-display);
  font-size: var(--fotl-text-h5);
  font-weight: 500;
  color: var(--fotl-text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.fotl-format-item__desc {
  font-family: var(--fotl-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.65;
}

/* ============================================================
   POKER CHAMPIONSHIP SECTION (saturday.html)
   ============================================================ */

.fotl-poker-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fotl-poker-feature__text .fotl-h3 {
  margin-bottom: 20px;
}

.fotl-poker-feature__text p {
  font-family: var(--fotl-font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.fotl-poker-feature__aside {
  background: var(--fotl-bg-raised);
  border: 1px solid var(--fotl-border-subtle);
  border-left: 3px solid var(--fotl-gold);
  padding: 40px;
  border-radius: 0 4px 4px 0;
}

.fotl-poker-feature__aside .fotl-label {
  margin-bottom: 16px;
}

.fotl-poker-feature__aside p {
  font-family: var(--fotl-font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.65;
}

/* Programme pending state */
.fotl-programme-placeholder {
  text-align: center;
  padding: 80px 40px;
  background: var(--fotl-bg-raised);
  border: 1px dashed var(--fotl-border-mid);
  border-radius: 4px;
  margin-top: var(--fotl-space-xl);
}

.fotl-programme-placeholder .fotl-h3 {
  margin-bottom: 16px;
  opacity: 0.6;
}

.fotl-programme-placeholder p {
  font-family: var(--fotl-font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--fotl-text-tertiary);
  line-height: 1.65;
  max-width: 48ch;
  margin: 0 auto 32px;
}

/* ============================================================
   AUDIENCE / TEXT SECTIONS
   ============================================================ */

.fotl-text-section {
  padding: 120px 40px;
}

.fotl-text-section .fotl-container--narrow {
  max-width: 720px;
}

.fotl-text-section p {
  font-family: var(--fotl-font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fotl-text-section p:last-child {
  margin-bottom: 0;
}

/* Sponsor invite section */
.fotl-sponsor-section {
  padding: 120px 40px;
  background: var(--fotl-bg-raised);
}

.fotl-sponsor-section p {
  font-family: var(--fotl-font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 64ch;
}

/* Final CTA section */
.fotl-final-cta {
  padding: 120px 40px;
  text-align: center;
  background: var(--fotl-bg-raised);
}

.fotl-final-cta .fotl-h2 {
  margin-bottom: var(--fotl-space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.fotl-final-cta .fotl-body-lead {
  margin: 0 auto var(--fotl-space-lg);
}

.fotl-final-cta .fotl-body-lead--center {
  text-align: center;
  margin: 0 auto var(--fotl-space-lg);
}

.fotl-final-cta .fotl-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Two-line event CTA buttons */
.fotl-btn-event {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 200px;
  padding: 18px 32px;
  border: 2px solid var(--fotl-gold);
  border-radius: 2px;
  background: transparent;
  text-decoration: none;
  transition: background var(--fotl-transition-fast), transform var(--fotl-transition-fast);
  cursor: pointer;
}

.fotl-btn-event:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.fotl-btn-event--primary {
  background: var(--fotl-gold);
}

.fotl-btn-event--primary:hover {
  background: var(--fotl-gold-bright);
}

.fotl-btn-event__title {
  font-family: var(--fotl-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fotl-text-secondary);
  margin-bottom: 5px;
}

.fotl-btn-event--primary .fotl-btn-event__title {
  color: rgba(13, 10, 7, 0.65);
}

.fotl-btn-event__sub {
  font-family: var(--fotl-font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fotl-gold);
}

.fotl-btn-event--primary .fotl-btn-event__sub {
  color: var(--fotl-text-on-gold);
}

/* ============================================================
   SPECTATOR SECTION (cswc.html)
   ============================================================ */

.fotl-spectator-block {
  background: var(--fotl-bg-raised);
  border: 1px solid var(--fotl-border-subtle);
  border-radius: 4px;
  padding: 64px;
  text-align: center;
  margin-top: var(--fotl-space-xl);
}

.fotl-spectator-block .fotl-h3 {
  margin-bottom: 16px;
}

.fotl-spectator-block p {
  font-family: var(--fotl-font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 auto 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.fotl-footer {
  background: var(--fotl-bg-footer);
  border-top: 1px solid var(--fotl-border-subtle);
  padding: 80px 40px 40px;
}

.fotl-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto 64px;
}

.fotl-footer__wordmark {
  font-family: var(--fotl-font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fotl-text-primary);
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}

.fotl-footer__tagline {
  font-family: var(--fotl-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--fotl-text-tertiary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.fotl-footer__embassy-link {
  font-family: var(--fotl-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--fotl-text-tertiary);
  text-decoration: none;
  transition: color var(--fotl-transition-fast);
}

.fotl-footer__embassy-link:hover {
  color: var(--fotl-gold);
}

.fotl-footer__col-heading {
  font-family: var(--fotl-font-ui);
  font-size: var(--fotl-text-label);
  font-weight: 600;
  letter-spacing: var(--fotl-ls-label);
  text-transform: uppercase;
  color: var(--fotl-gold);
  display: block;
  margin-bottom: 20px;
}

.fotl-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fotl-footer__nav a {
  font-family: var(--fotl-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  text-decoration: none;
  transition: color var(--fotl-transition-fast);
  line-height: 1.4;
}

.fotl-footer__nav a:hover {
  color: var(--fotl-text-primary);
}

.fotl-footer__address {
  font-family: var(--fotl-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--fotl-text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.fotl-footer__address strong {
  font-weight: 400;
  color: var(--fotl-text-primary);
  display: block;
  margin-bottom: 4px;
}

.fotl-footer__note {
  font-family: var(--fotl-font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--fotl-text-tertiary);
  line-height: 1.6;
}

.fotl-footer__bottom {
  border-top: 1px solid var(--fotl-border-subtle);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.fotl-footer__legal {
  font-family: var(--fotl-font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--fotl-text-tertiary);
}

.fotl-footer__legal a {
  color: var(--fotl-text-tertiary);
  text-decoration: none;
  transition: color var(--fotl-transition-fast);
}

.fotl-footer__legal a:hover {
  color: var(--fotl-gold);
}

/* ============================================================
   DIVIDER
   ============================================================ */

.fotl-divider {
  height: 1px;
  background: var(--fotl-border-subtle);
  margin: 0 40px;
}

/* ============================================================
   MOBILE BREAKPOINTS
   ============================================================ */

/* ── Tablet portrait (< 1024px) ── */
@media (max-width: 1023px) {
  .fotl-nav__links {
    display: none;
  }

  .fotl-nav__cta .fotl-btn-primary {
    display: none;
  }

  .fotl-nav__hamburger {
    display: flex;
  }

  .fotl-nav__overlay {
    display: flex;
  }

  .fotl-feature {
    grid-template-columns: 1fr;
  }

  .fotl-feature__image {
    min-height: 360px;
  }

  .fotl-feature__text {
    padding: 60px 40px;
  }

  .fotl-feature--alt .fotl-feature__image { order: 0; }

  .fotl-venue-block {
    grid-template-columns: 1fr;
  }

  .fotl-venue-block__image {
    min-height: 300px;
    position: relative;
  }

  .fotl-venue-block__content {
    padding: 60px 40px;
  }

  .fotl-competition-entry {
    grid-template-columns: 1fr;
  }

  .fotl-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .fotl-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .fotl-poker-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Mobile (< 768px) ── */
@media (max-width: 767px) {
  :root {
    --nav-height: 64px;
  }

  .fotl-nav {
    padding: 0 20px;
    height: 64px;
  }

  .fotl-hero {
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
  }

  .fotl-hero__content {
    padding: calc(var(--nav-height) + 88px) 24px 12% 24px;
  }

  .fotl-hero__ctas {
    flex-direction: column;
    gap: 12px;
  }

  .fotl-hero__ctas .fotl-btn-primary,
  .fotl-hero__ctas .fotl-btn-secondary,
  .fotl-hero__ctas .fotl-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .fotl-section {
    padding: 64px 20px;
  }

  .fotl-section--tight {
    padding: 48px 20px;
  }

  .fotl-text-section {
    padding: 64px 20px;
  }

  .fotl-sponsor-section {
    padding: 64px 20px;
  }

  .fotl-final-cta {
    padding: 64px 20px;
  }

  .fotl-card-grid {
    grid-template-columns: 1fr;
  }

  .fotl-event-card__image {
    height: 200px;
  }

  .fotl-inclusions {
    grid-template-columns: 1fr;
  }

  .fotl-pricing-grid {
    grid-template-columns: 1fr;
  }

  .fotl-format-grid {
    grid-template-columns: 1fr;
  }

  .fotl-feature__text {
    padding: 48px 20px;
  }

  .fotl-venue-block__content {
    padding: 48px 20px;
  }

  .fotl-footer {
    padding: 60px 20px 32px;
  }

  .fotl-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fotl-footer__grid > div:first-child {
    grid-column: auto;
  }

  .fotl-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .fotl-divider {
    margin: 0 20px;
  }

  .fotl-spectator-block {
    padding: 40px 24px;
  }

  .fotl-form-container {
    padding: 32px 20px;
  }

  .fotl-venue-block__image {
    min-height: 260px;
  }
}

/* ── Small mobile (< 480px) ── */
@media (max-width: 479px) {
  .fotl-nav__overlay {
    padding: 80px 24px 40px;
  }

  .fotl-nav__overlay a {
    font-size: 28px;
  }

  .fotl-pricing-card {
    padding: 28px 24px;
  }

  .fotl-entry-detail {
    padding: 28px 24px;
  }

  .fotl-prize-block {
    padding: 28px 24px;
  }
}
