@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@500;600;700&family=Albert+Sans:wght@400;500;600&display=swap');

:root {
  --ink: #1a1209;
  --paper: #f5f0e8;
  --paper-mid: #ede7d9;
  --paper-dark: #e4dccf;
  --accent: #8b5e3c;
  --accent-light: #c49a72;
  --accent-pale: #f0e6d8;
  --ink-soft: #3d2e1e;
  --ink-muted: #6b5744;
  --border: #d4c9b5;
  --border-light: #e8e0d0;
  --footer-bg: #120d06;
  --footer-text: #c9bfaf;
  --shadow-sm: 0 1px 3px rgba(26,18,9,0.08), 0 1px 2px rgba(26,18,9,0.06);
  --shadow-md: 0 4px 12px rgba(26,18,9,0.10), 0 2px 6px rgba(26,18,9,0.07);
  --shadow-lg: 0 12px 32px rgba(26,18,9,0.13), 0 4px 12px rgba(26,18,9,0.09);
  --shadow-xl: 0 24px 48px rgba(26,18,9,0.16), 0 8px 20px rgba(26,18,9,0.10);
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7rem;
  --max-w: 1280px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Albert Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ink); }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.sectionEyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.sectionTitle {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.sectionIntro {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.btnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s ease, box-shadow var(--transition);
  box-shadow: var(--shadow-md);
  text-decoration: none;

  &:hover {
    background: var(--ink-soft);
    color: var(--paper);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}

.btnSecondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform 0.2s ease;
  text-decoration: none;

  &:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
  }
}

.revealOnScroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;

  &.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--paper);
  transition: background var(--transition), box-shadow var(--transition);

  & .siteHeader_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;

    &::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      right: 50%;
      height: 1px;
      background: var(--border);
      transition: left 0.4s ease, right 0.4s ease;
    }
  }

  &.scrolled .siteHeader_inner::after {
    left: 0;
    right: 0;
  }

  & .siteHeader_logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;

    & img { height: 36px; width: auto; }
  }

  & .siteHeader_logoText {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  & .siteHeader_nav {
    display: flex;
    align-items: center;
    gap: 2rem;

    & a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--ink-soft);
      letter-spacing: 0.02em;
      transition: color var(--transition);
      position: relative;

      &::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: width var(--transition);
      }

      &:hover {
        color: var(--accent);
        &::after { width: 100%; }
      }
    }
  }

  & .siteHeader_menuBtn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.6rem;
    color: var(--ink);
    transition: color var(--transition);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;

    &:hover { color: var(--accent); }
  }
}

.mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: var(--ink);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;

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

  & .mobileMenu_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
    gap: 0;
  }

  & .mobileMenu_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
  }

  & .mobileMenu_link {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 600;
    color: var(--paper);
    text-decoration: none;
    padding: 0.4rem 1rem;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(-20px);
    transition: color var(--transition), opacity 0.4s ease, transform 0.4s ease;

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

    &.animateIn {
      opacity: 1;
      transform: translateY(0);
    }
  }

  & .mobileMenu_close {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--paper);
    padding: 0.75rem 1.5rem;
    border-radius: var(--r-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
    min-height: 44px;

    &:hover {
      border-color: var(--accent-light);
      color: var(--accent-light);
    }
  }
}

.mainHero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: calc(var(--sp-lg) + 5rem) 2rem var(--sp-lg);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;

  & .mainHero_bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(139,94,60,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  & .mainHero_eyebrow {
    grid-column: 1;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.2s forwards;
  }

  & .mainHero_title {
    grid-column: 1;
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--ink);
    opacity: 0;
    animation: fadeUp 0.7s ease 0.4s forwards;

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

  & .mainHero_sub {
    grid-column: 1;
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    color: var(--ink-muted);
    max-width: 480px;
    line-height: 1.78;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.6s forwards;
  }

  & .mainHero_cta {
    grid-column: 1;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.8s forwards;
  }

  & .mainHero_imageWrap {
    grid-column: 2;
    grid-row: 1 / 6;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;

    &::before {
      content: '';
      position: absolute;
      inset: -12px;
      border: 1.5px solid var(--border);
      border-radius: var(--r-lg);
      z-index: 0;
    }
  }

  & .mainHero_image {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: var(--r-lg);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-xl);
  }
}

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

