/* ============================================================
   MACEZI YAHIKE — CUSTOM CSS
   Monochrome Plus: Deep Slate Blue + Warm Amber Accent
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  
  --color-bg:           #f7f9fc;
  --color-bg-muted:     #eef1f6;
  --color-bg-subtle:    #e4e9f2;
  --color-surface:      #ffffff;

  --color-dark-900:     #0f1a27;
  --color-dark-800:     #1a2d42;
  --color-dark-700:     #243d56;
  --color-dark-600:     #2e4d6a;
  --color-dark-400:     #4a6d8c;
  --color-dark-300:     #6b8daa;
  --color-dark-200:     #8fafc8;
  --color-dark-100:     #b8d0e4;
  --color-dark-50:      #dce8f2;

  
  --color-accent:       #c97a0a;
  --color-accent-light: #e8951a;
  --color-accent-dark:  #a0600a;
  --color-accent-bg:    #fdf3e0;

  
  --color-text:         #1e2d40;
  --color-text-muted:   #4a6475;
  --color-text-light:   #f0f5fa;
  --color-text-subtle:  #7a94a8;

  
  --font-family:        'DM Sans', sans-serif;

  
  --text-display:       clamp(3.5rem, 10vw, 8rem);
  --text-hero:          clamp(2.2rem, 5vw, 3.8rem);
  --text-page-hero:     clamp(1.9rem, 4vw, 3rem);
  --text-h2:            clamp(1.6rem, 3vw, 2.4rem);
  --text-h3:            clamp(1.2rem, 2vw, 1.5rem);
  --text-body:          1rem;
  --text-small:         0.875rem;
  --text-eyebrow:       0.75rem;

  
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  
  --shadow-xs:  0 1px 2px rgba(15, 26, 39, 0.06);
  --shadow-sm:  0 2px 6px rgba(15, 26, 39, 0.08), 0 1px 2px rgba(15, 26, 39, 0.04);
  --shadow-md:  0 4px 16px rgba(15, 26, 39, 0.10), 0 2px 6px rgba(15, 26, 39, 0.06);
  --shadow-lg:  0 8px 32px rgba(15, 26, 39, 0.12), 0 4px 12px rgba(15, 26, 39, 0.08);
  --shadow-xl:  0 16px 48px rgba(15, 26, 39, 0.14), 0 8px 20px rgba(15, 26, 39, 0.08);
  --shadow-accent: 0 4px 20px rgba(201, 122, 10, 0.25), 0 2px 8px rgba(201, 122, 10, 0.15);

  
  --transition-fast:   0.2s ease-out;
  --transition-base:   0.3s ease-out;
  --transition-slow:   0.5s ease-out;
  --transition-reveal: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  
  --nav-height:        80px;
  --nav-height-scroll: 60px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

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

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

ul {
  list-style: none;
}

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

address {
  font-style: normal;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-dark-800);
  transition: padding var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition-base);
}

.nav--scrolled .nav__container {
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.nav--scrolled {
  background-color: rgba(26, 45, 66, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.nav__brand:hover {
  opacity: 0.85;
}

.nav__logo {
  width: 36px;
  height: 36px;
  transition: width var(--transition-base), height var(--transition-base);
  flex-shrink: 0;
}

.nav--scrolled .nav__logo {
  width: 28px;
  height: 28px;
}

.nav__brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.01em;
  transition: font-size var(--transition-base);
}

.nav--scrolled .nav__brand-name {
  font-size: 1rem;
}

.nav__menu {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-dark-100);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav__link:hover {
  color: var(--color-text-light);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav__link--active {
  color: var(--color-accent-light);
}

.nav__link--active:hover {
  color: var(--color-accent-light);
  background-color: rgba(232, 149, 26, 0.12);
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.nav__hamburger:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.nav__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-dark-100);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base), background-color var(--transition-fast);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.nav__mobile-panel {
  max-height: 0;
  overflow: hidden;
  background-color: var(--color-dark-900);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__mobile-panel.is-open {
  max-height: 400px;
}

.nav__mobile-list {
  padding: var(--space-4) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.nav__mobile-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark-100);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav__mobile-link:hover {
  color: var(--color-text-light);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav__mobile-link--active {
  color: var(--color-accent-light);
}

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

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background-color: var(--color-dark-700);
  color: var(--color-text-light);
  border-color: var(--color-dark-700);
}

.btn--primary:hover {
  background-color: var(--color-dark-600);
  border-color: var(--color-dark-600);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: var(--shadow-accent);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text-light);
  border-color: rgba(240, 245, 250, 0.4);
}

.btn--ghost:hover {
  background-color: rgba(240, 245, 250, 0.1);
  border-color: rgba(240, 245, 250, 0.7);
}

.btn--white {
  background-color: #fff;
  color: var(--color-dark-800);
  border-color: #fff;
}

.btn--white:hover {
  background-color: var(--color-dark-50);
  border-color: var(--color-dark-50);
  box-shadow: var(--shadow-md);
}

.btn--white-outline {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

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

.btn--outline {
  background-color: transparent;
  color: var(--color-dark-700);
  border-color: var(--color-dark-200);
}

.btn--outline:hover {
  background-color: var(--color-bg-muted);
  border-color: var(--color-dark-400);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section {
  padding: var(--space-16) 0;
}

.section--dark {
  background-color: var(--color-dark-800);
}

.section--muted {
  background-color: var(--color-bg-muted);
}

.section--accent {
  background-color: var(--color-accent);
}

.section__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section__eyebrow {
  display: inline-block;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section__eyebrow--light {
  color: var(--color-accent-light);
}

.section__heading {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section__heading--light {
  color: var(--color-text-light);
}

.section__subheading {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.section__subheading--light {
  color: var(--color-dark-100);
}

.section__body {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 39, 0.88) 0%,
    rgba(26, 45, 66, 0.82) 50%,
    rgba(36, 61, 86, 0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-20) var(--space-6) var(--space-32);
  text-align: center;
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-4);
  animation: heroEntrance 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__title {
  font-size: var(--text-display);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-6);
  animation: heroEntrance 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--color-dark-100);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.65;
  animation: heroEntrance 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  animation: heroEntrance 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ============================================================
   FEATURE CARDS (overlapping hero)
   ============================================================ */
