/* ============================================================
   KAYOJE FICOLE — Custom CSS
   Architecture: Container Queries + Custom Properties
   Naming: Hungarian-prefix (s-, c-, u-, is-)
   ============================================================ */

/* ============================================================
   LAYER: Custom Properties
   ============================================================ */
:root {
  
  --color-bg: #faf7f2;
  --color-bg-alt: #f2ede4;
  --color-surface: #fffcf7;
  --color-surface-warm: #f7f0e6;
  --color-primary: #3d6b4f;
  --color-primary-dark: #2a4d38;
  --color-primary-light: #5a8c6a;
  --color-secondary: #c4845a;
  --color-secondary-light: #d9a07a;
  --color-accent: #e8c547;
  --color-accent-muted: #f0d878;
  --color-text: #2c2416;
  --color-text-muted: #6b5d4e;
  --color-text-light: #9a8a7a;
  --color-border: #e0d4c4;
  --color-border-light: #ede5d8;
  --color-dark: #1a1410;
  --color-dark-surface: #231f1a;
  --color-underline: #c4845a;
  --color-mark-bg: rgba(232, 197, 71, 0.25);
  --color-mark-text: #2c2416;

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

  
  --font-main: 'Commissioner', sans-serif;
  --text-xs: clamp(0.75rem, 1.5vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1.8vw, 1rem);
  --text-base: clamp(1rem, 2vw, 1.125rem);
  --text-md: clamp(1.125rem, 2.2vw, 1.25rem);
  --text-lg: clamp(1.25rem, 2.5vw, 1.5rem);
  --text-xl: clamp(1.5rem, 3vw, 2rem);
  --text-2xl: clamp(2rem, 4vw, 2.75rem);
  --text-3xl: clamp(2.5rem, 5vw, 3.5rem);
  --text-hero: clamp(2.8rem, 6vw, 4.5rem);

  
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 34px;
  --radius-full: 9999px;

  
  --shadow-sm: 0 1px 3px rgba(44,36,22,0.06), 0 1px 2px rgba(44,36,22,0.04);
  --shadow-md: 0 4px 12px rgba(44,36,22,0.08), 0 2px 4px rgba(44,36,22,0.05);
  --shadow-lg: 0 8px 24px rgba(44,36,22,0.10), 0 4px 8px rgba(44,36,22,0.06), 0 1px 2px rgba(44,36,22,0.04);
  --shadow-xl: 0 16px 48px rgba(44,36,22,0.12), 0 8px 16px rgba(44,36,22,0.07), 0 2px 4px rgba(44,36,22,0.04);
  --shadow-hover: 0 20px 56px rgba(44,36,22,0.15), 0 8px 20px rgba(44,36,22,0.09), 0 2px 6px rgba(44,36,22,0.05);

  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: var(--text-base);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
}

ul {
  list-style: none;
}

mark {
  background-color: var(--color-mark-bg);
  color: var(--color-mark-text);
  padding: 0.05em 0.2em;
  border-radius: 3px;
}

meter {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  appearance: none;
  -webkit-appearance: none;
}

meter::-webkit-meter-bar {
  background: var(--color-border);
  border-radius: var(--radius-full);
  border: none;
}

meter::-webkit-meter-optimum-value {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-full);
}

meter::-moz-meter-bar {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-full);
}

figure {
  margin: 0;
}

figcaption {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
  font-style: italic;
}

