/* ============================================
   GUPADU LIFE - MAIN STYLESHEET
   CSS Custom Properties & Global Styles
   ============================================ */

:root {
  --sage: #7a9e7e;
  --sage-light: #a8c5ab;
  --sage-pale: #e8f0e9;
  --cream: #f7f4ef;
  --warm-white: #fdfcf9;
  --forest: #2d4a32;
  --forest-deep: #1a2e1d;
  --terracotta: #c4714a;
  --terracotta-light: #e8a882;
  --terracotta-pale: #f5e4d8;
  --charcoal: #2c2c2c;
  --mid-gray: #6b6b6b;
  --light-gray: #e8e4de;
  --border-color: #ddd8d0;
  --nav-bg: rgba(247,244,239,0.97);

  --shadow-sm: 0 1px 3px rgba(44,44,44,0.08), 0 1px 2px rgba(44,44,44,0.05);
  --shadow-md: 0 4px 12px rgba(44,44,44,0.1), 0 2px 6px rgba(44,44,44,0.06);
  --shadow-lg: 0 10px 30px rgba(44,44,44,0.12), 0 4px 12px rgba(44,44,44,0.08);
  --shadow-xl: 0 20px 60px rgba(44,44,44,0.15), 0 8px 24px rgba(44,44,44,0.1);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
}

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

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

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

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

a {
  color: var(--sage);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--forest);
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.section-eyebrow--light {
  color: var(--sage-light);
}

.section-eyebrow--light::before {
  background: var(--sage-light);
}

.section-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-body {
  font-size: 0.975rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(196,113,74,0.3), 0 1px 4px rgba(196,113,74,0.2);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  background: #b5633e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,113,74,0.4), 0 2px 8px rgba(196,113,74,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 2px solid var(--forest);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
  background: var(--forest);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

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

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

.global-header {
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-gray);
  position: relative;
  z-index: 100;
}

.global-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.global-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.global-header__logo img {
  height: 38px;
  width: auto;
}

.global-header__logo-text {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.global-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.global-header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
}

.global-header__nav a:hover {
  color: var(--sage);
}

.global-header__cta {
  background: var(--forest) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
  transition: background 0.25s ease !important;
}

.global-header__cta:hover {
  background: var(--sage) !important;
  color: #fff !important;
}

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

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

.global-header__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.global-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.global-header__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE NAV - ACCORDION PATTERN
   ============================================ */

.global-mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--light-gray);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.global-mobile-nav.open {
  max-height: 400px;
}

.global-mobile-nav__inner {
  padding: 0.75rem 0;
}

.global-mobile-nav__link {
  display: block;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.global-mobile-nav__link:hover {
  background: var(--sage-pale);
  color: var(--forest);
}

.global-mobile-nav__link--cta {
  color: var(--terracotta);
  font-weight: 600;
  border-bottom: none;
}

/* ============================================
   HOME INTRO BAND
   ============================================ */

.home-intro-band {
  background: var(--forest);
  padding: 1rem 2rem;
}

.home-intro-band__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.home-intro-band__inner span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sage-light);
  letter-spacing: 0.04em;
}

.home-intro-band__inner span i {
  color: var(--sage-light);
  font-size: 0.75rem;
}

/* ============================================
   HOME ABOUT
   ============================================ */

.home-about {
  padding: var(--space-2xl) 2rem;
  background: var(--warm-white);
}

.home-about__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.home-about__image-frame {
  position: relative;
}

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

.home-about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--terracotta-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.home-about__text-col .section-eyebrow {
  margin-bottom: 0.5rem;
}

/* ============================================
   HOME FEATURES
   ============================================ */

.home-features {
  padding: var(--space-2xl) 2rem;
  background: var(--cream);
}

.home-features__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-features__header {
  margin-bottom: 3rem;
  max-width: 600px;
}

.home-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.home-features__card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.home-features__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}

.home-features__card--accent {
  background: var(--forest);
  border-color: var(--forest);
}

