/* ============================================
   FloralWave - Main Stylesheet
   Design: Cutout Layers concept
   ============================================ */

:root {
  --color-primary: #1a3a2e;
  --color-primary-light: #2d5c47;
  --color-secondary: #f5f0e8;
  --color-accent: #c8a96e;
  --color-accent-dark: #a8863f;
  --color-surface: #faf8f4;
  --color-surface-2: #f0ece3;
  --color-text: #1e2d25;
  --color-text-muted: #5a6b5e;
  --color-text-light: #f5f0e8;
  --color-border: #ddd8cc;
  --color-white: #fefefe;

  --shadow-sm: 0 1px 3px rgba(26,58,46,0.08), 0 1px 2px rgba(26,58,46,0.06);
  --shadow-md: 0 4px 12px rgba(26,58,46,0.1), 0 2px 6px rgba(26,58,46,0.07);
  --shadow-lg: 0 12px 32px rgba(26,58,46,0.14), 0 4px 12px rgba(26,58,46,0.08), 0 1px 3px rgba(26,58,46,0.06);
  --shadow-xl: 0 24px 56px rgba(26,58,46,0.18), 0 8px 24px rgba(26,58,46,0.1), 0 2px 6px rgba(26,58,46,0.06);
  --shadow-accent: 0 8px 24px rgba(200,169,110,0.25), 0 2px 8px rgba(200,169,110,0.15);

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

  --nav-height: 80px;
  --section-pad: clamp(60px, 8vw, 120px);
  --content-max: 1200px;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-surface);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease, opacity 0.25s ease;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ============================================
   LAYOUT
   ============================================ */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.content-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
}

.section-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.centered-headline {
  text-align: center;
}

.feature-headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.inner-hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.section-body {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2rem;
}

.narrow-body {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-text {
  color: var(--color-accent);
  font-style: italic;
}

.label-tag {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.label-tag--light {
  background-color: rgba(245,240,232,0.2);
  color: var(--color-text-light);
  border: 1px solid rgba(245,240,232,0.3);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.site-header.scrolled .nav-link {
  color: var(--color-text);
}

.site-header.scrolled .nav-link:hover {
  color: var(--color-primary);
}

.nav-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.nav-links--left {
  justify-content: flex-end;
}

.nav-links--right {
  justify-content: flex-start;
  gap: 8px;
}

.nav-link {
  color: rgba(245,240,232,0.92);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-accent);
  background-color: rgba(245,240,232,0.08);
}

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

.site-header.scrolled .nav-link.active-link {
  color: var(--color-primary);
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
}

.nav-cta {
  margin-left: 8px;
  font-size: 0.875rem;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-accent);
  text-decoration: none;
  font-family: var(--font-body);
}

.primary-action:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,169,110,0.35), 0 4px 12px rgba(200,169,110,0.2);
  color: var(--color-primary);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245,240,232,0.35);
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.secondary-action:hover {
  border-color: var(--color-accent);
  background-color: rgba(200,169,110,0.08);
  color: var(--color-accent);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(245,240,232,0.1);
}

.toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.scrolled .toggle-bar {
  background-color: var(--color-text);
}

.mobile-menu-toggle.is-open .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.is-open .toggle-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-open .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-drawer {
  display: none;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-nav-drawer.is-open {
  max-height: 400px;
}

.mobile-nav-list {
  padding: 12px 0 20px;
}

.mobile-nav-link {
  display: block;
  padding: 12px clamp(16px, 4vw, 48px);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover {
  background-color: var(--color-surface-2);
  color: var(--color-primary);
}

.mobile-nav-cta {
  color: var(--color-primary);
  font-weight: 600;
  background-color: var(--color-surface-2);
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,46,0.88) 0%,
    rgba(26,58,46,0.7) 50%,
    rgba(26,58,46,0.5) 100%
  );
}

.hero-cutout-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--color-surface);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 2;
}

.hero-content-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-text-block {
  max-width: 560px;
}

.hero-body-text {
  color: rgba(245,240,232,0.88);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-btn {
  font-size: 1rem;
  padding: 14px 28px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}

.hero-link:hover {
  gap: 12px;
}

.floating-info-card {
  background: rgba(250,248,244,0.97);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(200,169,110,0.2);
}

.info-card-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.card-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
}

.card-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.card-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(200,169,110,0.15);
  color: var(--color-accent-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.card-feature-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 2px;
}

.card-feature-item p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.card-action-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-md);
}