small {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.u-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.u-text-center {
  text-align: center;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   COOKIE BAR
   ============================================================ */
.c-cookie-bar {
  background-color: var(--color-dark-surface);
  color: #e8e0d4;
  padding: 0.65rem 1.5rem;
  transition: max-height var(--transition-slow), opacity var(--transition-slow), padding var(--transition-slow);
  overflow: hidden;
  max-height: 120px;
}

.c-cookie-bar.is-hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.c-cookie-bar__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.c-cookie-bar__text {
  flex: 1;
  font-size: var(--text-xs);
  min-width: 200px;
}

.c-cookie-bar__text a {
  color: var(--color-accent-muted);
  text-decoration: underline;
}

.c-cookie-bar__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.c-cookie-bar__btn {
  padding: 0.35rem 0.9rem;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: var(--text-xs);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
}

.c-cookie-bar__btn:hover {
  transform: translateY(-1px);
}

.c-cookie-bar__btn--accept {
  background-color: var(--color-primary);
  color: #fff;
}

.c-cookie-bar__btn--accept:hover {
  background-color: var(--color-primary-dark);
}

.c-cookie-bar__btn--decline {
  background-color: transparent;
  color: #e8e0d4;
  border: 1px solid rgba(232,224,212,0.3);
}

.c-cookie-bar__btn--decline:hover {
  background-color: rgba(232,224,212,0.1);
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.c-header {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 100;
}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.c-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.c-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.c-nav__link {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: color var(--transition-base), background-color var(--transition-base);
  position: relative;
}

.c-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
  border-radius: var(--radius-full);
}

.c-nav__link:hover {
  color: var(--color-primary);
  background-color: rgba(61,107,79,0.06);
}

.c-nav__link:hover::after {
  transform: scaleX(1);
}

.c-nav__link[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 600;
}

.c-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.c-nav__link--cta {
  background-color: var(--color-primary);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: background-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
}

.c-nav__link--cta::after {
  display: none;
}

.c-nav__link--cta:hover {
  background-color: var(--color-primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.c-nav__link--cta[aria-current="page"] {
  background-color: var(--color-primary-dark);
}


.c-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.c-hamburger:hover {
  background-color: var(--color-bg-alt);
}

.c-hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}


.c-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: var(--color-primary-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.c-mobile-menu.is-open {
  transform: translateY(0);
}

.c-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-xl) var(--space-lg);
}

.c-mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.c-mobile-menu__item {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.c-mobile-menu.is-open .c-mobile-menu__item {
  opacity: 1;
  transform: translateY(0);
}

.c-mobile-menu.is-open .c-mobile-menu__item:nth-child(1) { transition-delay: 0.1s; }
.c-mobile-menu.is-open .c-mobile-menu__item:nth-child(2) { transition-delay: 0.15s; }
.c-mobile-menu.is-open .c-mobile-menu__item:nth-child(3) { transition-delay: 0.2s; }
.c-mobile-menu.is-open .c-mobile-menu__item:nth-child(4) { transition-delay: 0.25s; }
.c-mobile-menu.is-open .c-mobile-menu__item:nth-child(5) { transition-delay: 0.3s; }

.c-mobile-menu__link {
  font-size: var(--text-xl);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  display: block;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  transition: color var(--transition-base), background-color var(--transition-base);
  text-align: center;
}

.c-mobile-menu__link:hover,
.c-mobile-menu__link[aria-current="page"] {
  color: #fff;
  background-color: rgba(255,255,255,0.1);
}

.c-mobile-menu__close {
  margin-top: var(--space-lg);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--font-main);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  min-height: 44px;
}

.c-mobile-menu__close:hover {
  background-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  white-space: nowrap;
  min-height: 44px;
}

.c-btn--primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.c-btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.c-btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.c-btn--outline:hover {
  background-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

/* ============================================================
   SECTION UNDERLINE SVG
   ============================================================ */
.s-section-underline {
  display: block;
  color: var(--color-underline);
  margin-top: 0.5rem;
  margin-bottom: var(--space-lg);
  max-width: 100%;
}

.s-section-underline--light {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.s-hero {
  background: linear-gradient(160deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  padding: var(--space-xl) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.s-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61,107,79,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.s-hero__canvas {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.s-hero__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-md);
  align-items: stretch;
  margin-bottom: var(--space-xl);
}

.s-hero__half {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: relative;
  box-shadow: var(--shadow-md);
}

.s-hero__half--before {
  border-top-right-radius: var(--radius-sm);
  background-color: #fdf5f0;
}

.s-hero__half--after {
  border-top-left-radius: var(--radius-sm);
  background-color: #f0f7f2;
}

.s-hero__half-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.s-hero__half--before .s-hero__half-label {
  background-color: rgba(196,132,90,0.15);
  color: var(--color-secondary);
}

.s-hero__half--after .s-hero__half-label {
  background-color: rgba(61,107,79,0.15);
  color: var(--color-primary);
}

.s-hero__figure {
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.s-hero__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.s-hero__img:hover {
  transform: scale(1.03);
}

.s-hero__half-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.s-hero__symptoms {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.s-hero__symptoms li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.s-hero__symptoms li i {
  color: var(--color-secondary);
  font-size: 0.75em;
  flex-shrink: 0;
}

.s-hero__symptoms--positive li i {
  color: var(--color-primary);
}

.s-hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
  width: 40px;
  flex-shrink: 0;
}

.s-hero__divider-svg {
  height: 100%;
  width: 40px;
}

.s-hero__heading-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.s-hero__heading {
  font-size: var(--text-hero);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.s-hero__underline {
  display: block;
  color: var(--color-underline);
  margin: 0 auto var(--space-md);
  max-width: 420px;
}

.s-hero__subheading {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.s-intro {
  padding: var(--space-2xl) 0;
}

.s-intro__island {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
}

.s-intro__text h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.s-intro__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.s-intro__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
  transition: transform var(--transition-slow);
}

.s-intro__figure:hover {
  transform: rotate(0deg);
}

.s-intro__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.s-features {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, transparent 0%, var(--color-bg-alt) 50%, transparent 100%);
}

.s-features__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.s-features__heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.s-features__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.s-features__item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.s-features__item--right {
  direction: rtl;
}

.s-features__item--right > * {
  direction: ltr;
}

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

.s-features__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.s-features__img:hover {
  transform: scale(1.04);
}

.s-features__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: rgba(61,107,79,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.s-features__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.s-features__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.s-features__dl {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.s-features__dl dt {
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--text-sm);
}

.s-features__dl dd {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  padding-left: 0.75rem;
  border-left: 2px solid var(--color-primary-light);
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   BENTO GRID
   ============================================================ */
.s-bento {
  padding: var(--space-2xl) 0;
}

.s-bento__header {
  margin-bottom: var(--space-xl);
}

.s-bento__heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.s-bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: var(--space-md);
}

.c-bento-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

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

.c-bento-card--large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}

.c-bento-card--medium {
  grid-column: span 1;
  grid-row: span 1;
}

.c-bento-card--small {
  grid-column: span 1;
  grid-row: span 1;
  text-align: center;
  background-color: var(--color-surface-warm);
}

.c-bento-card--wide {
  grid-column: span 2;
  grid-row: span 1;
  background-color: var(--color-bg-alt);
}

.c-bento-card__icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.c-bento-card--large .c-bento-card__icon {
  color: rgba(255,255,255,0.7);
}

.c-bento-card--small .c-bento-card__icon {
  color: var(--color-secondary);
}

.c-bento-card__title {
  font-size: var(--text-md);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.c-bento-card--large .c-bento-card__title {
  color: #fff;
  font-size: var(--text-lg);
}

.c-bento-card--small .c-bento-card__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
}

.c-bento-card__note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.c-bento-card dl {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.c-bento-card dt {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.c-bento-card--large dt {
  color: rgba(255,255,255,0.8);
}

.c-bento-card dd {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: 0.5rem;
}

.c-bento-card--large dd {
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   CAROUSEL SECTION
   ============================================================ */
.s-carousel {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-alt);
}

.s-carousel__heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.s-carousel__swiper {
  margin-top: var(--space-lg);
  padding-bottom: 3rem !important;
}

.c-exercise-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  height: 100%;
}

.c-exercise-card__number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
}

.c-exercise-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.c-exercise-card__duration {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.c-exercise-card p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-primary) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
}

/* ============================================================
   COUNTERS SECTION
   ============================================================ */
.s-counters {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.s-counters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.s-counters__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.s-counters__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.s-counters__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.s-cta {
  padding: var(--space-2xl) 0;
}

.s-cta__island {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #a86840 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.s-cta__heading {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.s-cta__text {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: var(--space-sm) auto var(--space-lg);
  font-size: var(--text-md);
}

.s-cta__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.s-cta__actions .c-btn--primary {
  background-color: #fff;
  color: var(--color-secondary);
  border-color: #fff;
}

.s-cta__actions .c-btn--primary:hover {
  background-color: var(--color-bg);
  border-color: var(--color-bg);
}

.s-cta__actions .c-btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.s-cta__actions .c-btn--outline:hover {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.c-footer {
  background-color: var(--color-dark);
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}

.c-footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.c-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.c-footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.c-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.c-footer__col h4,
.c-footer__col-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.c-footer__col ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
}

.c-footer__col ul li i {
  color: var(--color-primary-light);
  font-size: 0.85em;
  margin-top: 0.2em;
  flex-shrink: 0;
}

.c-footer__col a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-base);
}

.c-footer__col a:hover {
  color: rgba(255,255,255,0.9);
}

.c-footer__bottom {
  padding: var(--space-sm) 0;
}

.c-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.c-footer__bottom small {
  color: rgba(255,255,255,0.4);
}

.c-footer__legal-links {
  display: flex;
  gap: var(--space-md);
}

.c-footer__legal-links a {
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
  transition: color var(--transition-base);
}

.c-footer__legal-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.c-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-base), transform var(--transition-base), background-color var(--transition-base);
  z-index: 90;
}

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

.c-back-to-top:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.s-page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(160deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  border-bottom: 1px solid var(--color-border-light);
}

.s-page-hero__content {
  max-width: 720px;
}

.s-page-hero__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background-color: rgba(196,132,90,0.1);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.s-page-hero__heading {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.s-page-hero__lead {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 620px;
  line-height: 1.65;
}

/* ============================================================
   ABOUT PAGE SECTIONS
   ============================================================ */
.s-story {
  padding: var(--space-2xl) 0;
}

.s-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.s-story__heading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.s-story__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.s-story__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}

.s-story__figure:hover {
  transform: rotate(0deg) !important;
}

.s-story__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.s-values {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-alt);
}

.s-values__heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.s-values__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.s-values__item {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

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

.s-values__item dt h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.s-values__item dt h3 i {
  color: var(--color-primary);
  font-size: 1.1em;
}

.s-values__item dd p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.s-approach {
  padding: var(--space-2xl) 0;
}

.s-approach__island {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
  max-width: 820px;
  margin: 0 auto;
}

.s-approach__heading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.s-approach__island p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.s-approach__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.s-approach__pillar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.s-approach__pillar span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.s-modules {
  padding: var(--space-2xl) 0;
}

.s-modules__heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.s-modules__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.c-module-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  display: flex;
  gap: var(--space-md);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

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

.c-module-card__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-border);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}

