/* ============================================================
   HAVADO GAFOPA — STYLE.CSS
   Color Block Stacks Design System
   ============================================================ */


:root {
  
  --base-navy: #1a2744;
  --base-gold: #d4a843;
  --base-cream: #f5f0e8;

  
  --navy-900: var(--base-navy);
  --navy-800: color-mix(in oklch, var(--base-navy), white 10%);
  --navy-700: color-mix(in oklch, var(--base-navy), white 20%);
  --navy-600: color-mix(in oklch, var(--base-navy), white 35%);
  --navy-400: color-mix(in oklch, var(--base-navy), white 55%);
  --navy-200: color-mix(in oklch, var(--base-navy), white 80%);
  --navy-100: color-mix(in oklch, var(--base-navy), white 92%);

  
  --gold-900: color-mix(in oklch, var(--base-gold), black 30%);
  --gold-700: color-mix(in oklch, var(--base-gold), black 10%);
  --gold-500: var(--base-gold);
  --gold-300: color-mix(in oklch, var(--base-gold), white 40%);
  --gold-100: color-mix(in oklch, var(--base-gold), white 80%);

  
  --cream-900: color-mix(in oklch, var(--base-cream), black 40%);
  --cream-700: color-mix(in oklch, var(--base-cream), black 15%);
  --cream-500: var(--base-cream);
  --cream-300: color-mix(in oklch, var(--base-cream), white 50%);

  
  --charcoal: #2d3142;
  --charcoal-light: color-mix(in oklch, #2d3142, white 15%);
  --charcoal-lighter: color-mix(in oklch, #2d3142, white 30%);

  
  --off-white: #fafaf8;
  --text-on-dark: #f0ede6;
  --text-body: #2a2e3d;
  --text-muted: color-mix(in oklch, #2a2e3d, white 40%);

  
  --color-navy: var(--navy-900);
  --color-gold: var(--base-gold);
  --color-cream: var(--cream-500);
  --color-charcoal: var(--charcoal);
  --color-white: var(--off-white);

  
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --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: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  
  --shadow-sm:
    0 1px 2px color-mix(in oklch, var(--base-navy), transparent 85%),
    0 1px 3px color-mix(in oklch, var(--base-navy), transparent 90%);
  --shadow-md:
    0 2px 4px color-mix(in oklch, var(--base-navy), transparent 82%),
    0 4px 12px color-mix(in oklch, var(--base-navy), transparent 88%),
    0 8px 24px color-mix(in oklch, var(--base-navy), transparent 93%);
  --shadow-lg:
    0 4px 8px color-mix(in oklch, var(--base-navy), transparent 80%),
    0 8px 20px color-mix(in oklch, var(--base-navy), transparent 86%),
    0 16px 40px color-mix(in oklch, var(--base-navy), transparent 92%);
  --shadow-gold:
    0 2px 8px color-mix(in oklch, var(--base-gold), transparent 70%),
    0 6px 20px color-mix(in oklch, var(--base-gold), transparent 80%);

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


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

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

ul, ol {
  list-style: none;
}

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

address {
  font-style: normal;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero-heading {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-heading.light { color: var(--text-on-dark); }
.section-heading.dark { color: var(--navy-900); }

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: inherit;
}

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

.section-eyebrow.light { color: var(--gold-300); }
.section-eyebrow.dark { color: var(--gold-900); }

.section-header {
  margin-bottom: var(--space-12);
}

.section-header.centered {
  text-align: center;
}

.section-header.light-text .section-heading,
.section-header.light-text p {
  color: var(--text-on-dark);
}


.color-block-navy {
  background-color: var(--color-navy);
  color: var(--text-on-dark);
}

.color-block-gold {
  background-color: var(--color-gold);
  color: var(--navy-900);
}

.color-block-cream {
  background-color: var(--color-cream);
  color: var(--text-body);
}

.color-block-charcoal {
  background-color: var(--color-charcoal);
  color: var(--text-on-dark);
}

.color-block-white {
  background-color: var(--color-white);
  color: var(--text-body);
}


article, section {
  padding: var(--space-20) var(--space-6);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-6) var(--space-6);
  transition: padding var(--transition-slow), background-color var(--transition-slow), box-shadow var(--transition-slow);
  background-color: transparent;
}

.site-header.scrolled {
  padding: var(--space-3) var(--space-6);
  background-color: color-mix(in oklch, var(--navy-900), transparent 5%);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header-logo {
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-logo:hover {
  opacity: 0.85;
}

.logo-image {
  height: 36px;
  width: auto;
  transition: height var(--transition-slow);
}

.site-header.scrolled .logo-image {
  height: 28px;
}

#nav-menu {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: color-mix(in oklch, var(--text-on-dark), transparent 15%);
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gold-500);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-on-dark);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}


.nav-cta {
  margin-left: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.875rem;
  font-weight: 700;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  background-color: var(--gold-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px color-mix(in oklch, var(--base-gold), transparent 50%);
  color: var(--navy-900);
}


.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--navy-900);
  flex-shrink: 0;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--navy-900), transparent 50%); }
  50% { box-shadow: 0 0 0 4px color-mix(in oklch, var(--navy-900), transparent 80%); }
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-on-dark);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
}


