/* =============================================
   PRIME SOLARIUM — WABI-SABI DIGITAL THEME
   ============================================= */

/* --- Custom Properties --- */
:root {
  --primary: #3d5a4c;
  --primary-dark: #2a3f35;
  --primary-light: #5a7a68;
  --secondary: #8b6f4e;
  --secondary-light: #b8956e;
  --accent-warm: #c4956a;
  --accent-sage: #7a9e7e;
  --accent-clay: #c17f5a;

  --bg-base: #f5f0e8;
  --bg-card: #faf7f2;
  --bg-dark: #1e2a24;
  --bg-muted: #ede8de;

  --text-primary: #1e2a24;
  --text-secondary: #4a5a50;
  --text-muted: #7a8a80;
  --text-on-dark: #e8e0d0;

  --border-light: rgba(61, 90, 76, 0.12);
  --border-medium: rgba(61, 90, 76, 0.22);

  --shadow-sm: 0 2px 8px rgba(30, 42, 36, 0.08), 0 1px 3px rgba(30, 42, 36, 0.06);
  --shadow-md: 0 4px 16px rgba(30, 42, 36, 0.10), 0 2px 6px rgba(30, 42, 36, 0.07);
  --shadow-lg: 0 8px 32px rgba(30, 42, 36, 0.12), 0 4px 12px rgba(30, 42, 36, 0.08), 0 1px 4px rgba(30, 42, 36, 0.05);
  --shadow-xl: 0 16px 48px rgba(30, 42, 36, 0.15), 0 8px 24px rgba(30, 42, 36, 0.10), 0 2px 8px rgba(30, 42, 36, 0.06);

  --sidebar-width: 260px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
address { font-style: normal; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.hero-heading {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-heading em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}

.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.page-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
}

.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* --- Layout --- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-dark);
  z-index: 100;
  overflow-y: auto;
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.sidebar-inner {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 2rem;
}

.sidebar-logo { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.logo-img { width: 160px; height: auto; }
.logo-img-sm { width: 120px; height: auto; }

.sidebar-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-on-dark);
  opacity: 0.75;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  background: rgba(196, 149, 106, 0.15);
  color: var(--accent-warm);
}

.nav-icon {
  width: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--accent-warm);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.nav-link:hover .nav-icon, .nav-link.active .nav-icon { opacity: 1; }

.sidebar-contact {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.sidebar-phone, .sidebar-email, .sidebar-address {
  font-size: 0.78rem;
  color: rgba(232, 224, 208, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
  transition: color var(--transition);
}

.sidebar-phone:hover, .sidebar-email:hover { color: var(--accent-warm); }
.sidebar-address { cursor: default; }

.sidebar-phone i, .sidebar-email i, .sidebar-address i {
  color: var(--accent-warm);
  opacity: 0.7;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* --- Mobile Header --- */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--bg-dark);
  z-index: 200;
  padding: 0 1.25rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 90;
  backdrop-filter: blur(2px);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(61, 90, 76, 0.3), 0 1px 4px rgba(61, 90, 76, 0.2);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 90, 76, 0.4), 0 2px 6px rgba(61, 90, 76, 0.25);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(61, 90, 76, 0.25);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border-bottom: 1.5px solid transparent;
}

