/* ============================================================
   FIELDMARKER — CUSTOM CSS
   Claymorphism Design System
   Prefix: fd-
   ============================================================ */


:root {
  --fd-cream: #faf6f0;
  --fd-cream-2: #f3ede3;
  --fd-sand: #e8ddd0;
  --fd-terracotta: #c9643a;
  --fd-terracotta-light: #e07a52;
  --fd-terracotta-dark: #a84d28;
  --fd-sage: #7a9e7e;
  --fd-sage-light: #a8c5ac;
  --fd-saffron: #e8a020;
  --fd-saffron-light: #f5c060;
  --fd-plum: #6b3d5e;
  --fd-ink: #2a1f1a;
  --fd-ink-soft: #4a3b33;
  --fd-muted: #8a7570;
  --fd-white-clay: #fdfaf7;

  --fd-shadow-clay:
    inset 0 2px 4px rgba(255,255,255,0.7),
    inset 0 -2px 6px rgba(0,0,0,0.06),
    0 4px 16px rgba(42,31,26,0.10),
    0 1px 4px rgba(42,31,26,0.06);

  --fd-shadow-clay-hover:
    inset 0 2px 6px rgba(255,255,255,0.8),
    inset 0 -3px 8px rgba(0,0,0,0.08),
    0 8px 28px rgba(42,31,26,0.14),
    0 2px 8px rgba(42,31,26,0.08);

  --fd-shadow-btn:
    inset 0 1px 2px rgba(255,255,255,0.4),
    inset 0 -2px 4px rgba(0,0,0,0.15),
    0 4px 12px rgba(201,100,58,0.3),
    0 1px 4px rgba(0,0,0,0.1);

  --fd-shadow-deep:
    0 12px 40px rgba(42,31,26,0.15),
    0 4px 12px rgba(42,31,26,0.08);

  --fd-radius-sm: 12px;
  --fd-radius-md: 20px;
  --fd-radius-lg: 32px;
  --fd-radius-xl: 48px;
  --fd-radius-pill: 999px;

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

  --fd-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --fd-transition-smooth: all 0.25s ease;
}


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

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--fd-ink);
  background: var(--fd-cream);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  & main { flex: 1; }
}

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

a {
  color: var(--fd-terracotta);
  text-decoration: none;
  transition: var(--fd-transition-smooth);

  &:hover { color: var(--fd-terracotta-dark); }
}

ul { list-style: none; }

address { font-style: normal; }

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--fd-ink);
}


.fd-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.fd-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fd-terracotta);
  margin-bottom: 0.75rem;
}

.fd-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--fd-space-md);
  color: var(--fd-ink);
}


.fd-clay-card {
  background: var(--fd-white-clay);
  border-radius: var(--fd-radius-lg);
  box-shadow: var(--fd-shadow-clay);
  padding: 2rem;
  transition: var(--fd-transition);

  &:hover {
    box-shadow: var(--fd-shadow-clay-hover);
    transform: translateY(-2px);
  }
}


.fd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--fd-radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--fd-transition);
  text-decoration: none;
  min-height: 48px;

  &.fd-btn-primary {
    background: var(--fd-terracotta);
    color: #fff;
    box-shadow: var(--fd-shadow-btn);

    &:hover {
      background: var(--fd-terracotta-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.3),
        inset 0 -2px 4px rgba(0,0,0,0.2),
        0 8px 24px rgba(201,100,58,0.4);
    }
  }

  &.fd-btn-ghost {
    background: transparent;
    color: var(--fd-ink);
    border: 2px solid var(--fd-sand);
    box-shadow:
      inset 0 1px 2px rgba(255,255,255,0.5),
      0 2px 8px rgba(0,0,0,0.06);

    &:hover {
      background: var(--fd-cream-2);
      border-color: var(--fd-terracotta-light);
      color: var(--fd-terracotta);
      transform: translateY(-2px);
    }
  }

  &.fd-btn-full { width: 100%; justify-content: center; }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.fd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  background: transparent;

  &.fd-header--solid,
  &.fd-header--scrolled {
    background: rgba(250,246,240,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 16px rgba(42,31,26,0.06);
  }

  & .fd-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.fd-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}

.fd-hamburger {
  background: var(--fd-cream-2);
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: var(--fd-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: var(--fd-shadow-clay);
  transition: var(--fd-transition);

  & span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fd-ink);
    border-radius: 2px;
    transition: var(--fd-transition-smooth);
  }

  &:hover {
    background: var(--fd-sand);
    transform: scale(1.05);
  }

  &.fd-hamburger--active {
    & span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    & span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    & span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  }
}