.card-action-btn:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-text-light);
}

/* ============================================
   WHAT WE DO SECTION - Cutout
   ============================================ */

.what-we-do-section {
  position: relative;
  background-color: var(--color-surface);
  padding: var(--section-pad) 0;
  margin-top: -60px;
  z-index: 3;
}

.cutout-layer-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.cutout-reveal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cutout-circle-window {
  position: absolute;
  top: 50%;
  right: 38%;
  transform: translate(50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: var(--radius-circle);
  border: 3px solid var(--color-accent);
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.what-we-do-content {
  position: relative;
  z-index: 2;
}

.section-intro {
  margin-bottom: 48px;
}

.centered-intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-grid {
  display: grid;
  gap: 24px;
}

.what-we-do-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}

.service-tile {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.tile-icon-wrap {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.service-tile h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.service-tile p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

.how-it-works-section {
  position: relative;
  background-color: var(--color-primary);
  padding: var(--section-pad) 0 calc(var(--section-pad) + 60px);
  margin-top: -60px;
  z-index: 2;
}

.cutout-arch-shape {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background-color: var(--color-surface);
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1;
}

.how-it-works-section .section-intro {
  position: relative;
  z-index: 2;
}

.how-it-works-section .label-tag {
  background-color: rgba(200,169,110,0.2);
  color: var(--color-accent);
  border: 1px solid rgba(200,169,110,0.3);
}

.how-it-works-section .section-headline {
  color: var(--color-text-light);
}

.how-it-works-section .section-body {
  color: rgba(245,240,232,0.75);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.step-card {
  background: rgba(245,240,232,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(245,240,232,0.12);
  position: relative;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.step-card:hover {
  background: rgba(245,240,232,0.1);
  transform: translateY(-4px);
}

.step-number-badge {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon-wrap {
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.step-card:hover .step-img {
  transform: scale(1.04);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.65;
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 1.1rem;
  z-index: 3;
  display: none;
}

/* ============================================
   SERVICES DEEP SECTION
   ============================================ */

.services-deep-section {
  background-color: var(--color-surface);
  padding: var(--section-pad) 0;
  margin-top: -60px;
  z-index: 3;
  position: relative;
}

.service-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.service-feature-row--reverse {
  direction: rtl;
}

.service-feature-row--reverse > * {
  direction: ltr;
}

.visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cutout-frame {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.service-feature-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.5s ease;
}

.service-feature-row:hover .service-feature-img {
  transform: scale(1.03);
}

.frame-cutout-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--color-accent);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.frame-cutout-accent--alt {
  bottom: auto;
  right: auto;
  top: -20px;
  left: -20px;
}

.service-feature-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-feature-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.inline-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
  transition: color 0.2s ease, gap 0.2s ease;
  width: fit-content;
}

.inline-action-link:hover {
  color: var(--color-accent-dark);
  gap: 12px;
}

/* ============================================
   MINIMAL CTA
   ============================================ */

.minimal-cta-section {
  position: relative;
  background-color: var(--color-primary-light);
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}

.cta-cutout-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.cta-cutout-bg::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-circle);
  background: rgba(200,169,110,0.1);
}

.cta-cutout-bg::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-circle);
  background: rgba(200,169,110,0.06);
}

.minimal-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-sub {
  color: rgba(245,240,232,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-main-btn {
  font-size: 1.05rem;
  padding: 16px 36px;
}

/* ============================================
   PROGRAMS OVERVIEW
   ============================================ */

.programs-overview-section {
  position: relative;
  padding: var(--section-pad) 0 calc(var(--section-pad) + 60px);
  overflow: hidden;
}

.programs-cutout-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.programs-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,46,0.92) 0%, rgba(26,58,46,0.8) 100%);
}

.programs-content {
  position: relative;
  z-index: 2;
}

.programs-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-preview-card {
  background: rgba(250,248,244,0.08);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.program-preview-card:hover {
  background: rgba(250,248,244,0.13);
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.4);
}

.program-preview-card--featured {
  background: rgba(200,169,110,0.12);
  border-color: rgba(200,169,110,0.35);
}

.program-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,169,110,0.2);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.program-preview-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.program-preview-card p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.2s ease;
}

.card-link-action:hover {
  gap: 10px;
}

/* ============================================
   ABOUT / TRUST SECTION
   ============================================ */

.about-trust-section {
  background-color: var(--color-surface);
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 3;
  margin-top: -60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  max-width: 240px;
}

