/* ============================================
   CUCINA REGIONALE ITALIA - Main Stylesheet
   Organic Shapes Design System
   ============================================ */


:root {
  --color-cream: #fffdf7;
  --color-cream-dark: #f5f0e8;
  --color-sage: #eef4ee;
  --color-sage-mid: #c8dcc8;
  --color-sage-dark: #4a7c59;
  --color-sage-deep: #2d5a3d;
  --color-terracotta: #fdf0e8;
  --color-terracotta-mid: #e8956d;
  --color-terracotta-deep: #c4663a;
  --color-olive: #6b7c3a;
  --color-olive-light: #8fa44e;
  --color-text-dark: #1e2820;
  --color-text-mid: #3d4f42;
  --color-text-light: #6b7c6e;
  --color-text-muted: #9aaa9d;
  --color-white: #ffffff;
  --color-primary: #2d5a3d;
  --color-primary-light: #3a7050;
  --color-accent: #c4663a;
  --color-accent-light: #e8956d;

  --shadow-xs: 0 1px 3px rgba(45,90,61,0.06), 0 1px 2px rgba(45,90,61,0.04);
  --shadow-sm: 0 2px 8px rgba(45,90,61,0.08), 0 1px 3px rgba(45,90,61,0.05);
  --shadow-md: 0 4px 20px rgba(45,90,61,0.10), 0 2px 8px rgba(45,90,61,0.06);
  --shadow-lg: 0 8px 40px rgba(45,90,61,0.12), 0 4px 16px rgba(45,90,61,0.08);
  --shadow-xl: 0 16px 60px rgba(45,90,61,0.14), 0 8px 24px rgba(45,90,61,0.09);

  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --radius-blob: 60% 40% 70% 30% / 40% 60% 30% 70%;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --transition-fast: 0.18s ease;
  --transition-mid: 0.3s ease;
  --transition-slow: 0.5s ease;

  --section-pad: clamp(4rem, 8vw, 8rem);
  --container-max: 1240px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);
}


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

html { scroll-behavior: smooth; }

body.u-body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.u-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.u-heading-2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}

.u-heading-3 {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

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

.u-text-center { text-align: center; margin: 0 auto; }

.u-max-600 { max-width: 600px; }
.u-max-700 { max-width: 700px; }

.u-hidden { display: none !important; }

.u-wave { line-height: 0; overflow: hidden; }
.u-wave svg { display: block; width: 100%; }

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

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-mid);
  white-space: nowrap;
  min-height: 44px;
}

.c-btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(45,90,61,0);
}
.c-btn--primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(45,90,61,0.12);
  transform: translateY(-2px);
}

.c-btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.c-btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.c-btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(45,90,61,0.3);
}
.c-btn--ghost:hover {
  border-color: var(--color-primary);
  background: rgba(45,90,61,0.06);
}

.c-btn--ghost-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.c-btn--ghost-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}

.c-btn--large {
  font-size: 1rem;
  padding: 0.9375rem 2.25rem;
}

.c-btn--full { width: 100%; }

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

.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-mid);
}

.c-nav.is-scrolled {
  background: rgba(255, 253, 247, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45,90,61,0.08);
  padding: 0.875rem 0;
  box-shadow: 0 2px 24px rgba(45,90,61,0.07);
}

.c-nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.c-nav__brand { flex-shrink: 0; }

.c-nav__logo {
  height: 44px;
  width: auto;
}

.c-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.c-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-mid);
  padding: 0.5rem 0.875rem;
  border-radius: 100px;
  transition: all var(--transition-fast);
  position: relative;
}
.c-nav__link:hover {
  color: var(--color-primary);
  background: rgba(45,90,61,0.06);
}
.c-nav__link.is-active {
  color: var(--color-primary);
  font-weight: 600;
}

.c-nav__cta { margin-left: 1rem; }

.c-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.c-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ============================================
   MOBILE MENU - Split Screen
   ============================================ */

.c-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.c-mobile-menu.is-active {
  transform: translateX(0);
  pointer-events: all;
}

.c-mobile-menu__left {
  width: 55%;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  position: relative;
}

.c-mobile-menu__right {
  width: 45%;
  position: relative;
  overflow: hidden;
}

