/* ============================================================
   SPRING WHISPER - Main Stylesheet
   Retro Modern Design System
   ============================================================ */


:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --mustard: #C8922A;
  --mustard-light: #E8B84B;
  --mustard-pale: #F5E6C8;
  --terracotta: #B85C38;
  --terracotta-light: #D4795A;
  --olive: #6B7C47;
  --olive-dark: #4A5730;
  --olive-pale: #E8EDD8;
  --dusty-rose: #C4896F;
  --charcoal: #2C2416;
  --charcoal-light: #3D3222;
  --warm-gray: #8A7E6E;
  --warm-gray-light: #B5ADA0;
  --border-subtle: rgba(200, 146, 42, 0.2);
  --border-medium: rgba(200, 146, 42, 0.4);
  --shadow-sm: 0 2px 8px rgba(44,36,22,0.07), 0 1px 3px rgba(44,36,22,0.10);
  --shadow-md: 0 8px 24px rgba(44,36,22,0.09), 0 2px 8px rgba(44,36,22,0.12);
  --shadow-lg: 0 16px 48px rgba(44,36,22,0.11), 0 4px 16px rgba(44,36,22,0.09);
  --shadow-xl: 0 24px 64px rgba(44,36,22,0.14), 0 8px 24px rgba(44,36,22,0.10);
  --shadow-mustard: 0 4px 20px rgba(200,146,42,0.25), 0 1px 6px rgba(200,146,42,0.15);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-heading {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.section-heading--light {
  color: var(--cream);
}

.section-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 12px;
}

.section-label--light {
  color: var(--mustard-light);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mustard);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.btn-link:hover {
  gap: 14px;
  color: var(--terracotta);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid rgba(245,240,232,0.5);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}

.btn-outline-light:hover {
  background: rgba(245,240,232,0.15);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ============================================================
   GLOBAL HEADER
   ============================================================ */

.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease;
}

.global-header.scrolled {
  background: var(--warm-white);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.global-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--mustard), var(--terracotta));
  transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.global-header.scrolled::after {
  left: 0;
  right: 0;
}

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

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease;
}

.logo-text:hover {
  opacity: 0.8;
}

.logo-text span {
  color: var(--mustard);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mustard);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--mustard);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}


.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(245,240,232,0.1);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease;
  letter-spacing: -0.01em;
}

.mobile-nav-link:hover {
  color: var(--mustard-light);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.home-hero {
  min-height: 100vh;
  background: var(--cream);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,146,42,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(184,92,56,0.07) 0%, transparent 45%);
  pointer-events: none;
}

.home-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,42,0.10);
  border: 1px solid rgba(200,146,42,0.28);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mustard);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.home-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--charcoal);
  max-width: 820px;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}

.home-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.home-hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--warm-gray);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
  font-weight: 400;
}

.home-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mustard);
  color: var(--warm-white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(200,146,42,0.30), 0 1px 4px rgba(200,146,42,0.18);
  border: 2px solid var(--mustard);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}

.btn-primary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,92,56,0.30), 0 2px 8px rgba(184,92,56,0.18);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}


.home-hero-image-wrap {
  position: absolute;
  right: 0;
  top: 72px;
  bottom: 80px;
  width: 42%;
  overflow: hidden;
}

.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 30%);
  z-index: 1;
}


.home-stats-bar {
  background: var(--charcoal);
  padding: 0;
  position: relative;
  z-index: 2;
}

.home-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}

.home-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 40px;
  flex: 1;
  transition: background 0.25s ease;
}

.home-stat-item:hover {
  background: rgba(200,146,42,0.08);
}

.home-stat-item > i {
  font-size: 1.4rem;
  color: var(--mustard);
  flex-shrink: 0;
}

.home-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-stat-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

.home-stat-text span {
  font-size: 0.78rem;
  color: var(--warm-gray-light);
}

