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

@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden }
  body { min-height: 100vh; display: flex; flex-direction: column; }
  img, video { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  ul, ol { list-style: none; }
  button { cursor: pointer; border: none; background: none; font: inherit; }
  input, textarea, select { font: inherit; }
  main { flex: 1; }
}

@layer tokens {
  :root {
    --c-bg: #f7f5f2;
    --c-bg-alt: #f0ede8;
    --c-surface: #ffffff;
    --c-surface-raised: #fdfcfb;
    --c-ink: #1e1c1a;
    --c-ink-2: #3d3a36;
    --c-ink-3: #6b6560;
    --c-ink-muted: #9e9890;
    --c-primary: #2c5f4a;
    --c-primary-dark: #1f4534;
    --c-primary-light: #3d7a61;
    --c-primary-faint: #eaf2ee;
    --c-accent: #c17f3e;
    --c-accent-light: #d4954f;
    --c-accent-faint: #fdf3e8;
    --c-border: #ddd9d3;
    --c-border-light: #eae6e1;
    --c-ftr-bg: #1a1815;
    --c-ftr-ink: #c8c4be;
    --c-ftr-ink-muted: #7a756e;

    --ff-head: 'Bitter', Georgia, serif;
    --ff-body: 'Plus Jakarta Sans', system-ui, sans-serif;

    --fs-xs: clamp(0.75rem, 1.5vw, 0.8125rem);
    --fs-sm: clamp(0.875rem, 1.8vw, 0.9375rem);
    --fs-base: clamp(1rem, 2vw, 1.0625rem);
    --fs-md: clamp(1.0625rem, 2.2vw, 1.125rem);
    --fs-lg: clamp(1.25rem, 2.5vw, 1.375rem);
    --fs-xl: clamp(1.5rem, 3vw, 1.75rem);
    --fs-2xl: clamp(1.875rem, 4vw, 2.25rem);
    --fs-3xl: clamp(2.25rem, 5vw, 3rem);
    --fs-hero: clamp(2.5rem, 6vw, 3.75rem);

    --fw-reg: 400;
    --fw-med: 500;
    --fw-semi: 600;
    --fw-head: 700;

    --lh-tight: 1.2;
    --lh-snug: 1.4;
    --lh-base: 1.65;
    --lh-loose: 1.8;

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

    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 14px;
    --r-xl: 20px;
    --r-full: 9999px;

    --sh-xs: 0 1px 2px rgba(30,28,26,0.06), 0 1px 3px rgba(30,28,26,0.04);
    --sh-sm: 0 2px 4px rgba(30,28,26,0.06), 0 4px 8px rgba(30,28,26,0.05);
    --sh-md: 0 4px 8px rgba(30,28,26,0.07), 0 8px 20px rgba(30,28,26,0.06), 0 1px 3px rgba(30,28,26,0.04);
    --sh-lg: 0 8px 16px rgba(30,28,26,0.07), 0 20px 40px rgba(30,28,26,0.08), 0 2px 6px rgba(30,28,26,0.04);
    --sh-xl: 0 12px 24px rgba(30,28,26,0.08), 0 32px 64px rgba(30,28,26,0.1), 0 4px 8px rgba(30,28,26,0.05);

    --tr-fast: 150ms ease;
    --tr-base: 250ms ease;
    --tr-slow: 400ms ease;
    --tr-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

    --hdr-h: 72px;
  }
}

@layer layout {
  body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-reg);
    line-height: var(--lh-base);
    color: var(--c-ink-2);
    background-color: var(--c-bg);
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
  }

  .container--narrow {
    max-width: 780px;
  }

  .sec {
    padding-block: var(--sp-20);
  }

  .sec--alt {
    background-color: var(--c-bg-alt);
  }

  .sec-head {
    max-width: 640px;
    margin-bottom: var(--sp-12);
  }

  .sec-head--center {
    margin-inline: auto;
    text-align: center;
  }
}

