/* ============================================
   FIXOCA - Main Stylesheet
   Naming: s- sections, c- components, u- utilities, is- states
   ============================================ */


:root {
  --color-bg: #f8f6f1;
  --color-bg-alt: #f0ede6;
  --color-surface: #ffffff;
  --color-text: #1c1a16;
  --color-text-muted: #5a5650;
  --color-text-light: #8a8480;
  --color-primary: #2d5a3d;
  --color-primary-dark: #1e3d2a;
  --color-primary-light: #3d7a54;
  --color-accent: #c4853a;
  --color-accent-light: #d4975a;
  --color-accent-pale: #f5e8d8;
  --color-border: #e2ddd5;
  --color-nav-bg: rgba(248, 246, 241, 0.95);

  --gradient-primary: linear-gradient(135deg, #2d5a3d 0%, #3d7a54 100%);
  --gradient-accent: linear-gradient(135deg, #c4853a 0%, #d4975a 100%);
  --gradient-hero-overlay: linear-gradient(to bottom, rgba(28,26,22,0.55) 0%, rgba(28,26,22,0.35) 60%, rgba(28,26,22,0.7) 100%);

  --shadow-sm: 0 1px 3px rgba(28,26,22,0.08), 0 1px 2px rgba(28,26,22,0.06);
  --shadow-md: 0 4px 12px rgba(28,26,22,0.10), 0 2px 6px rgba(28,26,22,0.07);
  --shadow-lg: 0 10px 30px rgba(28,26,22,0.12), 0 4px 12px rgba(28,26,22,0.08);
  --shadow-xl: 0 20px 50px rgba(28,26,22,0.16), 0 8px 20px rgba(28,26,22,0.10);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --nav-height: 72px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body.u-body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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


.u-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.u-eyebrow--light { color: rgba(255,255,255,0.8); }

.u-heading-xl {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
.u-heading-lg {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}
.u-body-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.u-hidden { display: none !important; }
.u-text-center { text-align: center; }
.u-mt-md { margin-top: var(--space-md); }
.u-w-full { width: 100%; }


.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
}
.c-btn--lg { padding: 0.85rem 2rem; font-size: 1rem; }

.c-btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(45,90,61,0.25);
}
.c-btn--primary:hover {
  background: linear-gradient(135deg, #1e3d2a 0%, #2d5a3d 100%);
  box-shadow: 0 4px 16px rgba(45,90,61,0.35);
  transform: translateY(-1px);
  color: #fff;
}

.c-btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.c-btn--ghost:hover {
  background: var(--color-primary);
  color: #fff;
}

.c-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.c-btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.c-btn--white {
  background: #fff;
  color: var(--color-primary);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.c-btn--white:hover {
  background: var(--color-bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}


.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--nav-height);
  transition: background 0.3s ease;
}
.c-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.c-nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.c-nav__logo-img { height: 36px; 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-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.c-nav__link:hover,
.c-nav__link.is-active {
  color: var(--color-primary);
  background: rgba(45,90,61,0.07);
}
.c-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.c-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.c-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.c-nav__border-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1px;
  background: var(--color-border);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-nav__border-line.is-visible {
  transform: translateX(-50%) scaleX(1);
}


.c-mobile-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.c-mobile-sheet.is-active {
  pointer-events: all;
}
.c-mobile-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28,26,22,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-mobile-sheet.is-active .c-mobile-sheet__backdrop {
  opacity: 1;
}
.c-mobile-sheet__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 1rem 1.5rem 2.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -8px 40px rgba(28,26,22,0.2);
}
.c-mobile-sheet.is-active .c-mobile-sheet__panel {
  transform: translateY(0);
}
.c-mobile-sheet__handle {
  width: 40px;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}
.c-mobile-sheet__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.c-mobile-sheet__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 52px;
}
.c-mobile-sheet__link:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.c-mobile-sheet__link i {
  color: var(--color-primary);
  width: 20px;
  text-align: center;
}
.c-mobile-sheet__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}


.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.s-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.s-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}
.s-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 4rem) 2rem 6rem;
  width: 100%;
}
.s-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(196,133,58,0.5);
  border-radius: 100px;
}
.s-hero__heading {
  margin-bottom: 2rem;
}
.s-hero__clip-text {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: url('../images/hero-finance-home.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(1.4) contrast(1.1);
  letter-spacing: -0.02em;
  text-shadow: none;
}
.s-hero__sub {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-top: 0.5rem;
  font-style: italic;
}
.s-hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.s-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.s-hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollHint 2.5s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}


.s-intro-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1.75rem 2rem;
}
.s-intro-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.s-intro-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.s-intro-strip__item i {
  color: var(--color-accent);
  font-size: 1.1rem;
}