.about-accent-card i {
  color: var(--color-accent);
  font-size: 1.2rem;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-text-col p {
  color: var(--color-text-muted);
  line-height: 1.75;
}

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

.site-footer {
  background-color: var(--color-primary);
}

.footer-cta-block {
  background: linear-gradient(135deg, rgba(200,169,110,0.15) 0%, rgba(200,169,110,0.05) 100%);
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}

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

.footer-cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.footer-cta-desc {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.footer-cta-btn {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.footer-main-block {
  padding: clamp(48px, 6vw, 80px) 0 0;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: clamp(40px, 5vw, 60px);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(10);
}

.footer-brand-desc {
  color: rgba(245,240,232,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(245,240,232,0.65);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(245,240,232,0.65);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-address i {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copyright {
  color: rgba(245,240,232,0.45);
  font-size: 0.82rem;
}

.footer-domain {
  color: rgba(245,240,232,0.35);
  font-size: 0.82rem;
}

/* ============================================
   INNER PAGE HERO
   ============================================ */

.inner-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
}

.inner-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,58,46,0.6) 0%, rgba(26,58,46,0.85) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}

.inner-hero-desc {
  color: rgba(245,240,232,0.82);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 600px;
  line-height: 1.7;
  margin-top: 12px;
}

/* ============================================
   PROCESS DETAIL (cum-lucram)
   ============================================ */

.process-detail-section {
  padding: var(--section-pad) 0;
  background-color: var(--color-surface);
}

.process-step-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
}

.process-step-detail--alt {
  background-color: var(--color-secondary);
  margin: 0 calc(-1 * clamp(16px, 4vw, 48px));
  padding: 40px clamp(16px, 4vw, 48px);
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  padding-top: 8px;
}

.process-step-content h2 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text);
}

.process-step-content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 1rem;
}

.process-note-box {
  display: flex;
  gap: 12px;
  background-color: rgba(200,169,110,0.1);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 20px;
}

.process-note-box i {
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.process-note-box p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.process-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0;
}

/* ============================================
   APPROACH VALUES
   ============================================ */

.approach-values-section {
  position: relative;
  background-color: var(--color-primary);
  padding: var(--section-pad) 0;
}

.approach-cutout-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 60%, var(--color-primary-light) 100%);
}

.approach-values-section .section-headline {
  color: var(--color-text-light);
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.value-card {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
  background: rgba(245,240,232,0.1);
  transform: translateY(-3px);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,169,110,0.15);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.65;
}

/* ============================================
   GROUP PROGRAMS
   ============================================ */

.group-intro-section {
  padding: var(--section-pad) 0;
  background-color: var(--color-surface);
}

.group-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.group-intro-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.group-intro-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.group-intro-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.group-programs-list-section {
  position: relative;
  background-color: var(--color-primary);
  padding: var(--section-pad) 0;
}

.group-programs-cutout {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--color-primary) 40%, var(--color-primary-light) 100%);
}

.group-programs-list-section .section-headline {
  color: var(--color-text-light);
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.programs-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.program-detail-card {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.program-detail-card:hover {
  background: rgba(245,240,232,0.1);
  transform: translateY(-4px);
}

.program-detail-card--featured {
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.3);
}

.program-detail-header {
  margin-bottom: 16px;
}

.program-category-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(200,169,110,0.15);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.program-detail-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1.3;
}

.program-detail-card p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.65;
  margin-bottom: 16px;
}

.program-detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.program-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(245,240,232,0.72);
}

.program-detail-list i {
  color: var(--color-accent);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.group-format-section {
  padding: var(--section-pad) 0;
  background-color: var(--color-surface);
}

.format-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.format-info-block {
  text-align: center;
  padding: 32px 24px;
}

.format-icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.format-info-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.format-info-block p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   ONLINE CONSULTATION
   ============================================ */

.online-intro-section {
  padding: var(--section-pad) 0;
  background-color: var(--color-surface);
}

.online-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.online-intro-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.online-intro-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.online-checklist-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.online-checklist-box h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text);
}

.online-prep-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.online-prep-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.online-prep-list i {
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.online-what-section {
  position: relative;
  background-color: var(--color-primary);
  padding: var(--section-pad) 0;
}

.online-what-cutout {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 50%, var(--color-primary-light) 100%);
}