.fd-curtain {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: 100vh;
  background: var(--fd-ink);
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  align-items: center;
  justify-content: center;

  &.fd-curtain--open {
    transform: translateY(0);
  }

  & .fd-curtain-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  & .fd-curtain-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  & .fd-curtain-link {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--fd-cream);
    text-decoration: none;
    padding: 0.25rem 1rem;
    opacity: 0;
    transform: translateY(-30px);
    transition: color 0.25s ease, opacity 0.4s ease, transform 0.4s ease;

    &:hover {
      color: var(--fd-terracotta-light);
    }

    &.fd-curtain-link--active {
      color: var(--fd-saffron);
    }
  }

  &.fd-curtain--open .fd-curtain-link {
    opacity: 1;
    transform: translateY(0);
  }

  &.fd-curtain--open .fd-curtain-links li:nth-child(1) .fd-curtain-link { transition-delay: 0.1s; }
  &.fd-curtain--open .fd-curtain-links li:nth-child(2) .fd-curtain-link { transition-delay: 0.17s; }
  &.fd-curtain--open .fd-curtain-links li:nth-child(3) .fd-curtain-link { transition-delay: 0.24s; }
  &.fd-curtain--open .fd-curtain-links li:nth-child(4) .fd-curtain-link { transition-delay: 0.31s; }
  &.fd-curtain--open .fd-curtain-links li:nth-child(5) .fd-curtain-link { transition-delay: 0.38s; }

  &.fd-curtain--closing .fd-curtain-link {
    opacity: 0;
    transform: translateY(-20px);
    transition-delay: 0s !important;
  }

  & .fd-curtain-close {
    margin-top: 2rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--fd-cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: var(--fd-radius-pill);
    cursor: pointer;
    transition: var(--fd-transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;

    &:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.4);
    }
  }
}

.fd-curtain-overlay {
  position: fixed;
  inset: 0;
  z-index: 790;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;

  &.fd-curtain-overlay--visible {
    opacity: 1;
    pointer-events: all;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.fd-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 4rem;

  & .fd-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--fd-cream) 0%, var(--fd-cream-2) 40%, var(--fd-sand) 100%);
    z-index: 0;
  }

  & .fd-hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }
}

.fd-shape {
  position: absolute;
  border-radius: 50%;

  &.fd-shape-1 {
    width: clamp(300px, 45vw, 600px);
    height: clamp(300px, 45vw, 600px);
    background: radial-gradient(circle at 40% 40%, var(--fd-saffron-light) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    opacity: 0.35;
  }

  &.fd-shape-2 {
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    background: radial-gradient(circle at 60% 60%, var(--fd-sage-light) 0%, transparent 70%);
    bottom: 5%;
    left: -5%;
    opacity: 0.3;
  }

  &.fd-shape-3 {
    width: clamp(100px, 15vw, 200px);
    height: clamp(100px, 15vw, 200px);
    background: var(--fd-terracotta-light);
    top: 60%;
    right: 15%;
    opacity: 0.12;
    border-radius: var(--fd-radius-lg);
    transform: rotate(20deg);
  }
}

.fd-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;

  & .fd-hero-tag {
    display: inline-block;
    background: var(--fd-white-clay);
    color: var(--fd-terracotta);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: var(--fd-radius-pill);
    margin-bottom: 1.5rem;
    box-shadow:
      inset 0 1px 2px rgba(255,255,255,0.8),
      0 2px 8px rgba(0,0,0,0.08);
  }

  & .fd-hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--fd-ink);
    margin-bottom: 1.5rem;

    & em {
      font-style: italic;
      color: var(--fd-terracotta);
    }
  }

  & .fd-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--fd-ink-soft);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }

  & .fd-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.fd-hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  z-index: 1;
  overflow: hidden;

  & .fd-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.65;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 40%, transparent 100%);
  }
}

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

  & .fd-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  & .fd-intro-text {
    & h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      margin-bottom: 1.5rem;
      line-height: 1.25;
    }

    & p {
      color: var(--fd-ink-soft);
      margin-bottom: 1rem;
      font-size: 1.05rem;
    }
  }

  & .fd-intro-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  & .fd-intro-card {
    & .fd-card-icon {
      font-size: 1.75rem;
      color: var(--fd-terracotta);
      margin-bottom: 0.75rem;
    }

    & h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    & p { color: var(--fd-muted); font-size: 0.95rem; }

    &.fd-intro-card--accent {
      background: linear-gradient(135deg, var(--fd-sage-light) 0%, #c8e0cb 100%);

      & .fd-card-icon { color: var(--fd-sage); }
    }
  }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.fd-process {
  padding: var(--fd-space-xl) 0;
  background: var(--fd-cream-2);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  & .fd-section-title { text-align: center; }
  & .fd-section-label { text-align: center; }

  & .fd-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
  }
}