.home-features__card--accent h3,
.home-features__card--accent p {
  color: rgba(255,255,255,0.9);
}

.home-features__card--accent h3 {
  color: #fff;
}

.home-features__card--accent .home-features__card-icon {
  background: rgba(255,255,255,0.15);
  color: var(--sage-light);
}

.home-features__card-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.home-features__card h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.home-features__card p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ============================================
   HOME COMPARISON
   ============================================ */

.home-comparison {
  padding: var(--space-2xl) 2rem;
  background: var(--warm-white);
}

.home-comparison__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-comparison__header {
  margin-bottom: 3rem;
}

.home-comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.home-comparison__col {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.home-comparison__col--a {
  background: var(--sage-pale);
  border-color: var(--sage-light);
}

.home-comparison__col--b {
  background: var(--cream);
}

.home-comparison__col-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.home-comparison__col-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.home-comparison__col-badge--natural {
  background: var(--forest);
  color: #fff;
}

.home-comparison__col-badge--medical {
  background: var(--terracotta);
  color: #fff;
}

.home-comparison__col-header h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.3;
}

.home-comparison__list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.home-comparison__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.home-comparison__list li:last-child {
  border-bottom: none;
}

.home-comparison__list li i {
  color: var(--forest);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.home-comparison__note {
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-style: italic;
  line-height: 1.6;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

.home-comparison__disclaimer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-align: center;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

/* ============================================
   HOME PARALLAX SECTION
   ============================================ */

.home-parallax-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-parallax-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-parallax-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-parallax-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,29,0.88) 0%, rgba(45,74,50,0.75) 100%);
  z-index: 1;
}

.home-parallax-section__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-parallax-section__title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.home-parallax-section__content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ============================================
   HOME JOURNEY
   ============================================ */

.home-journey {
  padding: var(--space-2xl) 2rem;
  background: var(--cream);
}

.home-journey__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-journey__header {
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.home-journey__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.home-journey__steps::before {
  content: '';
  position: absolute;
  left: 48px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sage-light), var(--terracotta-light));
  z-index: 0;
}

.home-journey__step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.home-journey__step-num {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.08em;
  text-align: center;
  padding-top: 0.25rem;
}

.home-journey__step-content {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.home-journey__step-content:hover {
  box-shadow: var(--shadow-md);
}

.home-journey__step-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.home-journey__step-content h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.6rem;
}

.home-journey__step-content p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ============================================
   HOME IMAGE FEATURE
   ============================================ */

.home-image-feature {
  padding: var(--space-2xl) 2rem;
  background: var(--warm-white);
}

.home-image-feature__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.home-image-feature__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.home-image-feature__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-image-feature__image:hover img {
  transform: scale(1.03);
}

.home-image-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.home-image-feature__tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--sage-pale);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--sage-light);
}

.home-image-feature__tags span i {
  font-size: 0.65rem;
  color: var(--sage);
}

/* ============================================
   HOME FAQ
   ============================================ */

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

.home-faq__inner {
  max-width: 900px;
  margin: 0 auto;
}

.home-faq__header {
  margin-bottom: 3rem;
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-faq__item {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s 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: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest-deep);
  transition: background 0.2s ease;
  min-height: 44px;
}

.home-faq__question:hover {
  background: var(--sage-pale);
}

.home-faq__question i {
  flex-shrink: 0;
  color: var(--sage);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.home-faq__question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.home-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.home-faq__answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.home-faq__answer p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.75;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

/* ============================================
   HOME CTA
   ============================================ */

.home-cta {
  padding: var(--space-2xl) 2rem;
  background: var(--forest);
}

.home-cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-cta__content .section-eyebrow {
  margin-bottom: 1rem;
}

.home-cta__content h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.home-cta__content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.home-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-cta__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.home-cta__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

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

.global-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) 2rem var(--space-md);
}

.global-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.global-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.global-footer__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.global-footer__logo span {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.global-footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.6);
}

.global-footer__brand address {
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
}

.global-footer__brand address i {
  color: var(--sage-light);
  width: 16px;
  margin-right: 0.35rem;
}