.online-what-section .section-headline {
  color: var(--color-text-light);
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.online-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.online-topic-card {
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.online-topic-card:hover {
  background: rgba(245,240,232,0.11);
  transform: translateY(-3px);
}

.online-topic-card i {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.online-topic-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.online-topic-card p {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.68);
  line-height: 1.6;
}

.online-limitations-section {
  padding: var(--section-pad) 0;
  background-color: var(--color-surface);
}

.limitations-content-block {
  max-width: 760px;
}

.limitations-content-block h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.limitations-content-block p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.honest-note-box {
  display: flex;
  gap: 12px;
  background-color: rgba(26,58,46,0.06);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 20px;
}

.honest-note-box i {
  color: var(--color-primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.honest-note-box p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

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

.contact-hero-section {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background-color: var(--color-surface);
}

.contact-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 8px;
}

.contact-hero-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}

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

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.contact-form-card h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-intro-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.compact-inline-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.required-mark {
  color: var(--color-accent-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(45,92,71,0.12);
}

.form-row-inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-privacy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.privacy-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 300px;
}

.privacy-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  margin-top: 2px;
}

.form-policy-link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.form-policy-link:hover {
  color: var(--color-accent-dark);
}

.form-submit-btn {
  white-space: nowrap;
}

.form-error-msg {
  font-size: 0.85rem;
  color: #c0392b;
  padding: 10px 14px;
  background: rgba(192,57,43,0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid #c0392b;
}

.contact-info-block {
  padding: 32px 0;
}

.contact-info-block h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-item i {
  width: 44px;
  height: 44px;
  background: rgba(200,169,110,0.12);
  color: var(--color-accent-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-link {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.map-section {
  padding: 0 0 var(--section-pad);
  background-color: var(--color-surface);
}

.map-heading {
  margin-bottom: 32px;
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.google-map-embed {
  display: block;
  border-radius: var(--radius-xl);
}

.service-area-section {
  position: relative;
  background-color: var(--color-primary);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.service-area-cutout-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 40%, var(--color-primary-light) 100%);
}

.service-area-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-area-text .section-headline {
  color: var(--color-text-light);
}

.service-area-text p {
  color: rgba(245,240,232,0.72);
  line-height: 1.75;
  margin-bottom: 16px;
}

.area-coverage-card {
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.coverage-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.coverage-item i {
  width: 44px;
  height: 44px;
  background: rgba(200,169,110,0.15);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.coverage-item strong {
  display: block;
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.coverage-item p {
  color: rgba(245,240,232,0.65);
  font-size: 0.875rem;
  line-height: 1.5;
}

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

.thanks-hero-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, rgba(200,169,110,0.5) 100%);
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
}

.thanks-hero-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.thanks-icon-wrap {
  font-size: 4rem;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.thanks-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.thanks-desc {
  color: rgba(245,240,232,0.82);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.thanks-next-content {
  max-width: 640px;
}

.thanks-next-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.thanks-next-content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.inline-link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
}

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

.thanks-actions-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

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

.legal-page-main {
  padding-top: var(--nav-height);
}

.legal-page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 60px 0 80px;
}

.legal-page-header--alt {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.legal-page-header--cookies {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a6b52 100%);
  text-align: center;
}

.legal-doc-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(200,169,110,0.15);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.legal-page-title {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.legal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.legal-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,240,232,0.12);
  color: rgba(245,240,232,0.8);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

.legal-applies-to {
  color: rgba(245,240,232,0.55);
  font-size: 0.85rem;
}

.cookies-header-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.cookies-header-desc {
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
  margin-top: 8px;
}

.legal-timeline-container {
  padding: var(--section-pad) 0;
  background-color: var(--color-surface);
}

.legal-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}

.legal-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border));
}

.timeline-entry {
  position: relative;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.timeline-marker {
  position: absolute;
  left: -48px;
  top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.timeline-marker-dot {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-circle);
  background: var(--color-accent);
  border: 2px solid var(--color-surface);
  box-shadow: 0 0 0 2px var(--color-accent);
  position: relative;
  left: -19px;
}

.timeline-marker-label {
  display: none;
}

.timeline-entry-content {
  grid-column: 1 / -1;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.timeline-entry-content h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--color-text);
}

.timeline-entry-content h3.legal-sub-heading {
  font-size: 1rem;
  font-weight: 600;
  margin: 16px 0 8px;
  color: var(--color-text);
  font-family: var(--font-body);
}

.timeline-entry-content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  padding-left: 16px;
}

.legal-list li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
  padding-left: 16px;
}

.legal-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 1.2rem;
  line-height: 1;
  top: 2px;
}

.legal-inline-link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
}

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