.progressSection {
  padding: var(--sp-xl) 0;
  background: var(--paper-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  & .progressSteps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 3rem;
    position: relative;
  }

  & .progressStep {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;

    & .progressStep_icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--paper);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.4rem;
      color: var(--accent);
      box-shadow: var(--shadow-sm);
      transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);

      &:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--paper);
        box-shadow: var(--shadow-md);
      }
    }

    & .progressStep_num {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--accent-light);
      margin-bottom: 0.4rem;
    }

    & .progressStep_label {
      font-family: 'Crimson Pro', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.6rem;
    }

    & .progressStep_desc {
      font-size: 0.9rem;
      color: var(--ink-muted);
      line-height: 1.6;
    }
  }

  & .progressStep_connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    color: var(--border);
    font-size: 1rem;
    flex-shrink: 0;
  }
}

.webinarCards {
  padding: var(--sp-xl) 0;

  & .masonryGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  & .webinarCard {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform 0.3s ease, border-color var(--transition);
    overflow: hidden;

    &:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--accent-light);
    }

    &.webinarCard--accent {
      background: var(--ink);
      border-color: var(--ink);
      color: var(--paper);

      & .webinarCard_num { color: var(--accent-light); }
      & .webinarCard_icon { background: rgba(255,255,255,0.08); color: var(--accent-light); border-color: rgba(255,255,255,0.15); }
      & .webinarCard_title { color: var(--paper); }
      & .webinarCard_desc { color: rgba(245,240,232,0.75); }
      & .webinarCard_tag { background: rgba(255,255,255,0.1); color: var(--accent-light); }
      & .webinarCard_duration { color: rgba(245,240,232,0.6); }
    }

    &.webinarCard--tall { grid-row: span 1; }

    & .webinarCard_header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    & .webinarCard_num {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--accent);
    }

    & .webinarCard_icon {
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      background: var(--accent-pale);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1rem;
    }

    & .webinarCard_title {
      font-family: 'Crimson Pro', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 0.8rem;
      line-height: 1.2;
    }

    & .webinarCard_desc {
      font-size: 0.92rem;
      color: var(--ink-muted);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }

    & .webinarCard_image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: var(--r-md);
      margin-bottom: 1.2rem;

      &.webinarCard_image--top { margin-bottom: 1.2rem; margin-top: 0; }
    }

    & .webinarCard_footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 1rem;
      border-top: 1px solid var(--border-light);
    }

    & .webinarCard_tag {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      background: var(--accent-pale);
      color: var(--accent);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
    }

    & .webinarCard_duration {
      font-size: 0.82rem;
      color: var(--ink-muted);
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
  }
}

.benefitsSection {
  padding: var(--sp-xl) 0;
  background: var(--paper-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  & .benefitsSection_layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
  }

  & .benefitsSection_left {
    position: sticky;
    top: 6rem;

    & p { color: var(--ink-muted); margin-bottom: 2rem; line-height: 1.75; }
  }

  & .benefitsSection_right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  & .benefitItem {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.4rem;
    background: var(--paper);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform 0.3s ease;

    &:hover {
      box-shadow: var(--shadow-md);
      transform: translateX(4px);
    }

    & .benefitItem_check {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    & .benefitItem_title {
      font-family: 'Crimson Pro', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.3rem;
    }

    & .benefitItem_desc {
      font-size: 0.9rem;
      color: var(--ink-muted);
      line-height: 1.65;
    }
  }
}

.tabbedSection {
  padding: var(--sp-xl) 0;

  & .tabsWrapper {
    margin-top: 2.5rem;
  }

  & .tabsNav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 0;
    overflow-x: auto;
    scrollbar-width: none;
    &::-webkit-scrollbar { display: none; }
  }

  & .tabBtn {
    background: none;
    border: none;
    padding: 0.85rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color var(--transition);
    min-height: 44px;

    &::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform var(--transition);
    }

    &:hover { color: var(--ink); }

    &.tabBtn--active {
      color: var(--ink);
      &::after { transform: scaleX(1); }
    }
  }

  & .tabPanels {
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    background: var(--paper);
  }

  & .tabPanel {
    display: none;
    padding: 2.5rem;
    animation: tabFadeIn 0.35s ease;

    &.tabPanel--active { display: block; }

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

    & .tabPanel_title {
      font-family: 'Crimson Pro', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 1rem;
    }

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

    & .tabPanel_list {
      list-style: none;
      margin-top: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;

      & li {
        font-size: 0.9rem;
        color: var(--ink-soft);
        padding-left: 1.2rem;
        position: relative;
        line-height: 1.6;

        &::before {
          content: '';
          position: absolute;
          left: 0;
          top: 0.55em;
          width: 5px;
          height: 5px;
          border-radius: 50%;
          background: var(--accent);
        }
      }
    }

    & .tabPanel_img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: var(--r-md);
      box-shadow: var(--shadow-md);
    }
  }
}

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