.text-link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
  gap: 0.6rem;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  padding: 5rem 2rem 4rem;
  overflow: hidden;
  background: var(--bg-base);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-sage), transparent 70%);
  top: -150px;
  right: -100px;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-warm), transparent 70%);
  bottom: -80px;
  left: 10%;
  opacity: 0.2;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--secondary-light), transparent 70%);
  top: 40%;
  left: 35%;
  opacity: 0.15;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(61, 90, 76, 0.08);
  border: 1px solid var(--border-medium);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 1.5rem 0 2rem;
  max-width: 520px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.pill i { color: var(--accent-sage); font-size: 0.7rem; }

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--bg-card);
  transform-style: preserve-3d;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  background: rgba(30, 42, 36, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  color: var(--text-on-dark);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-card-badge i { color: var(--accent-warm); }

/* --- Problem Section --- */
.problem-section {
  padding: 5rem 2rem;
  background: var(--bg-card);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.problem-text { padding-top: 1rem; }
.problem-text .section-heading { margin: 0.5rem 0 1.5rem; }

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.problem-card {
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  transform-style: preserve-3d;
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.problem-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(61, 90, 76, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.problem-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Learn Section --- */
.learn-section {
  padding: 5rem 2rem;
  background: var(--bg-base);
}

.learn-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.learn-header .section-heading { margin-top: 0.5rem; }

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.learn-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.learn-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.learn-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--border-medium);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.learn-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.learn-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Journey Section --- */
.journey-section {
  padding: 5rem 2rem;
  background: var(--bg-muted);
  position: relative;
  overflow: hidden;
}

.journey-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.journey-bg-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.journey-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.journey-header .section-heading { margin-top: 0.5rem; }

.journey-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.journey-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
}

.step-connector {
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  opacity: 0.3;
}

.step-connector.last { display: none; }

.step-bubble {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(61, 90, 76, 0.3);
  position: relative;
  z-index: 2;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  transform-style: preserve-3d;
}

.step-card:hover { box-shadow: var(--shadow-md); }

.step-icon {
  width: 36px;
  height: 36px;
  background: rgba(196, 149, 106, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Who Section --- */
.who-section {
  padding: 5rem 2rem;
  background: var(--bg-card);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.who-image-wrap { position: relative; }

.who-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.who-image-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 240px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 500;
}

.who-image-card i { color: var(--accent-warm); font-size: 1.2rem; flex-shrink: 0; }

.who-text .section-heading { margin: 0.5rem 0 1.25rem; }

.who-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.who-list li i { color: var(--accent-warm); margin-top: 0.25rem; flex-shrink: 0; }

/* --- Evidence Section --- */
.evidence-section {
  padding: 5rem 2rem;
  background: var(--bg-base);
}

.evidence-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
}

.evidence-header .section-heading { margin-top: 0.5rem; }

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.evidence-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  transform-style: preserve-3d;
}

.evidence-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.evidence-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(61, 90, 76, 0.25);
}

.evidence-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.evidence-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

.evidence-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.evidence-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.evidence-quote-block {
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  position: relative;
}

.evidence-quote-block::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--accent-warm);
  opacity: 0.4;
  line-height: 1;
}

blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-on-dark);
  font-style: italic;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}

cite {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
}

/* --- Formats Preview --- */
.formats-preview-section {
  padding: 5rem 2rem;
  background: var(--bg-muted);
}

.formats-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
}

.formats-header .section-heading { margin-top: 0.5rem; }

.formats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  transform-style: preserve-3d;
}

.format-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.featured-format { border-color: var(--primary); border-width: 2px; }

.format-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.format-card-body { padding: 1.75rem; }

.format-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(61, 90, 76, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.format-card-body h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.format-card-body p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.25rem; }

/* --- Location Section --- */
.location-section {
  padding: 5rem 2rem;
  background: var(--bg-card);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-text .section-heading { margin: 0.5rem 0 1.25rem; }

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-detail-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.location-detail-item strong { font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.2rem; }
.location-detail-item p, .location-detail-item a { font-size: 0.9rem; color: var(--text-secondary); }
.location-detail-item a:hover { color: var(--primary); }

.location-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  padding: 4rem 2rem 3rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.15), transparent 70%);
  pointer-events: none;
}

.inner-hero { max-width: 1100px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: var(--accent-warm); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent-warm); opacity: 0.8; }
.breadcrumb i { font-size: 0.6rem; opacity: 0.5; }
.breadcrumb span { color: var(--text-muted); }

.page-title { color: var(--text-on-dark); }
.page-subtitle { font-size: 1rem; color: rgba(232, 224, 208, 0.65); margin-top: 0.75rem; max-width: 560px; }

/* --- Content Sections (Inner Pages) --- */
.content-section { padding: 4rem 2rem 5rem; }

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.content-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
}

.content-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.content-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.content-block p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.content-block p:last-child { margin-bottom: 0; }

.research-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }

.research-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.research-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.research-item h4 { font-size: 0.9rem; margin-bottom: 0.4rem; }
.research-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

.content-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.sidebar-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }

.principles-list { display: flex; flex-direction: column; gap: 0.6rem; }
.principles-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--text-secondary); }
.principles-list li i { color: var(--primary); font-size: 0.55rem; }

.sidebar-image-card { overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.sidebar-img { width: 100%; height: 200px; object-fit: cover; }

/* --- CTA Band --- */
.cta-band {
  padding: 4rem 2rem;
  background: var(--primary);
}

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

.cta-band-text h2 { font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.cta-band-text p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.cta-band .btn-primary {
  background: var(--accent-warm);
  box-shadow: 0 4px 14px rgba(196, 149, 106, 0.4);
}

.cta-band .btn-primary:hover { background: var(--accent-clay); }

.cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.7); }

/* --- Formats Page --- */
.format-detail-cards { display: flex; flex-direction: column; gap: 3rem; }

.format-detail-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.format-detail-image { position: relative; }