.global-footer__brand address a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.global-footer__brand address a:hover {
  color: var(--sage-light);
}

.global-footer__nav h4,
.global-footer__legal-nav h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.global-footer__nav ul,
.global-footer__legal-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.global-footer__nav a,
.global-footer__legal-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.global-footer__nav a:hover,
.global-footer__legal-nav a:hover {
  color: var(--sage-light);
}

.global-footer__legal-info {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.global-footer__legal-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.global-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
}

.global-footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   BACK TO TOP
   ============================================ */

.global-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(45,74,50,0.35), 0 2px 6px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 200;
}

.global-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.global-back-to-top:hover {
  background: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45,74,50,0.4);
}

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

.cookie-consent-card {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 12px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
  border: 1px solid var(--border-color);
}

.cookie-consent-card.show {
  display: block;
  animation: cookieSlideIn 0.4s ease;
}

@keyframes cookieSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-consent-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.cookie-consent-card__header i {
  color: var(--terracotta);
  font-size: 1.1rem;
}

.cookie-consent-card__header h3 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.cookie-consent-card p {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-consent-card p a {
  color: var(--sage);
}

.cookie-consent-card__customize {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  margin-bottom: 0;
}

.cookie-consent-card__customize.open {
  max-height: 200px;
  margin-bottom: 1rem;
}

.cookie-consent-card__toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--charcoal);
}

.cookie-consent-card__toggle input {
  accent-color: var(--sage);
  width: 16px;
  height: 16px;
}

.cookie-consent-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-btn {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
  min-height: 44px;
}

.cookie-btn--accept {
  background: var(--forest);
  color: #fff;
}

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

.cookie-btn--customize {
  background: var(--cream);
  color: var(--charcoal);
  border: 1px solid var(--border-color);
}

.cookie-btn--customize:hover {
  background: var(--light-gray);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--mid-gray);
  font-weight: 500;
  border: 1px solid var(--border-color);
}

.cookie-btn--reject:hover {
  background: var(--cream);
}

.cookie-consent-card__save {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--terracotta);
  color: #fff;
  border: none;
  transition: background 0.25s ease;
  font-family: 'Inter', sans-serif;
  min-height: 44px;
}

.cookie-consent-card__save:hover {
  background: #b5633e;
}

/* ============================================
   ABOUT PAGE - STORY SECTION
   ============================================ */

.about-story {
  padding: var(--space-2xl) 2rem;
  background: var(--warm-white);
}

.about-story__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-story__main {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

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

.about-story__block {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
}

.about-story__block:hover {
  box-shadow: var(--shadow-md);
}

.about-story__block-num {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.about-story__block-content h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.6rem;
}

.about-story__block-content p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ============================================
   ABOUT VALUES
   ============================================ */

.about-values {
  padding: var(--space-2xl) 2rem;
  background: var(--forest);
}

.about-values__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-values__header {
  margin-bottom: 3rem;
}

.about-values__header .section-heading {
  color: #fff;
}

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

.about-values__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.3s ease;
}

.about-values__card:hover {
  background: rgba(255,255,255,0.12);
}

.about-values__card i {
  font-size: 1.5rem;
  color: var(--sage-light);
  margin-bottom: 1.25rem;
  display: block;
}

.about-values__card h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.about-values__card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ============================================
   ABOUT DISCLAIMER
   ============================================ */

.about-disclaimer {
  padding: 3rem 2rem;
  background: var(--terracotta-pale);
}