.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--navy-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo {
  height: 32px;
  width: auto;
}

.overlay-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  font-size: 1.5rem;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-base);
}

.overlay-close:hover {
  background-color: color-mix(in oklch, var(--text-on-dark), transparent 85%);
}

.mobile-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  padding: var(--space-8);
  max-width: 480px;
  width: 100%;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-4);
  background-color: color-mix(in oklch, var(--text-on-dark), transparent 90%);
  border-radius: var(--radius-lg);
  color: var(--text-on-dark);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: background-color var(--transition-base), transform var(--transition-base);
  min-height: 100px;
}

.mobile-nav-item i {
  font-size: 1.75rem;
  color: var(--gold-500);
}

.mobile-nav-item:hover {
  background-color: color-mix(in oklch, var(--text-on-dark), transparent 80%);
  transform: translateY(-2px);
  color: var(--text-on-dark);
}


.primary-action {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.9rem;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}

.primary-action:hover {
  background-color: var(--gold-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in oklch, var(--base-gold), transparent 50%);
  color: var(--navy-900);
}

.primary-action:active {
  transform: translateY(0);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: #1A2744;
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  border: 2px solid color-mix(in oklch, var(--text-on-dark), transparent 50%);
  transition: border-color var(--transition-base), background-color var(--transition-base), transform var(--transition-base);
}

.secondary-action:hover {
  border-color: var(--text-on-dark);
  background-color: #1A2744;
  transform: translateY(-2px);
}

.dark-btn {
  background-color: var(--navy-900);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-md);
}

.dark-btn:hover {
  background-color: var(--navy-800);
  color: var(--text-on-dark);
}

.light-btn {
  background-color: var(--text-on-dark);
  color: var(--navy-900);
}

.light-btn:hover {
  background-color: var(--cream-300);
  color: var(--navy-900);
}

.cta-secondary {
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
  border-color: color-mix(in oklch, var(--text-on-dark), transparent 60%);
}


.hero-block {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-32) var(--space-6) var(--space-20);
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in oklch, var(--navy-900), transparent 15%) 0%,
    color-mix(in oklch, var(--charcoal), transparent 30%) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: var(--text-on-dark);
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-300);
  background-color: color-mix(in oklch, var(--gold-500), transparent 80%);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid color-mix(in oklch, var(--gold-500), transparent 60%);
  margin-bottom: var(--space-6);
}

.hero-subtext {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: color-mix(in oklch, var(--text-on-dark), transparent 15%);
  max-width: 680px;
  margin: var(--space-6) auto var(--space-10);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-primary {
  font-size: 1rem;
  padding: var(--space-4) var(--space-10);
}

.hero-secondary {
  font-size: 1rem;
  padding: var(--space-4) var(--space-10);
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: color-mix(in oklch, var(--text-on-dark), transparent 40%);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-label { font-weight: 500; }

.bounce-icon {
  animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}


.intro-block {
  padding: var(--space-24) var(--space-6);
}

.intro-content-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-16);
  align-items: start;
}

.intro-text-primary p,
.intro-text-secondary p {
  margin-bottom: var(--space-6);
  font-size: 1.05rem;
  line-height: 1.8;
}

.intro-text-secondary {
  padding-top: var(--space-4);
  border-left: 3px solid var(--gold-500);
  padding-left: var(--space-8);
}


.visual-break {
  width: 100%;
  overflow: hidden;
}