.c-mobile-menu__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,90,61,0.4) 0%, rgba(196,102,58,0.3) 100%);
}

.c-mobile-menu__brand {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.c-mobile-menu__logo {
  height: 48px;
  filter: brightness(0) invert(1);
}

.c-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-mobile-menu__link {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0;
  transition: all var(--transition-fast);
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.c-mobile-menu__link:last-child { border-bottom: none; }
.c-mobile-menu__link:hover,
.c-mobile-menu__link.is-active {
  color: var(--color-white);
  padding-left: 0.5rem;
}

.c-mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: background var(--transition-fast);
}
.c-mobile-menu__close:hover { background: rgba(255,255,255,0.2); }

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

.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 6rem;
  background: var(--color-cream);
  overflow: hidden;
}

.s-hero__blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
  z-index: 0;
}

.s-hero__blob--1 {
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(ellipse at 40% 40%, rgba(200,220,200,0.45) 0%, rgba(200,220,200,0) 70%);
  top: -10%;
  right: -5%;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.s-hero__blob--2 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: radial-gradient(ellipse at 60% 60%, rgba(232,149,109,0.2) 0%, rgba(232,149,109,0) 70%);
  bottom: 20%;
  left: -5%;
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
}

.s-hero__blob--3 {
  width: clamp(150px, 20vw, 250px);
  height: clamp(150px, 20vw, 250px);
  background: radial-gradient(ellipse, rgba(107,124,58,0.15) 0%, transparent 70%);
  top: 30%;
  left: 30%;
  border-radius: 50% 50% 70% 30% / 30% 50% 50% 70%;
}

.s-hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--container-pad) 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.s-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(196,102,58,0.1);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.s-hero__headline {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
}

.s-hero__subhead {
  font-size: clamp(1rem, 1.5vw, 1.175rem);
  line-height: 1.7;
  color: var(--color-text-mid);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.s-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.s-hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.s-hero__image-blob {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.s-hero__image-blob::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: linear-gradient(135deg, var(--color-sage-mid) 0%, var(--color-terracotta-mid) 100%);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  opacity: 0.3;
  z-index: -1;
}

.s-hero__image {
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  object-fit: cover;
  border-radius: 55% 45% 65% 35% / 45% 55% 45% 55%;
  box-shadow: var(--shadow-xl);
}


.s-hero__steps {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-top: 1px solid rgba(45,90,61,0.08);
  box-shadow: 0 -4px 24px rgba(45,90,61,0.06);
}

.s-hero__steps-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem var(--container-pad);
  display: flex;
  align-items: center;
  gap: 0;
}

.s-hero__step {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.s-hero__step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-mid);
}

.s-hero__step:hover .s-hero__step-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

.s-hero__step-content {
  display: flex;
  flex-direction: column;
}

.s-hero__step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.08em;
}

.s-hero__step-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.3;
}

.s-hero__step-connector {
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-sage-mid), var(--color-terracotta-mid));
  flex-shrink: 0;
  margin: 0 0.5rem;
}

/* ============================================
   ABOUT INTRO
   ============================================ */

.s-about-intro {
  position: relative;
  background: var(--color-white);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.s-about-intro__blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,220,200,0.3) 0%, transparent 70%);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  right: -100px;
  bottom: -100px;
  pointer-events: none;
}

.s-about-intro__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 1;
}

.s-about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.s-about-intro__text .u-heading-2 { margin-bottom: 1.25rem; }

.s-about-intro__image-wrap {
  position: relative;
}

.s-about-intro__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%;
  box-shadow: var(--shadow-xl);
}

.s-about-intro__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--color-primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  letter-spacing: 0.05em;
}

/* ============================================
   REGIONS SECTION
   ============================================ */

.s-regions {
  background: var(--color-sage);
  padding: var(--section-pad) 0;
}

.s-regions__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-regions__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.s-regions__header .u-heading-2 { margin-bottom: 1rem; }

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

.c-region-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-mid);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,90,61,0.06);
}

.c-region-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45,90,61,0.12);
}

.c-region-card__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}

.c-region-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.625rem;
}

.c-region-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.s-how {
  position: relative;
  background: var(--color-terracotta);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.s-how__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(196,102,58,0.15) 0%, transparent 70%);
  border-radius: 60% 40% 45% 55% / 50% 60% 40% 50%;
  top: -100px;
  left: -150px;
  pointer-events: none;
}