.fd-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;

  & .fd-process-num {
    font-family: 'Fraunces', serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--fd-terracotta);
    background: var(--fd-white-clay);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow:
      inset 0 1px 3px rgba(255,255,255,0.8),
      0 2px 8px rgba(201,100,58,0.2);
    z-index: 2;
    position: relative;
  }

  & .fd-process-connector {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--fd-terracotta-light), var(--fd-sand));
    z-index: 1;

    &.fd-process-connector--last { display: none; }
  }

  & .fd-process-card {
    width: 100%;
    text-align: center;
    padding: 1.75rem 1.25rem;

    & .fd-process-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--fd-radius-sm);
      background: linear-gradient(135deg, var(--fd-terracotta-light) 0%, var(--fd-terracotta) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      color: #fff;
      font-size: 1.3rem;
      box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.3),
        0 4px 12px rgba(201,100,58,0.3);
    }

    & h3 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    & p { font-size: 0.875rem; color: var(--fd-muted); }
  }
}

/* ============================================================
   INFO BLOCKS
   ============================================================ */
.fd-info-blocks {
  padding: var(--fd-space-xl) 0;

  & .fd-section-title { text-align: center; }
  & .fd-section-label { text-align: center; }

  & .fd-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
}

.fd-info-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;

  & .fd-info-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--fd-radius-md);
    background: linear-gradient(135deg, var(--fd-cream-2) 0%, var(--fd-sand) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--fd-terracotta);
    box-shadow:
      inset 0 2px 4px rgba(255,255,255,0.8),
      inset 0 -1px 3px rgba(0,0,0,0.06),
      0 2px 8px rgba(0,0,0,0.06);
    transition: var(--fd-transition);
  }

  &:hover .fd-info-icon-wrap {
    background: linear-gradient(135deg, var(--fd-terracotta-light) 0%, var(--fd-terracotta) 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow:
      inset 0 1px 2px rgba(255,255,255,0.3),
      0 4px 16px rgba(201,100,58,0.3);
  }

  & h3 {
    font-size: 1.1rem;
  }

  & p {
    font-size: 0.9rem;
    color: var(--fd-muted);
    line-height: 1.6;
  }
}

/* ============================================================
   FEATURE SECTION
   ============================================================ */
.fd-feature {
  padding: var(--fd-space-xl) 0;
  background: var(--fd-ink);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,100,58,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  & .fd-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  & .fd-section-label { color: var(--fd-saffron); }

  & h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--fd-cream);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
  }

  & p {
    color: var(--fd-sand);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  & .fd-btn-primary { margin-top: 1rem; }
}

.fd-feature-images {
  position: relative;
  height: 480px;

  & .fd-feature-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--fd-radius-lg);
    overflow: hidden;
    box-shadow: var(--fd-shadow-deep);

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  & .fd-feature-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--fd-radius-md);
    overflow: hidden;
    box-shadow: var(--fd-shadow-deep);
    border: 4px solid var(--fd-ink);

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

/* ============================================================
   CURRICULUM SECTION
   ============================================================ */
.fd-curriculum {
  padding: var(--fd-space-xl) 0;

  & .fd-section-title { text-align: center; }
  & .fd-section-label { text-align: center; }

  & .fd-curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
}

.fd-curriculum-card {
  padding: 0;
  overflow: hidden;

  & .fd-curriculum-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--fd-radius-lg) var(--fd-radius-lg) 0 0;
    transition: transform 0.4s ease;
  }

  &:hover .fd-curriculum-img { transform: scale(1.04); }

  & .fd-curriculum-body {
    padding: 1.5rem;

    & h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    & p { font-size: 0.9rem; color: var(--fd-muted); }
  }
}

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