.dots-divider {
  padding: var(--space-8) 0;
  background-color: var(--off-white);
  display: flex;
  justify-content: center;
}

.dots-row {
  width: 100%;
  max-width: 1280px;
  height: 20px;
  background-image: radial-gradient(circle, var(--gold-500) 2px, transparent 2px);
  background-size: 24px 20px;
  opacity: 0.5;
}

.zigzag-divider {
  height: 40px;
  background-color: var(--off-white);
  background-image:
    linear-gradient(135deg, var(--color-charcoal) 25%, transparent 25%),
    linear-gradient(225deg, var(--color-charcoal) 25%, transparent 25%),
    linear-gradient(45deg, var(--color-charcoal) 25%, transparent 25%),
    linear-gradient(315deg, var(--color-charcoal) 25%, transparent 25%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 0, 20px -20px, 0 20px;
}


.pillars-block {
  padding: var(--space-24) var(--space-6);
}

.pillars-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.pillar-card {
  background-color: color-mix(in oklch, var(--navy-900), white 8%);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--text-on-dark), transparent 88%);
}

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

.pillar-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  font-size: 1.4rem;
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.pillar-card h3 {
  color: var(--text-on-dark);
  margin-bottom: var(--space-6);
}

.pillar-card dl {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pillar-card dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-1);
}

.pillar-card dd {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
}


.approach-preview-block {
  padding: var(--space-32) var(--space-6);
}

.approach-preview-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 40%;
  gap: var(--space-16);
  align-items: center;
}

.approach-preview-text .section-eyebrow { color: var(--gold-900); }
.approach-preview-text .section-heading { color: var(--navy-900); margin-bottom: var(--space-6); }

.approach-preview-text p {
  margin-bottom: var(--space-6);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--navy-900);
}

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


.topics-block {
  padding: var(--space-24) var(--space-6);
}

.topics-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: var(--space-16);
  align-items: start;
}

.topics-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  cursor: pointer;
}

.topics-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.topic-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-bottom: 1px solid color-mix(in oklch, var(--text-body), transparent 88%);
  transition: background-color var(--transition-base);
}

.topic-item:last-child { border-bottom: none; }

.topic-number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-500);
  letter-spacing: 0.05em;
  padding-top: 4px;
}

.topic-detail h3 {
  margin-bottom: var(--space-2);
  font-size: 1.05rem;
}

.topic-detail p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}


.consulting-preview-block {
  padding: var(--space-24) var(--space-6);
}

.consulting-preview-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 55%;
  gap: var(--space-16);
  align-items: center;
}

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

.consulting-preview-text .section-eyebrow { color: var(--gold-300); }

.consulting-preview-text p {
  margin-bottom: var(--space-6);
  line-height: 1.8;
  color: color-mix(in oklch, var(--text-on-dark), transparent 15%);
}


.faq-block {
  padding: var(--space-24) var(--space-6);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background-color: color-mix(in oklch, var(--cream-500), white 60%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--text-body), transparent 90%);
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-8);
  text-align: left;
  cursor: pointer;
  transition: background-color var(--transition-base);
  background: none;
  border: none;
  font-family: inherit;
  min-height: 44px;
}

.faq-trigger:hover {
  background-color: color-mix(in oklch, var(--gold-500), transparent 90%);
}

.faq-trigger[aria-expanded="true"] {
  background-color: color-mix(in oklch, var(--gold-500), transparent 88%);
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 0.75rem;
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background-color: var(--gold-700);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 var(--space-8) var(--space-6);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}


.cta-block {
  padding: var(--space-32) var(--space-6);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
  margin: var(--space-6) 0 var(--space-10);
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  font-size: 1rem;
  padding: var(--space-4) var(--space-10);
}


.page-hero-block {
  padding: clamp(8rem, 15vw, 12rem) var(--space-6) var(--space-24);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero-subtext {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  margin-top: var(--space-6);
  max-width: 700px;
}

.page-hero-subtext.light {
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
}

.page-hero-subtext.dark {
  color: var(--navy-800);
}

.page-hero-heading.light { color: var(--text-on-dark); }
.page-hero-heading.dark { color: var(--navy-900); }


.philosophy-block {
  padding: var(--space-24) var(--space-6);
}

.philosophy-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 40%;
  gap: var(--space-16);
  align-items: center;
}

.philosophy-text .section-heading {
  margin-bottom: var(--space-8);
}