.about-disclaimer__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about-disclaimer__inner i {
  font-size: 1.5rem;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-disclaimer__inner h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.about-disclaimer__inner p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ============================================
   PROGRAMMES PAGE
   ============================================ */
.programmes-grid {
  padding: var(--space-2xl) 2rem;
  background: var(--warm-white);
}

.programmes-grid__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.programmes-grid__card--featured {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.programmes-grid__card-image {
  position: relative;
  overflow: hidden;
}

.programmes-grid__card-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.programmes-grid__card--featured:hover .programmes-grid__card-image img {
  transform: scale(1.04);
}

.programmes-grid__card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

.programmes-grid__card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.programmes-grid__card-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.programmes-grid__card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.programmes-grid__card-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 500;
}

.programmes-grid__card-meta i {
  color: var(--sage);
  font-size: 0.72rem;
}

.programmes-grid__card-content h2 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.programmes-grid__card-content p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.programmes-grid__card-topics {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.programmes-grid__card-topics li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.programmes-grid__card-topics li i {
  color: var(--sage);
  font-size: 0.72rem;
  margin-top: 0.28rem;
  flex-shrink: 0;
}

.programmes-grid__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.programmes-grid__card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.programmes-grid__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.programmes-grid__row .programmes-grid__card-content {
  padding: 2rem;
}

/* ============================================
   PROGRAMMES APPROACH
   ============================================ */

.programmes-approach {
  padding: var(--space-2xl) 2rem;
  background: var(--cream);
}

.programmes-approach__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.programmes-approach__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.programmes-approach__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================
   CONSEILS PAGE
   ============================================ */

.conseils-tips {
  padding: var(--space-2xl) 2rem;
  background: var(--warm-white);
}

.conseils-tips__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.conseils-tips__category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.conseils-tips__category-icon {
  width: 52px;
  height: 52px;
  background: var(--forest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.conseils-tips__category-header h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.3;
}

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

.conseils-tips__card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.conseils-tips__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.conseils-tips__card h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.conseils-tips__card p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.75;
}

.conseils-disclaimer {
  padding: 3rem 2rem;
  background: #fff8f0;
  border-top: 3px solid var(--terracotta-light);
}

.conseils-disclaimer__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.conseils-disclaimer__inner i {
  font-size: 1.5rem;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.conseils-disclaimer__inner h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.conseils-disclaimer__inner p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

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

.contact-form-section {
  padding: var(--space-2xl) 2rem;
  background: var(--warm-white);
}

.contact-form-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-form-section__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-section__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-form-section__detail-icon {
  width: 42px;
  height: 42px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-form-section__detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.contact-form-section__detail p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

.contact-form-section__detail a {
  color: var(--sage);
  text-decoration: none;
}

.contact-form-section__detail a:hover {
  color: var(--forest);
}

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

.contact-form-section__steps-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 0;
}

.contact-form-section__step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.contact-form-section__step-dot span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--mid-gray);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-form-section__step-dot.active span {
  background: var(--forest);
  color: #fff;
}

.contact-form-section__step-dot label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--mid-gray);
  white-space: nowrap;
}

.contact-form-section__step-dot.active label {
  color: var(--forest);
  font-weight: 600;
}

.contact-form-section__step-line {
  flex: 1;
  height: 2px;
  background: var(--light-gray);
  margin: 0 0.75rem;
  margin-bottom: 1.4rem;
}

.contact-form-section__step h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
}

.contact-form-section__field {
  margin-bottom: 1.25rem;
}

.contact-form-section__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.contact-form-section__field label span {
  color: var(--terracotta);
}

.contact-form-section__field input,
.contact-form-section__field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  min-height: 44px;
}

.contact-form-section__field input:focus,
.contact-form-section__field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,126,0.15);
}

.contact-form-section__field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-section__field--checkbox {
  margin-top: 0.5rem;
}

.contact-form-section__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.5;
}

.contact-form-section__checkbox-label input {
  width: 18px;
  height: 18px;
  min-height: auto;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--forest);
}

.contact-form-section__checkbox-label a {
  color: var(--sage);
}

.contact-form-section__form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT DIRECTIONS
   ============================================ */

.contact-directions {
  padding: var(--space-2xl) 2rem;
  background: var(--cream);
}

.contact-directions__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-directions__transport {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-directions__transport-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-directions__transport-item i {
  width: 40px;
  height: 40px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.contact-directions__transport-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.2rem;
}

.contact-directions__transport-item p {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.5;
}

.contact-directions__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

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

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) 2rem;
  background: var(--cream);
}