.s-how__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 1;
}

.s-how__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.s-how__header .u-heading-2 { margin-bottom: 0; }

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

.c-how-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-mid);
  box-shadow: var(--shadow-sm);
}

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

.c-how-card--featured {
  grid-column: span 1;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.c-how-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.c-how-card__body {
  padding: 1.75rem;
  flex: 1;
}

.c-how-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.c-how-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.c-how-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   FOR WHO SECTION
   ============================================ */

.s-forwho {
  background: var(--color-white);
  padding: var(--section-pad) 0;
}

.s-forwho__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-forwho__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.s-forwho__header .u-heading-2 { margin-bottom: 0; }

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

.c-forwho-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-mid);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(45,90,61,0.05);
}

.c-forwho-card:hover {
  background: var(--color-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45,90,61,0.1);
}

.c-forwho-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-mid);
}

.c-forwho-card:hover .c-forwho-card__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-md);
}

.c-forwho-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.c-forwho-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */

.s-gallery-preview {
  background: var(--color-white);
  padding: var(--section-pad) 0;
}

.s-gallery-preview__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-gallery-preview__header {
  text-align: center;
  margin-bottom: 3rem;
}

.s-gallery-preview__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.25rem;
  height: 400px;
}

.c-gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.c-gallery-thumb--large { border-radius: var(--radius-xl); }

.c-gallery-thumb__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c-gallery-thumb:hover .c-gallery-thumb__image {
  transform: scale(1.06);
}

.c-gallery-thumb__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(30,40,32,0.75) 0%, transparent 100%);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  transform: translateY(4px);
  opacity: 0;
  transition: all var(--transition-mid);
}

.c-gallery-thumb:hover .c-gallery-thumb__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CONTACT PREVIEW
   ============================================ */

.s-contact-preview {
  background: var(--color-sage);
  padding: var(--section-pad) 0;
}

.s-contact-preview__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-contact-preview__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.s-contact-preview__header .u-heading-2 { margin-bottom: 1rem; }

.s-contact-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.c-contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-mid);
  border: 1px solid rgba(45,90,61,0.06);
}

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

.c-contact-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 0 auto 1rem;
}

.c-contact-card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.c-contact-card__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.c-contact-card__value--link {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}
.c-contact-card__value--link:hover { color: var(--color-accent); }

.c-contact-card--cta { display: flex; flex-direction: column; align-items: center; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.s-page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-cream) 60%);
  padding: 8rem var(--container-pad) 5rem;
  overflow: hidden;
  text-align: center;
}

.s-page-hero__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(200,220,200,0.4) 0%, transparent 70%);
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.s-page-hero__container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.s-page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
}

.s-page-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: var(--color-text-mid);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   STORY SECTION
   ============================================ */

.s-story {
  position: relative;
  background: var(--color-white);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.s-story__blob {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(232,149,109,0.12) 0%, transparent 70%);
  border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

.s-story__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 1;
}

.s-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.s-story__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
  box-shadow: var(--shadow-xl);
}

.s-story__text .u-heading-2 { margin-bottom: 1.5rem; }

/* ============================================
   VALUES SECTION
   ============================================ */

.s-values {
  background: var(--color-cream);
  padding: var(--section-pad) 0;
}

.s-values__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-values__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.c-value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-mid);
  border-left: 4px solid transparent;
}

.c-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--color-accent);
}

.c-value-card__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(45,90,61,0.1);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.c-value-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.c-value-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.s-team {
  background: var(--color-sage);
  padding: var(--section-pad) 0;
}

.s-team__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-team__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.s-team__header .u-heading-2 { margin-bottom: 1rem; }

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

.c-team-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-mid);
}

.c-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.c-team-card__image-wrap {
  overflow: hidden;
  height: 260px;
}

.c-team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c-team-card:hover .c-team-card__image {
  transform: scale(1.06);
}

.c-team-card__body {
  padding: 1.75rem;
}

.c-team-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.c-team-card__region {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: rgba(196,102,58,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}

.c-team-card__bio {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

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

.s-cta {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-sage-deep) 100%);
  padding: var(--section-pad) 0;
  text-align: center;
  overflow: hidden;
}

