/*========================================
  TABLEVLEWMOUNTAIN.SITE — MAIN STYLESHEET
  Theme: Cape Wilderness — Table Mountain Visitor Guide
  Palette: Cape Night (#1B2B3A) / Protea (#B8344A) / Ocean (#6EA9C0) / Limestone (#F5F0E8)
  Fonts: Garamond (headings) + Calibri (body)
========================================*/

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

:root {
  --cape-night: #1B2B3A;
  --cape-night-alt: #243748;
  --protea: #B8344A;
  --protea-dark: #8E2438;
  --ocean: #6EA9C0;
  --ocean-light: #A8CDD9;
  --limestone: #F5F0E8;
  --limestone-dark: #EAE3D7;
  --slate: #2E4459;
  --text-dark: #1C1C1C;
  --text-mid: #3D4B56;
  --text-soft: #6A7B8A;
  --border: #D4C9B8;
  --white: #FFFFFF;

  --font-serif: 'Garamond', 'Book Antiqua', 'Palatino Linotype', Georgia, serif;
  --font-sans: 'Calibri', 'Gill Sans', 'Gill Sans MT', Candara, Tahoma, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-soft: 0 4px 20px rgba(27, 43, 58, 0.10);
  --shadow-card: 0 2px 12px rgba(27, 43, 58, 0.12);
  --transition: 0.28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--cape-night);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1rem; font-size: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

a { color: var(--protea); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--protea-dark); }

/* ===== CONTAINERS ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION TAGS ===== */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--protea);
  border-bottom: 2px solid var(--protea);
  padding-bottom: 3px;
  margin-bottom: 16px;
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--cape-night);
  border-bottom: 1px solid rgba(184, 52, 74, 0.25);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.40);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--limestone);
  letter-spacing: 0.03em;
}

.site-brand span { color: var(--ocean); }

.main-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(245, 240, 232, 0.65);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--ocean);
  border-bottom-color: var(--ocean);
}

/* ===== HERO ===== */
#hero {
  background: var(--cape-night);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(110, 169, 192, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(184, 52, 74, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px 88px;
  position: relative;
  z-index: 1;
}

.hero-left h1 {
  color: var(--limestone);
  margin-bottom: 22px;
  font-style: italic;
}

.hero-left h1 em {
  color: var(--ocean);
  font-style: normal;
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 36px;
  line-height: 1.65;
  font-family: var(--font-sans);
  max-width: 560px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  display: inline-block;
  background: rgba(110, 169, 192, 0.12);
  border: 1px solid rgba(110, 169, 192, 0.32);
  color: var(--ocean-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 7px 16px;
  border-radius: 40px;
}

.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184, 52, 74, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  flex-shrink: 0;
}

.hero-panel-title {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--protea);
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(184, 52, 74, 0.2);
  padding-bottom: 12px;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.07);
}

.hero-stat:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
  min-width: 90px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.55);
  font-family: var(--font-sans);
  line-height: 1.4;
}

/* ===== STATS BAND ===== */
#stats-band {
  background: var(--limestone-dark);
  border-top: 3px solid var(--protea);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-cell {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}

.stat-cell:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cape-night);
  line-height: 1;
  display: block;
}

.stat-unit {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--protea);
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-top: 6px;
}

/* ===== CHAPTER SECTIONS ===== */
.chapter-section {
  padding: 84px 0;
}

.chapter-section.bg-limestone { background: var(--limestone); }
.chapter-section.bg-white { background: var(--white); }

.chapter-inner {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 36px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.chapter-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  text-align: right;
  padding-top: 8px;
  user-select: none;
  transition: color var(--transition);
}

.chapter-section:hover .chapter-num { color: var(--limestone-dark); }

.chapter-content .section-tag { margin-bottom: 10px; }

.chapter-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 22px;
}

.chapter-body.col-wide { grid-template-columns: 1.3fr 0.7fr; }

.chapter-body p { font-size: 0.95rem; }

.chapter-aside {
  background: var(--cape-night);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}

.chapter-aside-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ocean);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(110, 169, 192, 0.2);
  padding-bottom: 10px;
}

.chapter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.chapter-list li {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.75);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.chapter-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--protea);
}