.s-about {
  padding: var(--space-xl) 2rem;
  background: var(--color-bg);
}
.s-about__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.s-about__text { }
.s-about__image {
  position: relative;
}
.s-about__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.s-about__img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}


.s-features {
  padding: var(--space-xl) 2rem;
  background: var(--color-surface);
}
.s-features__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.s-features__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.s-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.c-feature {
  display: flex;
  gap: 1.25rem;
  padding: 2.25rem 2rem;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  transition: background 0.25s ease;
}
.c-feature:nth-child(2n) { border-right: none; }
.c-feature:nth-child(n+3) { border-bottom: none; }
.c-feature:hover { background: var(--color-bg); }

.c-feature__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(45,90,61,0.2);
}
.c-feature__title {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}
.c-feature__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.s-image-break {
  height: 480px;
  overflow: hidden;
}
.s-image-break__wrap {
  position: relative;
  height: 100%;
}
.s-image-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-image-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,26,22,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.s-image-break__quote {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
  position: relative;
}
.s-image-break__quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--color-accent);
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-style: normal;
  line-height: 1;
  opacity: 0.7;
}


.s-tabs {
  padding: var(--space-xl) 2rem;
  background: var(--color-bg);
}
.s-tabs__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.s-tabs__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.s-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-tab-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: none;
  border: none;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
  min-height: 44px;
}
.c-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.c-tab-btn.is-active {
  color: var(--color-primary);
}
.c-tab-btn.is-active::after {
  transform: scaleX(1);
}
.c-tab-btn:hover { color: var(--color-primary); }

.c-tab-panel {
  display: none;
}
.c-tab-panel.is-active {
  display: block;
  animation: fadeIn 0.35s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.c-tab-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.c-tab-panel__text h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}
.c-tab-panel__text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.c-tab-panel__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.c-tab-panel__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.c-tab-panel__list li i {
  color: var(--color-primary);
  flex-shrink: 0;
}
.c-tab-panel__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


.s-dual-cta { }
.s-dual-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.s-dual-cta__primary {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.s-dual-cta__primary-bg {
  position: absolute;
  inset: 0;
}
.s-dual-cta__primary-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.s-dual-cta__primary:hover .s-dual-cta__primary-bg img {
  transform: scale(1.04);
}
.s-dual-cta__primary-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,22,0.85) 0%, rgba(28,26,22,0.3) 60%, transparent 100%);
}
.s-dual-cta__primary-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
  color: #fff;
}
.s-dual-cta__primary-content h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.s-dual-cta__primary-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.s-dual-cta__secondary {
  background: var(--color-surface);
  display: flex;
  align-items: center;
  padding: 4rem 3.5rem;
  border-top: 4px solid transparent;
  border-image: var(--gradient-accent) 1;
}
.s-dual-cta__secondary-content h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.s-dual-cta__secondary-content p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}


.c-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
  margin-top: auto;
}
.c-footer__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.c-footer__logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.c-footer__tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.c-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}
.c-footer__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
  padding: 0.25rem 0;
}
.c-footer__nav a:hover { color: #fff; }
.c-footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  font-size: 0.875rem;
}
.c-footer__contact span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.c-footer__contact i { color: var(--color-accent); }
.c-footer__contact a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.c-footer__contact a:hover { color: #fff; }
.c-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}
.c-footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.c-footer__legal a:hover { color: rgba(255,255,255,0.8); }
.c-footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}


.s-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}
.s-page-hero--short { min-height: 320px; }
.s-page-hero__bg {
  position: absolute;
  inset: 0;
}
.s-page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,26,22,0.4) 0%, rgba(28,26,22,0.7) 100%);
}
.s-page-hero__color-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
}
.s-page-hero__color-bg--alt {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #4a6741 100%);
}
.s-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 3rem) 2rem 0;
  width: 100%;
}
.s-page-hero__heading {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.s-page-hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.7;
}


.s-team-philosophy {
  padding: var(--space-xl) 2rem;
  background: var(--color-bg);
}
.s-team-philosophy__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}


.s-team-members {
  padding: 0 2rem var(--space-xl);
  background: var(--color-bg);
}
.s-team-members__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.c-team-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
}
.c-team-card--reverse {
  grid-template-columns: 1fr 420px;
}
.c-team-card--reverse .c-team-card__image-wrap {
  order: 2;
}
.c-team-card--reverse .c-team-card__body {
  order: 1;
}
.c-team-card__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.c-team-card__name {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}
.c-team-card__role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1.25rem;
}
.c-team-card__bio {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.c-team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.c-team-card__tags span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: var(--color-accent-pale);
  color: var(--color-accent);
  border: 1px solid rgba(196,133,58,0.2);
}