.s-cta__blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  top: -100px;
  right: -50px;
  pointer-events: none;
}

.s-cta__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 1;
}

.s-cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.s-cta__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.s-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PACKAGES PAGE
   ============================================ */

.s-packages {
  background: var(--color-white);
  padding: var(--section-pad) 0;
}

.s-packages__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-packages__intro {
  text-align: center;
  margin-bottom: 4rem;
}

.s-packages__category-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.s-packages__category-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.s-packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.s-packages__grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.c-package-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-mid);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(45,90,61,0.06);
}

.c-package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(45,90,61,0.12);
}

.c-package-card--featured {
  background: var(--color-white);
  border: 2px solid var(--color-sage-mid);
}

.c-package-card__header {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-cream) 100%);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(45,90,61,0.06);
}

.c-package-card__region-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: rgba(45,90,61,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.c-package-card__region-badge--gold {
  color: var(--color-accent-deep, #a0522d);
  background: rgba(196,102,58,0.12);
}

.c-package-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
}

.c-package-card__body {
  padding: 1.5rem;
  flex: 1;
}

.c-package-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.c-package-card__includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-package-card__includes li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-text-mid);
  font-weight: 500;
}

.c-package-card__includes li i {
  color: var(--color-primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.c-package-card__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(45,90,61,0.06);
}


.c-intensive-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-sage-deep) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-xl);
}

.c-intensive-card__content {
  padding: 3rem;
  color: white;
}

.c-intensive-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.c-intensive-card__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.c-intensive-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.c-intensive-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.c-intensive-card__features li i {
  color: var(--color-sage-mid);
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.c-intensive-card__image {
  position: relative;
  overflow: hidden;
}

.c-intensive-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c-intensive-card:hover .c-intensive-card__img {
  transform: scale(1.04);
}


.s-package-info {
  background: var(--color-cream);
  padding: var(--section-pad) 0;
}

.s-package-info__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-package-info__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.c-info-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-mid);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.c-info-item__icon {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.c-info-item__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.c-info-item__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.s-gallery {
  background: var(--color-white);
  padding: var(--section-pad) 0;
}

.s-gallery__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-gallery__category {
  margin-bottom: 4rem;
}

.s-gallery__cat-title {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-sage-mid);
}

.s-gallery__masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.25rem;
}

.c-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.c-gallery-item--tall { grid-row: span 2; }
.c-gallery-item--wide { grid-column: span 2; }

.c-gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c-gallery-item:hover .c-gallery-item__img {
  transform: scale(1.06);
}

.c-gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(0deg, rgba(30,40,32,0.8) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform var(--transition-mid);
}

.c-gallery-item:hover .c-gallery-item__caption {
  transform: translateY(0);
}

.c-gallery-item__region {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-light);
  margin-bottom: 0.25rem;
}

.c-gallery-item__caption p {
  font-size: 0.875rem;
  color: white;
  font-weight: 500;
}

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

.s-contact {
  background: var(--color-white);
  padding: var(--section-pad) 0;
}

.s-contact__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.s-contact__form-wrap .u-heading-3 { margin-bottom: 0.5rem; }


.c-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.c-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.c-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-contact-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-mid);
}

.c-contact-form__input,
.c-contact-form__select,
.c-contact-form__textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-dark);
  background: var(--color-cream);
  border: 1.5px solid rgba(45,90,61,0.15);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  transition: all var(--transition-fast);
  outline: none;
  min-height: 44px;
}

.c-contact-form__input:focus,
.c-contact-form__select:focus,
.c-contact-form__textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}

.c-contact-form__textarea { resize: vertical; min-height: 140px; }

.c-contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.c-contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1.5;
}

.c-contact-form__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.c-contact-form__privacy-link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.c-contact-form__privacy-link:hover { color: var(--color-accent); }


.s-contact__info .u-heading-3 { margin-bottom: 1.5rem; }

.s-contact__info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.c-contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition-fast);
  border: 1px solid rgba(45,90,61,0.06);
}

.c-contact-info-card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border-color: rgba(45,90,61,0.12);
}

.c-contact-info-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.c-contact-info-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.c-contact-info-card__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.c-contact-info-card__value--link {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}
.c-contact-info-card__value--link:hover { color: var(--color-accent); }