/* ===== TICKET BOARD ===== */
#tickets {
  background: var(--cape-night);
  padding: 84px 0;
}

.tickets-header {
  max-width: 1160px;
  margin: 0 auto 36px;
  padding: 0 24px;
}

.tickets-header h2 { color: var(--limestone); }

.tickets-header .section-tag {
  color: var(--ocean);
  border-bottom-color: var(--ocean);
}

.ticket-board {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ticket-row {
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(110, 169, 192, 0.14);
  border-radius: var(--radius-sm);
  padding: 20px 28px;
  transition: background var(--transition), border-color var(--transition);
}

.ticket-row:hover {
  background: rgba(110, 169, 192, 0.07);
  border-color: rgba(110, 169, 192, 0.28);
}

.ticket-row.header-row {
  background: transparent;
  border: none;
  padding-bottom: 6px;
}

.ticket-row.header-row span {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 232, 0.30);
}

.ticket-type {
  color: var(--limestone);
  font-weight: 600;
  font-size: 1rem;
}

.ticket-type small {
  display: block;
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.45);
  font-weight: 400;
  margin-top: 3px;
}

.ticket-price {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ocean);
  text-align: center;
}

.ticket-note {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.50);
  line-height: 1.5;
}

.ticket-disclaimer {
  max-width: 1160px;
  margin: 20px auto 0;
  padding: 0 24px;
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.35);
  font-style: italic;
}

.tickets-info-row {
  max-width: 1160px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tickets-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184, 52, 74, 0.22);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}

.tickets-info-card h4 {
  color: var(--protea);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.tickets-info-card p {
  color: rgba(245, 240, 232, 0.60);
  font-size: 0.86rem;
  margin: 0;
  line-height: 1.55;
}

/* ===== THE VIEW ===== */
#theview {
  background: var(--ocean);
  padding: 84px 0;
}

#theview .section-tag {
  color: var(--cape-night);
  border-bottom-color: var(--cape-night);
}

#theview h2 { color: var(--cape-night); }

#theview > .container > p {
  color: rgba(27, 43, 58, 0.75);
  max-width: 640px;
  margin-top: 10px;
}

.view-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.view-card {
  background: rgba(27, 43, 58, 0.85);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.view-card:hover {
  border-top-color: var(--protea);
  transform: translateY(-3px);
}

.view-card-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ocean-light);
  margin-bottom: 10px;
}

.view-card h3 {
  color: var(--limestone);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.view-card p {
  color: rgba(245, 240, 232, 0.65);
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.55;
}

/* ===== TIMING SECTION ===== */
#timing {
  background: var(--limestone);
  padding: 84px 0;
}

.timing-intro {
  max-width: 580px;
  margin-top: 8px;
}

.timing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.timing-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
  transition: transform var(--transition);
}

.timing-card:hover { transform: translateY(-4px); }

.timing-card-head {
  background: var(--cape-night);
  padding: 16px 20px;
}

.timing-card-head h4 {
  color: var(--ocean);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  margin: 0;
}

.timing-card-season {
  color: rgba(245, 240, 232, 0.45);
  font-size: 0.72rem;
  margin-top: 3px;
}

.timing-card-body {
  padding: 20px;
}

.timing-card-body p {
  font-size: 0.87rem;
  margin: 0;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ===== TIPS TIMELINE ===== */
#tips {
  background: var(--white);
  padding: 84px 0;
}

.tips-intro {
  max-width: 560px;
  margin-top: 8px;
}

.tips-timeline {
  position: relative;
  max-width: 820px;
  margin: 48px auto 0;
}

.tips-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--limestone-dark), var(--border), var(--limestone-dark));
}

.tip-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  margin-bottom: 28px;
  position: relative;
  align-items: start;
}

.tip-item:last-child { margin-bottom: 0; }

.tip-num-col {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.tip-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cape-night);
  color: var(--ocean);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--ocean);
}

.tip-content {
  background: var(--limestone);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border-left: 3px solid var(--ocean);
}

.tip-content h4 {
  color: var(--cape-night);
  font-size: 1rem;
  margin-bottom: 6px;
}

.tip-content p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--text-mid);
}