.fd-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fd-cream) 0%, var(--fd-white-clay) 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem;

  & .fd-cta-shape {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--fd-saffron-light) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
  }

  & .fd-cta-content {
    position: relative;
    z-index: 1;

    & h2 {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      margin-bottom: 1rem;
    }

    & p { color: var(--fd-muted); max-width: 540px; }
  }

  & .fd-btn { white-space: nowrap; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.fd-footer {
  background: var(--fd-ink);
  color: var(--fd-sand);
  padding: 5rem 0 0;

  & .fd-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  & .fd-footer-brand {
    & .fd-footer-logo { margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.85; }
    & p { font-size: 0.9rem; line-height: 1.6; color: var(--fd-muted); margin-bottom: 1rem; }
    & address { font-size: 0.85rem; color: var(--fd-muted); }
  }

  & h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fd-cream);
    margin-bottom: 1.25rem;
  }

  & ul { display: flex; flex-direction: column; gap: 0.6rem; }

  & ul a {
    font-size: 0.9rem;
    color: var(--fd-muted);
    transition: var(--fd-transition-smooth);

    &:hover { color: var(--fd-terracotta-light); }
  }

  & .fd-footer-contact {
    & p { margin-bottom: 0.75rem; }

    & a {
      font-size: 0.9rem;
      color: var(--fd-muted);
      display: flex;
      align-items: center;
      gap: 0.5rem;

      &:hover { color: var(--fd-terracotta-light); }

      & i { color: var(--fd-terracotta); }
    }
  }

  & .fd-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;

    & p { font-size: 0.8rem; color: var(--fd-muted); }
  }
}

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */
.fd-inner-page { padding-top: 80px; }

.fd-page-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--fd-cream) 0%, var(--fd-cream-2) 100%);
  position: relative;
  overflow: hidden;

  &::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--fd-saffron-light) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
  }

  & h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
  }

  & .fd-page-hero-sub {
    font-size: 1.1rem;
    color: var(--fd-ink-soft);
    max-width: 600px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  &.fd-page-hero--short { padding: 4rem 0 3rem; }
}

.fd-breadcrumb {
  font-size: 0.8rem;
  color: var(--fd-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;

  & a { color: var(--fd-terracotta); }
  & span { opacity: 0.4; }
}

/* ============================================================
   TRANSPARENCY PAGE — TOC LAYOUT
   ============================================================ */
.fd-toc-layout {
  padding: 5rem 0;

  & .fd-toc-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.fd-toc-sidebar {
  position: sticky;
  top: 100px;

  & .fd-toc-card {
    padding: 1.5rem;

    & h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--fd-muted);
      margin-bottom: 1rem;
    }

    & .fd-toc-list {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    & .fd-toc-link {
      display: block;
      padding: 0.5rem 0.75rem;
      border-radius: var(--fd-radius-sm);
      font-size: 0.875rem;
      color: var(--fd-ink-soft);
      transition: var(--fd-transition-smooth);
      border-left: 2px solid transparent;

      &:hover {
        background: var(--fd-cream-2);
        color: var(--fd-terracotta);
        border-left-color: var(--fd-terracotta-light);
      }

      &.fd-toc-link--active {
        background: var(--fd-cream-2);
        color: var(--fd-terracotta);
        font-weight: 500;
        border-left-color: var(--fd-terracotta);
      }
    }
  }
}

.fd-toc-section {
  margin-bottom: 4rem;
  scroll-margin-top: 100px;

  & h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1.25rem;
    color: var(--fd-ink);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--fd-sand);
  }

  & p {
    color: var(--fd-ink-soft);
    margin-bottom: 1rem;
    line-height: 1.75;
    font-size: 1rem;
  }
}

.fd-transparency-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;

  & .fd-trans-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    border-bottom: 1px solid var(--fd-sand);
    transition: var(--fd-transition-smooth);

    &:last-child { border-bottom: none; }

    &:hover { background: var(--fd-cream-2); }

    & .fd-trans-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--fd-radius-sm);
      background: linear-gradient(135deg, var(--fd-terracotta-light), var(--fd-terracotta));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(201,100,58,0.25);
    }

    & h3 {
      font-size: 1rem;
      margin-bottom: 0.35rem;
    }

    & p { font-size: 0.9rem; color: var(--fd-muted); }
  }
}

.fd-approach-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, var(--fd-cream-2) 0%, var(--fd-sand) 100%);
  padding: 1.5rem;

  & i {
    color: var(--fd-terracotta);
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
  }

  & p { font-size: 0.9rem; color: var(--fd-ink-soft); margin: 0; }
}

/* ============================================================
   INDIVIDUAL COACHING PAGE
   ============================================================ */
