  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --crimson: #a61c1c; --crimson-dark: #8c0f14;
    --burgundy: #961218;
    --gold: #c9a84c; --gold-light: #e2c06a; --gold-btn: #c9a84c;
    --white: #fff; --off-white: #FAF7F2;
    --text-dark: #2c1810; --text-mid: #5a3825; --text-light: #7a6055;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; background: var(--off-white); color: var(--text-dark); overflow-x: hidden; }

  /* ── PAGES ── */
  .page { display: none; }
  .page.active { display: block; }

  /* ── NAV ── */
  nav {
    position: relative; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 64px;
    background: var(--burgundy);
    border-bottom: 1px solid rgba(201,168,76,0.10);
  }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer; }
  #logo-img.home-logo { height: 100px; }
  .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .logo-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
  .logo-sub  { font-size: 8.5px; letter-spacing: 3.5px; color: var(--gold); text-transform: uppercase; margin-top: 4px; opacity: 0.85; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.80); text-decoration: none; font-size: 16px; letter-spacing: 0.8px;
    font-weight: 400; transition: color 0.22s; position: relative; cursor: pointer; padding-bottom: 2px;
  }
  .nav-links a.active { color: var(--white); }
  .nav-links a.active::after { content:''; position:absolute; bottom:-6px; left:0; right:0; height:1.5px; background:var(--gold); border-radius:2px; }
  .nav-links a:hover { color: var(--white); }

  /* ── BUTTON ── */
  .btn-gold {
    display: inline-block; background: var(--gold); color: #1e0f00;
    padding: 15px 42px; border-radius: 50px; font-size: 12.5px; font-weight: 700;
    letter-spacing: 1.6px; text-transform: uppercase; text-decoration: none;
    cursor: pointer; border: none;
    transition: background 0.25s, transform 0.18s, box-shadow 0.2s;
    box-shadow: 0 6px 28px rgba(201,168,76,0.38);
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,168,76,0.5); }

  /* COOKIE NOTICE */
  .cookie-notice {
    position: fixed;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 200;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: min(620px, calc(100% - 48px));
    padding: 26px 30px 24px;
    background: linear-gradient(145deg, #8c0f14 0%, #a61c1c 100%);
    border: 1px solid rgba(201,168,76,0.42);
    border-radius: 8px;
    box-shadow: 0 18px 52px rgba(44,24,16,0.32);
    text-align: center;
  }
  .cookie-notice.show { display: flex; }
  .cookie-notice h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 22px;
    line-height: 1.25;
    margin: 0;
  }
  .cookie-notice p {
    color: rgba(255,255,255,0.88);
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
    max-width: 520px;
  }
  .cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .cookie-link {
    background: transparent;
    border: 1px solid rgba(226,192,106,0.44);
    color: var(--gold-light);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
  }
  .cookie-accept {
    background: var(--gold);
    border: none;
    color: #1e0f00;
    padding: 11px 18px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
  }
  .cookie-link:hover { border-color: var(--gold-light); color: var(--white); }
  .cookie-accept:hover { background: var(--gold-light); }

  /* PRIVACY NOTICE */
  .privacy-main {
    background: var(--white);
    padding: 72px 48px 84px;
  }
  .privacy-inner {
    max-width: 920px;
    margin: 0 auto;
  }
  .privacy-intro {
    color: var(--text-mid);
    font-size: 15.5px;
    line-height: 1.75;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
  }
  .privacy-card {
    background: var(--off-white);
    border: 1.5px solid rgba(180,20,30,0.1);
    border-radius: 8px;
    padding: 34px 36px;
    margin-bottom: 18px;
  }
  .privacy-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--crimson);
    font-size: 21px;
    margin-bottom: 12px;
  }
  .privacy-card p,
  .privacy-card li {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.75;
  }
  .privacy-card ul {
    margin: 8px 0 0 20px;
  }
  .privacy-card a {
    color: var(--crimson);
    font-weight: 700;
    text-decoration: none;
  }

  /* ── GOLD DIVIDER ── */
  .gold-divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 auto 20px; }
  .gold-divider-left { margin: 0 0 20px; }

  /* ══════════════════════════════
     PAGE 1 — HOME
  ══════════════════════════════ */

  /* HERO */
  .hero {
    position: relative; min-height: 640px; display: flex; align-items: center;
    background: var(--burgundy);
    overflow: hidden;
  }
  .hero::before { display: none; }
  .hero-eyebrow { font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:20px; opacity:0.88; }
  .hero-content { position:relative; z-index:2; padding:80px 56px 80px 96px; max-width:580px; }
  .hero h1 { font-family:'Playfair Display',serif; font-size:52px; font-weight:700; color:var(--white); line-height:1.13; margin-bottom:18px; text-shadow:0 2px 24px rgba(0,0,0,0.18); }
  .hero-rule { width:38px; height:1.5px; background:var(--gold); border-radius:2px; margin-bottom:20px; opacity:0.6; }
  .hero p { color:rgba(255,255,255,0.84); font-size:16.5px; line-height:1.82; margin-bottom:44px; font-weight:300; max-width:420px; }
  .hero-image { position:absolute; right:0; bottom:0; top:0; width:100%; overflow:hidden; }
  .hero-image::after {
    content:''; position:absolute; inset:0; pointer-events:none; z-index:1;
    background:
      linear-gradient(to right, var(--burgundy) 0%, var(--burgundy) 30%, rgba(150,18,24,0.88) 44%, rgba(150,18,24,0.44) 58%, rgba(150,18,24,0.06) 72%, transparent 85%),
      linear-gradient(to top,   rgba(140,15,20,0.45) 0%, transparent 18%),
      linear-gradient(to bottom, rgba(140,15,20,0.36) 0%, transparent 16%);
  }
  .hero-image img {
    position:absolute; top:0; right:-8%;
    width:84%; height:100%; object-fit:cover; object-position:center 46%;
    display:block;
  }

  /* QUOTE STRIP — Ken Poirot */
  .quote-strip { display: none; }
  .quote-strip blockquote { font-family:'Playfair Display',serif; font-size:19px; color:var(--white); font-style:italic; line-height:1.6; margin-bottom:10px; }
  .quote-strip cite { color:var(--gold-light); font-size:12px; letter-spacing:2px; text-transform:uppercase; font-style:normal; }
  .quote-strip-inner { max-width:700px; margin:0 auto; }

  /* MARKETING QUESTIONS */
  .questions-strip { background: #5c080e; padding: 36px 48px; }
  .questions-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:16px 40px; }
  .question-item { display:flex; align-items:flex-start; gap:10px; color:rgba(255,255,255,0.88); font-size:14px; line-height:1.6; }
  .question-item::before { content:'›'; color:var(--gold); font-size:20px; line-height:1.2; flex-shrink:0; font-weight:700; }

  /* WELCOME */
  .welcome-section { background:var(--white); }
  .welcome { padding:72px 48px; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; max-width:1100px; margin:0 auto; }
  .welcome h2 { font-family:'Playfair Display',serif; font-size:34px; color:var(--crimson); margin-bottom:10px; line-height:1.25; }
  .welcome .elevator { font-size:15.5px; color:var(--text-mid); font-weight:600; font-style:italic; margin-bottom:24px; line-height:1.6; }
  .welcome-desc { list-style:none; margin-bottom:32px; }
  .welcome-desc li { color:var(--text-light); font-size:14px; line-height:1.75; padding:9px 0; border-bottom:1px solid rgba(180,20,30,0.07); display:flex; align-items:flex-start; gap:12px; }
  .welcome-desc li:last-child { border-bottom:none; }
  .welcome-desc li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--gold); flex-shrink:0; margin-top:9px; }
  .welcome-img-wrap { width:min(100%,410px); justify-self:center; align-self:center; border-radius:8px; overflow:hidden; box-shadow:0 12px 40px rgba(0,0,0,0.12); aspect-ratio:1306/1560; position:relative; }
  .welcome-img-wrap::after { display:none; }
  .welcome-img-wrap img { width:100%; height:100%; object-fit:cover; object-position:center center; display:block; }

  /* FEATURES */
  .features-wrap { background:var(--off-white); padding:20px 0 72px; }
  .features { max-width:1100px; margin:0 auto; padding:0 48px; display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
  .feature { text-align:center; padding:32px 24px; }
  .feature-icon { width:auto; height:auto; margin:0 auto 20px; display:flex; align-items:center; justify-content:center; }
  .feature-icon svg { width:64px; height:64px; }
  .feature h3 { font-family:'Playfair Display',serif; font-size:17px; color:var(--crimson); margin-bottom:10px; }
  .feature p { color:var(--text-light); font-size:13.5px; line-height:1.7; }

  /* PROGRAMME */
  /* ── PROGRAMME PAGE ── */
  .programme-page-section { background: var(--off-white); padding: 80px 48px; }
  .programme-page-inner { max-width: 1100px; margin: 0 auto; }
  .programme-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .prog-card {
    background: linear-gradient(145deg, #8c0f14 0%, #a61c1c 100%);
    border-radius: 10px; padding: 36px 28px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    position: relative; overflow: hidden;
  }
  .prog-card::before {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
  .prog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.22); }
  .prog-number {
    font-family:'Playfair Display',serif; font-size:40px;
    color: rgba(201,168,76,0.25); font-weight:700; line-height:1; margin-bottom:10px;
  }
  .prog-card h3 { font-family:'Playfair Display',serif; font-size:18px; color: var(--gold-light); margin-bottom:10px; }
  .prog-card p { color: rgba(255,255,255,0.78); font-size:15px; line-height:1.75; }
  .programme-price-wrap {
    background: var(--off-white);
    padding: 0 48px 72px;
  }
  .programme-price-box {
    width: min(820px, 75%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 92px 1fr 230px;
    align-items: center;
    gap: 30px;
    padding: 34px 40px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.84) 0%, rgba(250,247,242,0.96) 56%, rgba(248,240,228,0.92) 100%);
    border: 1.5px solid rgba(201,168,76,0.54);
    border-radius: 12px;
    box-shadow: 0 14px 42px rgba(44,24,16,0.11);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .programme-price-box::before {
    content: '';
    position: absolute;
    top: -46px;
    right: -44px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(140,15,20,0.08), rgba(201,168,76,0.08));
    pointer-events: none;
  }
  .programme-price-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 52px rgba(44,24,16,0.15);
  }
  .programme-price-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fffaf0 0%, #f3eadc 100%);
    border: 1px solid rgba(201,168,76,0.34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 24px rgba(140,15,20,0.08);
  }
  .programme-price-icon svg {
    width: 34px;
    height: 34px;
    color: var(--crimson-dark);
    stroke-width: 1.8;
  }
  .programme-price-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 10px;
    font-weight: 700;
  }
  .programme-price-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
    max-width: 420px;
  }
  .programme-price-amount {
    padding-left: 34px;
    border-left: 1px solid rgba(201,168,76,0.44);
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .programme-price-amount strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    line-height: 1;
    color: var(--crimson-dark);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .programme-price-amount span {
    display: block;
    color: var(--crimson);
    font-size: 11px;
    letter-spacing: 1.6px;
    line-height: 1.45;
    text-transform: uppercase;
    font-weight: 700;
  }

  /* CTA */
  .cta-section { background:var(--off-white); padding:0 48px 80px; text-align:center; }
  .cta-inner { max-width:580px; margin:0 auto; }
  .cta-section h2 { font-family:'Playfair Display',serif; font-size:36px; color:var(--crimson); margin-bottom:16px; }
  .cta-section p { color:var(--text-light); font-size:15px; line-height:1.75; margin-bottom:36px; }

  /* ══════════════════════════════
     PAGE 2 — MY STORY
  ══════════════════════════════ */
  .story-hero {
    background: linear-gradient(135deg, #8c0f14 0%, #a61c1c 100%);
    padding: 72px 48px 44px; text-align:center;
  }
  .story-hero h2 { font-family:'Playfair Display',serif; font-size:42px; font-weight:700; color:var(--white); margin-bottom:12px; }
  .story-hero p { color:rgba(255,255,255,0.8); font-size:16px; font-style:italic; }

  .story-main { background:var(--white); padding:48px 48px 40px; }
  .story-grid { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1.15fr 1.4fr; gap:16px 48px; align-items:start; }
  .story-left-col { display:flex; flex-direction:column; gap:20px; align-self:stretch; }
  .story-right-col { display:flex; flex-direction:column; }
  .story-quote-block { grid-column:1 / -1; margin-top:8px; }
  .story-text-panel p { color:var(--text-light); font-size:14.5px; line-height:1.8; margin-bottom:0; }
  .story-photo-panel {
    width: 100%;
    flex: 1;
    background: var(--off-white);
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(180,20,30,0.08);
    display: flex; flex-direction: column;
  }
  .story-photo-inner-card {
    width: 100%;
    flex: 1;
    flex: 1;
    min-height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(145deg, #e8d5c0 0%, #c9a07a 60%, #b07840 100%);
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  }
  .story-photo-inner-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .story-photo-wrap {
    border-radius:10px; overflow:hidden; box-shadow:0 16px 48px rgba(0,0,0,0.14);
    aspect-ratio:3/4; background:linear-gradient(145deg,#e8d5c0,#c9a07a);
    display:flex; align-items:center; justify-content:center; position:sticky; top:32px;
  }
  .story-photo-inner {
    width:100%; height:100%;
    background:linear-gradient(160deg,rgba(210,160,100,0.5),rgba(160,90,50,0.45));
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
  }
  .story-photo-inner p { color:rgba(100,55,25,0.5); font-size:12px; font-style:italic; }

  /* TONY ROBBINS QUOTE on story page */
  .story-quote { background:var(--crimson); padding:60px 48px; text-align:center; }
  .story-quote-inner { max-width:700px; margin:0 auto; }
  .story-quote blockquote { font-family:'Playfair Display',serif; font-size:22px; color:var(--white); font-style:italic; line-height:1.6; margin-bottom:18px; }
  .story-quote cite { color:var(--gold-light); font-size:12px; letter-spacing:2px; text-transform:uppercase; font-style:normal; }

  /* VALUES on story page */
  .story-values { background:var(--off-white); padding:72px 48px; }
  .story-values-inner { max-width:1100px; margin:0 auto; }
  .values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:0; }
  .value-card { background:var(--white); border:1.5px solid rgba(180,20,30,0.1); border-radius:8px; padding:32px 24px; text-align:center; transition:border-color 0.25s,transform 0.25s; }
  .value-card:hover { border-color:var(--gold); transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,0.07); }
  .value-card h3 { font-family:'Playfair Display',serif; font-size:17px; color:var(--crimson); margin-bottom:10px; }
  .value-card p { color:var(--text-light); font-size:13.5px; line-height:1.7; }
  .value-icon { margin:0 auto 16px; width:44px; height:44px; display:flex; align-items:center; justify-content:center; }

  /* ── TESTIMONIAL CAROUSEL ── */
  .testimonial-banner {
    background: #8c0f14;
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .testimonial-track-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .testimonial-track {
    display: flex;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
  }
  .testimonial-slide {
    min-width: 100%;
    padding: 22px 96px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }
  .testimonial-stars { color: var(--gold); font-size: 18px; letter-spacing: 4px; margin-bottom: 8px; }
  .testimonial-slide blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--white);
    font-style: italic;
    line-height: 1.48;
    max-width: 1120px;
    margin-bottom: 8px;
  }
  .testimonial-slide cite {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
  }
  /* carousel arrows */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .carousel-arrow:hover { background: rgba(255,255,255,0.25); }
  .carousel-prev { left: 16px; }
  .carousel-next { right: 16px; }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding-bottom: 6px;
  }
  .testimonial-dots span {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .testimonial-dots span::after {
    content: '';
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s, transform 0.3s;
    display: block;
  }
  .testimonial-dots span.active::after {
    background: var(--gold);
    transform: scale(1.25);
  }
  /* hamburger */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }
  footer { background:var(--burgundy); padding:8px 56px; overflow:visible; border-top:1px solid rgba(201,168,76,0.10); }
  .footer-inner { width:100%; display:flex; align-items:center; justify-content:space-between; }
  .footer-logo-name { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--white); }
  .footer-logo-sub { font-size:9px; letter-spacing:3px; color:var(--gold-light); text-transform:uppercase; margin-top:4px; }
  .footer-links { display:flex; gap:32px; list-style:none; }
  .footer-links a { color:rgba(255,255,255,0.80); font-size:13px; letter-spacing:0.8px; text-decoration:none; transition:color 0.22s; cursor:pointer; position:relative; padding-bottom:2px; }
  .footer-links a:hover { color:var(--white); }
  .footer-copy { display:none; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.page.active .hero-content h1,
  .page.active .story-hero h2 { animation:fadeUp 0.6s 0.1s ease both; }
  .page.active .hero-content p,
  .page.active .story-hero p  { animation:fadeUp 0.6s 0.2s ease both; }
  .page.active .hero-content .btn-gold { animation:fadeUp 0.6s 0.3s ease both; }
  .page.active .programme-price-box { animation:fadeUp 0.6s 0.15s ease both; }

  /* ── RESPONSIVE ── */
  @media (max-width:900px) {
    .questions-grid { grid-template-columns: repeat(2,1fr); gap: 16px 28px; }
    nav { padding:8px 24px; position: relative; background: var(--burgundy); overflow: visible; }
    .nav-toggle { display: flex; }
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: #8c0f14;
      flex-direction: column;
      padding: 8px 24px 16px;
      gap: 0;
      z-index: 99;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-links a { display: block; padding: 14px 0; font-size: 15px; }
    .hero {
      display: block;
      min-height: 0;
      background: var(--burgundy);
    }
    .hero-content {
      max-width: none;
      padding: 46px 32px 38px;
      background: linear-gradient(135deg, #8f0917 0%, #a5121d 100%);
    }
    .hero h1 { font-size:38px; line-height:1.16; }
    .hero p { font-size:15px; max-width:none; }
    .hero-image {
      position: relative;
      top: auto;
      right: auto;
      bottom: auto;
      width: 100%;
      height: 470px;
    }
    .hero-image::after {
      background:
        linear-gradient(to bottom, rgba(140,15,20,0.12) 0%, transparent 22%),
        linear-gradient(to top, rgba(140,15,20,0.18) 0%, transparent 30%);
    }
    .hero-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 44%;
    }
    .questions-inner { grid-template-columns:1fr 1fr; }
    .questions-strip,.quote-strip { padding:28px 24px; }
    .welcome { grid-template-columns:1fr; padding:48px 24px; gap:36px; }
    .features { grid-template-columns:1fr; padding:0 24px; }
    .programme-grid { grid-template-columns:1fr 1fr; }
    .programme-price-wrap { padding: 0 24px 60px; }
    .programme-price-box {
      width: min(760px, 100%);
      grid-template-columns: 74px 1fr 200px;
      gap: 22px;
      padding: 30px 28px;
    }
    .programme-price-amount { padding-left: 24px; }
    .programme-price-amount strong { font-size: 48px; }
    .story-main { padding:48px 24px; }
    .story-grid { grid-template-columns:1fr; gap:36px; }
    .story-grid { grid-template-columns:1fr; }
    .story-quote-block { grid-column:1; }
    .story-photo-panel { max-width:100%; }
    .values-grid { grid-template-columns:1fr 1fr; }
    .testimonial-slide { padding: 20px 58px 14px; }
    .testimonial-slide blockquote { max-width: 100%; font-size: 17px; line-height: 1.5; }
    footer { padding: 14px 16px 12px; }
    .footer-inner {
      flex-direction: column;
      gap: 24px;
      text-align: center;
      align-items: center;
    }
    footer .logo {
      display: block;
      text-align: center;
    }
    footer .logo .logo-text {
      align-items: center;
    }
    footer .logo img {
      display: none !important;
    }
    footer .logo:not(:has(.logo-text))::before {
      content: 'Karen Gore Coaching';
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
    }
    footer .logo:not(:has(.logo-text))::after {
      content: 'Life Coach';
      display: block;
      margin-top: 5px;
      color: var(--gold-light);
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      line-height: 1;
    }
    .footer-nav-links,
    .footer-links {
      display: flex;
      position: static;
      background: transparent;
      padding: 0;
      box-shadow: none;
      width: auto;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
      gap: 22px;
    }
    .footer-nav-links li,
    .footer-links li {
      display: block;
      border-bottom: 0;
      flex: 0 0 auto;
    }
    .footer-nav-links a,
    .footer-links a {
      padding: 0;
      font-size: 13px;
      line-height: 1.35;
      color: rgba(255,255,255,0.82);
    }
  }
  @media (max-width:560px) {
    .hero {
      display: flex;
      flex-direction: column;
      background: #9f0d19;
    }
    .hero-content {
      display: contents;
      padding: 0;
      background: none;
    }
    .hero-eyebrow {
      display: none;
      order: 1;
      width: 100%;
      margin: 0;
      padding: 46px 32px 18px;
      background: linear-gradient(135deg, #8f0917 0%, #a5121d 100%);
    }
    .hero h1 {
      order: 2;
      width: 100%;
      margin: 0;
      padding: 18px 32px 22px;
      background: #9f0d19;
    }
    .hero-rule {
      order: 3;
      margin: 0 0 0 32px;
      transform: translateY(-2px);
    }
    .hero-image {
      order: 4;
      height: 360px;
    }
    .hero-image img {
      object-position: 68% 100%;
      transform: scale(1.18);
      transform-origin: 68% 78%;
    }
    .hero-content > p:not(.hero-eyebrow) {
      order: 5;
      width: 100%;
      margin: 0;
      padding: 34px 32px 26px;
      background: #9f0d19;
    }
    .hero-content .btn-gold {
      order: 6;
      margin: 0 32px 38px;
    }
    .questions-grid { grid-template-columns: 1fr; }
    .cream-panel { padding: 14px 24px 20px; }
    .questions-inner,.programme-grid,.values-grid { grid-template-columns:1fr; }
    .programme-price-wrap { padding: 0 22px 54px; }
    .programme-price-box {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
      gap: 20px;
      padding: 32px 24px;
    }
    .programme-price-content p { max-width: 100%; }
    .programme-price-amount {
      width: 100%;
      padding-left: 0;
      padding-top: 22px;
      border-left: 0;
      border-top: 1px solid rgba(201,168,76,0.44);
    }
    .programme-price-amount strong { font-size: 50px; }
    .testimonial-slide { padding: 18px 38px 12px; }
    .testimonial-stars { margin-bottom: 6px; }
    .testimonial-slide blockquote { font-size: 15.5px; line-height: 1.45; }
    .cookie-notice {
      width: calc(100% - 28px);
      bottom: 14px;
      padding: 22px 18px 20px;
    }
    .cookie-actions { justify-content: center; flex-wrap: wrap; }
    .privacy-main { padding: 52px 22px 64px; }
    .privacy-card { padding: 26px 22px; }
  }

  /* ── CREAM PANEL (quote + questions) ── */
  /* ── CREAM PANEL (quote + questions) ── */
  .cream-panel {
    background: #FAF7F2;
    padding: 72px 48px 80px;
    border-top: 1px solid rgba(201,168,76,0.15);
    text-align: center;
  }
  .cream-panel-header {
    max-width: 640px;
    margin: 0 auto 36px;
  }
  .cream-panel-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #3d1012;
    margin-bottom: 10px;
    line-height: 1.25;
  }
  .cream-panel-header p {
    font-size: 15px;
    color: #6b3a2a;
    line-height: 1.7;
    font-weight: 300;
  }
  .questions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 56px;
    max-width: 1060px;
    margin: 0 auto;
    text-align: left;
  }
  .question-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a1a1a;
    font-size: 14.5px;
    line-height: 1.62;
    font-weight: 400;
  }
  .question-item::before {
    content: '›';
    color: #C9A84C;
    font-size: 22px;
    line-height: 1.2;
    flex-shrink: 0;
    font-weight: 700;
  }
  @media (max-width:560px) {
    .questions-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px 24px;
    }
    .question-item {
      font-size: 13.5px;
      line-height: 1.55;
    }
    .welcome .btn-gold {
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    .hero h1,
    .welcome h2 {
      text-align: center;
    }
    .hero-rule,
    .welcome .gold-divider-left {
      margin-left: auto;
      margin-right: auto;
    }
    .features-wrap {
      padding: 8px 0 34px;
    }
    .features {
      gap: 4px;
    }
    .feature {
      padding: 10px 18px;
    }
    .feature-icon {
      margin-bottom: 8px;
    }
    .story-hero {
      padding-top: 42px;
    }
    .contact-main {
      padding: 48px 28px !important;
    }
    .contact-grid {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }
    .contact-intro {
      order: 1;
    }
    .contact-card {
      order: 2;
    }
  }