/* ===== INFO SECTIONS: RESOURCES / LEGAL / AGB ===== */
.info-section {
  padding: 64px 0;
}

.info-section.bg-limestone { background: var(--limestone); }
.info-section.bg-white { background: var(--white); }
.info-section.bg-night { background: var(--cape-night); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.info-card {
  border-top: 3px solid var(--protea);
  padding-top: 18px;
}

.info-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cape-night);
  margin-bottom: 10px;
}

.info-card p,
.info-card li {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.info-card ul li:last-child { border-bottom: none; }

.info-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--protea);
  flex-shrink: 0;
  margin-top: 7px;
}

.legal-block {
  background: var(--limestone);
  border-left: 4px solid var(--ocean);
  padding: 22px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 14px;
}

.legal-block h4 {
  color: var(--cape-night);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.legal-block p {
  font-size: 0.84rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.6;
}

/* Night-bg variant for info sections */
.bg-night .info-card { border-top-color: var(--ocean); }
.bg-night .info-card h4 { color: var(--limestone); }
.bg-night .info-card p,
.bg-night .info-card li { color: rgba(245, 240, 232, 0.60); }
.bg-night .info-card ul li { border-bottom-color: rgba(255,255,255,0.08); }
.bg-night .section-tag { color: var(--ocean); border-bottom-color: var(--ocean); }
.bg-night h2 { color: var(--limestone); }

/* ===== CONTACT FORM ===== */
#contact {
  background: var(--cape-night);
  padding: 84px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-left h2 { color: var(--limestone); }
.contact-left h2 span { color: var(--protea); }
.contact-left .section-tag { color: var(--ocean); border-bottom-color: var(--ocean); }
.contact-left > p { color: rgba(245, 240, 232, 0.60); margin-top: 12px; font-size: 0.95rem; }

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-detail-label {
  font-weight: 700;
  color: var(--ocean);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 58px;
  padding-top: 2px;
}

.contact-detail-value {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.58);
  line-height: 1.5;
}

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(110, 169, 192, 0.20);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.48);
}

.form-group input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(110, 169, 192, 0.22);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--limestone);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input::placeholder { color: rgba(245, 240, 232, 0.26); }
.form-group input:focus { border-color: var(--ocean); }

.btn-submit {
  width: 100%;
  background: var(--protea);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  cursor: pointer;
  margin-top: 20px;
  transition: background var(--transition);
}

.btn-submit:hover { background: var(--protea-dark); }

.form-notice {
  font-size: 0.73rem;
  color: rgba(245, 240, 232, 0.30);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
#site-footer {
  background: #101C27;
  padding: 56px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--limestone);
  margin-bottom: 10px;
}

.footer-brand h3 span { color: var(--ocean); }

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.38);
  line-height: 1.65;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--protea);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  font-size: 0.81rem;
  color: rgba(245, 240, 232, 0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--ocean); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.footer-copyright {
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.28);
}

.footer-legal-links {
  display: flex;
  gap: 18px;
}

.footer-legal-links a {
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.28);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: var(--ocean); }

/* ===== DISCLAIMER BAR ===== */
#disclaimer-bar {
  background: #090F15;
  padding: 14px 24px;
  text-align: center;
  border-top: 1px solid rgba(110, 169, 192, 0.10);
}

#disclaimer-bar p {
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.26);
  line-height: 1.55;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { max-width: 420px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .chapter-inner { grid-template-columns: 64px 1fr; gap: 24px; }
  .chapter-body { grid-template-columns: 1fr; }
  .chapter-body.col-wide { grid-template-columns: 1fr; }
  .view-grid { grid-template-columns: repeat(2, 1fr); }
  .timing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero-grid { padding: 40px 20px 56px; }
  .chapter-inner { grid-template-columns: 1fr; }
  .chapter-num { display: none; }
  .ticket-row { grid-template-columns: 1fr; gap: 6px; padding: 14px 16px; }
  .ticket-row.header-row { display: none; }
  .ticket-price { text-align: left; font-size: 1.4rem; }
  .tickets-info-row { grid-template-columns: 1fr; }
  .view-grid { grid-template-columns: 1fr; }
  .timing-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .tips-timeline::before { left: 36px; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-cell:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-chips { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 24px 20px; }
}