.fd-coaching-intro {
  padding: 5rem 0;

  & .fd-coaching-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  & .fd-coaching-text {
    & h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 1.25rem;
    }

    & p {
      color: var(--fd-ink-soft);
      margin-bottom: 1rem;
      line-height: 1.75;
    }
  }

  & .fd-coaching-img-wrap {
    & .fd-coaching-img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: var(--fd-radius-lg);
      box-shadow: var(--fd-shadow-clay);
    }
  }
}

.fd-coaching-areas {
  padding: 5rem 0;
  background: var(--fd-cream-2);

  & .fd-section-title { text-align: center; }
  & .fd-section-label { text-align: center; }

  & .fd-coaching-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
}

.fd-coaching-area-card {
  padding: 1.75rem;

  & .fd-coaching-area-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--fd-radius-sm);
    background: linear-gradient(135deg, var(--fd-saffron-light) 0%, var(--fd-saffron) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fd-ink);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow:
      inset 0 1px 2px rgba(255,255,255,0.4),
      0 4px 12px rgba(232,160,32,0.25);
    transition: var(--fd-transition);
  }

  &:hover .fd-coaching-area-icon {
    transform: scale(1.08) rotate(-3deg);
  }

  & h3 { font-size: 1rem; margin-bottom: 0.5rem; }
  & p { font-size: 0.875rem; color: var(--fd-muted); }
}

.fd-coaching-how {
  padding: 5rem 0;

  & .fd-coaching-how-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--fd-ink) 0%, var(--fd-ink-soft) 100%);

    & .fd-section-label { color: var(--fd-saffron); }
    & h2 { color: var(--fd-cream); font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 0.5rem 0 1rem; }
    & p { color: var(--fd-sand); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.75rem; }
  }

  & .fd-coaching-how-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 200px;

    & .fd-btn-ghost {
      border-color: rgba(255,255,255,0.2);
      color: var(--fd-cream);

      &:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.4);
        color: #fff;
      }
    }
  }
}

/* ============================================================
   SEASONAL CURRICULUM PAGE
   ============================================================ */
.fd-page-hero--season {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;

  & h1 { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.05; }
}

.fd-season-shapes { position: absolute; inset: 0; pointer-events: none; }

.fd-season-shape {
  position: absolute;
  border-radius: 50%;

  &.fd-season-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--fd-sage-light) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    opacity: 0.25;
  }

  &.fd-season-shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--fd-saffron-light) 0%, transparent 70%);
    bottom: -50px;
    left: 20%;
    opacity: 0.2;
  }
}

.fd-season-intro {
  padding: 5rem 0 3rem;

  & .fd-season-intro-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;

    & h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      margin-bottom: 1.5rem;
    }

    & p {
      color: var(--fd-ink-soft);
      margin-bottom: 1rem;
      font-size: 1.05rem;
      line-height: 1.75;
    }
  }
}

.fd-seasons { padding: 2rem 0 6rem; }