.philosophy-text p {
  margin-bottom: var(--space-6);
  font-size: 1rem;
  line-height: 1.8;
}

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


.methodology-block {
  padding: var(--space-32) var(--space-6);
}

.methodology-steps {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.method-step {
  background-color: color-mix(in oklch, var(--base-gold), black 5%);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.method-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-900);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}

.method-step h3 {
  color: var(--navy-900);
  margin-bottom: var(--space-4);
}

.method-step p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: color-mix(in oklch, var(--navy-900), white 15%);
}


.depth-block {
  padding: var(--space-24) var(--space-6);
}

.depth-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 55%;
  gap: var(--space-16);
  align-items: start;
}

.depth-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.depth-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.depth-img-secondary {
  margin-top: var(--space-4);
  aspect-ratio: 16/9;
}

.depth-text-col .section-heading {
  margin-bottom: var(--space-8);
}

.depth-text-col p {
  margin-bottom: var(--space-6);
  font-size: 1rem;
  line-height: 1.8;
}

.depth-topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.depth-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background-color: color-mix(in oklch, var(--base-navy), transparent 90%);
  color: var(--navy-900);
  border: 1px solid color-mix(in oklch, var(--base-navy), transparent 80%);
}


.values-block {
  padding: var(--space-24) var(--space-6);
}

.values-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.value-card {
  background-color: color-mix(in oklch, var(--charcoal), white 10%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--text-on-dark), transparent 90%);
}

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

.value-icon {
  font-size: 1.5rem;
  color: var(--gold-500);
  margin-bottom: var(--space-4);
  display: block;
}

.value-card h3 {
  color: var(--text-on-dark);
  margin-bottom: var(--space-3);
  font-size: 1rem;
}

.value-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
}


.approach-cta-block {
  padding: var(--space-24) var(--space-6);
}

.approach-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.approach-cta-inner .section-heading {
  margin-bottom: var(--space-6);
}

.approach-cta-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-10);
}


.consulting-intro-block {
  padding: var(--space-24) var(--space-6);
}

.consulting-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 40%;
  gap: var(--space-16);
  align-items: center;
}

.consulting-intro-text .section-heading {
  margin-bottom: var(--space-8);
}

.consulting-intro-text p {
  margin-bottom: var(--space-6);
  font-size: 1rem;
  line-height: 1.8;
}

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


.services-block {
  padding: var(--space-24) var(--space-6);
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.service-card {
  background-color: color-mix(in oklch, var(--navy-900), white 10%);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--text-on-dark), transparent 88%);
}

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

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background-color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--navy-900);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-gold);
}

.service-card h3 {
  color: var(--text-on-dark);
  margin-bottom: var(--space-6);
}

.service-card dl {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-card dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-1);
}

.service-card dd {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
}


.process-block {
  padding: var(--space-24) var(--space-6);
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-8);
  align-items: start;
  padding: var(--space-8);
  background-color: color-mix(in oklch, var(--off-white), var(--cream-500) 50%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid color-mix(in oklch, var(--text-body), transparent 90%);
}

.process-step:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.process-step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--navy-900);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.process-step-content h3 {
  margin-bottom: var(--space-3);
}

.process-step-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}


.who-block {
  padding: var(--space-32) var(--space-6);
}

.who-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 40%;
  gap: var(--space-16);
  align-items: center;
}

.who-text .section-eyebrow { color: var(--gold-900); }
.who-text .section-heading { color: var(--navy-900); margin-bottom: var(--space-8); }

.who-text p {
  margin-bottom: var(--space-6);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--navy-900);
}

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


.consulting-cta-block {
  padding: var(--space-32) var(--space-6);
}


.contact-main-block {
  padding: var(--space-24) var(--space-6);
}

.contact-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 40%;
  gap: var(--space-16);
  align-items: start;
}

.contact-form-col .section-heading {
  margin-bottom: var(--space-8);
}

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

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

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
}

.form-field label abbr {
  color: var(--gold-700);
  text-decoration: none;
  margin-left: var(--space-1);
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: var(--space-4) var(--space-5);
  border: 2px solid color-mix(in oklch, var(--text-body), transparent 82%);
  border-radius: var(--radius-md);
  background-color: var(--off-white);
  color: var(--text-body);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  width: 100%;
  min-height: 44px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--gold-500), transparent 75%);
}

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