.whoSection {
  padding: var(--sp-xl) 0;
  background: var(--paper-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

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

  & .whoSection_img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
  }

  & .whoSection_content {
    & p {
      color: var(--ink-muted);
      margin-bottom: 1.2rem;
      line-height: 1.78;
    }
  }

  & .whoSection_traits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.8rem 0 2rem;
  }

  & .whoTrait {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.55;

    & i {
      color: var(--accent);
      font-size: 0.5rem;
      margin-top: 0.5em;
      flex-shrink: 0;
    }
  }
}

.contactCards {
  padding: var(--sp-lg) 0;

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

  & .contactCard {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform 0.3s ease, border-color var(--transition);

    &:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--accent-light);
    }

    & .contactCard_icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin: 0 auto 1rem;
      box-shadow: var(--shadow-md);
    }

    & .contactCard_label {
      font-family: 'Crimson Pro', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.5rem;
    }

    & .contactCard_value {
      display: block;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 0.4rem;
      transition: color var(--transition);
      word-break: break-all;

      &:hover { color: var(--ink); }
    }

    & .contactCard_note {
      font-size: 0.82rem;
      color: var(--ink-muted);
    }
  }
}

.pageFooter {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 5rem 0 2rem;

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

  & .pageFooter_brand { }

  & .pageFooter_logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    margin-bottom: 1rem;

    & img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
  }

  & .pageFooter_logoText {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--paper);
    letter-spacing: -0.01em;
  }

  & .pageFooter_tagline {
    font-size: 0.88rem;
    color: rgba(201,191,175,0.7);
    line-height: 1.65;
    max-width: 260px;
  }

  & .pageFooter_navTitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 1.2rem;
    opacity: 0.7;
  }

  & .pageFooter_links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;

    & a {
      font-size: 0.9rem;
      color: var(--footer-text);
      transition: color var(--transition);

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

  & .pageFooter_contact {
    & p {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--footer-text);
      margin-bottom: 0.75rem;
      line-height: 1.5;

      & i { color: var(--accent-light); margin-top: 0.15em; flex-shrink: 0; }

      & a {
        color: var(--footer-text);
        &:hover { color: var(--accent-light); }
      }
    }
  }

  & .pageFooter_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  & .pageFooter_copy {
    font-size: 0.82rem;
    color: rgba(201,191,175,0.5);
  }

  & .pageFooter_domain {
    font-size: 0.82rem;
    color: rgba(201,191,175,0.35);
  }
}

.mobileBottomNav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(26,18,9,0.1);

  & .mobileBottomNav_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.5rem;
    min-width: 44px;
    min-height: 44px;
    color: var(--ink-muted);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    text-decoration: none;
    flex: 1;
    justify-content: center;

    & i { font-size: 1.1rem; }

    &:hover, &.mobileBottomNav_item--active { color: var(--accent); }
  }
}