.s-values {
  padding: var(--space-xl) 2rem;
  background: var(--color-surface);
}
.s-values__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.s-values__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.s-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.c-value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.c-value-item:hover {
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
}
.c-value-item i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}
.c-value-item h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.c-value-item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.s-courses {
  padding: var(--space-xl) 2rem;
  background: var(--color-bg);
}
.s-courses__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.c-course-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.c-course-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.c-course-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.c-course-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.c-course-card:hover .c-course-card__img {
  transform: scale(1.05);
}
.c-course-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}
.c-course-card__badge--accent { background: var(--gradient-accent); }
.c-course-card__badge--green { background: linear-gradient(135deg, #3d7a54, #5a9e72); }
.c-course-card__badge--orange { background: linear-gradient(135deg, #b86b2a, #d4855a); }
.c-course-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-course-card__title {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.c-course-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.c-course-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.c-course-card__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.c-course-card__list li i { color: var(--color-primary); flex-shrink: 0; }
.c-course-card__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.c-course-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.c-course-card__meta i { color: var(--color-accent); }


.s-how-works {
  padding: var(--space-xl) 2rem;
  background: var(--color-surface);
}
.s-how-works__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.s-how-works__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.s-how-works__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.s-how-works__steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
  z-index: 0;
}
.c-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.c-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(45,90,61,0.25);
}
.c-step__title {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.c-step__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.s-cta-simple {
  padding: var(--space-xl) 2rem;
  background: var(--color-bg-alt);
  text-align: center;
}
.s-cta-simple__inner {
  max-width: 640px;
  margin: 0 auto;
}
.s-cta-simple__inner h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.s-cta-simple__inner p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}


.s-disclaimer {
  padding: 1.5rem 2rem;
  background: #fef9f0;
  border-bottom: 1px solid #f0e6d0;
}
.s-disclaimer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: #7a6040;
}
.s-disclaimer__inner i {
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}


.s-case-studies {
  padding: var(--space-xl) 2rem;
  background: var(--color-bg);
}
.s-case-studies__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.c-case-study {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.c-case-study--alt {
  background: var(--color-bg-alt);
}
.c-case-study__header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.c-case-study__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
}
.c-case-study__title {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}
.c-case-study__subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.c-case-study__body {
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.c-case-study__challenge h3,
.c-case-study__approach h3,
.c-case-study__learnings h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.c-case-study__challenge h3 i { color: #e07a3a; }
.c-case-study__approach h3 i { color: var(--color-primary); }
.c-case-study__learnings h3 i { color: var(--color-accent); }
.c-case-study__challenge p,
.c-case-study__approach p,
.c-case-study__learnings p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.c-case-study__learnings ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-case-study__learnings ul li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}
.c-case-study__learnings ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}


.s-contact-hero {
  padding: calc(var(--nav-height) + 4rem) 2rem var(--space-xl);
  background: var(--color-bg);
}
.s-contact-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.s-contact-hero__info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.s-contact-hero__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.s-contact-hero__info-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.s-contact-hero__info-item strong {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.s-contact-hero__info-item span,
.s-contact-hero__info-item a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.s-contact-hero__info-item a:hover { color: var(--color-primary); }


.c-contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.c-contact-form__title {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2rem;
}
.c-contact-form__field {
  margin-bottom: 1.25rem;
}
.c-contact-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.c-contact-form__field input,
.c-contact-form__field select,
.c-contact-form__field textarea {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  min-height: 44px;
}
.c-contact-form__field input:focus,
.c-contact-form__field select:focus,
.c-contact-form__field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.12);
  background: var(--color-surface);
}
.c-contact-form__field textarea { resize: vertical; min-height: 120px; }
.c-contact-form__privacy {
  margin-bottom: 1.5rem;
}
.c-contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.c-contact-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.c-contact-form__checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
}


.s-facts-strip {
  background: var(--color-text);
  padding: 3rem 2rem;
}
.s-facts-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.s-facts-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.s-facts-strip__item i {
  font-size: 1.75rem;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}
.s-facts-strip__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}
.s-facts-strip__value {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}


.s-map {
  padding: var(--space-xl) 2rem;
  background: var(--color-bg);
}
.s-map__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.s-map__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.s-map__embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}


.s-thanks {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 4rem) 2rem 6rem;
  text-align: center;
}
.s-thanks__inner {
  max-width: 500px;
}
.s-thanks__icon {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: block;
}
.s-thanks__heading {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.s-thanks__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}


.s-legal-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 3rem) 2rem 5rem;
}
.s-legal-page__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.s-legal-page__header h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.s-legal-page__header p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.s-legal-page__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}
.s-legal-page__sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.s-legal-page__sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.s-legal-page__sidebar-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  line-height: 1.4;
}
.s-legal-page__sidebar-nav a:hover {
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  background: rgba(45,90,61,0.06);
}
.s-legal-page__content section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}
.s-legal-page__content section:last-child {
  border-bottom: none;
}
.s-legal-page__content h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.s-legal-page__content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}
.s-legal-page__content a {
  color: var(--color-primary);
  text-decoration: underline;
}
.s-legal-page__content strong { color: var(--color-text); }