.form-field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-3);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold-500);
}

.checkbox-label a {
  color: var(--gold-700);
  text-decoration: underline;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-note abbr {
  color: var(--gold-700);
  text-decoration: none;
}

.form-error {
  background-color: color-mix(in oklch, red, transparent 85%);
  border: 1px solid color-mix(in oklch, red, transparent 70%);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: 0.875rem;
  color: #c0392b;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-submit-btn {
  align-self: flex-start;
  font-size: 1rem;
  padding: var(--space-4) var(--space-10);
}


.contact-info-card {
  background-color: var(--cream-500);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  margin-bottom: var(--space-6);
}

.contact-info-card dl {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info-card dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}

.contact-info-card dd {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
}

.contact-info-card dd a {
  color: var(--navy-900);
  font-weight: 500;
  transition: color var(--transition-base);
}

.contact-info-card dd a:hover {
  color: var(--gold-700);
}

.contact-office-card {
  background-color: var(--cream-500);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.office-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.office-description {
  padding: var(--space-6);
}

.office-description h3 {
  margin-bottom: var(--space-3);
  font-size: 1rem;
}

.office-description p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
}


.map-block {
  padding: var(--space-20) var(--space-6);
}

.map-container {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
  width: 100%;
}


.thanks-main {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

.thanks-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-32) var(--space-6);
  min-height: 70vh;
}

.thanks-inner {
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);
}

.thanks-animation-wrap {
  width: 100px;
  height: 100px;
}

.thanks-checkmark {
  width: 100%;
  height: 100%;
  color: var(--gold-500);
}

.checkmark-circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: draw-circle 0.7s ease forwards;
}

.checkmark-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw-check 0.5s ease 0.7s forwards;
}

@keyframes draw-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes draw-check {
  to { stroke-dashoffset: 0; }
}

.thanks-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.6s ease 1.3s forwards;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.thanks-heading {
  color: var(--text-on-dark);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--space-4);
}

.thanks-body {
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.thanks-home-btn {
  font-size: 1rem;
  padding: var(--space-4) var(--space-10);
}


.legal-page-block {
  padding: 0;
}

.legal-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  gap: 0;
}

.legal-sidebar {
  background-color: var(--cream-500);
  padding: var(--space-32) var(--space-6) var(--space-16);
  border-right: 2px solid color-mix(in oklch, var(--text-body), transparent 90%);
}

.legal-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.legal-sidebar-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: var(--space-2);
}

.legal-last-updated {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

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

.legal-sidebar-nav li a {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-base), color var(--transition-base);
  line-height: 1.4;
}

.legal-sidebar-nav li a:hover {
  background-color: color-mix(in oklch, var(--gold-500), transparent 85%);
  color: var(--navy-900);
}

.legal-content {
  padding: var(--space-32) var(--space-12) var(--space-16);
  background-color: var(--off-white);
}

.legal-content-header {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 2px solid color-mix(in oklch, var(--text-body), transparent 88%);
}

.legal-content-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy-900);
  margin-bottom: var(--space-4);
}

.legal-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.legal-content section {
  padding: 0;
  margin-bottom: var(--space-12);
  border-bottom: 1px solid color-mix(in oklch, var(--text-body), transparent 90%);
  padding-bottom: var(--space-12);
}

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

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}

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

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

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-8);
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-content address {
  background-color: var(--cream-500);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 2;
  border-left: 4px solid var(--gold-500);
}

.legal-content address a {
  color: var(--navy-900);
  font-weight: 500;
}

.legal-content address a:hover {
  color: var(--gold-700);
}


.cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-6) 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background-color: var(--off-white);
}

.cookie-table th {
  background-color: var(--navy-900);
  color: var(--text-on-dark);
  font-weight: 700;
  padding: var(--space-4) var(--space-6);
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.cookie-table td {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid color-mix(in oklch, var(--text-body), transparent 88%);
  color: var(--text-muted);
  line-height: 1.5;
}

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

.cookie-table code {
  font-family: monospace;
  background-color: color-mix(in oklch, var(--navy-900), transparent 90%);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--navy-900);
}


.site-footer {
  background-color: var(--navy-900);
  color: var(--text-on-dark);
  padding: var(--space-16) var(--space-6) 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid color-mix(in oklch, var(--text-on-dark), transparent 85%);
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-4);
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
  max-width: 320px;
  margin-bottom: var(--space-6);
}