.bgStory {
  padding: var(--sp-xl) 0;

  & .bgStory_layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  & .bgStory_main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  & .bgStory_block {
    & p {
      color: var(--ink-muted);
      line-height: 1.78;
      margin-bottom: 1rem;
      &:last-child { margin-bottom: 0; }
    }
  }

  & .bgStory_heading {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
  }

  & .bgStory_imageBlock {
    & .bgStory_image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
    }
  }

  & .bgStory_sidebar {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  & .bgStory_sideCard {
    background: var(--paper-mid);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);

    &.bgStory_sideCard--accent {
      background: var(--ink);
      border-color: var(--ink);
      color: var(--paper);

      & .bgStory_sideTitle { color: var(--paper); }
      & p { color: rgba(245,240,232,0.75); }
    }
  }

  & .bgStory_sideTitle {
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1rem;
  }

  & .bgStory_drainList {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;

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

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

.oneSection {
  padding: var(--sp-xl) 0;

  & .oneSection_intro {
    max-width: 720px;
    margin-bottom: 3rem;

    & p {
      color: var(--ink-muted);
      line-height: 1.78;
      margin-top: 1rem;
    }
  }

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

  & .oneCard {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform 0.3s ease, border-color var(--transition);

    &:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--accent-light);
    }

    &.oneCard--featured {
      background: var(--ink);
      border-color: var(--ink);

      & .oneCard_iconWrap { background: rgba(255,255,255,0.08); color: var(--accent-light); }
      & .oneCard_title { color: var(--paper); }
      & .oneCard_desc { color: rgba(245,240,232,0.7); }
      & .oneCard_detail { border-top-color: rgba(255,255,255,0.1); }
      & .oneCard_detail span { color: rgba(245,240,232,0.6); }
    }

    & .oneCard_iconWrap {
      width: 52px;
      height: 52px;
      border-radius: var(--r-md);
      background: var(--accent-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--accent);
      margin-bottom: 1.2rem;
    }

    & .oneCard_title {
      font-family: 'Crimson Pro', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 0.8rem;
    }

    & .oneCard_desc {
      font-size: 0.9rem;
      color: var(--ink-muted);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }

    & .oneCard_detail {
      display: flex;
      gap: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);

      & span {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.82rem;
        color: var(--ink-muted);
      }
    }
  }

  & .oneSection_image {
    margin-bottom: 4rem;

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

  & .oneSection_process {
    margin-bottom: 4rem;

    & .oneProcess_steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 2rem;
      position: relative;

      &::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: var(--border);
      }
    }

    & .oneProcess_step {
      display: flex;
      gap: 1.5rem;
      padding: 1.5rem 0 1.5rem 0;
      position: relative;

      &:not(:last-child) { border-bottom: 1px solid var(--border-light); }
    }

    & .oneProcess_num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      box-shadow: var(--shadow-sm);
    }

    & .oneProcess_content {
      & h4 {
        font-family: 'Crimson Pro', serif;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 0.5rem;
      }
      & p {
        font-size: 0.92rem;
        color: var(--ink-muted);
        line-height: 1.7;
      }
    }
  }

  & .oneSection_cta {
    background: var(--paper-mid);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 3.5rem;
    text-align: center;

    & .oneSection_ctaContent {
      max-width: 520px;
      margin: 0 auto;

      & p {
        color: var(--ink-muted);
        margin-bottom: 2rem;
        line-height: 1.75;
      }
    }
  }
}