.s-contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.s-thanks-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-sage-deep) 40%, var(--color-accent) 100%);
  padding: 8rem var(--container-pad) 6rem;
  text-align: center;
  overflow: hidden;
}

.s-thanks-hero__blob {
  position: absolute;
  pointer-events: none;
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
}

.s-thanks-hero__blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -100px;
  right: -50px;
}

.s-thanks-hero__blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  bottom: -80px;
  left: -50px;
}

.s-thanks-hero__container {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.s-thanks-hero__icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 2rem;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.25);
}

.s-thanks-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.s-thanks-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.s-thanks-next {
  background: var(--color-white);
  padding: var(--section-pad) 0;
}

.s-thanks-next__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

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

.c-thanks-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-mid);
  border: 1px solid rgba(45,90,61,0.06);
  display: block;
}

.c-thanks-card:hover {
  background: var(--color-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45,90,61,0.12);
}

.c-thanks-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  margin: 0 auto 1.25rem;
}

.c-thanks-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.625rem;
}

.c-thanks-card__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

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

.s-legal {
  background: var(--color-white);
  padding: 7rem 0 var(--section-pad);
  min-height: 80vh;
}

.s-legal__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.s-legal__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--color-sage-mid);
}

.s-legal__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.s-legal__date {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.s-legal__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(45,90,61,0.1);
}

.s-legal__content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 1.75rem 0 0.75rem;
}

.s-legal__content p {
  font-size: 0.9375rem;
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.s-legal__content a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.s-legal__content a:hover { color: var(--color-accent); }

.s-legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.s-legal__table th,
.s-legal__table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border: 1px solid rgba(45,90,61,0.1);
  vertical-align: top;
  line-height: 1.6;
}

.s-legal__table th {
  background: var(--color-sage);
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 0.8125rem;
}

.s-legal__table tbody tr:nth-child(even) {
  background: rgba(238,244,238,0.4);
}

.s-legal__table tbody td {
  color: var(--color-text-mid);
}

.s-legal__list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
}

.s-legal__list li {
  font-size: 0.9375rem;
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: 0.375rem;
}

.s-legal__deflist dt {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 1.25rem;
}

.s-legal__deflist dd {
  font-size: 0.9375rem;
  color: var(--color-text-mid);
  line-height: 1.75;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-sage-mid);
  margin-top: 0.25rem;
}

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

.c-footer {
  position: relative;
  background: var(--color-text-dark);
  color: rgba(255,255,255,0.75);
  overflow: hidden;
}

.c-footer__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(45,90,61,0.15) 0%, transparent 70%);
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.c-footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 5rem var(--container-pad) 2.5rem;
  position: relative;
  z-index: 1;
}

.c-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.c-footer__logo {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.c-footer__tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

.c-footer__nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.c-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-footer__nav-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
  padding: 0.25rem 0;
}
.c-footer__nav-link:hover { color: white; }

.c-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.c-footer__contact-item i {
  color: var(--color-sage-mid);
  width: 16px;
  flex-shrink: 0;
}

.c-footer__legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.c-footer__legal-link {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.c-footer__legal-link:hover { color: white; }

/* ============================================
   COOKIE CONSENT - Notification Bell
   ============================================ */

.c-cookie-trigger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 5000;
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-mid);
}

.c-cookie-trigger:hover {
  transform: scale(1.1);
  background: var(--color-primary-light);
  box-shadow: var(--shadow-xl);
}

.c-cookie-trigger__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 2px solid var(--color-cream);
  transition: all var(--transition-mid);
}

.c-cookie-trigger__badge.u-hidden { display: none !important; }

.c-cookie-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 4999;
  width: 360px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(45,90,61,0.06);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-mid);
  overflow: hidden;
}

.c-cookie-panel.is-active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.c-cookie-panel__header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.c-cookie-panel__header-icon {
  font-size: 1.25rem;
  color: white;
}

.c-cookie-panel__title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.c-cookie-panel__body {
  padding: 1.5rem;
}

.c-cookie-panel__desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.c-cookie-panel__categories {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.c-cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(45,90,61,0.06);
}

.c-cookie-category__info {}

.c-cookie-category__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.125rem;
}

.c-cookie-category__desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

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

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