.footer-address {
  font-size: 0.875rem;
  line-height: 2;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
}

.footer-address i {
  width: 16px;
  color: var(--gold-500);
  margin-right: var(--space-2);
}

.footer-address a {
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
  transition: color var(--transition-base);
}

.footer-address a:hover {
  color: var(--gold-300);
}

.footer-nav-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-6);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav ul a {
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
  transition: color var(--transition-base);
}

.footer-nav ul a:hover {
  color: var(--text-on-dark);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-6) 0;
  text-align: center;
}

.footer-bottom small {
  font-size: 0.8rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 50%);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background-color: var(--navy-900);
  border-top: 3px solid var(--gold-500);
  box-shadow: 0 -8px 32px color-mix(in oklch, var(--base-navy), transparent 50%);
  display: none;
}

.cookie-consent-banner.visible {
  display: flex;
}

.cookie-banner-left {
  flex: 1;
  padding: var(--space-6) var(--space-8);
  border-right: 1px solid color-mix(in oklch, var(--text-on-dark), transparent 85%);
}

.cookie-banner-right {
  flex: 1;
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-banner-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.cookie-banner-title i {
  color: var(--gold-500);
}

.cookie-banner-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
}

.cookie-banner-text a {
  color: var(--gold-300);
  text-decoration: underline;
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.cookie-toggle-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.cookie-toggle-label span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: color-mix(in oklch, var(--text-on-dark), transparent 40%);
}

.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

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

.toggle-slider {
  position: absolute;
  inset: 0;
  background-color: color-mix(in oklch, var(--text-on-dark), transparent 70%);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--transition-base);
}

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

.cookie-toggle input:checked + .toggle-slider {
  background-color: var(--gold-500);
}

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

.cookie-toggle input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-btn-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cookie-accept-all {
  background-color: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 700;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background-color var(--transition-base), transform var(--transition-base);
  min-height: 44px;
}

.cookie-accept-all:hover {
  background-color: var(--gold-700);
  transform: translateY(-1px);
}

.cookie-accept-necessary {
  background-color: transparent;
  color: var(--text-on-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid color-mix(in oklch, var(--text-on-dark), transparent 60%);
  font-family: inherit;
  transition: border-color var(--transition-base), background-color var(--transition-base);
  min-height: 44px;
}

.cookie-accept-necessary:hover {
  border-color: var(--text-on-dark);
  background-color: color-mix(in oklch, var(--text-on-dark), transparent 90%);
}

.cookie-save-prefs {
  background-color: transparent;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
  font-size: 0.75rem;
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: underline;
  transition: color var(--transition-base);
  min-height: 44px;
}

.cookie-save-prefs:hover {
  color: var(--text-on-dark);
}


.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .approach-preview-inner,
  .consulting-preview-inner,
  .philosophy-inner,
  .who-inner,
  .consulting-intro-inner,
  .intro-content-grid,
  .topics-layout,
  .depth-inner,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .approach-preview-image,
  .consulting-preview-image {
    order: -1;
  }

  .who-image {
    order: -1;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .methodology-steps {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .legal-sidebar {
    padding: var(--space-20) var(--space-6) var(--space-8);
    border-right: none;
    border-bottom: 2px solid color-mix(in oklch, var(--text-body), transparent 88%);
  }

  .legal-sidebar-sticky {
    position: static;
  }

  .legal-content {
    padding: var(--space-8) var(--space-6) var(--space-16);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cookie-consent-banner {
    flex-direction: column;
  }

  .cookie-banner-left {
    border-right: none;
    border-bottom: 1px solid color-mix(in oklch, var(--text-on-dark), transparent 85%);
  }
}

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

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .hero-block {
    min-height: 85vh;
    padding-top: var(--space-24);
  }

  article, section {
    padding: var(--space-16) var(--space-4);
  }

  .intro-text-secondary {
    border-left: none;
    border-top: 3px solid var(--gold-500);
    padding-left: 0;
    padding-top: var(--space-6);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: var(--space-4);
  }

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

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2.2rem;
  }

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

  .primary-action,
  .secondary-action {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn-row {
    flex-direction: column;
  }

  .cookie-accept-all,
  .cookie-accept-necessary {
    width: 100%;
  }
}