.startSection {
  padding: var(--sp-xl) 0;

  & .startSection_intro {
    max-width: 720px;
    margin-bottom: 3rem;

    & p {
      color: var(--ink-muted);
      margin-top: 1rem;
      line-height: 1.78;
    }
  }

  & .startCards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
  }

  & .startCard {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform 0.3s ease, border-color var(--transition);

    &:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--accent-light);
    }

    & .startCard_header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }

    & .startCard_icon {
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      background: var(--accent-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--accent);
      flex-shrink: 0;
    }

    & .startCard_title {
      font-family: 'Crimson Pro', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
    }

    & .startCard_list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 1.5rem;

      & li {
        font-size: 0.9rem;
        color: var(--ink-muted);
        padding-left: 1.2rem;
        position: relative;
        line-height: 1.6;

        &::before {
          content: '';
          position: absolute;
          left: 0;
          top: 0.55em;
          width: 5px;
          height: 5px;
          border-radius: 50%;
          background: var(--accent-light);
        }
      }
    }

    & .startCard_session {
      padding-top: 1rem;
      border-top: 1px solid var(--border);
      font-size: 0.85rem;
    }

    & .startCard_sessionLabel {
      color: var(--ink-muted);
      font-weight: 500;
      margin-right: 0.4rem;
    }

    & .startCard_sessionName {
      color: var(--accent);
      font-weight: 600;
    }
  }

  & .startSection_unsure {
    background: var(--ink);
    border-radius: var(--r-xl);
    padding: 3.5rem;
    margin-bottom: 3rem;
    color: var(--paper);

    & .sectionTitle { color: var(--paper); }

    & p {
      color: rgba(245,240,232,0.75);
      margin-bottom: 1.2rem;
      line-height: 1.78;
    }

    & .startUnsure_actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
  }

  & .startSection_note {
    background: var(--paper-mid);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 3rem;

    & p {
      color: var(--ink-muted);
      margin-bottom: 1rem;
      line-height: 1.78;
      &:last-of-type { margin-bottom: 0; }
    }
  }
}

.contactSection {
  padding: var(--sp-xl) 0;

  & .contactSection_layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  & .contactSection_info {
    & .contactInfo_items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    & .contactInfo_item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.2rem;
      background: var(--paper-mid);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      transition: box-shadow var(--transition);

      &:hover { box-shadow: var(--shadow-md); }
    }

    & .contactInfo_icon {
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      background: var(--ink);
      color: var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    & .contactInfo_label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 0.3rem;
    }

    & .contactInfo_value {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 0.2rem;
      word-break: break-all;
      transition: color var(--transition);
      &:hover { color: var(--ink); }
    }

    & .contactInfo_note {
      font-size: 0.82rem;
      color: var(--ink-muted);
    }
  }
}

.contactForm {
  & .formRow {
    margin-bottom: 1.2rem;

    &.formRow--two {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
  }

  & .formGroup {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;

    &.formGroup--privacy {
      margin-top: 0.5rem;
    }
  }

  & .formLabel {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
  }

  & .formRequired { color: var(--accent); }

  & .formInput {
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 0.75rem 1rem;
    font-family: 'Albert Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    min-height: 44px;

    &::placeholder { color: var(--ink-muted); opacity: 0.6; }

    &:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(139,94,60,0.12);
    }

    &.formInput--textarea {
      resize: vertical;
      min-height: 140px;
      line-height: 1.6;
    }
  }

  & .formCheckLabel {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--ink-muted);
    cursor: pointer;
    line-height: 1.6;

    & input[type="checkbox"] {
      width: 18px;
      height: 18px;
      min-width: 18px;
      margin-top: 0.1em;
      accent-color: var(--accent);
      cursor: pointer;
    }
  }

  & .formError {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: var(--r-md);
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    color: #dc2626;
    margin-bottom: 1rem;
  }

  & .formSubmit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 0.95rem;
  }
}

.mapSection {
  padding: 0 0 var(--sp-lg);

  & .mapSection_wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-top: 1.5rem;
  }
}

.serviceArea {
  padding: var(--sp-lg) 0 var(--sp-xl);
  background: var(--paper-mid);
  border-top: 1px solid var(--border);

  & .serviceArea_layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  & .serviceArea_content {
    & p {
      color: var(--ink-muted);
      margin-bottom: 1.2rem;
      line-height: 1.78;
    }
  }

  & .serviceArea_regions {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
  }

  & .serviceArea_regionsTitle {
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1.2rem;
  }

  & .serviceArea_regionList {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  & .serviceArea_region {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--ink-soft);

    & i { color: var(--accent); font-size: 0.55rem; }
  }
}