.feature-cards {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding: 0 0 var(--space-8);
  container-type: inline-size;
  container-name: feature-cards-container;
}

.feature-cards__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.feature-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.card--feature {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(26, 45, 66, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  container-type: inline-size;
  container-name: feature-card;
}

.card--feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 26, 39, 0.16), 0 8px 20px rgba(15, 26, 39, 0.10);
}

.card--featured {
  border-top: 3px solid var(--color-accent);
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--color-bg-muted);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: background-color var(--transition-base);
}

.card--featured .card__icon-wrap {
  background: var(--color-accent-bg);
}

.card--feature:hover .card__icon-wrap {
  background-color: var(--color-dark-50);
}

.card--featured:hover .card__icon-wrap {
  background-color: #fce8c0;
}

.card__icon {
  font-size: 1.25rem;
  color: var(--color-dark-400);
  transition: color var(--transition-base);
}

.card--featured .card__icon {
  color: var(--color-accent);
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.card__body {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.card__link {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-dark-600);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.card--featured .card__link {
  color: var(--color-accent);
}

.card__link:hover {
  color: var(--color-dark-800);
  gap: var(--space-3);
}

.card--featured .card__link:hover {
  color: var(--color-accent-dark);
}

/* ============================================================
   ABOUT INTRO
   ============================================================ */
.about-intro__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-intro__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

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

.about-intro__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--color-accent);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.3;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  container-type: inline-size;
  container-name: process-steps;
}

.process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: start;
  position: relative;
}

.process__step-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(240, 245, 250, 0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  min-width: 64px;
  flex-shrink: 0;
}

.process__step-connector {
  display: none;
}

.process__step-content {
  padding-top: var(--space-2);
}

.process__step-icon {
  width: 44px;
  height: 44px;
  background: rgba(240, 245, 250, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: background-color var(--transition-base);
}

.process__step:hover .process__step-icon {
  background: rgba(232, 149, 26, 0.2);
}

.process__step-icon i {
  font-size: 1.1rem;
  color: var(--color-accent-light);
}

.process__step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.process__step-body {
  font-size: var(--text-small);
  color: var(--color-dark-200);
  line-height: 1.75;
}

.process__cta {
  text-align: center;
}

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.services-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  container-type: inline-size;
  container-name: services-preview;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 45, 66, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.service-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

.service-card:hover .service-card__image {
  transform: scale(1.04);
}

.service-card__body {
  padding: var(--space-6);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.service-card__text {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.service-card__link {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.service-card__link:hover {
  color: var(--color-accent-dark);
  gap: var(--space-3);
}

.services-preview__footer {
  text-align: center;
}

/* ============================================================
   MISSION BAND
   ============================================================ */
.mission-band__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

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

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band__content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-band__heading {
  font-size: var(--text-h2);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.cta-band__body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-16);
}

.page-hero__content {
  max-width: 760px;
}

.page-hero__title {
  font-size: var(--text-page-hero);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-dark-100);
  line-height: 1.65;
  max-width: 600px;
}

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.differentiators__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  container-type: inline-size;
  container-name: diff-grid;
}

.diff-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 45, 66, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.diff-card__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-bg-subtle);
  line-height: 1;
  letter-spacing: -0.04em;
  min-width: 56px;
}