.fd-season-block {
  margin-bottom: 5rem;
  border-radius: var(--fd-radius-xl);
  overflow: hidden;
  box-shadow: var(--fd-shadow-clay);

  & .fd-season-header {
    padding: 3rem;
    position: relative;

    & .fd-season-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.7;
      margin-bottom: 0.5rem;
    }

    & h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 0.5rem;
    }

    & .fd-season-tagline {
      font-size: 1rem;
      opacity: 0.7;
      font-style: italic;
    }
  }

  & .fd-season-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.2);

    & .fd-season-card {
      border-radius: 0;
      box-shadow: none;
      border-right: 1px solid rgba(0,0,0,0.06);
      padding: 2rem;

      &:last-child { border-right: none; }
      &:hover { transform: none; }

      & h3 { font-size: 1rem; margin-bottom: 0.75rem; }
      & p { font-size: 0.875rem; color: var(--fd-muted); line-height: 1.65; }
    }
  }

  &.fd-season-block--spring {
    background: linear-gradient(135deg, #e8f4eb 0%, #d4ead8 100%);
    & .fd-season-header { color: var(--fd-ink); }
    & .fd-season-label { color: var(--fd-sage); }
    & h2 { color: var(--fd-sage); }
    & .fd-season-card { background: rgba(255,255,255,0.6); }
  }

  &.fd-season-block--summer {
    background: linear-gradient(135deg, #fdf0e0 0%, #f8e0c0 100%);
    & .fd-season-label { color: var(--fd-saffron); }
    & h2 { color: var(--fd-terracotta); }
    & .fd-season-card { background: rgba(255,255,255,0.6); }
  }

  &.fd-season-block--autumn {
    background: linear-gradient(135deg, #f5e8e0 0%, #ead5c8 100%);
    & .fd-season-label { color: var(--fd-terracotta); }
    & h2 { color: var(--fd-terracotta-dark); }
    & .fd-season-card { background: rgba(255,255,255,0.6); }
  }

  &.fd-season-block--winter {
    background: linear-gradient(135deg, var(--fd-ink) 0%, var(--fd-ink-soft) 100%);
    & .fd-season-label { color: var(--fd-saffron); }
    & h2 { color: var(--fd-cream); }
    & .fd-season-tagline { color: var(--fd-sand); }
    & .fd-season-card {
      background: rgba(255,255,255,0.07);
      & h3 { color: var(--fd-cream); }
      & p { color: var(--fd-sand); }
      border-right-color: rgba(255,255,255,0.1);
    }
  }
}

.fd-season-image-section {
  padding: 0 0 6rem;

  & .fd-season-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  & .fd-season-img-card {
    border-radius: var(--fd-radius-lg);
    overflow: hidden;
    box-shadow: var(--fd-shadow-deep);

    & img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
    }
  }

  & .fd-season-img-text {
    & h2 {
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      margin-bottom: 1.25rem;
    }

    & p {
      color: var(--fd-ink-soft);
      margin-bottom: 1.5rem;
      line-height: 1.75;
    }
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.fd-contact-section {
  padding: 5rem 0 7rem;

  & .fd-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.fd-map-wrap {
  border-radius: var(--fd-radius-lg);
  overflow: hidden;
  box-shadow: var(--fd-shadow-clay);
  margin-bottom: 1.5rem;

  & iframe { display: block; }
}

.fd-address-card {
  & h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;

    & i { color: var(--fd-terracotta); }
  }

  & address {
    font-size: 0.95rem;
    color: var(--fd-ink-soft);
    margin-bottom: 1rem;
    line-height: 1.7;
  }

  & .fd-address-details {
    font-size: 0.875rem;
    color: var(--fd-muted);
    line-height: 1.65;
    padding-top: 1rem;
    border-top: 1px solid var(--fd-sand);
    margin-bottom: 1rem;
  }

  & .fd-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--fd-sand);

    & a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--fd-ink-soft);

      &:hover { color: var(--fd-terracotta); }

      & i { color: var(--fd-terracotta); width: 16px; }
    }
  }
}

.fd-form-card {
  & h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  & .fd-form-intro {
    font-size: 0.9rem;
    color: var(--fd-muted);
    margin-bottom: 1.75rem;
  }
}

.fd-field-group {
  margin-bottom: 1.25rem;

  & label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--fd-ink-soft);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  & input,
  & textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--fd-sand);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-cream);
    color: var(--fd-ink);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--fd-transition-smooth);
    outline: none;
    box-shadow:
      inset 0 2px 4px rgba(0,0,0,0.04),
      0 1px 3px rgba(255,255,255,0.8);
    min-height: 44px;

    &:focus {
      border-color: var(--fd-terracotta-light);
      box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.04),
        0 0 0 3px rgba(201,100,58,0.12);
    }

    &::placeholder { color: var(--fd-muted); opacity: 0.7; }
  }

  & textarea { resize: vertical; min-height: 120px; }
}

.fd-field-privacy {
  margin-bottom: 1.5rem;

  & .fd-privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--fd-ink-soft);
    line-height: 1.5;

    & input[type="checkbox"] {
      width: 18px;
      height: 18px;
      min-width: 18px;
      border: 2px solid var(--fd-sand);
      border-radius: 4px;
      accent-color: var(--fd-terracotta);
      margin-top: 2px;
      cursor: pointer;
    }
  }
}

.fd-form-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  min-height: 1.2em;
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.fd-thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 5rem 0;
}

.fd-thanks-wrap {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}


.fd-envelope-scene {
  margin: 0 auto 3rem;
  width: 140px;
  height: 100px;
  position: relative;
}

.fd-envelope {
  width: 140px;
  height: 90px;
  position: relative;
}

.fd-envelope-body {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--fd-cream) 0%, var(--fd-sand) 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--fd-shadow-clay);

  &::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, var(--fd-cream-2), var(--fd-sand));
  }

  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 42px solid var(--fd-sand);
  }
}

.fd-envelope-flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(135deg, var(--fd-terracotta-light) 0%, var(--fd-terracotta) 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  animation: fd-flap-open 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
  z-index: 3;
}