.format-detail-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.format-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.open-badge { background: var(--primary); color: #fff; }
.inhouse-badge { background: var(--accent-warm); color: #fff; }

.format-detail-body { padding: 2.5rem; }

.format-detail-body h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }

.format-intro { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.75rem; }

.format-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--bg-muted);
  border-radius: var(--radius-md);
}

.spec-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.spec-item i { color: var(--primary); font-size: 0.9rem; margin-top: 0.2rem; flex-shrink: 0; }
.spec-item strong { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); display: block; }
.spec-item p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

.format-includes, .format-suitable { margin-bottom: 1.75rem; }
.format-includes h3, .format-suitable h3 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.format-includes ul { display: flex; flex-direction: column; gap: 0.5rem; }
.format-includes li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--text-secondary); }
.format-includes li i { color: var(--accent-sage); font-size: 0.75rem; }
.format-suitable p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

.format-faq { margin-top: 4rem; }
.format-faq h2 { font-size: 1.5rem; margin-bottom: 2rem; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.faq-item {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 { font-size: 0.95rem; margin-bottom: 0.6rem; color: var(--text-primary); }
.faq-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* --- Dates Page --- */
.dates-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.dates-intro-text p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.75rem; }
.dates-intro-text p:last-child { margin-bottom: 0; }
.dates-intro-text a { color: var(--primary); font-weight: 600; }

.dates-intro-note {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(61, 90, 76, 0.06);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  max-width: 260px;
  flex-shrink: 0;
}

.dates-intro-note i { color: var(--primary); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.dates-intro-note p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.dates-intro-note a { color: var(--primary); font-weight: 600; }

.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.date-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  transform-style: preserve-3d;
}

.date-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.date-card-header {
  background: var(--primary);
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.25rem;
}

.date-day {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.date-year {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.date-card-body { padding: 1.5rem; }
.date-card-body h3 { font-size: 1rem; margin-bottom: 0.75rem; }

.date-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.date-meta span { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--text-muted); }
.date-meta span i { color: var(--primary); font-size: 0.75rem; }

.date-card-body p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.25rem; }

.dates-note {
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.dates-note-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.dates-note-inner i { color: var(--accent-warm); font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.dates-note-inner h3 { font-size: 1.1rem; color: var(--text-on-dark); margin-bottom: 0.5rem; }
.dates-note-inner p { font-size: 0.88rem; color: rgba(232, 224, 208, 0.65); line-height: 1.65; margin-bottom: 0.75rem; }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form-card > p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 2rem; }
.contact-form-card > p a { color: var(--primary); font-weight: 600; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.required { color: var(--accent-clay); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-base);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61, 90, 76, 0.1);
  background: var(--bg-card);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
  margin: 0;
}

.form-checkbox label a { color: var(--primary); font-weight: 600; }

.contact-info-col { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 1.5rem; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.contact-detail-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-detail-item i { color: var(--primary); font-size: 1rem; margin-top: 0.2rem; flex-shrink: 0; }
.contact-detail-item strong { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.2rem; }
.contact-detail-item p, .contact-detail-item address { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }
.contact-detail-item a { color: var(--primary); font-weight: 500; }
.contact-detail-item a:hover { color: var(--primary-dark); }

.contact-map-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-map-card h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }

.map-wrap { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.5rem; }

.transport-info h4 { font-size: 0.85rem; margin-bottom: 0.75rem; }
.transport-info ul { display: flex; flex-direction: column; gap: 0.5rem; }
.transport-info li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-secondary); }
.transport-info li i { color: var(--primary); font-size: 0.8rem; }

/* --- Thanks Page --- */
.thanks-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.thanks-inner {
  text-align: center;
  max-width: 520px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.thanks-inner h1 { font-size: 2rem; margin-bottom: 1rem; }
.thanks-inner > p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.75rem; }
.thanks-sub { margin-top: 1.5rem; font-weight: 600; color: var(--text-secondary); }
.thanks-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0 2rem; }
.thanks-home { display: inline-flex; align-items: center; gap: 0.5rem; }

/* --- Legal Pages --- */
.legal-content { max-width: 780px; }

.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-block:last-child { border-bottom: none; }

.legal-block h2 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-primary); }
.legal-block p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 0.75rem; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { display: flex; flex-direction: column; gap: 0.5rem; margin: 0.75rem 0; padding-left: 1.25rem; }
.legal-block li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; list-style: disc; }
.legal-block a { color: var(--primary); font-weight: 500; }
.legal-block a:hover { color: var(--primary-dark); }
.legal-block address { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.9; }

.cookie-category { margin: 1.5rem 0; padding: 1.5rem; background: var(--bg-muted); border-radius: var(--radius-md); border: 1px solid var(--border-light); }
.cookie-category h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.cookie-category p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1rem; }