.c-module-card__title {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.c-module-card dl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-module-card dt {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.c-module-card dd {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.s-how-works {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-alt);
}

.s-how-works__island {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.s-how-works__heading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.s-how-works__island > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.s-how-works__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.s-how-works__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.s-how-works__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.s-how-works__step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.s-how-works__step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s-how-works__step h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.s-how-works__step p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.s-faq {
  padding: var(--space-2xl) 0;
}

.s-faq__heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.s-faq__list {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.s-faq__item {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: box-shadow var(--transition-slow);
}

.s-faq__item:hover {
  box-shadow: var(--shadow-md);
}

.s-faq__item dt h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  padding: var(--space-md) var(--space-lg);
  cursor: default;
}

.s-faq__item dd {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  border-top: 1px solid var(--color-border-light);
}

.s-faq__item dd p {
  padding-top: var(--space-sm);
}

/* ============================================================
   CE SE SCHIMBA PAGE
   ============================================================ */
.s-changes {
  padding: var(--space-2xl) 0;
}

.s-changes__heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.s-changes__list {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.s-changes__item {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.s-changes__item dt h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.s-changes__item dd p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.s-changes__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
}

.s-deeper-change {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-alt);
}

.s-deeper-change__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.s-deeper-change__heading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.s-deeper-change__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.s-deeper-change__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.s-realistic {
  padding: var(--space-2xl) 0;
}

.s-realistic__island {
  background: linear-gradient(135deg, var(--color-surface-warm) 0%, var(--color-bg-alt) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  max-width: 820px;
  margin: 0 auto;
}

.s-realistic__heading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.s-realistic__island p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.s-contact-main {
  padding: var(--space-2xl) 0;
}

.s-contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.s-contact-main__info-heading,
.s-contact-main__form-heading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.s-contact-main__info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.s-contact-main__info-list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.s-contact-main__info-list li i {
  color: var(--color-primary);
  font-size: 1.1em;
  margin-top: 0.15em;
  flex-shrink: 0;
}

.s-contact-main__info-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.s-contact-main__info-list li strong {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 600;
}

.s-contact-main__info-list li span,
.s-contact-main__info-list li a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}


.c-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.c-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.field-group input,
.field-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-surface);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  min-height: 44px;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(61,107,79,0.12);
}

.field-group input[aria-invalid="true"],
.field-group textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

.field-group textarea {
  resize: vertical;
  min-height: 140px;
}

.field-hint {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.field-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.c-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex: 1;
}

.c-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 0.1em;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.c-form-error {
  background-color: #fdf0ee;
  border: 1px solid #e74c3c;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #c0392b;
  font-size: var(--text-sm);
}

.s-map {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-alt);
}