.thanksSection {
  padding: 10rem 2rem 6rem;

  & .thanksSection_inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  & .thanksSection_icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }

  & .thanksSection_title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
  }

  & .thanksSection_sub {
    font-size: 1.05rem;
    color: var(--ink-muted);
    line-height: 1.75;
    margin-bottom: 3rem;
  }

  & .thanksNext {
    background: var(--paper-mid);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    text-align: left;
    margin-bottom: 2.5rem;

    & .thanksNext_title {
      font-family: 'Crimson Pro', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 1.5rem;
    }

    & .thanksNext_steps {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    & .thanksNext_step {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    & .thanksNext_stepNum {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    & .thanksNext_stepContent {
      & h3 {
        font-family: 'Crimson Pro', serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 0.3rem;
      }
      & p {
        font-size: 0.88rem;
        color: var(--ink-muted);
        line-height: 1.65;
      }
    }
  }
}

.legalHero {
  padding: 7rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;

  & .legalHero_eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
  }

  & .legalHero_title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.8rem;
  }

  & .legalHero_meta {
    font-size: 0.85rem;
    color: var(--ink-muted);
  }
}

.legalSection {
  padding: var(--sp-lg) 0 var(--sp-xl);

  & .legalSection_intro {
    max-width: 780px;
    margin-bottom: 2.5rem;

    & p {
      color: var(--ink-muted);
      line-height: 1.78;
      margin-bottom: 1rem;
      &:last-child { margin-bottom: 0; }
    }
  }
}

.accordionGroup {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordionItem {
  border-bottom: 1px solid var(--border);

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

  & .accordionItem_trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: var(--paper);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Crimson Pro', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    transition: background var(--transition), color var(--transition);
    min-height: 56px;
    gap: 1rem;

    &:hover { background: var(--paper-mid); }

    & .accordionItem_icon {
      flex-shrink: 0;
      color: var(--accent);
      transition: transform var(--transition);
      font-size: 0.8rem;
    }
  }

  &.accordionItem--open .accordionItem_trigger {
    background: var(--paper-mid);
    & .accordionItem_icon { transform: rotate(180deg); }
  }

  & .accordionItem_body {
    padding: 1.5rem;
    background: var(--paper);
    border-top: 1px solid var(--border-light);

    & p {
      color: var(--ink-muted);
      line-height: 1.78;
      margin-bottom: 1rem;
      font-size: 0.93rem;
      &:last-child { margin-bottom: 0; }
    }

    & strong { color: var(--ink-soft); font-weight: 600; }
  }
}

.legalList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.8rem 0;

  & li {
    font-size: 0.92rem;
    color: var(--ink-muted);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.65;

    &::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent-light);
    }
  }

  &.legalList--contact li {
    padding-left: 0;
    &::before { display: none; }
  }
}

.cookieTable_wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.cookieTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;

  & th {
    background: var(--paper-mid);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
  }

  & td {
    padding: 0.75rem 1rem;
    color: var(--ink-muted);
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;

    &:first-child { font-family: 'Courier New', monospace; font-size: 0.82rem; color: var(--accent); }
  }

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

.pageHero {
  padding: 8rem 2rem 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);

  & .pageHero_eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  & .pageHero_title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    max-width: 700px;
  }

  & .pageHero_sub {
    font-size: 1.1rem;
    color: var(--ink-muted);
    max-width: 560px;
    margin-top: 1.2rem;
    line-height: 1.75;
  }
}

.cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 0 -8px 32px rgba(26,18,9,0.25);

  &.cookieConsent--visible { transform: translateY(0); }

  & .cookieConsent_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
  }

  & .cookieConsent_text {
    font-size: 0.85rem;
    color: var(--footer-text);
    flex: 1;
    min-width: 200px;
    line-height: 1.55;

    & a {
      color: var(--accent-light);
      &:hover { color: var(--paper); }
    }
  }

  & .cookieConsent_actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    flex-wrap: wrap;
  }

  & .cookieConsent_btn {
    padding: 0.55rem 1.1rem;
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background var(--transition), color var(--transition), transform 0.2s ease;
    min-height: 44px;

    &.cookieConsent_btn--accept {
      background: var(--accent);
      color: var(--paper);
      &:hover { background: var(--accent-light); transform: translateY(-1px); }
    }

    &.cookieConsent_btn--reject {
      background: rgba(255,255,255,0.08);
      color: var(--footer-text);
      &:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
    }

    &.cookieConsent_btn--customize {
      background: transparent;
      color: var(--footer-text);
      border: 1px solid rgba(255,255,255,0.15);
      &:hover { border-color: var(--accent-light); color: var(--accent-light); transform: translateY(-1px); }
    }
  }

  & .cookieConsent_expanded {
    display: none;
    padding: 1rem 2rem 1.2rem;
    max-width: var(--max-w);
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.06);

    &.cookieConsent_expanded--visible { display: block; }
  }

  & .cookieConsent_categories {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  & .cookieConsent_category {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--footer-text);

    & input[type="checkbox"] {
      accent-color: var(--accent);
      width: 16px;
      height: 16px;
    }

    &.cookieConsent_category--disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
  }

  & .cookieConsent_saveBtn {
    background: var(--accent);
    color: var(--paper);
    border: none;
    padding: 0.55rem 1.2rem;
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    min-height: 44px;

    &:hover { background: var(--accent-light); }
  }
}

@media (max-width: 1024px) {
  .mainHero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--sp-md) + 5rem);

    & .mainHero_imageWrap {
      grid-column: 1;
      grid-row: auto;
    }

    & .mainHero_image { height: 380px; }
  }

  .benefitsSection .benefitsSection_layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .benefitsSection .benefitsSection_left { position: static; }
  .whoSection .whoSection_layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .whoSection .whoSection_img { height: 340px; }
  .bgStory .bgStory_layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .bgStory .bgStory_sidebar { position: static; }
  .contactSection .contactSection_layout { grid-template-columns: 1fr; gap: 3rem; }
  .serviceArea .serviceArea_layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .tabbedSection .tabPanel .tabPanel_layout { grid-template-columns: 1fr; gap: 2rem; }
  .pageFooter .pageFooter_top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .siteHeader_nav { display: none; }
  .siteHeader_menuBtn { display: flex; }
  .mobileBottomNav { display: flex; justify-content: space-around; }

  body { padding-bottom: 70px; }

  .mainHero {
    padding: calc(var(--sp-sm) + 5rem) 1.2rem var(--sp-md);
    gap: 2rem;

    & .mainHero_image { height: 260px; }
    & .mainHero_cta { flex-direction: column; }
    & .btnPrimary, & .btnSecondary { width: 100%; justify-content: center; }
  }

  .progressSection .progressSteps {
    flex-direction: column;
    gap: 0;
  }
  .progressSection .progressStep_connector { display: none; }
  .progressSection .progressStep { padding: 1.2rem; }

  .webinarCards .masonryGrid { grid-template-columns: 1fr; }

  .oneSection .oneCards { grid-template-columns: 1fr; }

  .startSection .startCards { grid-template-columns: 1fr; }

  .contactCards .contactCards_grid { grid-template-columns: 1fr; }

  .pageFooter .pageFooter_top { grid-template-columns: 1fr; gap: 1.5rem; }

  .formRow.formRow--two { grid-template-columns: 1fr; }

  .container { padding: 0 1.2rem; }

  .tabbedSection .tabPanel { padding: 1.5rem; }
  .tabbedSection .tabPanel .tabPanel_layout { grid-template-columns: 1fr; }

  .oneSection .oneSection_cta { padding: 2rem 1.5rem; }
  .startSection .startSection_unsure { padding: 2rem 1.5rem; }
  .startSection .startSection_note { padding: 2rem 1.5rem; }

  .cookieConsent .cookieConsent_bar { flex-direction: column; align-items: flex-start; }
  .cookieConsent .cookieConsent_actions { width: 100%; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .sectionTitle { font-size: 1.6rem; }
  .mainHero .mainHero_title { font-size: 2.4rem; }
  .pageHero .pageHero_title { font-size: 2rem; }
  .legalHero .legalHero_title { font-size: 1.8rem; }
  .thanksSection .thanksSection_title { font-size: 1.8rem; }
  .cookieConsent .cookieConsent_actions { flex-direction: column; }
  .cookieConsent .cookieConsent_btn { width: 100%; text-align: center; }
}