.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.cookie-table th { text-align: left; padding: 0.5rem 0.75rem; background: rgba(61, 90, 76, 0.08); color: var(--text-primary); font-weight: 600; border-bottom: 1px solid var(--border-medium); }
.cookie-table td { padding: 0.5rem 0.75rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-light); }
.cookie-table tr:last-child td { border-bottom: none; }

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  margin-left: var(--sidebar-width);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo { width: 140px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(232, 224, 208, 0.55); line-height: 1.65; }

.footer-links h4, .footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(232, 224, 208, 0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent-warm); }

.footer-contact address { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact p { font-size: 0.82rem; color: rgba(232, 224, 208, 0.6); display: flex; align-items: center; gap: 0.5rem; }
.footer-contact a { color: rgba(232, 224, 208, 0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent-warm); }
.footer-contact i { color: var(--accent-warm); font-size: 0.75rem; opacity: 0.8; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(232, 224, 208, 0.35);
}

.footer-bottom a { color: rgba(232, 224, 208, 0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent-warm); }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: var(--sidebar-width);
  right: 0;
  z-index: 999;
  padding: 1.25rem 2rem;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-text p { font-size: 0.85rem; color: rgba(232, 224, 208, 0.75); line-height: 1.6; margin: 0; }
.cookie-banner-text a { color: var(--accent-warm); }

.cookie-banner-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

.cookie-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  min-height: 44px;
}

.cookie-btn-accept { background: var(--primary); color: #fff; }
.cookie-btn-accept:hover { background: var(--primary-dark); }
.cookie-btn-reject { background: transparent; color: rgba(232, 224, 208, 0.7); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.5); color: var(--text-on-dark); }
.cookie-btn-customize { background: transparent; color: var(--accent-warm); border: 1px solid rgba(196, 149, 106, 0.4); }
.cookie-btn-customize:hover { border-color: var(--accent-warm); }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cookie-modal-overlay.visible { opacity: 1; pointer-events: all; }

.cookie-modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.cookie-modal > p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1.5rem; }

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-light);
}

.cookie-option-text { flex: 1; }
.cookie-option-text strong { font-size: 0.88rem; display: block; margin-bottom: 0.25rem; }
.cookie-option-text span { font-size: 0.78rem; color: var(--text-muted); }

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--primary); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { background: var(--primary); opacity: 0.7; cursor: not-allowed; }

.cookie-modal-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .mobile-header { display: flex; }
  .mobile-overlay.visible { display: block; }
  .main-content { margin-left: 0; padding-top: 64px; }
  .site-footer { margin-left: 0; }
  .cookie-banner { left: 0; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-img { height: 300px; }
  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .who-grid { grid-template-columns: 1fr; }
  .who-image-col { order: -1; }
  .who-img { height: 300px; }
  .who-image-card { right: 0; bottom: -1rem; }
  .location-grid { grid-template-columns: 1fr; }
  .location-img { height: 280px; }
  .evidence-image-row { grid-template-columns: 1fr; }
  .formats-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .content-two-col { grid-template-columns: 1fr; }
  .content-sidebar { order: -1; }
  .format-detail-card { grid-template-columns: 1fr; }
  .format-detail-img { height: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .dates-grid { grid-template-columns: repeat(2, 1fr); }
  .dates-intro { grid-template-columns: 1fr; }
  .dates-intro-note { max-width: 100%; }
}

@media (max-width: 768px) {
  .hero-section { padding: 3rem 1.25rem 3rem; }
  .problem-section, .learn-section, .journey-section, .who-section, .evidence-section, .formats-preview-section, .location-section { padding: 3.5rem 1.25rem; }
  .content-section { padding: 2.5rem 1.25rem 3.5rem; }
  .page-hero { padding: 2.5rem 1.25rem 2rem; }
  .section-inner { padding: 0 1.25rem; }

  .learn-grid { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .format-specs { grid-template-columns: 1fr; }
  .dates-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .thanks-links { flex-direction: column; align-items: center; }
  .cookie-banner { padding: 1rem 1.25rem; }
  .cookie-banner-inner { flex-direction: column; gap: 1rem; }
  .cookie-banner-actions { width: 100%; justify-content: center; }
  .journey-step { grid-template-columns: 48px 1fr; gap: 1rem; }
  .step-bubble { width: 48px; height: 48px; }
  .step-connector { left: 23px; }
  .step-num { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 1.75rem; }
  .section-heading { font-size: 1.35rem; }
  .page-title { font-size: 1.6rem; }
  .contact-form-card { padding: 1.5rem; }
  .cookie-modal { padding: 1.5rem; }
}