.diff-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.diff-card__text {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
.philosophy__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

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

/* ============================================================
   CONTEXT POINTS
   ============================================================ */
.context-points__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  container-type: inline-size;
  container-name: context-grid;
}

.context-point {
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 45, 66, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.context-point__icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.context-point__icon i {
  font-size: 1.1rem;
  color: var(--color-accent);
}

.context-point__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.context-point__text {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ============================================================
   SERVICE DETAIL (what-we-offer)
   ============================================================ */
.service-detail {
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--color-bg-subtle);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail--alt {
  background: transparent;
}

.service-detail__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.service-detail__icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--color-accent-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail__icon-wrap i {
  font-size: 1.4rem;
  color: var(--color-accent);
}

.service-detail__label {
  display: block;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.service-detail__title {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-detail__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}

.service-detail__subheading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: var(--space-6) 0 var(--space-3);
  letter-spacing: -0.01em;
}

.service-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-detail__list li {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-left: var(--space-5);
  position: relative;
}

.service-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

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

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  container-type: inline-size;
  container-name: faq-layout;
}

.faq-section__group-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin: var(--space-10) 0 var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-bg-subtle);
}

.faq-section__group-heading:first-child {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-bg-subtle);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  min-height: 56px;
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item__icon {
  font-size: 0.9rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

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

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding var(--transition-base);
}

.faq-item__answer.is-open {
  max-height: 500px;
  padding-bottom: var(--space-5);
}

.faq-item__answer p {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.faq-sidebar-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 45, 66, 0.06);
  margin-bottom: var(--space-6);
}

.faq-sidebar-card--muted {
  background: var(--color-bg-muted);
  box-shadow: none;
}

.faq-sidebar-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.faq-sidebar-card__text {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-facts__strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.contact-fact {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 45, 66, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.contact-fact__icon {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: block;
}

.contact-fact__label {
  display: block;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-2);
}

.contact-fact__value {
  display: block;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text);
}

.contact-main__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}


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

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contact-form__label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text);
}

.contact-form__required {
  color: var(--color-accent);
}

.contact-form__input,
.contact-form__textarea {
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-family);
  font-size: var(--text-body);
  color: var(--color-text);
  background: var(--color-surface);
  border: 2px solid var(--color-bg-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
  outline: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-dark-400);
  box-shadow: 0 0 0 3px rgba(74, 109, 140, 0.15);
}

.contact-form__input:invalid:not(:placeholder-shown),
.contact-form__textarea:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

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

.contact-form__error {
  font-size: 0.8rem;
  color: #c0392b;
  display: none;
}

.contact-form__field--checkbox {
  flex-direction: column;
}

.contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.contact-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-form__checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--color-bg-subtle);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-form__checkbox:checked + .contact-form__checkbox-custom {
  background: var(--color-dark-700);
  border-color: var(--color-dark-700);
}

.contact-form__checkbox:checked + .contact-form__checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.contact-form__checkbox:focus + .contact-form__checkbox-custom {
  box-shadow: 0 0 0 3px rgba(74, 109, 140, 0.2);
}