.s-map__heading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

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

.s-map__embed iframe {
  display: block;
}

.s-team {
  padding: var(--space-2xl) 0;
}

.s-team__heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.s-team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.c-team-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

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

.c-team-card__figure {
  overflow: hidden;
}

.c-team-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.c-team-card:hover .c-team-card__img {
  transform: scale(1.05);
}

.c-team-card__info {
  padding: var(--space-lg);
}

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

.c-team-card__role {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.c-team-card__info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.s-thanks {
  padding: var(--space-3xl) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.s-thanks__island {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
}

.s-thanks__icon {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.s-thanks__heading {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.s-thanks__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.s-thanks__redirect {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.s-thanks__countdown {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.2em;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.s-legal-page {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.s-legal-page__header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.s-legal-page__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.s-legal-page__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.s-legal-page__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

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

.s-legal-page__toc {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.s-legal-page__toc a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background-color var(--transition-base);
}

.s-legal-page__toc a:hover {
  color: var(--color-primary);
  background-color: rgba(61,107,79,0.06);
}

.s-legal-page__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.s-legal-page__content section,
.s-legal-page__block {
  scroll-margin-top: 2rem;
}

.s-legal-page__content h2 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border-light);
}

.s-legal-page__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  line-height: 1.75;
}

.s-legal-page__content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.s-legal-page__content small {
  display: block;
  margin-top: var(--space-sm);
  padding: var(--space-sm);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-border);
}

/* ============================================================
   RESPONSIVE — Mobile First
   ============================================================ */
@media (max-width: 1024px) {
  .s-bento__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .c-bento-card--large {
    grid-column: span 2;
  }

  .c-bento-card--wide {
    grid-column: span 2;
  }

  .s-counters__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

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

  .c-hamburger {
    display: flex;
  }

  .s-hero__split {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .s-hero__divider {
    display: none;
  }

  .s-hero__img {
    height: 180px;
  }

  .s-intro__island {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
  }

  .s-intro__figure {
    transform: none !important;
  }

  .s-features__item {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
  }

  .s-features__item--right {
    direction: ltr;
  }

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

  .c-bento-card--large,
  .c-bento-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

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

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

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

  .s-story__figure {
    transform: none !important;
  }

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

  .c-module-card {
    flex-direction: column;
  }

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

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

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

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

  .c-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .c-footer__links {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

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

  .s-legal-page__sidebar {
    position: static;
  }

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

  .s-hero__heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .s-page-hero__heading {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
}

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

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

  .s-cta__island {
    padding: var(--space-lg);
  }

  .c-exercise-card {
    padding: var(--space-lg);
  }

  .s-hero__half {
    padding: var(--space-md);
  }
}

/* ============================================================
   CONTAINER QUERIES
   ============================================================ */
.s-features {
  container-type: inline-size;
  container-name: features-section;
}

.s-bento {
  container-type: inline-size;
  container-name: bento-section;
}

@container features-section (max-width: 600px) {
  .s-features__item {
    grid-template-columns: 1fr;
  }
}

@container bento-section (max-width: 500px) {
  .s-bento__grid {
    grid-template-columns: 1fr;
  }
  .c-bento-card--large,
  .c-bento-card--wide {
    grid-column: span 1;
  }
}