.home-stat-divider {
  width: 1px;
  background: rgba(245,240,232,0.1);
  align-self: stretch;
  margin: 12px 0;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */

.home-intro {
  padding: var(--space-3xl) 0;
}

.home-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-intro-text {
  container-type: inline-size;
  container-name: intro-text;
}

.home-intro-text p {
  color: var(--warm-gray);
  margin-bottom: 20px;
  line-height: 1.75;
  font-size: 1.02rem;
}

.home-intro-text p:last-of-type {
  margin-bottom: 32px;
}

.home-intro-visual {
  position: relative;
}

.home-intro-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.home-intro-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--mustard);
  color: var(--warm-white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  max-width: 260px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-intro-badge i {
  font-size: 1.2rem;
  opacity: 0.7;
}

.home-intro-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}

/* ============================================================
   FEATURES TABS
   ============================================================ */

.home-features {
  padding: var(--space-3xl) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.home-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mustard), var(--terracotta), var(--olive));
}

.home-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-features-header {
  margin-bottom: 56px;
  max-width: 640px;
}

.features-tab-nav {
  display: flex;
  gap: 4px;
  background: rgba(44,36,22,0.06);
  padding: 6px;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  width: fit-content;
}

.features-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--warm-gray);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Manrope', sans-serif;
}

.features-tab-btn:hover {
  color: var(--charcoal);
  background: rgba(44,36,22,0.04);
}

.features-tab-btn.active {
  background: var(--warm-white);
  color: var(--mustard);
  box-shadow: var(--shadow-sm);
}

.features-tab-content {
  container-type: inline-size;
  container-name: features-tabs;
}

.features-tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-tab-panel.active {
  display: grid;
}

.features-tab-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.features-tab-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.features-tab-visual:hover .features-tab-img {
  transform: scale(1.03);
}

.features-tab-info {
  container-type: inline-size;
}

.features-tab-icon {
  width: 52px;
  height: 52px;
  background: var(--mustard-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mustard);
  font-size: 1.3rem;
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
}