.thanks-main__inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.thanks-main__icon {
  font-size: 3.5rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.thanks-main__inner h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 1rem;
}

.thanks-main__inner > p {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.thanks-main__next {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  margin-bottom: 2.5rem;
  text-align: left;
}

.thanks-main__next h2 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
}

.thanks-main__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.thanks-main__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.thanks-main__step-icon {
  width: 38px;
  height: 38px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.thanks-main__step strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.2rem;
}

.thanks-main__step p {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

.thanks-main__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES - SIDEBAR TOC LAYOUT
   ============================================ */

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem;
  gap: 3rem;
  align-items: flex-start;
}

.legal-sidebar {
  position: sticky;
  top: 2rem;
}

.legal-sidebar__inner {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.legal-sidebar__inner h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-sidebar__link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--mid-gray);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  line-height: 1.4;
}

.legal-sidebar__link:hover {
  background: var(--sage-pale);
  color: var(--forest);
}

.legal-sidebar__link.active {
  background: var(--sage-pale);
  color: var(--forest);
  font-weight: 600;
}

.legal-content {
  min-width: 0;
}

.legal-content__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-gray);
}

.legal-content__header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.legal-content__meta {
  font-size: 0.82rem;
  color: var(--mid-gray);
}

.legal-content__intro {
  background: var(--sage-pale);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.legal-content__intro p {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.75;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--light-gray);
  scroll-margin-top: 2rem;
}

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

.legal-section h2 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  margin: 1.5rem 0 0.75rem;
}

.legal-section p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

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

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

.legal-list {
  list-style: none;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal-list li {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}

.legal-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
}

.legal-info-box {
  background: var(--cream);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}

.legal-info-box p {
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin: 0;
}

.legal-info-box a {
  color: var(--sage);
}


.legal-cookie-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin: 1rem 0 1.5rem;
}

.legal-cookie-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
}

.legal-cookie-row--header {
  background: var(--forest);
}

.legal-cookie-row--header span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  padding: 0.75rem 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-cookie-row:not(.legal-cookie-row--header) {
  border-top: 1px solid var(--border-color);
}

.legal-cookie-row:not(.legal-cookie-row--header):nth-child(even) {
  background: var(--cream);
}

.legal-cookie-row:not(.legal-cookie-row--header) span {
  font-size: 0.82rem;
  color: var(--mid-gray);
  padding: 0.875rem 1rem;
  line-height: 1.5;
  border-right: 1px solid var(--border-color);
}

.legal-cookie-row:not(.legal-cookie-row--header) span:last-child {
  border-right: none;
}


.legal-mobile-toc {
  display: none;
  padding: 1rem 2rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border-color);
}

.legal-mobile-toc__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--warm-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease;
  min-height: 44px;
}

.legal-mobile-toc__toggle:hover {
  background: var(--sage-pale);
}