.c-cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: rgba(45,90,61,0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.c-cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.c-cookie-toggle input:checked + .c-cookie-toggle__slider {
  background: var(--color-primary);
}

.c-cookie-toggle input:checked + .c-cookie-toggle__slider::before {
  transform: translateX(20px);
}

.c-cookie-toggle input:disabled + .c-cookie-toggle__slider {
  opacity: 0.7;
  cursor: not-allowed;
}

.c-cookie-panel__actions {
  display: flex;
  gap: 0.75rem;
}

.c-cookie-panel__actions .c-btn {
  flex: 1;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
}

.c-cookie-panel__footer {
  padding: 0.875rem 1.5rem;
  background: var(--color-cream);
  border-top: 1px solid rgba(45,90,61,0.06);
  text-align: center;
}

.c-cookie-panel__footer a {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.c-cookie-panel__footer a:hover { color: var(--color-primary); }

/* ============================================
   WAVE DIVIDERS (background colors)
   ============================================ */

.u-wave--cream-to-white { background: var(--color-cream); }
.u-wave--white-to-sage { background: var(--color-white); }
.u-wave--sage-to-terracotta { background: var(--color-sage); }
.u-wave--terracotta-to-white { background: var(--color-terracotta); }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
  .s-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .s-hero__subhead { margin: 0 auto 2.5rem; }
  .s-hero__actions { justify-content: center; }
  .s-hero__image-wrap { order: -1; }
  .s-hero__image-blob { max-width: 420px; margin: 0 auto; }

  .s-hero__steps-inner {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .s-hero__step-connector { display: none; }

  .s-about-intro__grid,
  .s-story__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .s-about-intro__image,
  .s-story__image { height: 360px; }

  .s-about-intro__badge {
    left: 0.5rem;
    bottom: -1rem;
  }

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

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

  .c-intensive-card { grid-template-columns: 1fr; }
  .c-intensive-card__image { height: 280px; }

  .c-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .s-contact__grid { grid-template-columns: 1fr; gap: 3rem; }

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

  .s-gallery__masonry { grid-template-columns: repeat(2, 1fr); }
  .c-gallery-item--wide { grid-column: span 2; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
  .c-nav__links,
  .c-nav__cta { display: none; }

  .c-nav__hamburger {
    display: flex;
    margin-left: auto;
  }

  .s-hero__steps-inner {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 1.25rem;
  }

  .s-regions__grid { grid-template-columns: 1fr; }

  .s-how__grid { grid-template-columns: 1fr; }

  .s-forwho__grid { grid-template-columns: 1fr; }

  .s-gallery-preview__grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .c-gallery-thumb { height: 220px; }

  .s-contact-preview__grid { grid-template-columns: repeat(2, 1fr); }

  .s-values__grid { grid-template-columns: 1fr; }

  .s-team__grid { grid-template-columns: 1fr; }

  .s-packages__grid { grid-template-columns: 1fr; }
  .s-packages__grid--two { grid-template-columns: 1fr; }

  .s-package-info__grid { grid-template-columns: 1fr; }

  .s-gallery__masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .c-gallery-item--tall { grid-row: span 1; }
  .c-gallery-item--wide { grid-column: span 1; }

  .s-thanks-next__grid { grid-template-columns: 1fr; }

  .c-contact-form__row { grid-template-columns: 1fr; }

  .c-footer__top { grid-template-columns: 1fr; gap: 2rem; }

  .c-cookie-panel {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    bottom: 5rem;
  }

  .s-legal__table {
    font-size: 0.8125rem;
    display: block;
    overflow-x: auto;
  }

  .c-mobile-menu__left { width: 60%; }
  .c-mobile-menu__right { width: 40%; }
}

@media (max-width: 480px) {
  .s-contact-preview__grid { grid-template-columns: 1fr; }

  .s-hero__actions { flex-direction: column; align-items: center; }

  .s-cta__actions { flex-direction: column; align-items: center; }

  .c-mobile-menu { flex-direction: column; }
  .c-mobile-menu__left { width: 100%; height: 65%; justify-content: flex-end; padding-bottom: 2rem; }
  .c-mobile-menu__right { width: 100%; height: 35%; }
  .c-mobile-menu__brand { bottom: 1rem; }
}