.fd-envelope-letter {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 70px;
  background: var(--fd-white-clay);
  border-radius: 6px 6px 0 0;
  z-index: 2;
  animation: fd-letter-rise 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.fd-letter-lines {
  padding: 0.75rem 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 6px;

  & span {
    display: block;
    height: 3px;
    border-radius: 2px;
    background: var(--fd-sand);

    &:nth-child(1) { width: 80%; }
    &:nth-child(2) { width: 95%; }
    &:nth-child(3) { width: 65%; }
  }
}

@keyframes fd-flap-open {
  from { transform: rotateX(0deg); }
  to { transform: rotateX(-180deg); }
}

@keyframes fd-letter-rise {
  from { transform: translateX(-50%) translateY(0); }
  to { transform: translateX(-50%) translateY(-45px); }
}

.fd-thanks-content {
  animation: fd-fade-up 0.5s ease 1.3s both;

  & h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
  }

  & p {
    color: var(--fd-ink-soft);
    margin-bottom: 1rem;
    line-height: 1.7;
  }

  & .fd-btn { margin-top: 1.5rem; }
}

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

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.fd-legal-page { padding-top: 80px; }

.fd-legal-container {
  max-width: 860px;
  padding: 4rem 1.5rem 6rem;
}

.fd-legal-header {
  margin-bottom: 2.5rem;

  & h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
  & .fd-legal-date { font-size: 0.8rem; color: var(--fd-muted); margin-bottom: 1.5rem; }
  & .fd-legal-intro { font-size: 1rem; color: var(--fd-ink-soft); line-height: 1.75; }
}

.fd-legal-glossary {
  background: linear-gradient(135deg, var(--fd-cream-2) 0%, var(--fd-sand) 100%);
  border-radius: var(--fd-radius-md);
  padding: 1.75rem;
  margin-bottom: 3rem;
  box-shadow: var(--fd-shadow-clay);

  & h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fd-terracotta);
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
  }

  & dl { display: flex; flex-direction: column; gap: 1rem; }

  & dt {
    font-weight: 500;
    color: var(--fd-ink);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
  }

  & dd {
    font-size: 0.875rem;
    color: var(--fd-ink-soft);
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid var(--fd-terracotta-light);
  }

  &.fd-legal-glossary--terms {
    background: linear-gradient(135deg, #e8f0f8 0%, #d8e8f4 100%);
  }
}

.fd-legal-section {
  margin-bottom: 2.5rem;

  & h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--fd-ink);
  }

  & p {
    font-size: 0.95rem;
    color: var(--fd-ink-soft);
    line-height: 1.75;
    margin-bottom: 0.75rem;
  }

  & a { color: var(--fd-terracotta); }
}

.fd-legal-body--terms {
  & .fd-terms-clause {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--fd-sand);

    &:last-child { border-bottom: none; }

    & h2 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--fd-ink);
    }

    & p {
      font-size: 0.95rem;
      color: var(--fd-ink-soft);
      line-height: 1.75;
      margin-bottom: 0.75rem;
    }
  }
}

.fd-legal-body--cookies {
  & .fd-cookie-section {
    margin-bottom: 3rem;

    & h2 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--fd-sand);
    }

    & p {
      font-size: 0.95rem;
      color: var(--fd-ink-soft);
      line-height: 1.75;
      margin-bottom: 0.75rem;
    }

    & code {
      background: var(--fd-cream-2);
      padding: 0.1em 0.4em;
      border-radius: 4px;
      font-family: 'Courier New', monospace;
      font-size: 0.85em;
      color: var(--fd-terracotta-dark);
    }
  }

  & .fd-cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--fd-white-clay);
    border-radius: var(--fd-radius-md);
    box-shadow: var(--fd-shadow-clay);

    & h3 {
      font-size: 1rem;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
  }
}

.fd-cookie-def {
  background: linear-gradient(135deg, var(--fd-cream-2) 0%, var(--fd-sand) 100%);
  border-radius: var(--fd-radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--fd-ink-soft);
  line-height: 1.6;
  border-left: 3px solid var(--fd-terracotta);

  & strong { color: var(--fd-ink); }
}

.fd-cookie-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2em 0.6em;
  border-radius: var(--fd-radius-pill);
  font-family: 'Inter', sans-serif;

  &.fd-cookie-badge--required {
    background: var(--fd-sage-light);
    color: var(--fd-ink);
  }

  &.fd-cookie-badge--optional {
    background: var(--fd-saffron-light);
    color: var(--fd-ink);
  }
}