@layer components {

  
  .ck-bar {
    background: var(--c-ink);
    color: var(--c-bg);
    padding-block: var(--sp-3);
    overflow: hidden;
    transition: max-height var(--tr-slow), padding var(--tr-slow), opacity var(--tr-slow);
    max-height: fit-content;
  }

  .ck-bar.ck-bar--hidden {
    max-height: 0;
    padding-block: 0;
    opacity: 0;
    pointer-events: none;
  }

  .ck-inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    flex-wrap: wrap;
  }

  .ck-txt {
    font-size: var(--fs-xs);
    line-height: var(--lh-snug);
    opacity: 0.85;
  }

  .ck-txt a {
    color: var(--c-accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .ck-btns {
    display: flex;
    gap: var(--sp-2);
    flex-shrink: 0;
  }

  .ck-btn {
    padding: var(--sp-1) var(--sp-4);
    border-radius: var(--r-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-med);
    transition: all var(--tr-base);
    white-space: nowrap;
  }

  .ck-btn--accept {
    background: var(--c-primary);
    color: #fff;
  }

  .ck-btn--accept:hover {
    background: var(--c-primary-light);
  }

  .ck-btn--decline {
    background: transparent;
    color: var(--c-bg);
    border: 1px solid rgba(247,245,242,0.3);
  }

  .ck-btn--decline:hover {
    border-color: rgba(247,245,242,0.6);
    background: rgba(247,245,242,0.08);
  }

  
  .hdr {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-bg);
    height: var(--hdr-h);
    display: flex;
    align-items: center;
  }

  .hdr::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: var(--c-border);
    transform-origin: center;
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hdr.hdr--scrolled::after {
    transform: translateX(-50%) scaleX(1);
  }

  .hdr-wrap {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    display: flex;
    align-items: center;
    gap: var(--sp-8);
  }

  .hdr-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .hdr-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    margin-left: auto;
  }

  .hdr-link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-med);
    color: var(--c-ink-3);
    position: relative;
    padding-block: var(--sp-2);
    transition: color var(--tr-base);
    white-space: nowrap;
  }

  .hdr-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--c-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--tr-base);
  }

  .hdr-link:hover,
  .hdr-link--active {
    color: var(--c-ink);
  }

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

  .hdr-cta {
    flex-shrink: 0;
    margin-left: var(--sp-4);
  }

  .hdr-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: var(--sp-3);
    margin-left: auto;
  }

  .hdr-burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--c-ink);
    transition: all var(--tr-base);
    border-radius: var(--r-full);
  }

  
  .mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30,28,26,0.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--tr-slow);
    backdrop-filter: blur(2px);
  }

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

  .mob-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 90vw);
    height: 100vh;
    background: var(--c-surface);
    z-index: 201;
    transform: translateX(100%);
    transition: transform var(--tr-slow);
    display: flex;
    flex-direction: column;
    padding: var(--sp-8) var(--sp-8) var(--sp-10);
    box-shadow: var(--sh-xl);
  }

  .mob-panel.is-open {
    transform: translateX(0);
  }

  .mob-close {
    align-self: flex-end;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--c-ink-3);
    transition: color var(--tr-base);
    margin-bottom: var(--sp-8);
  }

  .mob-close:hover {
    color: var(--c-ink);
  }

  .mob-nav {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    flex: 1;
  }

  .mob-link {
    font-size: var(--fs-lg);
    font-family: var(--ff-head);
    font-weight: var(--fw-semi);
    color: var(--c-ink-2);
    padding-block: var(--sp-4);
    border-bottom: 1px solid var(--c-border-light);
    transition: color var(--tr-base), padding-left var(--tr-base);
  }

  .mob-link:hover {
    color: var(--c-primary);
    padding-left: var(--sp-3);
  }

  .mob-cta {
    margin-top: var(--sp-8);
    text-align: center;
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 0.7em 1.6em;
    border-radius: var(--r-md);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    font-family: var(--ff-body);
    line-height: 1;
    transition: all var(--tr-base);
    white-space: nowrap;
  }

  .btn--primary {
    background: var(--c-primary);
    color: #fff;
    box-shadow: 0 2px 6px rgba(44,95,74,0.25), 0 1px 2px rgba(44,95,74,0.15);
  }

  .btn--primary:hover {
    background: var(--c-primary-dark);
    box-shadow: 0 4px 12px rgba(44,95,74,0.3), 0 2px 4px rgba(44,95,74,0.2);
    transform: translateY(-1px);
  }

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

  .btn--ghost {
    background: transparent;
    color: var(--c-primary);
    border: 1.5px solid var(--c-primary);
  }

  .btn--ghost:hover {
    background: var(--c-primary-faint);
    transform: translateY(-1px);
  }

  
  .sec-label {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: var(--sp-3);
  }

  .sec-title {
    font-family: var(--ff-head);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-head);
    line-height: var(--lh-tight);
    color: var(--c-ink);
    margin-bottom: var(--sp-5);
  }

  .sec-sub {
    font-size: var(--fs-md);
    color: var(--c-ink-3);
    line-height: var(--lh-base);
    max-width: 520px;
  }

  .lnk-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: var(--c-primary);
    transition: gap var(--tr-base), color var(--tr-base);
  }

  .lnk-arrow:hover {
    gap: var(--sp-3);
    color: var(--c-primary-dark);
  }

  
  .hero {
    padding: 0;
    min-height: calc(100vh - var(--hdr-h));
    display: grid;
    grid-template-columns: 55% 1fr;
  }

  .hero-img-wrap {
    position: relative;
    overflow: hidden;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
  }

  .hero-img-wrap:hover .hero-img {
    transform: scale(1.03);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-16) var(--sp-12) var(--sp-16) var(--sp-10);
    background: var(--c-bg);
  }

  .hero-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: var(--sp-5);
  }

  .hero-h1 {
    font-family: var(--ff-head);
    font-size: var(--fs-hero);
    font-weight: var(--fw-head);
    line-height: var(--lh-tight);
    color: var(--c-ink);
    margin-bottom: var(--sp-6);
  }

  .hero-desc {
    font-size: var(--fs-md);
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
    max-width: 400px;
    margin-bottom: var(--sp-8);
  }

  .hero-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
  }

  
  .page-hero {
    padding-block: var(--sp-16) var(--sp-12);
    background: var(--c-bg);
  }

  .page-hero-inner {
    max-width: 640px;
  }

  .page-h1 {
    font-family: var(--ff-head);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-head);
    line-height: var(--lh-tight);
    color: var(--c-ink);
    margin-bottom: var(--sp-5);
  }

  .page-hero-desc {
    font-size: var(--fs-md);
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
  }

  
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }

  .intro-left p {
    color: var(--c-ink-3);
    margin-bottom: var(--sp-4);
    line-height: var(--lh-loose);
  }

  .intro-left p:last-of-type {
    margin-bottom: var(--sp-6);
  }

  .intro-img-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-lg);
  }

  .intro-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform var(--tr-slow);
  }

  .intro-img-wrap:hover .intro-img {
    transform: scale(1.04);
  }

  .intro-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    padding: var(--sp-3) var(--sp-5);
    margin-top: var(--sp-5);
    font-size: var(--fs-sm);
    font-weight: var(--fw-med);
    color: var(--c-ink-2);
    box-shadow: var(--sh-sm);
  }

  .intro-badge i {
    color: var(--c-primary);
    font-size: 1rem;
  }

  
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-5);
  }

  .pillar-crd {
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-lg);
    padding: var(--sp-8) var(--sp-6);
    box-shadow: var(--sh-sm);
    transition: box-shadow var(--tr-base), transform var(--tr-base), border-color var(--tr-base);
  }

  .pillar-crd:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: var(--c-border);
  }

  .crd-ico {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--c-primary-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    font-size: 1.125rem;
    margin-bottom: var(--sp-5);
    transition: background var(--tr-base), color var(--tr-base);
  }

  .pillar-crd:hover .crd-ico {
    background: var(--c-primary);
    color: #fff;
  }

  .crd-ttl {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semi);
    color: var(--c-ink);
    margin-bottom: var(--sp-3);
    line-height: var(--lh-snug);
  }

  .crd-txt {
    font-size: var(--fs-sm);
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
  }

  
  .proc-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }

  .proc-step {
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-lg);
    padding: var(--sp-8) var(--sp-6);
    box-shadow: var(--sh-sm);
    transition: box-shadow var(--tr-base), transform var(--tr-base);
  }

  .proc-step:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
  }

  .proc-num {
    font-family: var(--ff-head);
    font-size: 2.5rem;
    font-weight: var(--fw-head);
    color: var(--c-primary-faint);
    line-height: 1;
    margin-bottom: var(--sp-4);
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .proc-ttl {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semi);
    color: var(--c-ink);
    margin-bottom: var(--sp-3);
    line-height: var(--lh-snug);
  }

  .proc-txt {
    font-size: var(--fs-sm);
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
  }

  .proc-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-border), var(--c-primary-faint));
    align-self: center;
    margin-top: -20px;
    position: relative;
  }

  .proc-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: var(--r-full);
    background: var(--c-primary);
    opacity: 0.4;
  }

  
  .prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
  }

  .prog-crd {
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: box-shadow var(--tr-base), transform var(--tr-base);
  }

  .prog-crd:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-4px);
  }

  .prog-img-wrap {
    height: 220px;
    overflow: hidden;
  }

  .prog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-slow);
  }

  .prog-crd:hover .prog-img {
    transform: scale(1.06);
  }

  .prog-body {
    padding: var(--sp-6);
  }

  .prog-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-primary);
    background: var(--c-primary-faint);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--r-full);
    margin-bottom: var(--sp-4);
  }

  .prog-tag--b {
    color: var(--c-accent);
    background: var(--c-accent-faint);
  }

  .prog-tag--c {
    color: #5a4a8a;
    background: #f0edf8;
  }

  .prog-ttl {
    font-family: var(--ff-head);
    font-size: var(--fs-xl);
    font-weight: var(--fw-semi);
    color: var(--c-ink);
    margin-bottom: var(--sp-3);
    line-height: var(--lh-snug);
  }

  .prog-txt {
    font-size: var(--fs-sm);
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
    margin-bottom: var(--sp-5);
  }

  
  .approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }

  .approach-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
  }

  .approach-content p {
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
    margin-bottom: var(--sp-4);
  }

  .approach-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-block: var(--sp-6) var(--sp-8);
  }

  .approach-list li {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    font-weight: var(--fw-med);
    color: var(--c-ink-2);
  }

  .approach-list li i {
    color: var(--c-primary);
    font-size: 0.875rem;
    flex-shrink: 0;
  }

  
  .cc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
  }

  .cc-crd {
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-lg);
    padding: var(--sp-8) var(--sp-6);
    box-shadow: var(--sh-sm);
    transition: box-shadow var(--tr-base), transform var(--tr-base), border-color var(--tr-base);
    text-align: center;
  }

  .cc-crd:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: var(--c-primary-faint);
  }

  .cc-crd .crd-ico {
    margin-inline: auto;
    margin-bottom: var(--sp-5);
  }

  .cc-link {
    display: block;
    margin-top: var(--sp-4);
    font-weight: var(--fw-semi);
    color: var(--c-primary);
    font-size: var(--fs-sm);
    transition: color var(--tr-base);
    word-break: break-all;
  }

  .cc-link:hover {
    color: var(--c-primary-dark);
  }

  
  .cta-band {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  }

  .cta-band-inner {
    text-align: center;
    padding-block: var(--sp-4);
  }

  .cta-band-ttl {
    font-family: var(--ff-head);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-head);
    color: #fff;
    margin-bottom: var(--sp-4);
    line-height: var(--lh-snug);
  }

  .cta-band-txt {
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--sp-8);
    line-height: var(--lh-base);
  }

  .cta-band .btn--primary {
    background: #fff;
    color: var(--c-primary-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .cta-band .btn--primary:hover {
    background: var(--c-bg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }

  
  .phil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }

  .phil-content p {
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
    margin-bottom: var(--sp-4);
  }

  .phil-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
  }

  
  .vals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }

  .val-item {
    padding: var(--sp-6);
    border-left: 2px solid var(--c-border);
    transition: border-color var(--tr-base);
  }

  .val-item:hover {
    border-color: var(--c-primary);
  }

  .val-ico {
    font-size: 1.5rem;
    color: var(--c-primary);
    margin-bottom: var(--sp-4);
    transition: transform var(--tr-spring);
  }

  .val-item:hover .val-ico {
    transform: scale(1.1);
  }

  .val-ttl {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semi);
    color: var(--c-ink);
    margin-bottom: var(--sp-3);
    line-height: var(--lh-snug);
  }

  .val-txt {
    font-size: var(--fs-sm);
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
  }

  
  .meth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }

  .meth-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
  }

  .meth-content p {
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
    margin-bottom: var(--sp-4);
  }

  .meth-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin-top: var(--sp-6);
  }

  .meth-feat {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    font-weight: var(--fw-med);
    color: var(--c-ink-2);
  }

  .meth-feat i {
    color: var(--c-primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
  }

  
  .prog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: start;
  }

  .prog-detail-grid--rev {
    direction: rtl;
  }

  .prog-detail-grid--rev > * {
    direction: ltr;
  }

  .prog-detail-img {
    position: relative;
  }

  .prog-detail-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
  }

  .prog-detail-tag {
    position: absolute;
    top: var(--sp-5);
    left: var(--sp-5);
    background: var(--c-surface);
    color: var(--c-ink);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--r-full);
    box-shadow: var(--sh-md);
    letter-spacing: 0.06em;
  }

  .prog-detail-content p {
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
    margin-bottom: var(--sp-4);
  }

  .prog-modules {
    background: var(--c-bg-alt);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    margin-block: var(--sp-6) var(--sp-8);
    border: 1px solid var(--c-border-light);
  }

  .prog-modules-ttl {
    font-family: var(--ff-head);
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    color: var(--c-ink);
    margin-bottom: var(--sp-4);
  }

  .prog-module-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
  }

  .prog-module-list li {
    font-size: var(--fs-sm);
    color: var(--c-ink-3);
    padding-left: var(--sp-5);
    position: relative;
    line-height: var(--lh-snug);
  }

  .prog-module-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: var(--r-full);
    background: var(--c-primary);
    opacity: 0.6;
  }

  
  .compare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
    margin-top: var(--sp-8);
  }

  .compare-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-8) var(--sp-6);
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-lg);
    text-align: center;
    box-shadow: var(--sh-xs);
    transition: box-shadow var(--tr-base), transform var(--tr-base);
  }

  .compare-item:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
  }

  .compare-item i {
    font-size: 1.75rem;
    color: var(--c-primary);
    transition: transform var(--tr-spring);
  }

  .compare-item:hover i {
    transform: scale(1.15);
  }

  .compare-item span {
    font-size: var(--fs-sm);
    font-weight: var(--fw-med);
    color: var(--c-ink-2);
    line-height: var(--lh-snug);
  }

  
  .sched-grid {
    display: flex;
    flex-direction: column;
    gap: var(--sp-12);
  }

  .sched-group-head {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
  }

  .sched-ttl {
    font-family: var(--ff-head);
    font-size: var(--fs-xl);
    font-weight: var(--fw-semi);
    color: var(--c-ink);
    line-height: var(--lh-snug);
  }

  .sched-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
  }

  .sched-crd {
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--sp-6);
    align-items: center;
    box-shadow: var(--sh-sm);
    transition: box-shadow var(--tr-base), transform var(--tr-base), border-color var(--tr-base);
  }

  .sched-crd:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
    border-color: var(--c-primary-faint);
  }

  .sched-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--c-primary-faint);
    border-radius: var(--r-md);
    padding: var(--sp-3) var(--sp-4);
    min-width: 64px;
    text-align: center;
  }

  .sched-month {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-primary);
  }

  .sched-day {
    font-family: var(--ff-head);
    font-size: 1.75rem;
    font-weight: var(--fw-head);
    color: var(--c-primary-dark);
    line-height: 1;
  }

  .sched-year {
    font-size: var(--fs-xs);
    color: var(--c-ink-muted);
  }

  .sched-info {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
  }

  .sched-format,
  .sched-duration,
  .sched-size {
    font-size: var(--fs-sm);
    color: var(--c-ink-3);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
  }

  .sched-format i,
  .sched-duration i,
  .sched-size i {
    color: var(--c-primary);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
  }

  .sched-btn {
    padding: 0.5em 1.2em;
    font-size: var(--fs-xs);
    white-space: nowrap;
  }

  
  .indiv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }

  .indiv-content p {
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
    margin-bottom: var(--sp-4);
  }

  .indiv-content p:last-of-type {
    margin-bottom: var(--sp-8);
  }

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

  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: start;
  }

  .contact-form-wrap .sec-title,
  .contact-info-wrap .sec-title {
    margin-bottom: var(--sp-8);
  }

  .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    margin-bottom: var(--sp-8);
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
  }

  .contact-info-item .crd-ico {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .contact-info-lbl {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-ink-muted);
    margin-bottom: var(--sp-1);
  }

  .contact-info-val {
    font-size: var(--fs-base);
    font-weight: var(--fw-med);
    color: var(--c-ink-2);
    transition: color var(--tr-base);
    line-height: var(--lh-snug);
  }

  a.contact-info-val:hover {
    color: var(--c-primary);
  }

  .booking-box {
    background: var(--c-primary-faint);
    border: 1px solid rgba(44,95,74,0.15);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
  }

  .booking-ttl {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semi);
    color: var(--c-ink);
    margin-bottom: var(--sp-4);
    line-height: var(--lh-snug);
  }

  .booking-txt {
    font-size: var(--fs-sm);
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
    margin-bottom: var(--sp-4);
  }

  
  .frm {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
  }

  .frm-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
  }

  .frm-grp {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
  }

  .frm-lbl {
    font-size: var(--fs-sm);
    font-weight: var(--fw-med);
    color: var(--c-ink-2);
  }

  .frm-lbl span {
    color: var(--c-primary);
  }

  .frm-inp {
    width: 100%;
    padding: 0.75em 1em;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    background: var(--c-surface);
    color: var(--c-ink);
    font-size: var(--fs-base);
    transition: border-color var(--tr-base), box-shadow var(--tr-base);
    appearance: none;
  }

  .frm-inp:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(44,95,74,0.1);
  }

  .frm-inp::placeholder {
    color: var(--c-ink-muted);
  }

  .frm-sel {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6560' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 2.5em;
  }

  .frm-ta {
    resize: vertical;
    min-height: 120px;
  }

  .frm-grp--check {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .frm-check-lbl {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    color: var(--c-ink-3);
    line-height: var(--lh-base);
    cursor: pointer;
  }

  .frm-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--c-primary);
    cursor: pointer;
  }

  .frm-policy-lnk {
    color: var(--c-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .frm-submit {
    align-self: flex-start;
    padding: 0.85em 2em;
    font-size: var(--fs-base);
  }

  
  .map-ttl {
    margin-bottom: var(--sp-6);
  }

  .map-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--c-border);
  }

  .map-iframe {
    display: block;
  }

  
  .side-contact {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--c-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-md) 0 0 var(--r-md);
    box-shadow: var(--sh-md);
    z-index: 90;
    font-size: 1rem;
    transition: width var(--tr-base), background var(--tr-base), box-shadow var(--tr-base);
  }

  .side-contact:hover {
    width: 54px;
    background: var(--c-primary-dark);
    box-shadow: var(--sh-lg);
  }

  
  .ftr {
    background: var(--c-ftr-bg);
    color: var(--c-ftr-ink);
    padding-block: var(--sp-16) var(--sp-8);
  }

  .ftr-wrap {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-8);
    text-align: center;
  }

  .ftr-logo {
    filter: brightness(0) invert(1) opacity(0.85);
  }

  .ftr-tagline {
    font-size: var(--fs-sm);
    color: var(--c-ftr-ink-muted);
    margin-top: var(--sp-2);
  }

  .ftr-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-2) var(--sp-6);
  }

  .ftr-link {
    font-size: var(--fs-sm);
    color: var(--c-ftr-ink);
    transition: color var(--tr-base);
  }

  .ftr-link:hover {
    color: #fff;
  }

  .ftr-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-2) var(--sp-6);
  }

  .ftr-contact-item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--c-ftr-ink-muted);
    transition: color var(--tr-base);
  }

  a.ftr-contact-item:hover {
    color: var(--c-ftr-ink);
  }

  .ftr-contact-item i {
    font-size: 0.75rem;
    color: var(--c-primary-light);
  }

  .ftr-bottom {
    width: 100%;
    padding-top: var(--sp-6);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
  }

  .ftr-copy {
    font-size: var(--fs-xs);
    color: var(--c-ftr-ink-muted);
  }

  .ftr-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-2) var(--sp-4);
  }

  .ftr-legal-link {
    font-size: var(--fs-xs);
    color: var(--c-ftr-ink-muted);
    transition: color var(--tr-base);
  }

  .ftr-legal-link:hover {
    color: var(--c-ftr-ink);
  }

  
  .legal-sec {
    padding-block: var(--sp-16);
  }

  .legal-head {
    margin-bottom: var(--sp-12);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--c-border);
  }

  .legal-updated {
    font-size: var(--fs-sm);
    color: var(--c-ink-muted);
    margin-top: var(--sp-3);
  }

  .legal-body {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
  }

  .legal-body p {
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
    font-size: var(--fs-base);
  }

  .legal-body h2 {
    font-family: var(--ff-head);
    font-size: var(--fs-xl);
    font-weight: var(--fw-semi);
    color: var(--c-ink);
    margin-top: var(--sp-4);
    line-height: var(--lh-snug);
  }

  .legal-body h3 {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semi);
    color: var(--c-ink-2);
    margin-top: var(--sp-2);
    line-height: var(--lh-snug);
  }

  .legal-body ul {
    padding-left: var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
  }

  .legal-body ul li {
    list-style: disc;
    font-size: var(--fs-base);
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
  }

  .cookie-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
  }

  .cookie-tbl th,
  .cookie-tbl td {
    padding: var(--sp-3) var(--sp-4);
    border: 1px solid var(--c-border);
    text-align: left;
    color: var(--c-ink-3);
    line-height: var(--lh-snug);
  }

  .cookie-tbl th {
    background: var(--c-bg-alt);
    font-weight: var(--fw-semi);
    color: var(--c-ink-2);
  }

  
  .thanks-pg {
    background: linear-gradient(135deg, var(--c-primary-faint) 0%, var(--c-bg) 50%, var(--c-accent-faint) 100%);
  }

  .thanks-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-16) var(--sp-6);
  }

  .thanks-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-xl);
    padding: var(--sp-16) var(--sp-12);
    text-align: center;
    max-width: 520px;
    width: 100%;
    box-shadow: var(--sh-xl);
  }

  .thanks-ico {
    font-size: 3rem;
    color: var(--c-primary);
    margin-bottom: var(--sp-6);
    animation: pop 0.5s var(--tr-spring) forwards;
  }

  @keyframes pop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }

  .thanks-h1 {
    font-family: var(--ff-head);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-head);
    color: var(--c-ink);
    margin-bottom: var(--sp-4);
    line-height: var(--lh-snug);
  }

  .thanks-txt {
    font-size: var(--fs-base);
    color: var(--c-ink-3);
    line-height: var(--lh-loose);
    margin-bottom: var(--sp-8);
  }

  .thanks-contacts {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-8);
  }

  .thanks-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: var(--fw-med);
    color: var(--c-primary);
    transition: color var(--tr-base);
  }

  .thanks-contact-item:hover {
    color: var(--c-primary-dark);
  }

  
  .tippy-box[data-theme~='custom'] {
    background: var(--c-ink);
    color: var(--c-bg);
    font-size: var(--fs-xs);
    line-height: var(--lh-base);
    border-radius: var(--r-md);
    padding: var(--sp-2) var(--sp-3);
    box-shadow: var(--sh-lg);
    max-width: 220px;
  }

  .tippy-box[data-theme~='custom'] .tippy-arrow {
    color: var(--c-ink);
  }
}