.legal-mobile-toc__toggle i:last-child {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.legal-mobile-toc__toggle.open i:last-child {
  transform: rotate(180deg);
}

.legal-mobile-toc__nav {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.legal-mobile-toc__nav.open {
  max-height: 600px;
}

.legal-mobile-toc__nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.legal-mobile-toc__nav a:hover {
  background: var(--sage-pale);
  color: var(--forest);
}

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */

@media (max-width: 1024px) {
  .home-about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-about__image-frame img {
    height: 360px;
  }

  .home-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .home-image-feature__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-image-feature__image img {
    height: 320px;
  }

  .home-cta__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-cta__image {
    max-width: 500px;
  }

  .home-cta__image img {
    height: 240px;
  }

  .about-story__blocks {
    grid-template-columns: 1fr;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .programmes-grid__card--featured {
    grid-template-columns: 1fr;
  }

  .programmes-grid__card-image img {
    min-height: 280px;
    height: 280px;
  }

  .programmes-grid__row {
    grid-template-columns: 1fr;
  }

  .programmes-approach__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .conseils-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .conseils-tips__cards {
    grid-template-columns: 1fr;
  }

  .contact-form-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-directions__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    display: none;
  }

  .legal-mobile-toc {
    display: block;
  }

  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-hero__image img {
    height: 260px;
  }

  .global-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .global-footer__brand {
    grid-column: 1 / -1;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */

@media (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
  }

  .global-header__nav {
    display: none;
  }

  .global-header__hamburger {
    display: flex;
  }

  .global-mobile-nav {
    display: block;
  }

  .home-hero__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .home-hero__visual {
    justify-content: flex-start;
  }

  .home-hero__card {
    max-width: 100%;
  }

  .home-intro-band__inner {
    gap: 1rem;
    justify-content: flex-start;
  }

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

  .home-journey__steps::before {
    left: 36px;
  }

  .home-journey__step {
    grid-template-columns: 72px 1fr;
    gap: 1rem;
  }

  .home-comparison__col {
    padding: 1.75rem;
  }

  .programmes-grid__card-content {
    padding: 1.5rem;
  }

  .contact-form-section__form-card {
    padding: 1.75rem;
  }

  .contact-form-section__form-actions {
    flex-direction: column;
  }

  .contact-form-section__form-actions .btn-outline,
  .contact-form-section__form-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .global-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-cta__actions {
    flex-direction: column;
  }

  .home-cta__actions a {
    width: 100%;
    justify-content: center;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .home-hero__actions a {
    width: 100%;
    justify-content: center;
  }

  .legal-layout {
    padding: 1.5rem 1rem;
  }

  .home-about {
    padding: 3rem 1.5rem;
  }

  .home-features {
    padding: 3rem 1.5rem;
  }

  .home-comparison {
    padding: 3rem 1.5rem;
  }

  .home-journey {
    padding: 3rem 1.5rem;
  }

  .home-image-feature {
    padding: 3rem 1.5rem;
  }

  .home-faq {
    padding: 3rem 1.5rem;
  }

  .home-cta {
    padding: 3rem 1.5rem;
  }

  .about-story {
    padding: 3rem 1.5rem;
  }

  .about-values {
    padding: 3rem 1.5rem;
  }

  .programmes-grid {
    padding: 3rem 1.5rem;
  }

  .programmes-approach {
    padding: 3rem 1.5rem;
  }

  .conseils-tips {
    padding: 3rem 1.5rem;
  }

  .contact-form-section {
    padding: 3rem 1.5rem;
  }

  .contact-directions {
    padding: 3rem 1.5rem;
  }

  .thanks-main {
    padding: 3rem 1.5rem;
    align-items: flex-start;
  }

  .thanks-main__actions {
    flex-direction: column;
  }

  .thanks-main__actions a {
    width: 100%;
    justify-content: center;
  }

  .home-parallax-section__content {
    padding: 4rem 1.5rem;
  }

  .about-disclaimer__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .conseils-disclaimer__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-consent-card {
    left: 1rem;
    right: 1rem;
    max-width: calc(100% - 2rem);
    bottom: 1rem;
  }

  .global-back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .home-about__inner {
    gap: 2rem;
  }

  .home-about__image-frame img {
    height: 280px;
  }

  .home-image-feature__image img {
    height: 260px;
  }

  .programmes-approach__image img {
    height: 280px;
  }

  .home-cta__image img {
    height: 200px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */

@media (max-width: 480px) {
  .global-header__inner {
    padding: 0 1rem;
  }

  .home-hero__title {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .home-journey__step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .home-journey__steps::before {
    display: none;
  }

  .home-journey__step-num {
    text-align: left;
    font-size: 0.7rem;
  }

  .legal-cookie-row {
    grid-template-columns: 1fr;
  }

  .legal-cookie-row--header {
    display: none;
  }

  .legal-cookie-row:not(.legal-cookie-row--header) span {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    display: block;
  }

  .contact-form-section__steps-indicator {
    gap: 0.25rem;
  }

  .home-intro-band__inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}