.contact-form__checkbox-text {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-form__policy-link {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.contact-form__policy-link:hover {
  color: var(--color-accent-dark);
}

.contact-form__submit {
  align-self: flex-start;
}


.contact-info {
  background: var(--color-bg-muted);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.contact-info__heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-bg-subtle);
}

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

.contact-info__icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon-wrap i {
  font-size: 1rem;
  color: var(--color-accent);
}

.contact-info__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-info__link {
  transition: color var(--transition-fast);
}

.contact-info__link:hover {
  color: var(--color-accent);
}


.contact-map__heading {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

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

.contact-map__embed iframe {
  display: block;
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-page main {
  flex: 1;
}

.thanks-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.thanks-hero {
  flex: 1;
  background: var(--color-dark-800);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height) - 300px);
  padding: var(--space-20) var(--space-6);
  text-align: center;
}

.thanks-hero__content {
  max-width: 560px;
}

.thanks-hero__icon {
  width: 72px;
  height: 72px;
  background: rgba(232, 149, 26, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.thanks-hero__icon i {
  font-size: 1.8rem;
  color: var(--color-accent-light);
}

.thanks-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.thanks-hero__subtitle {
  font-size: 1.05rem;
  color: var(--color-dark-100);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.thanks-hero__contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.thanks-hero__contact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-dark-100);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.thanks-hero__contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text-light);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  padding-top: calc(var(--nav-height) + var(--space-12));
  padding-bottom: var(--space-12);
}

.legal-hero__title {
  font-size: var(--text-page-hero);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}

.legal-hero__meta {
  font-size: var(--text-small);
  color: var(--color-dark-200);
}

.legal-content__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

.legal-article {
  max-width: 760px;
}

.legal-article__intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 2px solid var(--color-bg-subtle);
}

.legal-article__heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin: var(--space-10) 0 var(--space-4);
}

.legal-article__subheading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: var(--space-6) 0 var(--space-3);
}

.legal-article p {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.legal-article__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

.legal-article__list li {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-left: var(--space-5);
  position: relative;
}

.legal-article__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

.legal-article__link {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.legal-article__link:hover {
  color: var(--color-accent-dark);
}

.legal-article__address {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 2;
  padding: var(--space-5);
  background: var(--color-bg-muted);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.legal-highlight {
  color: var(--color-dark-700);
  font-weight: 700;
}


.legal-definition {
  background: var(--color-accent-bg);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5) var(--space-6);
  margin: var(--space-6) 0;
}

.legal-definition__term {
  display: block;
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}

.legal-definition__text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 !important;
}


.legal-clause {
  margin-bottom: var(--space-6);
}

.legal-clause__heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-bg-subtle);
}


.cookie-table-wrap {
  margin: var(--space-6) 0;
}

.cookie-table__heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cookie-table thead {
  background: var(--color-dark-800);
  color: var(--color-text-light);
}

.cookie-table th {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cookie-table td {
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-bg-subtle);
  vertical-align: top;
}

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

.cookie-table tbody tr:nth-child(even) {
  background: var(--color-bg-muted);
}

.cookie-table code {
  font-family: monospace;
  font-size: 0.78rem;
  background: var(--color-bg-subtle);
  padding: 2px 5px;
  border-radius: var(--radius-sm);
  color: var(--color-dark-700);
}

.cookies-article__heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin: var(--space-10) 0 var(--space-4);
}


.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
  height: fit-content;
}

.legal-sidebar__nav {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 45, 66, 0.06);
  margin-bottom: var(--space-5);
}

.legal-sidebar__heading {
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-4);
}

.legal-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.legal-sidebar__link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.legal-sidebar__link:hover {
  color: var(--color-text);
  background: var(--color-bg-muted);
}

.legal-sidebar__link--active {
  color: var(--color-accent);
  background: var(--color-accent-bg);
  font-weight: 600;
}

.legal-sidebar__contact {
  background: var(--color-bg-muted);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
}

.legal-sidebar__contact p {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark-900);
  color: var(--color-dark-200);
  margin-top: auto;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding: var(--space-12) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  transition: opacity var(--transition-fast);
}

.footer__brand-link:hover {
  opacity: 0.8;
}

.footer__logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.footer__brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.footer__tagline {
  font-size: var(--text-small);
  color: var(--color-dark-300);
  line-height: 1.5;
}

.footer__nav-heading {
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark-200);
  margin-bottom: var(--space-4);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__nav-link {
  font-size: var(--text-small);
  color: var(--color-dark-300);
  transition: color var(--transition-fast);
  padding: var(--space-1) 0;
}

.footer__nav-link:hover {
  color: var(--color-text-light);
}