.legal-flat-container {
  padding: var(--section-pad) 0;
  background-color: var(--color-surface);
}

.legal-flat-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-flat-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

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

.legal-flat-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.legal-flat-section p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.cookies-cards-container {
  padding: var(--section-pad) 0;
  background-color: var(--color-surface);
}

.cookie-type-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease;
}

.cookie-type-card:hover {
  box-shadow: var(--shadow-md);
}

.cookie-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.cookie-type-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cookie-type-icon--necessary {
  background: rgba(26,58,46,0.1);
  color: var(--color-primary);
}

.cookie-type-icon--analytics {
  background: rgba(200,169,110,0.15);
  color: var(--color-accent-dark);
}

.cookie-type-icon--functional {
  background: rgba(90,107,94,0.1);
  color: var(--color-text-muted);
}

.cookie-card-header h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.cookie-status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

.cookie-status-badge--always {
  background: rgba(26,58,46,0.1);
  color: var(--color-primary);
}

.cookie-status-badge--optional {
  background: rgba(200,169,110,0.15);
  color: var(--color-accent-dark);
}

.cookie-type-card p {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.cookie-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookie-table thead {
  background-color: var(--color-surface-2);
}

.cookie-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 500;
  color: var(--color-text);
  font-family: var(--font-body);
}

.cookie-table td {
  padding: 12px 16px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

.cookie-manage-section {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.cookie-manage-section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.cookie-manage-section p {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.cookies-manage-btn {
  margin-top: 16px;
}

/* ============================================
   VISUAL BREAK (section utility)
   ============================================ */

.visual-break {
  position: relative;
  overflow: hidden;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */

.fw-cookie-card {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  z-index: 9999;
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  overflow: hidden;
}

.fw-cookie-card.fw-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.fw-cookie-card.fw-expanded {
  width: 340px;
}

.fw-cookie-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fw-cookie-icon i {
  font-size: 1.4rem;
  color: var(--color-accent);
}

.fw-cookie-icon span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245,240,232,0.9);
}

.fw-cookie-body {
  padding: 20px 24px;
}

.fw-cookie-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.fw-cookie-body a {
  color: var(--color-primary);
  text-decoration: underline;
  font-size: 0.85rem;
}

.fw-cookie-toggles {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 0 24px 16px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.fw-cookie-card.fw-expanded .fw-cookie-toggles {
  display: flex;
}

.fw-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.fw-toggle-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text);
}

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

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

.fw-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 22px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

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

.fw-toggle-switch input:checked + .fw-toggle-slider {
  background: var(--color-primary);
}

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

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

.fw-cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 24px 20px;
}

.fw-btn-accept {
  background: var(--color-primary);
  color: var(--color-text-light);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.fw-btn-accept:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}

.fw-btn-customize {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.fw-btn-customize:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.fw-btn-save {
  display: none;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background-color 0.25s ease;
}

.fw-btn-save:hover {
  background: var(--color-accent-dark);
}

.fw-cookie-card.fw-expanded .fw-btn-customize {
  display: none;
}

.fw-cookie-card.fw-expanded .fw-btn-save {
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
  }

  .hero-card-block {
    display: none;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .cutout-layer-bg {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-feature-row--reverse {
    direction: ltr;
  }

  .programs-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .programs-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .service-area-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .format-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-drawer {
    display: block;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .split-nav {
    position: relative;
    justify-content: flex-end;
  }

  .hero-section {
    min-height: auto;
    padding-top: var(--nav-height);
    padding-bottom: 60px;
  }

  .hero-content-grid {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-cutout-shape {
    height: 60px;
  }

  .process-step-detail {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-step-number {
    font-size: 2.5rem;
  }

  .group-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .online-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .legal-timeline {
    padding-left: 24px;
  }

  .legal-timeline::before {
    left: 6px;
  }

  .timeline-marker {
    left: -24px;
  }

  .timeline-marker-dot {
    left: -10px;
  }

  .form-privacy-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-action-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .thanks-actions-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .fw-cookie-card {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 16px;
  }

  .fw-cookie-card.fw-expanded {
    width: calc(100vw - 32px);
  }
}

@media (max-width: 480px) {
  .contact-form-card {
    padding: 24px 20px;
  }

  .floating-info-card {
    padding: 24px;
  }

  .service-feature-img {
    height: 240px;
  }

  .about-main-img {
    height: 320px;
  }

  .about-accent-card {
    right: 0;
    bottom: -16px;
  }
}