/* ============================================================
   COOKIE CONSENT — SPLIT BANNER
   ============================================================ */
.fd-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 180px;
  background: var(--fd-ink);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  &.fd-cookie-banner--visible {
    transform: translateY(0);
  }

  & .fd-cookie-left {
    padding: 2rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;

    & h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      color: var(--fd-cream);
      margin-bottom: 0.5rem;
    }

    & p {
      font-size: 0.82rem;
      color: var(--fd-muted);
      line-height: 1.6;
    }

    & a { color: var(--fd-terracotta-light); }
  }

  & .fd-cookie-right {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }

  & .fd-cookie-toggles {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  & .fd-cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    & span {
      font-size: 0.8rem;
      color: var(--fd-sand);
    }
  }

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

    & input {
      opacity: 0;
      width: 0;
      height: 0;

      &:checked + .fd-toggle-slider { background: var(--fd-terracotta); }
      &:checked + .fd-toggle-slider::before { transform: translateX(18px); }
      &:disabled + .fd-toggle-slider { opacity: 0.5; cursor: not-allowed; }
    }

    & .fd-toggle-slider {
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      border-radius: 22px;
      cursor: pointer;
      transition: 0.3s;

      &::before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        left: 3px;
        top: 3px;
        background: #fff;
        border-radius: 50%;
        transition: 0.3s;
      }
    }
  }

  & .fd-cookie-actions {
    display: flex;
    gap: 0.75rem;

    & button {
      flex: 1;
      padding: 0.7rem;
      border-radius: var(--fd-radius-pill);
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      border: none;
      transition: var(--fd-transition-smooth);
      min-height: 44px;

      &.fd-cookie-accept-all {
        background: var(--fd-terracotta);
        color: #fff;
        box-shadow: 0 4px 12px rgba(201,100,58,0.3);

        &:hover {
          background: var(--fd-terracotta-dark);
          transform: translateY(-1px);
        }
      }

      &.fd-cookie-save {
        background: rgba(255,255,255,0.08);
        color: var(--fd-cream);
        border: 1px solid rgba(255,255,255,0.15);

        &:hover {
          background: rgba(255,255,255,0.15);
        }
      }
    }
  }
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .fd-process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .fd-info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .fd-coaching-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .fd-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 768px) {
  :root {
    --fd-space-xl: 4rem;
    --fd-space-lg: 2.5rem;
  }

  .fd-hero {
    padding: 8rem 0 4rem;

    & .fd-hero-image-wrap {
      display: none;
    }

    & .fd-hero-content {
      text-align: center;

      & .fd-hero-cta {
        justify-content: center;
      }

      & .fd-hero-subtitle {
        margin: 0 auto 2.5rem;
      }
    }
  }

  .fd-intro .fd-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fd-process-grid { grid-template-columns: 1fr !important; }
  .fd-process-connector { display: none !important; }
  .fd-info-grid { grid-template-columns: 1fr !important; }
  .fd-feature-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .fd-feature-images { height: 320px !important; }
  .fd-curriculum-grid { grid-template-columns: 1fr !important; }
  .fd-cta-card { grid-template-columns: 1fr !important; }
  .fd-footer-grid { grid-template-columns: 1fr !important; }
  .fd-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .fd-toc-container { grid-template-columns: 1fr !important; }
  .fd-toc-sidebar { position: static !important; }

  .fd-coaching-intro-grid { grid-template-columns: 1fr !important; }
  .fd-coaching-grid { grid-template-columns: 1fr !important; }
  .fd-coaching-how-card { grid-template-columns: 1fr !important; }
  .fd-coaching-how-cta { flex-direction: row !important; }

  .fd-season-content-grid { grid-template-columns: 1fr !important; }
  .fd-season-card { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.06) !important; }
  .fd-season-img-grid { grid-template-columns: 1fr !important; }

  .fd-contact-grid { grid-template-columns: 1fr !important; }

  .fd-cookie-banner {
    grid-template-columns: 1fr !important;
    max-height: 80vh;
    overflow-y: auto;

    & .fd-cookie-left {
      border-right: none !important;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 1.5rem !important;
    }

    & .fd-cookie-right { padding: 1.5rem !important; }
  }
}

@media (max-width: 480px) {
  .fd-coaching-how-cta { flex-direction: column !important; }
  .fd-hero-cta { flex-direction: column; align-items: center; }
  .fd-btn { width: 100%; justify-content: center; }
  .fd-hero-cta .fd-btn { max-width: 320px; }
}