.footer__address p {
  font-size: var(--text-small);
  color: var(--color-dark-300);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__address i {
  color: var(--color-accent);
  width: 14px;
  flex-shrink: 0;
}

.footer__contact-link {
  color: var(--color-dark-300);
  transition: color var(--transition-fast);
}

.footer__contact-link:hover {
  color: var(--color-accent-light);
}

.footer__bottom {
  padding: var(--space-5) 0;
  text-align: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-dark-400);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
  position: fixed;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - var(--space-8));
  max-width: 480px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie-consent__card {
  background: var(--color-dark-800);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-consent__compact {
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  transition: opacity var(--transition-base);
}

.cookie-consent__compact.is-hidden {
  display: none;
}

.cookie-consent__message {
  flex: 1;
  font-size: 0.82rem;
  color: var(--color-dark-100);
  line-height: 1.5;
  min-width: 160px;
}

.cookie-consent__policy-link {
  color: var(--color-accent-light);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.cookie-consent__policy-link:hover {
  color: #fff;
}

.cookie-consent__actions {
  display: flex;
  gap: var(--space-2);
}

.cookie-consent__btn {
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  min-height: 36px;
  border: none;
}

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

.cookie-consent__btn--accept {
  background: var(--color-accent);
  color: #fff;
}

.cookie-consent__btn--accept:hover {
  background: var(--color-accent-dark);
}

.cookie-consent__btn--settings {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-dark-100);
}

.cookie-consent__btn--settings:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.cookie-consent__btn--save {
  background: var(--color-accent);
  color: #fff;
  width: 100%;
}

.cookie-consent__btn--save:hover {
  background: var(--color-accent-dark);
}

.cookie-consent__expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent__expanded.is-open {
  max-height: 600px;
}

.cookie-consent__expanded-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-light);
  padding: var(--space-5) var(--space-6) var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-consent__category {
  padding: var(--space-3) var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-consent__category:last-of-type {
  border-bottom: none;
}

.cookie-consent__category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-1);
}

.cookie-consent__category-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.cookie-consent__category-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-dark-300);
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.cookie-consent__category-desc {
  font-size: 0.75rem;
  color: var(--color-dark-300);
  line-height: 1.5;
}


.cookie-consent__toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

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

.cookie-consent__toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.cookie-consent__toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}

.cookie-consent__toggle-input:checked + .cookie-consent__toggle-slider {
  background: var(--color-accent);
}

.cookie-consent__toggle-input:checked + .cookie-consent__toggle-slider::before {
  transform: translateX(18px);
}

.cookie-consent__expanded-actions {
  padding: var(--space-4) var(--space-6) var(--space-5);
}

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


@container feature-cards-container (min-width: 600px) {
  .feature-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@container feature-cards-container (min-width: 1000px) {
  .feature-cards__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


@container services-preview (min-width: 700px) {
  .services-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


@container process-steps (min-width: 700px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@container process-steps (min-width: 1000px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}


@container diff-grid (min-width: 640px) {
  .differentiators__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@container context-grid (min-width: 640px) {
  .context-points__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@container faq-layout (min-width: 800px) {
  .faq-section__layout {
    grid-template-columns: 1fr 280px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (600px+)
   ============================================================ */
@media (min-width: 600px) {
  .nav__menu {
    display: block;
  }

  .nav__hamburger {
    display: none;
  }

  .feature-cards {
    margin-top: -100px;
  }

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

  .mission-band__layout {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy__layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-facts__strip {
    grid-template-columns: repeat(4, 1fr);
  }

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

/* ============================================================
   RESPONSIVE — DESKTOP (900px+)
   ============================================================ */
@media (min-width: 900px) {
  .feature-cards {
    margin-top: -120px;
  }

  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }

  .process__step {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .process__step-connector {
    display: block;
    position: absolute;
    top: 28px;
    right: -40%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, rgba(240, 245, 250, 0.15), rgba(240, 245, 250, 0.05));
  }

  .process__step:last-child .process__step-connector {
    display: none;
  }

  .service-detail__layout {
    grid-template-columns: 3fr 2fr;
  }

  .service-detail__layout--reversed {
    grid-template-columns: 3fr 2fr;
  }

  .service-detail__layout--reversed .service-detail__text {
    order: 1;
  }

  .service-detail__layout--reversed .service-detail__image-col {
    order: 2;
  }

  .footer__top {
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: var(--space-10);
  }

  .legal-content__layout {
    grid-template-columns: 1fr 260px;
    gap: var(--space-12);
  }
}

/* ============================================================
   RESPONSIVE — WIDE (1200px+)
   ============================================================ */
@media (min-width: 1200px) {
  .section {
    padding: var(--space-20) 0;
  }
}

/* ============================================================
   PRINT / REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}