:root {
    /* Brand palette */
    --old-gold:        #C8AE04;
    --stormy-teal:     #076974;
    --vintage-berry:   #8B415F;
    --rose-wine:       #C94077;
    --pine-teal:       #305F4E;
    --grey-olive:      #89948F;

    /* Site colour strategy */
    --bg-white:        #FFFFFF;
    --bg-light-teal:   #EAF2F3;   /* very light stormy teal */
    --bg-berry-light:  #F5EEF1;   /* very light vintage berry — replaces dark BG */
    --bg-berry-mid:    #C9718F;   /* medium berry for cards / accents */
    --text-dark:       #1A1A18;
    --text-mid:        #4a4a48;
    --text-soft:       #6E6E6E;   /* darkened for AA contrast on white */
    --gold-text:       #887602;   /* readable gold for text on light backgrounds (brand gold #C8AE04 fails as text) */
    --gold-on-dark:    #F0E2A0;   /* pale gold that reads on the teal Elements section */
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─────────── NAV ─────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: flex-start;
    padding: 0 5vw; height: 58px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(137,148,143,0.15);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

  .nav-logo {
    display: inline-flex; flex-direction: column; justify-content: center;
    gap: 3px; text-decoration: none; line-height: 1;
  }
  .nav-logo-brand {
    font-family: 'Jost', sans-serif;          /* matches the logo wordmark: light geometric sans */
    font-size: 17px; font-weight: 400;
    line-height: 1; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--stormy-teal);                /* logo wordmark is grey-olive; keeping brand teal for now */
    transition: color 0.2s;
  }
  .nav-logo-name {
    font-family: 'Jost', sans-serif;
    font-size: clamp(13px, 1.7vw, 14px); font-weight: 400;
    letter-spacing: 0.04em; text-transform: none;
    line-height: 1; color: var(--text-mid);
    text-align: left;   /* left-aligned under ELEMENTS */
  }
  .nav-logo, .nav-logo:hover { text-decoration: none; }   /* never underline, including on hover */
  .nav-logo:hover .nav-logo-brand { color: var(--pine-teal); }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Jost', sans-serif; font-weight: 400;
    font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-dark); text-decoration: none;
    position: relative; padding-bottom: 2px; transition: color 0.2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
    height: 1px; background: var(--stormy-teal); transition: right 0.3s;
  }
  .nav-links a:hover { color: var(--stormy-teal); }
  .nav-links a:hover::after { right: 0; }
  .nav-cta {
    background: var(--stormy-teal) !important; color: white !important;
    padding: 10px 24px; border-radius: 2px;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--pine-teal) !important; color: white !important; }

  /* ── Nav refinement: right-grouped, smaller, per-link brand-colour top accent ── */
  #navbar .nav-links { margin-left: auto; gap: 20px; align-items: center; }
  #navbar .nav-links a:not(.nav-cta) { font-size: 11px; padding-top: 4px; }
  #navbar .nav-links a:not(.nav-cta)::after { display: none; }
  #navbar .nav-links li:nth-child(1) a { --c: var(--stormy-teal); }
  #navbar .nav-links li:nth-child(2) a { --c: var(--vintage-berry); }
  #navbar .nav-links li:nth-child(3) a { --c: var(--old-gold); }
  #navbar .nav-links li:nth-child(4) a { --c: var(--rose-wine); }
  #navbar .nav-links li:nth-child(5) a { --c: var(--pine-teal); }
  #navbar .nav-links li:nth-child(6) a { --c: var(--grey-olive); }
  #navbar .nav-links li:nth-child(7) a { --c: var(--stormy-teal); }
  #navbar .nav-links a:not(.nav-cta)::before { content: ''; position: absolute; left: 50%; top: -8px; width: 0; height: 2px; background: var(--c); transition: width 0.25s, left 0.25s; }
  #navbar .nav-links a:not(.nav-cta):hover { color: var(--c); }
  #navbar .nav-links a:not(.nav-cta):hover::before { width: 100%; left: 0; }
  #navbar .nav-links a.nav-cta { display: inline-flex; align-items: center; justify-content: center; line-height: 1; font-size: 11px; padding: 9px 18px; color: #fff !important; }
  #navbar .lang-btn { font-size: 10px; }

  /* ─────────── LANGUAGE SWITCHER ─────────── */
  .lang-switcher {
    display: flex; align-items: center; gap: 2px;
    margin-left: 18px;
    background: rgba(137,148,143,0.1);
    border: 1px solid rgba(137,148,143,0.2);
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .lang-btn {
    background: none; border: none; cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 11px;
    font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-mid); padding: 6px 10px;
    transition: background 0.2s, color 0.2s;
  }
  .lang-btn.active {
    background: var(--stormy-teal); color: white;
  }
  .lang-btn:hover:not(.active) { background: rgba(7,105,116,0.08); color: var(--stormy-teal); }
  .lang-divider { width: 1px; height: 14px; background: rgba(137,148,143,0.25); }

  /* ─────────── COLOR BAR ─────────── */
  .color-bar {
    height: 4px;
    background: linear-gradient(90deg,
      var(--old-gold) 0% 17%, var(--stormy-teal) 17% 34%,
      var(--vintage-berry) 34% 51%, var(--rose-wine) 51% 68%,
      var(--pine-teal) 68% 85%, var(--grey-olive) 85% 100%);
  }

  /* ─────────── SHARED ─────────── */
  .section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--grey-olive);
    margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
  }
  .section-label::before { content: ''; width: 32px; height: 1px; background: var(--old-gold); }

  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(47px, 5.4vw, 74px);
    font-weight: 300; line-height: 1.08; letter-spacing: -0.01em;
  }
  .section-heading em { font-style: italic; color: var(--stormy-teal); }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--stormy-teal); color: white; text-decoration: none;
    font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 16px 36px; border-radius: 2px; transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--pine-teal); transform: translateY(-1px); }
  .btn-primary .arrow { font-size: 16px; transition: transform 0.2s; }
  .btn-primary:hover .arrow { transform: translateX(4px); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--stormy-teal); text-decoration: none;
    font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    border-bottom: 1px solid var(--stormy-teal); padding-bottom: 2px; transition: gap 0.2s;
  }
  .btn-outline:hover { gap: 16px; }

  /* Section booking buttons: match hero button (natural size, no stretching) */
  .way-card .btn-primary,
  .cohort-card-text .btn-primary,
  #teams .btn-primary,
  #organisations .btn-primary {
    width: fit-content;
    justify-content: center;
  }

  /* ─────────── HERO (section 1) ─────────── */
  #hero {
    height: 100vh; min-height: 100vh; max-height: 100vh;
    display: grid; grid-template-columns: 1.35fr 1fr;
    background: var(--bg-white);
    position: relative; overflow: hidden;
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: calc(72px + 5vh) 4vw 5vh 10vw; position: relative; z-index: 2;
  }

  .hero-eyebrow {
    font-size: 12px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--stormy-teal); margin-bottom: 20px;
    display: flex; align-items: center; gap: 16px;
    animation: fadeUp 0.8s ease 0.1s both;
  }
  .hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--stormy-teal); }

  .hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(12px, 1.15vw, 15px);
    font-weight: 500; line-height: 1.4; letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--stormy-teal); margin-bottom: 4px;
    animation: fadeUp 0.9s ease 0.25s both;
  }
  .hero-title .line2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 300; font-style: italic;
    letter-spacing: -0.01em; line-height: 1.0;
    text-transform: none;
    color: var(--stormy-teal);
    display: block; margin-top: 10px;
  }
  .hero-title .line2 .el-mark {
    color: var(--text-dark); font-style: normal;
    display: block;
  }

  .hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: clamp(14px, 1.3vw, 17px); font-weight: 500;
    color: var(--text-dark); margin-bottom: 30px; letter-spacing: 0.05em;
    animation: fadeUp 0.8s ease 0.4s both;
  }

  .hero-tagline {
    font-size: 15px; font-weight: 400; line-height: 1.8;
    color: var(--text-mid); max-width: 440px; margin-bottom: 36px;
    animation: fadeUp 0.8s ease 0.55s both;
    border-left: 3px solid var(--old-gold);
    padding-left: 18px;
  }
  .hero-tagline strong { font-weight: 500; color: var(--text-dark); display: block; margin-bottom: 5px; }

  .hero-btn-wrap { animation: fadeUp 0.8s ease 0.65s both; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

  .hero-right { position: relative; overflow: hidden; }
  .hero-photo { 
    width: 100%; height: 100%; 
    object-fit: cover; object-position: center 8%; 
    display: block;
    /* Extend photo above the nav bar for a fuller, higher appearance */
    position: absolute; top: -72px; left: 0; right: 0; 
    height: calc(100% + 72px);
  }
  .hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--bg-white) 0%, transparent 18%);
  }

  /* ─────────── ABOUT (section 2) ─────────── */
  #about {
    background: var(--bg-berry-light);
    padding: 100px 10vw;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start;
  }

  #about .section-label { color: rgba(139,65,95,0.6); }
  #about .section-label::before { background: var(--vintage-berry); }
  #about .section-heading { color: var(--text-dark); font-size: clamp(34px, 3.8vw, 58px); }
  #about .section-heading em { color: var(--vintage-berry); }

  .about-title-block { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 300; line-height: 1.25; color: var(--text-dark); margin-top: 16px; }

  .about-text p {
    font-family: 'Jost', sans-serif;
    font-size: 16px; font-weight: 400; line-height: 1.9;
    color: var(--text-mid); margin-bottom: 20px;
    text-align: justify;
  }

  /* ─────────── CREDENTIALS (new section) ─────────── */
  #credentials {
    background: var(--bg-white);
    padding: 100px 10vw;
  }

  #credentials .section-heading { font-size: clamp(38px, 4.3vw, 65px); }
  #credentials .section-heading em { color: var(--stormy-teal); }

  .cred-intro {
    font-family: 'Jost', sans-serif;
    font-size: 16px; font-weight: 400; line-height: 1.9;
    color: var(--text-mid); margin: 20px 0 56px;
  }
  .cred-intro-normal {
    font-family: 'Jost', sans-serif;
    font-size: 16px; font-weight: 400; font-style: normal; line-height: 1.9;
    color: var(--text-mid); margin: 20px 0 48px;
  }

  .cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .cred-card {
    background: white;
    border-radius: 4px; padding: 20px 20px 20px 16px;
    border: 1px solid rgba(137,148,143,0.15);
    border-top: 3px solid;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex; gap: 16px; align-items: flex-start;
  }
  .cred-card:hover { box-shadow: 0 8px 28px rgba(7,105,116,0.12); transform: translateY(-2px); }
  .cred-card:nth-child(1) { border-color: var(--stormy-teal); }
  .cred-card:nth-child(2) { border-color: var(--pine-teal); }
  .cred-card:nth-child(3) { border-color: var(--old-gold); }
  .cred-card:nth-child(4) { border-color: var(--vintage-berry); }
  .cred-card:nth-child(5) { border-color: var(--rose-wine); }
  .cred-card:nth-child(6) { border-color: var(--grey-olive); }

  /* h4 title matches the top border colour */
  .cred-card:nth-child(1) h4 { color: var(--stormy-teal); }
  .cred-card:nth-child(2) h4 { color: var(--pine-teal); }
  .cred-card:nth-child(3) h4 { color: var(--gold-text); }
  .cred-card:nth-child(4) h4 { color: var(--vintage-berry); }
  .cred-card:nth-child(5) h4 { color: var(--rose-wine); }
  .cred-card:nth-child(6) h4 { color: var(--grey-olive); }

  .cred-badge {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 6px;
    background: white;
    border: 1px solid rgba(137,148,143,0.2);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    padding: 4px;
  }
  .cred-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
  }

  .cred-card-body { flex: 1; min-width: 0; }

  .cred-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 500; margin-bottom: 4px; line-height: 1.3;
  }
  .cred-card .cred-issuer {
    font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-dark); margin-bottom: 10px;
  }
  .cred-card p { font-size: 13px; font-weight: 400; line-height: 1.65; color: var(--text-mid); }

  /* ─────────── COACHING (section 3) ─────────── */
  #coaching { padding: 100px 10vw; background: var(--bg-white); }

  #coaching .section-heading em { color: var(--stormy-teal); }

  .coaching-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; line-height: 1.75;
    color: var(--text-mid); margin-bottom: 1.25rem; font-style: italic;
  }
  .coaching-body {
    font-family: 'Jost', sans-serif;
    font-size: 16px; font-weight: 400; font-style: normal;
    line-height: 1.9;
    color: var(--text-mid); margin-bottom: 3rem;
  }

  .sub-section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--stormy-teal);
    margin: 48px 0 20px; display: block;
  }

  /* 4-column explore card grid */
  .explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 1rem 0 3rem;
  }

  .explore-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem 2rem 1.75rem;
    border: 1px solid rgba(137,148,143,0.15);
    border-left: 3px solid transparent;
    transition: border-color 0.2s;
  }
  .explore-card .card-accent { display: none; }
  .explore-card:nth-child(1) { border-left-color: var(--stormy-teal); }
  .explore-card:nth-child(2) { border-left-color: var(--old-gold); }
  .explore-card:nth-child(3) { border-left-color: var(--rose-wine); }
  .explore-card:nth-child(4) { border-left-color: var(--pine-teal); }
  .explore-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 500;
    color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.3;
  }
  .explore-card p {
    font-size: 0.95rem; line-height: 1.7;
    color: var(--text-mid); font-weight: 400;
  }

  /* 2-column ways grid */
  .ways-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
  }

  .way-card {
    border: 1px solid rgba(137,148,143,0.15);
    padding: 2.5rem;
    border-radius: 2px;
    background: var(--bg-white);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .way-card:hover { border-color: var(--stormy-teal); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(7,105,116,0.1); }
  .way-card-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--stormy-teal); margin-bottom: 12px;
    display: block;
  }
  .way-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400;
    color: var(--text-dark); margin-bottom: 1rem;
  }
  .way-card p { font-size: 0.95rem; font-weight: 400; line-height: 1.8; color: var(--text-mid); margin-bottom: 1.5rem; }

  /* cohort half-width layout */
  .cohort-card {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 0.5px solid rgba(137,148,143,0.25);
    border-left: 3px solid var(--old-gold);
    border-radius: 2px;
    background: var(--bg-white);
    margin-top: 2rem;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .cohort-card:hover { box-shadow: 0 8px 28px rgba(7,105,116,0.1); transform: translateY(-2px); }
  .cohort-card-text {
    padding: 2.5rem;
  }
  .cohort-card-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 400;
    color: var(--text-dark); margin-bottom: 1rem;
  }
  .cohort-card-text p { font-size: 0.95rem; font-weight: 400; line-height: 1.8; color: var(--text-mid); margin-bottom: 0.75rem; }
  .cohort-card-image {
    background: var(--bg-white);
    position: relative; overflow: hidden; min-height: 320px;
    display: flex; align-items: center; justify-content: center;
  }
  .cohort-card-image svg { opacity: 1; position: absolute; inset: 0; width: 100%; height: 100%; }
  .cohort-card-image-inner {
    position: relative; z-index: 2;
    text-align: center; padding: 2rem; color: white;
  }
  .cohort-card-image-inner span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-style: italic; font-weight: 300;
    color: rgba(255,255,255,0.9); line-height: 1.7;
  }

  /* ─────────── TEAMS (section 4) ─────────── */
  #teams { background: var(--bg-light-teal); padding: 100px 10vw; }

  #teams .section-heading em { color: var(--stormy-teal); }

  .teams-intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-style: italic; font-weight: 300;
    color: var(--text-mid); margin-bottom: 16px;
    line-height: 1.75;
  }
  .teams-body-text {
    font-family: 'Jost', sans-serif;
    font-size: 16px; font-weight: 400; line-height: 1.9;
    color: var(--text-mid); margin-bottom: 48px;
  }

  .teams-sub-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--stormy-teal);
    margin: 48px 0 24px; display: block;
  }

  .teams-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-bottom: 0;
  }

  /* Teams cards — flip on hover (adapted from Elements, keeping the section's coloured edge) */
  .team-card { display: grid; perspective: 1200px; --accent: var(--stormy-teal); }
  .team-card:nth-child(1) { --accent: var(--stormy-teal); }
  .team-card:nth-child(2) { --accent: var(--pine-teal); }
  .team-card:nth-child(3) { --accent: var(--old-gold); }
  .team-card:nth-child(4) { --accent: var(--vintage-berry); }
  .team-card:nth-child(5) { --accent: var(--rose-wine); }
  .team-card:nth-child(6) { --accent: var(--grey-olive); }

  .team-card-inner {
    height: 100%; min-height: 200px;
    display: grid;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .team-card:hover .team-card-inner { transform: rotateY(180deg); }

  .team-face {
    grid-area: 1 / 1;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    position: relative;
    background: white;
    border: 0.5px solid rgba(7,105,116,0.18);
    border-left: 3px solid var(--accent);
    border-radius: 2px;
    padding: 26px 26px 26px 24px;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 8px 28px rgba(7,105,116,0.08);
  }
  .team-front .team-accent { width: 30px; height: 2px; background: var(--accent); margin-bottom: 14px; }
  .team-front h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500;
    color: var(--text-dark); margin: 0;
  }
  .team-flip-hint {
    position: absolute; top: 14px; right: 16px;
    font-size: 15px; color: var(--accent); opacity: 0.6;
    transition: transform 0.4s;
  }
  .team-card:hover .team-flip-hint { transform: rotate(180deg); }
  .team-back { transform: rotateY(180deg); }
  .team-back h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600;
    color: var(--accent); margin: 0 0 8px;
  }
  .team-back p { font-size: 13.5px; font-weight: 400; line-height: 1.6; color: var(--text-mid); margin: 0; }

  .team-formats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px; margin-top: 0;
  }

  .format-item {
    background: #FAF7E6; padding: 36px 32px;
    border: 1px solid rgba(200,174,4,0.18);
    border-left: 3px solid var(--old-gold);
    border-radius: 2px; transition: box-shadow 0.3s, transform 0.3s;
  }
  .format-item:nth-child(1) { border-left-color: var(--old-gold); }
  .format-item:nth-child(2) { border-left-color: var(--pine-teal); }
  .format-item:nth-child(3) { border-left-color: var(--stormy-teal); }
  .format-item:nth-child(4) { border-left-color: var(--vintage-berry); }
  .format-item:hover { box-shadow: 0 8px 28px rgba(7,105,116,0.1); transform: translateY(-2px); }
  .format-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--gold-text); margin-bottom: 12px; }
  .format-item p { font-size: 14px; font-weight: 400; line-height: 1.75; color: var(--text-mid); }

  /* ─────────── ORGANISATIONS (section 5) ─────────── */
  #organisations { padding: 100px 10vw; background: var(--bg-white); }

  #organisations .section-heading em { color: var(--vintage-berry); }

  .org-intro-italic {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-style: italic; font-weight: 300;
    color: var(--text-mid); line-height: 1.75;
    margin: 20px 0 12px;
  }
  .org-intro-body {
    font-family: 'Jost', sans-serif;
    font-size: 16px; font-weight: 400; line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 48px;
  }

  .org-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; margin-top: 16px;
  }

  .org-area {
    background: var(--bg-white); padding: 32px 32px 32px 28px; transition: background 0.3s;
    border: 1px solid rgba(137,148,143,0.15);
    border-left: 3px solid transparent;
    border-radius: 2px;
  }
  .org-area:hover { background: var(--bg-berry-light); }
  .org-area:nth-child(1) { border-left-color: var(--stormy-teal); }
  .org-area:nth-child(2) { border-left-color: var(--vintage-berry); }
  .org-area:nth-child(3) { border-left-color: var(--old-gold); }
  .org-area:nth-child(4) { border-left-color: var(--rose-wine); }

  .org-area h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin-bottom: 12px; color: var(--text-dark); }
  .org-area p { font-size: 14px; font-weight: 400; line-height: 1.75; color: var(--text-mid); }

  /* Ways to work together — orgs */
  .org-ways {
    margin-top: 48px; padding-top: 0;
  }
  .org-ways-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 300; font-style: italic;
    color: var(--text-mid); line-height: 1.75; margin: 20px 0 12px;
  }
  .org-ways-body {
    font-family: 'Jost', sans-serif;
    font-size: 16px; font-weight: 400; line-height: 1.9;
    color: var(--text-mid); margin-bottom: 48px;
  }
  .org-ways-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 48px;
  }
  .org-ways-card {
    padding: 40px 36px; background: var(--bg-berry-light);
    border: 1px solid rgba(139,65,95,0.1);
    border-left: 3px solid var(--vintage-berry);
    border-radius: 2px; transition: box-shadow 0.3s, transform 0.3s;
  }
  .org-ways-card:nth-child(2) { border-left-color: var(--rose-wine); }
  .org-ways-card:hover { box-shadow: 0 8px 28px rgba(7,105,116,0.1); transform: translateY(-2px); }
  .org-ways-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 500; color: var(--vintage-berry); margin-bottom: 16px;
  }
  .org-ways-card p { font-size: 15px; font-weight: 400; line-height: 1.85; color: var(--text-mid); }

  /* ─────────── ELEMENTS (section 6) — white flip cards ─────────── */
  #elements { background: var(--stormy-teal); padding: 100px 10vw; color: white; }

  #elements .section-label { color: rgba(255,255,255,0.55); }
  #elements .section-label::before { background: var(--old-gold); }
  #elements .section-heading { color: white; }
  #elements .section-heading em { color: var(--gold-on-dark); }

  .elements-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 300; font-style: italic;
    color: rgba(255,255,255,0.8); margin: 24px 0 8px; line-height: 1.75;
  }
  .elements-intro-normal {
    font-family: 'Jost', sans-serif;
    font-size: 16px; font-weight: 400; font-style: normal; line-height: 1.85;
    color: rgba(255,255,255,0.8); margin: 24px 0 48px;
  }

  .elements-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; background: transparent;
  }

  /* flip card */
  .element-item { display: grid; perspective: 1200px; }
  .element-card-inner {
    height: 100%; min-height: 260px;
    display: grid;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .element-item:hover .element-card-inner { transform: rotateY(180deg); }

  .element-face {
    grid-area: 1 / 1;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    position: relative;
    background: #fff; border-radius: 8px;
    border-top: 3px solid var(--old-gold);
    padding: 34px 28px;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  }
  .element-front .element-accent { width: 36px; height: 2px; background: var(--old-gold); margin-bottom: 18px; }
  .element-front h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 600; line-height: 1.3;
    color: var(--stormy-teal); margin: 0;
  }
  .element-flip-hint {
    position: absolute; top: 16px; right: 18px;
    font-size: 16px; color: var(--grey-olive); opacity: 0.65;
    transition: transform 0.4s;
  }
  .element-item:hover .element-flip-hint { transform: rotate(180deg); }
  .element-back { transform: rotateY(180deg); }
  .element-back h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 600; color: var(--stormy-teal); margin: 0 0 8px;
  }
  .element-back p { font-size: 14px; font-weight: 400; line-height: 1.7; color: var(--text-mid); margin: 0; }

  /* ─────────── ACTIVATE (section 7) ─────────── */
  #activate { padding: 100px 10vw; background: var(--bg-berry-light); }

  #activate .section-label { color: rgba(139,65,95,0.6); }
  #activate .section-label::before { background: var(--vintage-berry); }
  #activate .section-heading em { color: var(--vintage-berry); }

  .activate-intro-italic {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 300; font-style: italic;
    color: var(--text-mid); line-height: 1.75; margin: 20px 0 8px;
  }
  .activate-intro-normal {
    font-family: 'Jost', sans-serif;
    font-size: 16px; font-weight: 400; line-height: 1.9;
    color: var(--text-mid); margin-bottom: 48px;
  }

  .activate-group { margin-bottom: 48px; }
  .activate-group-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--vintage-berry);
    margin-bottom: 20px; display: block;
    padding-bottom: 12px; border-bottom: 1px solid rgba(139,65,95,0.15);
  }
  .activate-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .activate-cards.cols-1 { grid-template-columns: 1fr; max-width: 360px; }
  .activate-cards.cols-2 { grid-template-columns: 1fr 1fr; }
  .activate-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }

  /* Activate Reads + Experience two-column row */
  .activate-reads-exp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
  }
  .activate-reads-exp-row > div {
    display: flex;
    flex-direction: column;
  }
  .activate-reads-exp-row .activate-cards {
    flex: 1;
  }
  .activate-reads-exp-row .resource-card {
    height: 100%;
  }

  .resource-card {
    background: white; padding: 28px 24px; border-radius: 4px;
    transition: box-shadow 0.3s, transform 0.3s; cursor: pointer;
    border: 1px solid rgba(137,148,143,0.15);
  }
  .resource-card:hover { box-shadow: 0 8px 28px rgba(7,105,116,0.1); transform: translateY(-2px); }
  .resource-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 500; line-height: 1.4;
    color: var(--text-dark); margin-bottom: 10px;
  }
  .resource-card p { font-size: 14px; font-weight: 400; line-height: 1.7; color: var(--text-mid); margin-top: 8px; }
  .resource-card .resource-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
    color: var(--stormy-teal); margin-top: 16px; text-decoration: none;
    border-bottom: 1px solid transparent; transition: border-color 0.2s;
  }
  .resource-card .resource-cta:hover { border-color: var(--stormy-teal); }

  .resource-type {
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
    display: inline-block; margin-bottom: 16px;
    width: fit-content; align-self: flex-start;
  }
  .resource-type.bite { background: rgba(200,174,4,0.12); color: #8a7800; }
  .resource-type.read { background: rgba(7,105,116,0.1); color: var(--stormy-teal); }
  .resource-type.kit  { background: rgba(48,95,78,0.1);  color: var(--pine-teal); }
  .resource-type.exp  { background: rgba(201,64,119,0.1); color: var(--rose-wine); }

  /* Lead gen form inside resource card */
  .resource-lead-form { margin-top: 16px; border-top: 1px solid rgba(137,148,143,0.15); padding-top: 16px; }
  .resource-lead-form p { font-size: 12px; color: var(--text-soft); margin-bottom: 12px; font-weight: 300; }
  .resource-lead-form input {
    width: 100%; padding: 9px 12px; border: 1px solid rgba(137,148,143,0.3);
    border-radius: 2px; font-family: 'Jost', sans-serif; font-size: 13px;
    font-weight: 300; color: var(--text-dark); outline: none;
    transition: border-color 0.2s; margin-bottom: 8px; box-sizing: border-box;
  }
  .resource-lead-form input:focus { border-color: var(--vintage-berry); }
  .resource-lead-form button {
    width: 100%; padding: 9px; background: var(--vintage-berry); color: white;
    border: none; border-radius: 2px; font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; cursor: pointer; transition: background 0.2s;
  }
  .resource-lead-form button:hover { background: #7a3050; }

  /* ─────────── TESTIMONIALS (section 8) ─────────── */
  #testimonials { padding: 100px 10vw; background: var(--bg-light-teal); }

  #testimonials .section-heading em { color: var(--stormy-teal); }

  /* Carousel */
  .testimonial-carousel { position: relative; margin-top: 56px; overflow: hidden; }

  .testimonial-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  }

  .testimonial-card {
    background: white; padding: 40px 36px; border-radius: 4px;
    border-bottom: 3px solid transparent; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    flex: 0 0 calc(50% - 12px); margin-right: 24px;
    min-width: 0;
  }
  .testimonial-card:hover { border-color: var(--stormy-teal); box-shadow: 0 8px 28px rgba(7,105,116,0.1); transform: translateY(-2px); }

  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px; line-height: 0.8; color: var(--stormy-teal); opacity: 0.3; margin-bottom: 10px;
  }
  .testimonial-category {
    font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--stormy-teal); display: block; margin-bottom: 20px;
  }
  .testimonial-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 300; font-style: italic;
    line-height: 1.8; color: var(--text-mid); margin-bottom: 28px;
  }
  .testimonial-author { border-top: 1px solid rgba(137,148,143,0.15); padding-top: 20px; }
  .testimonial-name { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
  .testimonial-role { font-size: 13px; font-weight: 400; color: var(--text-soft); }

  /* Carousel controls */
  .carousel-controls {
    display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px;
  }
  .carousel-btn {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(137,148,143,0.35);
    background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--text-mid); transition: all 0.2s;
    flex-shrink: 0;
  }
  .carousel-btn:hover { background: var(--stormy-teal); color: white; border-color: var(--stormy-teal); }

  /* Side arrows: positioned over the carousel, vertically centered */
  .carousel-btn-side {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  }
  .carousel-btn-side.prev { left: 8px; }
  .carousel-btn-side.next { right: 8px; }
  .carousel-btn-side:hover { transform: translateY(-50%) scale(1.06); }

  .carousel-dots { display: flex; gap: 8px; }
  .carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(137,148,143,0.35); cursor: pointer; transition: background 0.2s;
    border: none;
  }
  .carousel-dot.active { background: var(--stormy-teal); }

  @media (max-width: 1024px) {
    .testimonial-card { flex: 0 0 calc(50% - 12px); }
  }
  @media (max-width: 640px) {
    .testimonial-card { flex: 0 0 100%; margin-right: 0; }
  }

  /* ─────────── CONTACT (section 9) ─────────── */
  #contact {
    padding: 100px 10vw; background: var(--bg-white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  }

  #contact .section-heading em { color: var(--stormy-teal); }
  .contact-left p { font-size: 16px; font-weight: 400; line-height: 1.8; color: var(--text-mid); margin: 28px 0 40px; }

  .contact-details { display: flex; flex-direction: column; gap: 16px; }
  .contact-link {
    display: flex; align-items: center; gap: 16px;
    text-decoration: none; color: var(--text-dark); font-size: 14px; font-weight: 400;
    padding: 16px 20px; border: 1px solid rgba(137,148,143,0.2); border-radius: 2px;
    transition: border-color 0.3s, background 0.3s;
  }
  .contact-link:hover { border-color: var(--stormy-teal); background: var(--bg-light-teal); }
  .contact-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--stormy-teal); display: flex; align-items: center;
    justify-content: center; font-size: 14px; color: white; flex-shrink: 0;
  }

  .contact-right {
    background: var(--bg-berry-light);
    border: 1px solid rgba(139,65,95,0.18);
    padding: 56px 48px; border-radius: 4px;
  }
  .contact-right h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 300; color: var(--text-dark); margin-bottom: 12px;
  }
  .contact-right > p {
    font-size: 15px; font-weight: 400; color: var(--text-mid); line-height: 1.7; margin-bottom: 36px;
  }
  .contact-form-field { margin-bottom: 20px; }
  .contact-form-field label {
    display: block; font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--vintage-berry); margin-bottom: 8px;
  }
  .contact-form-field input,
  .contact-form-field select,
  .contact-form-field textarea {
    width: 100%; background: white;
    border: 1px solid rgba(139,65,95,0.2); border-radius: 2px;
    padding: 12px 16px; color: var(--text-dark);
    font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 400;
    outline: none; transition: border-color 0.2s; -webkit-appearance: none;
  }
  .contact-form-field input:focus,
  .contact-form-field select:focus,
  .contact-form-field textarea:focus { border-color: var(--vintage-berry); }
  .contact-form-field textarea { resize: vertical; min-height: 100px; }

  .btn-submit {
    width: 100%; background: var(--vintage-berry); color: white;
    border: none; padding: 16px;
    font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    border-radius: 2px; cursor: pointer; transition: background 0.2s, transform 0.2s;
  }
  .btn-submit:hover { background: #7a3050; transform: translateY(-1px); }

  /* ─────────── FOOTER ─────────── */
  footer {
    background: var(--bg-berry-light);
    border-top: 1px solid rgba(139,65,95,0.15);
    padding: 48px 10vw;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  }
  .footer-logo img { height: 80px; width: auto; }
  .footer-tagline {
    flex: 1 1 auto; text-align: center; margin: 0; min-width: 180px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px; font-style: italic; color: var(--vintage-berry); opacity: 0.7;
  }
  .footer-links { display: flex; gap: 28px; list-style: none; }
  .footer-links a {
    font-size: 13px; font-weight: 400; letter-spacing: 0.1em;
    color: var(--text-mid); text-decoration: none; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--vintage-berry); }
  .footer-copyright {
    flex: 0 1 auto; text-align: right; margin: 0;
    font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
    color: var(--grey-olive);
  }

  /* ─────────── ANIMATIONS ─────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─────────── HAMBURGER MENU ─────────── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 2px;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .nav-hamburger:hover { background: rgba(7,105,116,0.08); }
  .nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav overlay */
  .nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 40px 6vw;
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-mobile-overlay.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  .nav-mobile-overlay .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    list-style: none;
    width: 100%;
  }
  .nav-mobile-overlay .nav-links li {
    opacity: 0; transform: translateY(12px);
  }
  .nav-mobile-overlay.open .nav-links li { animation: navItemIn 0.45s cubic-bezier(.2,.8,.25,1) forwards; }
  .nav-mobile-overlay.open .nav-links li:nth-child(1) { animation-delay: .05s; }
  .nav-mobile-overlay.open .nav-links li:nth-child(2) { animation-delay: .10s; }
  .nav-mobile-overlay.open .nav-links li:nth-child(3) { animation-delay: .15s; }
  .nav-mobile-overlay.open .nav-links li:nth-child(4) { animation-delay: .20s; }
  .nav-mobile-overlay.open .nav-links li:nth-child(5) { animation-delay: .25s; }
  .nav-mobile-overlay.open .nav-links li:nth-child(6) { animation-delay: .30s; }
  .nav-mobile-overlay.open .nav-links li:nth-child(7) { animation-delay: .35s; }
  .nav-mobile-overlay.open .nav-links li:nth-child(8) { animation-delay: .40s; }
  @keyframes navItemIn { to { opacity: 1; transform: translateY(0); } }
  .nav-mobile-overlay .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    text-decoration: none;
  }
  .nav-mobile-overlay .nav-links a:hover { color: var(--stormy-teal); }
  .nav-mobile-overlay .nav-links a:not(.nav-cta) { display: flex; align-items: center; gap: 15px; }
  .nav-mobile-overlay .nav-links a:not(.nav-cta)::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--c); flex-shrink: 0; transition: transform 0.2s; }
  .nav-mobile-overlay .nav-links li:nth-child(1) a { --c: var(--stormy-teal); }
  .nav-mobile-overlay .nav-links li:nth-child(2) a { --c: var(--vintage-berry); }
  .nav-mobile-overlay .nav-links li:nth-child(3) a { --c: var(--old-gold); }
  .nav-mobile-overlay .nav-links li:nth-child(4) a { --c: var(--rose-wine); }
  .nav-mobile-overlay .nav-links li:nth-child(5) a { --c: var(--pine-teal); }
  .nav-mobile-overlay .nav-links li:nth-child(6) a { --c: var(--grey-olive); }
  .nav-mobile-overlay .nav-links li:nth-child(7) a { --c: var(--stormy-teal); }
  .nav-mobile-overlay .nav-links a:not(.nav-cta):active { color: var(--c); }
  .nav-mobile-overlay .nav-links a:not(.nav-cta):active::before { transform: scale(1.4); }
  .nav-mobile-overlay .nav-cta {
    display: inline-flex !important;
    margin-top: 24px;
    text-align: center;
    justify-content: center;
    background: var(--stormy-teal) !important;
    color: white !important;
    padding: 14px 32px;
    border-radius: 2px;
    width: 100%;
    box-sizing: border-box;
  }

  /* ─────────── RESPONSIVE — TABLET 1024px ─────────── */
  @media (max-width: 1024px) {
    /* NAV */
    nav { padding: 0 5vw; }

    /* HERO */
    #hero { grid-template-columns: 1fr; height: auto; min-height: 100vh; max-height: none; }
    .hero-left { padding: calc(72px + 6vh) 6vw 6vh 6vw; }
    .hero-right { height: 60vh; order: -1; }
    .hero-photo { top: 0; height: 100%; object-position: center 20%; }
    .hero-photo-overlay { background: linear-gradient(to bottom, transparent 70%, var(--bg-white) 100%); }
    .hero-title .line2 { font-size: clamp(48px, 7vw, 72px); }

    /* ABOUT */
    #about { grid-template-columns: 1fr; gap: 3rem; padding: 80px 6vw; }

    /* CREDENTIALS */
    #credentials { padding: 80px 6vw; }
    .cred-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* COACHING */
    #coaching { padding: 80px 6vw; }
    .explore-grid { grid-template-columns: 1fr 1fr; gap: 12px; background: transparent; }
    .ways-grid { grid-template-columns: 1fr; }
    .cohort-card { grid-template-columns: 1fr; }
    .cohort-card-image { min-height: 240px; }

    /* TEAMS */
    #teams { padding: 80px 6vw; }
    .teams-grid { grid-template-columns: 1fr 1fr; }
    .team-formats { grid-template-columns: 1fr; }

    /* ORGANISATIONS */
    #organisations { padding: 80px 6vw; }
    .org-grid { grid-template-columns: 1fr; }
    .org-ways-grid { grid-template-columns: 1fr; }

    /* ELEMENTS */
    #elements { padding: 80px 6vw; }
    .elements-grid { grid-template-columns: 1fr 1fr; }

    /* ACTIVATE */
    #activate { padding: 80px 6vw; }
    .activate-cards { grid-template-columns: 1fr 1fr; }
    .activate-cards.cols-3 { grid-template-columns: 1fr 1fr; }
    .activate-cards.cols-1 { max-width: none; }
    .activate-reads-exp-row { gap: 32px; }

    /* TESTIMONIALS */
    #testimonials { padding: 80px 6vw; }
    .testimonial-card { flex: 0 0 calc(50% - 12px); }

    /* CONTACT */
    #contact { padding: 80px 6vw; grid-template-columns: 1fr; gap: 56px; }

    /* FOOTER */
    footer { flex-direction: column; gap: 24px; text-align: center; padding: 40px 6vw; }
    .footer-tagline, .footer-copyright { text-align: center; }
    .footer-links { justify-content: center; }
  }

  /* ─────────── RESPONSIVE — MOBILE 640px ─────────── */
  @media (max-width: 640px) {
    /* NAV — hide desktop links, show hamburger */
    nav { padding: 0 5vw; height: 64px; }
    .nav-logo img { height: 36px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    #navbar .nav-logo { margin-right: auto; }
    #navbar .lang-switcher { margin-left: auto; }

    /* SECTION HEADINGS — scale down */
    .section-heading { font-size: clamp(32px, 8.1vw, 47px); }

    /* HERO */
    #hero { min-height: 100svh; }
    .hero-left { padding: calc(64px + 4vh) 5vw 5vh 5vw; }
    .hero-right { height: 60vh; }
    .hero-title .line2 { font-size: clamp(42px, 10vw, 64px); }
    .hero-subtitle { font-size: 14px; }
    .hero-tagline { font-size: 13px; }
    .hero-btn-wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
    .btn-primary { font-size: 11px; padding: 14px 28px; }
    /* keep the hero CTA left-aligned and content-width (overrides the full-width
       rule below at ≤400px, which is meant for in-card buttons) */
    .hero-btn-wrap .btn-primary { width: fit-content; justify-content: flex-start; }
    .hero-photo { object-position: center 20%; }

    /* SECTIONS — reduced padding */
    #about, #credentials, #coaching, #teams,
    #organisations, #elements, #activate,
    #testimonials, #contact { padding: 64px 5vw; }

    /* ABOUT */
    #about .section-heading { font-size: clamp(29px, 7.2vw, 43px); }
    .about-title-block { font-size: clamp(22px, 5vw, 32px); }

    /* CREDENTIALS */
    .cred-grid { grid-template-columns: 1fr; gap: 12px; }
    .cred-intro { font-size: 16px; }

    /* COACHING */
    .explore-grid { grid-template-columns: 1fr; gap: 12px; background: transparent; }
    .explore-card { padding: 1.5rem 1.25rem; }
    .ways-grid { grid-template-columns: 1fr; gap: 12px; }
    .way-card { padding: 2rem 1.5rem; }
    .cohort-card-text { padding: 2rem; }
    .way-card .btn-primary,
    .cohort-card-text .btn-primary,
    #teams .btn-primary,
    #organisations .btn-primary { width: fit-content; }

    /* TEAMS */
    .teams-grid { grid-template-columns: 1fr; gap: 12px; }
    .team-formats { grid-template-columns: 1fr; gap: 12px; }
    .format-item { padding: 28px 24px; }

    /* ORGANISATIONS */
    .org-grid { grid-template-columns: 1fr; gap: 12px; }
    .org-area { padding: 24px; }
    .org-ways-grid { grid-template-columns: 1fr; gap: 12px; }
    .org-ways-card { padding: 28px 24px; }

    /* ELEMENTS */
    .elements-grid { grid-template-columns: 1fr; gap: 16px; }
    .elements-intro-normal { font-size: 16px; }

    /* ACTIVATE — full-width cards */
    .activate-cards { grid-template-columns: 1fr; }
    .activate-cards.cols-1,
    .activate-cards.cols-2,
    .activate-cards.cols-3 { grid-template-columns: 1fr; max-width: none; }
    .activate-reads-exp-row { grid-template-columns: 1fr; gap: 32px; }
    /* The inline 2-col grid in Activate section */
    [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

    /* TESTIMONIALS */
    .testimonial-card { flex: 0 0 100%; margin-right: 0; padding: 28px 24px; }
    .testimonial-card blockquote { font-size: 15px; }
    .carousel-controls { gap: 12px; }
    /* On small screens hide the side arrows so they don't cover the text;
       the dots below remain tappable for navigation */
    .carousel-btn-side { display: none; }

    /* CONTACT */
    #contact { gap: 40px; }
    .contact-right { padding: 36px 28px; }
    .contact-right h3 { font-size: 26px; }

    /* FOOTER */
    footer { padding: 36px 5vw; gap: 20px; }
    .footer-logo img { height: 60px; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .footer-tagline { font-size: 13px; }

    /* PREVENT HORIZONTAL SCROLL */
    body { overflow-x: hidden; }
    * { max-width: 100%; }
    img { max-width: 100%; height: auto; }
  }

  /* ─────────── RESPONSIVE — EXTRA SMALL 400px ─────────── */
  @media (max-width: 400px) {
    .hero-title .line2 { font-size: clamp(38px, 11vw, 52px); }
    .section-heading { font-size: clamp(29px, 9vw, 40px); }
    #about, #credentials, #coaching, #teams,
    #organisations, #elements, #activate,
    #testimonials, #contact { padding: 52px 4vw; }
    .contact-right { padding: 28px 20px; }
    .btn-primary { padding: 12px 22px; width: 100%; justify-content: center; box-sizing: border-box; }
  }

/* format typical applications */
.format-typical { font-size:13px; color: var(--text-soft); margin-top: 12px; }

/* ── Elements & Teams on touch / small screens: tap a card to expand ──
   Flip needs hover, which touch lacks. Instead each card flattens into a
   normal card with a clear + control; tapping reveals the description and
   the + rotates into an ×. JS toggles the .open class. Desktop keeps hover-flip. */
@media (hover: none), (max-width: 768px) {
  /* ELEMENTS */
  .element-item {
    display: block; background: #fff; border-radius: 8px;
    border-top: 3px solid var(--old-gold);
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    padding: 24px 22px; cursor: pointer;
  }
  .element-card-inner { transform: none !important; min-height: 0; display: block; }
  .element-face {
    grid-area: auto; position: static;
    -webkit-backface-visibility: visible; backface-visibility: visible;
    background: transparent; box-shadow: none; border-top: none;
    border-radius: 0; padding: 0; justify-content: flex-start;
  }
  .element-front { position: relative; padding-right: 34px; }
  .element-back h4 { display: none; }
  .element-back {
    transform: none; max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.45s ease;
  }
  .element-item.open .element-back { max-height: 600px; opacity: 1; margin-top: 14px; }
  /* ↻ hint → a drawn + that becomes × when open */
  .element-flip-hint {
    position: absolute; top: 2px; right: 0; width: 22px; height: 22px;
    font-size: 0; color: transparent; opacity: 1; transition: transform 0.3s ease;
  }
  .element-flip-hint::before, .element-flip-hint::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 15px; height: 2px; border-radius: 2px;
    background: var(--old-gold); transform: translate(-50%, -50%);
  }
  .element-flip-hint::after { transform: translate(-50%, -50%) rotate(90deg); }
  .element-item.open .element-flip-hint { transform: rotate(135deg); }

  /* TEAMS — same pattern, using each card's accent colour */
  .team-card {
    display: block; background: #fff;
    border: 0.5px solid rgba(7,105,116,0.18);
    border-left: 3px solid var(--accent);
    border-radius: 2px; box-shadow: 0 4px 16px rgba(7,105,116,0.06);
    padding: 22px; cursor: pointer;
  }
  .team-card-inner { transform: none !important; min-height: 0; display: block; }
  .team-face {
    grid-area: auto; position: static;
    -webkit-backface-visibility: visible; backface-visibility: visible;
    background: transparent; box-shadow: none; border: none;
    border-radius: 0; padding: 0; justify-content: flex-start;
  }
  .team-front { position: relative; padding-right: 34px; }
  .team-back h4 { display: none; }
  .team-back {
    transform: none; max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.45s ease;
  }
  .team-card.open .team-back { max-height: 600px; opacity: 1; margin-top: 12px; }
  .team-flip-hint {
    position: absolute; top: 0; right: 0; width: 22px; height: 22px;
    font-size: 0; color: transparent; opacity: 1; transition: transform 0.3s ease;
  }
  .team-flip-hint::before, .team-flip-hint::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 15px; height: 2px; border-radius: 2px;
    background: var(--accent); transform: translate(-50%, -50%);
  }
  .team-flip-hint::after { transform: translate(-50%, -50%) rotate(90deg); }
  .team-card.open .team-flip-hint { transform: rotate(135deg); }
}

/* ── Testimonials: clamp long quotes, with a chevron toggle to expand ── */
.testimonial-card.is-clamped blockquote {
  position: relative;
  max-height: 11em;
  overflow: hidden;
  margin-bottom: 6px;
  cursor: pointer;
  transition: max-height 0.45s ease;
}
.testimonial-card.is-clamped blockquote::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 3.4em;
  background: linear-gradient(rgba(255,255,255,0), #fff 92%);
  pointer-events: none; transition: opacity 0.3s;
}
.testimonial-card.is-clamped.expanded blockquote { max-height: 240em; }
.testimonial-card.is-clamped.expanded blockquote::after { opacity: 0; }

.testimonial-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(7,105,116,0.25); background: #fff;
  cursor: pointer; padding: 0; margin: 4px 0 22px;
  transition: background 0.2s, border-color 0.2s;
}
.testimonial-toggle:hover { border-color: var(--stormy-teal); background: rgba(7,105,116,0.06); }
.testimonial-toggle .chev {
  width: 7px; height: 7px; margin-top: -2px;
  border-right: 1.5px solid var(--stormy-teal);
  border-bottom: 1.5px solid var(--stormy-teal);
  transform: rotate(45deg); transition: transform 0.3s;
}
.testimonial-card.expanded .testimonial-toggle .chev { transform: rotate(-135deg); margin-top: 2px; }