@layer utilities {
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
  }
}



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

  .proc-wrap {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
  }

  .proc-connector {
    display: none;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .hdr-nav,
  .hdr-cta {
    display: none;
  }

  .hdr-burger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-img-wrap {
    height: 50vw;
    min-height: 280px;
  }

  .hero-content {
    padding: var(--sp-10) var(--sp-6);
  }

  .intro-grid,
  .approach-grid,
  .phil-grid,
  .meth-grid,
  .prog-detail-grid,
  .prog-detail-grid--rev,
  .indiv-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    direction: ltr;
  }

  .prog-detail-grid--rev > * {
    direction: ltr;
  }

  .intro-img,
  .approach-img,
  .phil-img,
  .meth-img,
  .prog-detail-photo,
  .indiv-photo {
    height: 280px;
  }

  .prog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .cc-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .sched-cards {
    grid-template-columns: 1fr;
  }

  .sched-crd {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .sched-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .frm-row--2 {
    grid-template-columns: 1fr;
  }

  .meth-features {
    grid-template-columns: 1fr;
  }

  .side-contact {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --sp-20: 3.5rem;
    --sp-16: 3rem;
    --sp-12: 2.5rem;
  }

  .sec {
    padding-block: var(--sp-16);
  }

  .pillars-grid,
  .vals-grid,
  .compare-grid,
  .proc-wrap {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .thanks-card {
    padding: var(--sp-10) var(--sp-6);
  }

  .ftr-nav,
  .ftr-contact {
    flex-direction: column;
    gap: var(--sp-3);
  }

  .ck-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}