.features-tab-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.features-tab-info p {
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.features-list li i {
  color: var(--olive);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================================
   FORMAT SECTION
   ============================================================ */

.home-format {
  padding: var(--space-3xl) 0;
}

.home-format-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-format-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.home-format-lead {
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
  container-type: inline-size;
  container-name: format-grid;
}

.home-format-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.home-format-card--accent {
  background: var(--charcoal);
  border-color: transparent;
}

.home-format-card--accent h3,
.home-format-card--accent p {
  color: var(--cream);
}

.home-format-card--accent .home-format-time {
  color: var(--mustard-light);
}

.home-format-day {
  display: inline-block;
  background: var(--mustard);
  color: var(--warm-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.home-format-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.home-format-card p {
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.home-format-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mustard);
}

.home-format-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.home-format-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-format-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */

.home-audience {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.home-audience-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-audience-text p {
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 32px;
  font-size: 1rem;
}

.home-audience-profiles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-audience-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-audience-profile:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.home-audience-profile-icon {
  width: 44px;
  height: 44px;
  background: var(--mustard-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mustard);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.home-audience-profile div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-audience-profile strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.home-audience-profile span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.home-audience-visual {
  position: relative;
}

.home-audience-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */

.home-process {
  padding: var(--space-3xl) 0;
}

.home-process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-process-header {
  margin-bottom: 64px;
  max-width: 560px;
}

.home-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  container-type: inline-size;
  container-name: process-steps;
}

.home-process-step {
  flex: 1;
  padding: 32px 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.home-process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--mustard);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.home-process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.home-process-step p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

.home-process-connector {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--mustard), var(--terracotta));
  align-self: center;
  flex-shrink: 0;
  margin-top: -20px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.home-faq {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.home-faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-faq-header {
  margin-bottom: 48px;
}

.home-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-faq-item {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}

.home-faq-item:hover {
  box-shadow: var(--shadow-md);
}

.home-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.25s ease;
}

.home-faq-question:hover {
  color: var(--mustard);
}

.home-faq-question[aria-expanded="true"] {
  color: var(--mustard);
  border-bottom: 1px solid var(--border-subtle);
}

.home-faq-icon {
  font-size: 0.9rem;
  color: var(--mustard);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.home-faq-question[aria-expanded="true"] .home-faq-icon {
  transform: rotate(45deg);
}

.home-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease;
  padding: 0 24px;
}

.home-faq-answer.open {
  max-height: 300px;
  padding: 20px 24px;
}

.home-faq-answer p {
  color: var(--warm-gray);
  line-height: 1.75;
  font-size: 0.93rem;
}

/* ============================================================
   FAQ CARDS
   ============================================================ */

.home-faq-cards {
  padding: var(--space-3xl) 0;
}

.home-faq-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-faq-cards-header {
  margin-bottom: 48px;
}

.home-faq-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  container-type: inline-size;
  container-name: faq-cards-grid;
}

.home-faq-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.home-faq-card-front,
.home-faq-card-back {
  position: absolute;
  inset: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-faq-card-front {
  opacity: 1;
  transform: translateY(0);
}

.home-faq-card-back {
  opacity: 0;
  transform: translateY(12px);
  background: var(--mustard);
}

.home-faq-card.revealed .home-faq-card-front {
  opacity: 0;
  transform: translateY(-12px);
}

.home-faq-card.revealed .home-faq-card-back {
  opacity: 1;
  transform: translateY(0);
}

.home-faq-card-front i {
  font-size: 1.4rem;
  color: var(--mustard);
  margin-bottom: 12px;
}

.home-faq-card-front h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.home-faq-card-tap {
  font-size: 0.75rem;
  color: var(--warm-gray-light);
  font-weight: 500;
}

.home-faq-card-back p {
  font-size: 0.88rem;
  color: var(--warm-white);
  line-height: 1.65;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.home-cta,
.about-cta,
.workshops-cta,
.craftsmen-cta {
  padding: var(--space-3xl) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.home-cta::before,
.about-cta::before,
.workshops-cta::before,
.craftsmen-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,146,42,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(184,92,56,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.home-cta-inner,
.about-cta-inner,
.workshops-cta-inner,
.craftsmen-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-cta-content p,
.about-cta-inner p,
.workshops-cta-inner p,
.craftsmen-cta-inner p {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.home-cta-actions,
.about-cta-actions,
.workshops-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.global-footer {
  background: var(--charcoal-light);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(245,240,232,0.08);
}

.global-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.global-footer-logo .logo-text {
  color: var(--cream);
}

.global-footer-tagline {
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}

.global-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.global-footer-links a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.global-footer-links a:hover {
  color: var(--mustard-light);
}

.global-footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.global-footer-contact a,
.global-footer-contact span {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.global-footer-contact a:hover {
  color: var(--mustard-light);
}

.global-footer-contact i {
  color: var(--mustard);
  font-size: 0.8rem;
}

.global-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px solid rgba(245,240,232,0.06);
  width: 100%;
}

.global-footer-legal a {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.global-footer-legal a:hover {
  color: var(--mustard-light);
}

.global-footer-copy {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-story {
  padding: var(--space-3xl) 0;
}

.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-text p {
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-story-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-philosophy {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.about-philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-philosophy-header {
  margin-bottom: 56px;
}

.about-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  container-type: inline-size;
  container-name: philosophy-grid;
}

.about-philosophy-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-philosophy-icon {
  width: 48px;
  height: 48px;
  background: var(--mustard-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mustard);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.about-philosophy-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.about-philosophy-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.about-trainer {
  padding: var(--space-3xl) 0;
}

.about-trainer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-trainer-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-trainer-text p {
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-values {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.about-values-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-values-inner > .section-heading {
  margin-bottom: 48px;
}

.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-values-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.about-values-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mustard);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.about-values-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.about-values-item p {
  font-size: 0.93rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ============================================================
   WORKSHOPS PAGE
   ============================================================ */

.workshops-overview {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.workshops-overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.workshops-overview-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.workshops-overview-card--accent {
  background: var(--charcoal);
  border-color: transparent;
}

.workshops-overview-card--accent h2,
.workshops-overview-card--accent h4,
.workshops-overview-card--accent p {
  color: var(--cream);
}

.workshops-overview-day-label {
  display: inline-block;
  background: var(--mustard);
  color: var(--warm-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.workshops-overview-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.workshops-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workshops-schedule-block {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.workshops-overview-card--accent .workshops-schedule-block {
  border-bottom-color: rgba(245,240,232,0.1);
}

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

.workshops-schedule-block--break {
  opacity: 0.6;
}

.workshops-schedule-time {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mustard);
  padding-top: 3px;
  letter-spacing: 0.02em;
}

.workshops-overview-card--accent .workshops-schedule-time {
  color: var(--mustard-light);
}

.workshops-schedule-content h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.workshops-schedule-content p {
  font-size: 0.87rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.workshops-included {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.workshops-included-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.workshops-included-header {
  margin-bottom: 48px;
}

.workshops-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  container-type: inline-size;
  container-name: included-grid;
}

.workshops-included-item {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshops-included-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.workshops-included-item > i {
  font-size: 1.6rem;
  color: var(--mustard);
  margin-bottom: 16px;
  display: block;
}

.workshops-included-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.workshops-included-item p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

.workshops-included-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/6;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   CRAFTSMEN PAGE
   ============================================================ */

.craftsmen-challenges {
  padding: var(--space-3xl) 0;
}

.craftsmen-challenges-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.craftsmen-challenges-header {
  margin-bottom: 56px;
  max-width: 640px;
}

.craftsmen-challenges-lead {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-top: 16px;
}

.craftsmen-challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  container-type: inline-size;
  container-name: challenges-grid;
}

.craftsmen-challenge-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.craftsmen-challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.craftsmen-challenge-icon {
  width: 48px;
  height: 48px;
  background: var(--mustard-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mustard);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.craftsmen-challenge-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.craftsmen-challenge-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.craftsmen-approach {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.craftsmen-approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.craftsmen-approach-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.craftsmen-approach-text p {
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 1rem;
}

.craftsmen-approach-text p:last-of-type {
  margin-bottom: 28px;
}

.craftsmen-scenarios {
  padding: var(--space-3xl) 0;
}

.craftsmen-scenarios-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.craftsmen-scenarios-header {
  margin-bottom: 48px;
}

.craftsmen-scenarios-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.craftsmen-scenario {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.craftsmen-scenario:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.craftsmen-scenario-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--mustard);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.craftsmen-scenario-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.craftsmen-scenario-content p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-form-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.contact-form-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.contact-form-header {
  margin-bottom: 36px;
}

.contact-form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.contact-wizard-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.contact-wizard-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--warm-gray-light);
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.3s ease;
}

.contact-wizard-step.active .contact-step-num {
  background: var(--mustard);
}

.contact-wizard-step.completed .contact-step-num {
  background: var(--olive);
}

.contact-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warm-gray);
  transition: color 0.3s ease;
}

.contact-wizard-step.active .contact-step-label {
  color: var(--mustard);
}

.contact-wizard-connector {
  flex: 1;
  height: 2px;
  background: var(--border-subtle);
  margin: 0 12px;
  min-width: 24px;
}

.contact-wizard-panel {
  display: none;
}

.contact-wizard-panel.active {
  display: block;
}

.contact-field-group {
  margin-bottom: 20px;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact-required {
  color: var(--terracotta);
}

.contact-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--warm-white);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 0.93rem;
  color: var(--charcoal);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-input:focus {
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
}

.contact-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A7E6E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.contact-privacy-group {
  margin-top: 8px;
}

.contact-privacy-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.contact-privacy-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--mustard);
}

.contact-privacy-label span {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.contact-privacy-label a {
  color: var(--mustard);
  text-decoration: underline;
}

.contact-wizard-nav {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.contact-wizard-nav--split {
  justify-content: space-between;
}

.contact-info-wrap {
  position: sticky;
  top: 96px;
}

.contact-info-card {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,146,42,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mustard);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-item strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.contact-info-item a,
.contact-info-item span {
  font-size: 0.9rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-info-item a:hover {
  color: var(--mustard-light);
}

.contact-space-section {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.contact-space-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-space-text p {
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 1rem;
}

.contact-space-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.contact-map-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.contact-map-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-map-inner .section-heading {
  margin-bottom: 32px;
}

.contact-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */

.thanks-timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0 auto 40px;
  max-width: 360px;
  text-align: left;
}

.thanks-timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 8px 0;
}

.thanks-timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm-gray-light);
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.thanks-timeline-icon--active {
  background: var(--mustard);
  box-shadow: 0 0 0 4px rgba(200,146,42,0.2);
}

.thanks-timeline-icon--upcoming {
  background: transparent;
  border: 2px dashed var(--warm-gray-light);
  color: var(--warm-gray-light);
}

.thanks-timeline-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.thanks-timeline-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

.thanks-timeline-text span {
  font-size: 0.83rem;
  color: var(--warm-gray);
}

.thanks-timeline-item.thanks-timeline-upcoming .thanks-timeline-text strong,
.thanks-timeline-item.thanks-timeline-upcoming .thanks-timeline-text span {
  color: var(--warm-gray-light);
}

.thanks-timeline-connector {
  width: 2px;
  height: 32px;
  background: var(--border-subtle);
  margin-left: 19px;
}

.thanks-timeline-connector--done {
  background: var(--mustard);
}

.thanks-home-btn {
  margin-top: 8px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-main {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--border-subtle);
}

.legal-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-style: italic;
}

.legal-intro-block {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
  border-left: 4px solid var(--mustard);
}

.legal-intro-block p {
  font-size: 0.93rem;
  color: var(--warm-gray);
  line-height: 1.75;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}

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

.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.legal-section h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-section p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.legal-section ul li {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

.legal-section a {
  color: var(--mustard);
  text-decoration: underline;
}

.legal-section a:hover {
  color: var(--terracotta);
}

.legal-container > p {
  font-size: 0.93rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 32px;
}


.legal-terms-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal-clause {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.legal-clause-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mustard);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.legal-clause h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.legal-clause p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-clause p:last-child {
  margin-bottom: 0;
}

.legal-clause ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.legal-clause ul li {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

.legal-clause a {
  color: var(--mustard);
  text-decoration: underline;
}


.cookies-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  margin: 20px 0;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookies-table th {
  background: var(--cream);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--charcoal);
  border-bottom: 2px solid var(--border-subtle);
  white-space: nowrap;
}

.cookies-table td {
  padding: 12px 16px;
  color: var(--warm-gray);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
  line-height: 1.5;
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

.cookies-table tr:hover td {
  background: rgba(200,146,42,0.03);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */

.sw-cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 100%;
  max-width: 360px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 16px rgba(44,36,22,0.12),
    0 16px 48px rgba(44,36,22,0.10),
    0 0 0 1px var(--border-subtle);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
}

.sw-cookie-consent.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.sw-cookie-body {
  padding: 20px 20px 16px;
}

.sw-cookie-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sw-cookie-title i {
  color: var(--mustard);
  font-size: 0.9rem;
}

.sw-cookie-text {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sw-cookie-text a {
  color: var(--mustard);
  text-decoration: underline;
}

.sw-cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sw-cookie-btn-accept {
  background: var(--mustard);
  color: var(--warm-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
  width: 100%;
}

.sw-cookie-btn-accept:hover {
  background: var(--terracotta);
}

.sw-cookie-btn-reject {
  background: transparent;
  color: var(--warm-gray);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
}

.sw-cookie-btn-reject:hover {
  border-color: var(--warm-gray);
  color: var(--charcoal);
}

.sw-cookie-btn-customize {
  background: none;
  border: none;
  color: var(--mustard);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  padding: 6px;
  transition: color 0.25s ease;
  text-decoration: underline;
}

.sw-cookie-btn-customize:hover {
  color: var(--terracotta);
}

.sw-cookie-customize-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  background: var(--cream);
  border-top: 1px solid var(--border-subtle);
}

.sw-cookie-customize-panel.open {
  max-height: 300px;
  padding: 16px 20px;
}

.sw-cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.sw-cookie-option:last-child {
  border-bottom: none;
}

.sw-cookie-option-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
}

.sw-cookie-option-desc {
  font-size: 0.72rem;
  color: var(--warm-gray);
  margin-top: 2px;
}

.sw-cookie-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

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

.sw-cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--warm-gray-light);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.sw-cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s ease;
}

.sw-cookie-toggle input:checked + .sw-cookie-toggle-slider {
  background: var(--mustard);
}

.sw-cookie-toggle input:checked + .sw-cookie-toggle-slider::before {
  transform: translateX(16px);
}

.sw-cookie-toggle input:disabled + .sw-cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.sw-cookie-customize-save {
  background: var(--mustard);
  color: var(--warm-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
  width: 100%;
  margin-top: 12px;
}

.sw-cookie-customize-save:hover {
  background: var(--terracotta);
}

/* ============================================================
   CONTAINER QUERIES
   ============================================================ */

@container features-tabs (max-width: 700px) {
  .features-tab-panel.active {
    grid-template-columns: 1fr;
  }
}

@container format-grid (max-width: 600px) {
  .home-format-grid {
    grid-template-columns: 1fr;
  }
}

@container philosophy-grid (max-width: 600px) {
  .about-philosophy-grid {
    grid-template-columns: 1fr;
  }
}

@container challenges-grid (max-width: 600px) {
  .craftsmen-challenges-grid {
    grid-template-columns: 1fr;
  }
}

@container included-grid (max-width: 600px) {
  .workshops-included-grid {
    grid-template-columns: 1fr;
  }
}

@container faq-cards-grid (max-width: 700px) {
  .home-faq-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@container faq-cards-grid (max-width: 440px) {
  .home-faq-cards-grid {
    grid-template-columns: 1fr;
  }
}

@container process-steps (max-width: 700px) {
  .home-process-steps {
    flex-direction: column;
  }
  .home-process-connector {
    width: 2px;
    height: 24px;
    margin: 0 0 0 19px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .home-hero-image-wrap {
    width: 38%;
  }

  .home-intro-inner,
  .home-audience-inner,
  .about-story-inner,
  .about-trainer-inner,
  .craftsmen-approach-inner,
  .contact-space-inner {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .global-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .home-hero-image-wrap {
    display: none;
  }

  .home-hero-inner {
    padding: 60px 24px 40px;
  }

  .home-stats-inner {
    flex-wrap: wrap;
  }

  .home-stat-item {
    padding: 18px 20px;
    flex: 1 1 calc(50% - 1px);
  }

  .home-stat-divider:nth-child(4) {
    display: none;
  }

  .home-intro-inner,
  .home-audience-inner,
  .about-story-inner,
  .about-trainer-inner,
  .craftsmen-hero-inner,
  .craftsmen-approach-inner,
  .contact-space-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-intro-badge {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }

  .features-tab-panel.active {
    grid-template-columns: 1fr;
  }

  .home-format-grid,
  .home-format-image-row {
    grid-template-columns: 1fr;
  }

  .about-philosophy-grid,
  .craftsmen-challenges-grid,
  .workshops-included-grid {
    grid-template-columns: 1fr;
  }

  .home-process-steps {
    flex-direction: column;
  }

  .home-process-connector {
    width: 2px;
    height: 24px;
    margin: 0 0 0 19px;
  }

  .home-faq-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-section-inner {
    grid-template-columns: 1fr;
  }

  .contact-info-wrap {
    position: static;
  }

  .workshops-schedule-block {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .workshops-schedule-time {
    font-size: 0.78rem;
  }
}

@media (max-width: 600px) {
  :root {
    --space-3xl: 80px;
    --space-2xl: 64px;
    --space-xl: 48px;
  }

  .home-hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .home-hero-actions {
    flex-direction: column;
  }

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

  .home-stat-item {
    flex: 1 1 100%;
  }

  .home-stat-divider {
    display: none;
  }

  .features-tab-nav {
    flex-direction: column;
    width: 100%;
  }

  .features-tab-btn {
    justify-content: center;
  }

  .home-faq-cards-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-actions,
  .about-cta-actions,
  .workshops-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .workshops-overview-card {
    padding: 28px 20px;
  }

  .craftsmen-scenario {
    flex-direction: column;
    gap: 12px;
  }

  .sw-cookie-consent {
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    bottom: 12px;
  }

  .global-footer-contact {
    flex-direction: column;
    gap: 12px;
  }

  .global-footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .about-values-item {
    flex-direction: column;
    gap: 12px;
  }

  .legal-clause {
    flex-direction: column;
    gap: 8px;
  }

  .contact-wizard-steps {
    gap: 0;
  }

  .contact-step-label {
    display: none;
  }
}

/* ============================================================
   ANIMATIONS (entrance)
   ============================================================ */

.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.anim-fade-in {
  opacity: 0;
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.96);
}