.c-cookie-table {
  margin-top: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.875rem;
}
.c-cookie-table__row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
}
.c-cookie-table__row--header {
  background: var(--color-bg-alt);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
.c-cookie-table__row span {
  padding: 0.65rem 1rem;
  border-right: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.c-cookie-table__row span:last-child { border-right: none; }
.c-cookie-table__row:not(.c-cookie-table__row--header) {
  border-top: 1px solid var(--color-border);
}


.c-cookie-card {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 9999;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  width: 280px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}
.c-cookie-card.is-visible {
  transform: translateX(0);
}
.c-cookie-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.c-cookie-card__header i {
  color: var(--color-accent);
  font-size: 1.1rem;
}
.c-cookie-card__header strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}
.c-cookie-card__text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.c-cookie-card__text a {
  color: var(--color-primary);
  text-decoration: underline;
}
.c-cookie-card__btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-cookie-card__accept {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
  min-height: 40px;
}
.c-cookie-card__accept:hover { opacity: 0.9; }
.c-cookie-card__settings {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 40px;
}
.c-cookie-card__settings:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}


.c-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-cookie-modal.is-visible {
  opacity: 1;
  pointer-events: all;
}
.c-cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28,26,22,0.55);
}
.c-cookie-modal__panel {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}
.c-cookie-modal__title {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.c-cookie-modal__category {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.c-cookie-modal__category:last-of-type { border-bottom: none; }
.c-cookie-modal__cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
.c-cookie-modal__cat-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}
.c-cookie-modal__cat-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.c-cookie-modal__toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.c-cookie-modal__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.c-cookie-modal__toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.c-cookie-modal__toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.c-cookie-modal__toggle input:checked + .c-cookie-modal__toggle-slider {
  background: var(--color-primary);
}
.c-cookie-modal__toggle input:checked + .c-cookie-modal__toggle-slider::before {
  transform: translateX(20px);
}
.c-cookie-modal__toggle input:disabled + .c-cookie-modal__toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.c-cookie-modal__save {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 1.5rem;
  transition: opacity 0.2s ease;
  min-height: 44px;
}
.c-cookie-modal__save:hover { opacity: 0.9; }


@media (max-width: 1100px) {
  .s-about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .s-about__img { height: 380px; }
  .c-team-card,
  .c-team-card--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .c-team-card--reverse .c-team-card__image-wrap,
  .c-team-card--reverse .c-team-card__body { order: unset; }
  .c-team-card__img { height: 340px; }
  .s-values__grid { grid-template-columns: repeat(2, 1fr); }
  .c-case-study__body { grid-template-columns: 1fr; }
  .s-how-works__steps { grid-template-columns: repeat(2, 1fr); }
  .s-how-works__steps::before { display: none; }
  .s-facts-strip__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .c-nav__links,
  .c-nav__actions { display: none; }
  .c-nav__hamburger { display: flex; margin-left: auto; }
  .c-mobile-sheet { display: block; }
  .s-tabs__nav { }
  .c-tab-panel__inner { grid-template-columns: 1fr; gap: 2rem; }
  .c-tab-panel__img { height: 260px; }
  .s-dual-cta__inner { grid-template-columns: 1fr; }
  .s-dual-cta__primary { min-height: 380px; }
  .s-dual-cta__secondary { padding: 2.5rem 2rem; }
  .s-contact-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .s-legal-page__layout { grid-template-columns: 1fr; }
  .s-legal-page__sidebar { position: static; }
  .s-legal-page__sidebar-nav { flex-direction: row; flex-wrap: wrap; }
  .s-courses__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --space-xl: 4rem; }
  .s-hero__clip-text { font-size: clamp(3.5rem, 18vw, 6rem); }
  .s-hero__ctas { flex-direction: column; }
  .s-hero__ctas .c-btn { width: 100%; justify-content: center; }
  .s-features__grid { grid-template-columns: 1fr; }
  .c-feature { border-right: none; }
  .c-feature:last-child { border-bottom: none; }
  .s-values__grid { grid-template-columns: 1fr; }
  .s-how-works__steps { grid-template-columns: 1fr; }
  .s-facts-strip__inner { grid-template-columns: 1fr 1fr; }
  .s-intro-strip__inner { gap: 1.5rem; }
  .c-cookie-card { width: calc(100vw - 2.5rem); max-width: 320px; }
  .s-image-break { height: 320px; }
  .c-tab-btn { padding: 0.75rem 1rem; font-size: 0.85rem; }
}