/* when a card is expanded, don't stretch its neighbour to match */
.testimonial-track.has-expanded { align-items: flex-start; }

/* footer legal links */
.footer-copyright a { color: inherit; text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.footer-copyright a:hover { color: var(--stormy-teal); }

/* ── Hero credential line (brand ticks) ── */
.hero-credentials {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-top: 40px;
  animation: fadeUp 0.8s ease 0.75s both;
}
.hero-credentials .hc-grp {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--stormy-teal); white-space: nowrap;
}
.hero-credentials .hc-tick { width: 18px; height: 2px; border-radius: 2px; }
.hc-tick-gold { background: var(--old-gold); }
.hc-tick-rose { background: var(--rose-wine); }
@media (max-width: 640px) {
  .hero-credentials { margin-top: 30px; gap: 12px; }
  .hero-credentials .hc-grp { font-size: 11px; letter-spacing: 0.14em; }
}

/* ── About: dots logo, sequential entry animation (plays once on scroll-in) ── */
.about-left { display: flex; flex-direction: column; align-self: stretch; }
.about-dots { margin: auto 0; }
.about-dots .dots-anim { width: 230px; height: auto; display: block; margin: 0 auto; overflow: visible; }
.about-dots .entry .d, .about-dots .entry .cc { transform-box: fill-box; transform-origin: center; }
.about-dots .entry .d1 { --sx: 55px;   --sy: 130px;  --ad: 0s; }
.about-dots .entry .d2 { --sx: -120px; --sy: 75px;   --ad: .3s; }
.about-dots .entry .d3 { --sx: 55px;   --sy: -120px; --ad: .6s; }
.about-dots .entry .d4 { --sx: -55px;  --sy: -120px; --ad: .9s; }
.about-dots .entry .d5 { --sx: 10px;   --sy: 120px;  --ad: 1.2s; }
.about-dots .entry .cc { --sx: 0px;    --sy: -85px; }
.about-dots .entry.anim-ready:not(.play) .d, .about-dots .entry.anim-ready:not(.play) .cc { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(.45); }
.about-dots .entry.anim-ready:not(.play) .lines { opacity: 0; }
.about-dots .entry.play .d { animation: dotsAssemble 1.5s cubic-bezier(.2,.8,.25,1) both, dotsFlash 1.1s ease-in-out both; animation-delay: var(--ad), 3s; }
.about-dots .entry.play .cc { animation: dotsAssemble 1.5s cubic-bezier(.2,.8,.25,1) both; animation-delay: 1.5s; }
.about-dots .entry.play .lines { animation: dotsLines 1.1s ease 1.9s both; }
@keyframes dotsAssemble { 0% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(.45); } 55% { opacity: 1; } 100% { opacity: 1; transform: translate(0, 0) scale(1); } }
@keyframes dotsFlash { 0% { filter: brightness(1); } 45% { filter: brightness(1.5); } 100% { filter: brightness(1); } }
@keyframes dotsLines { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .about-dots .entry .d, .about-dots .entry .cc, .about-dots .entry .lines { opacity: 1 !important; transform: none !important; animation: none !important; }
}
@media (max-width: 1024px) {
  .about-dots { margin: 26px 0 0; }
  .about-dots .dots-anim { width: 150px; }
}
