/* ============================================
   OXFORD TALKS — DESIGN SYSTEM v5
   Restyle only — original markup/content untouched.
   White paper, near-black dark hero/footer, #DC343B red accent,
   Poppins carbon-copy font, modernised card system.
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500;1,600&display=swap');

:root {
  /* ---- Core palette — neutral greys + red accent (no brown/amber tones) ---- */
  --paper:        #FFFFFF;
  --paper-alt:    #F7F6F5;
  --paper-line:   rgba(15,15,15,0.12);
  --paper-line-soft: rgba(15,15,15,0.07);
  --ink:          #141414;
  --ink-soft:     #322F2E;
  --stone:        #656362;
  --stone-2:      #9B9896;
  --espresso:     #120A0B;
  --espresso-2:   #221012;
  --espresso-3:   #2b1315;
  --espresso-line:rgba(250,240,240,0.15);
  --rust:         #DC343B;
  --rust-rgb:     220, 52, 59;
  --rust-deep:    #A8262C;
  --rust-light:   #EF6F73;
  --rust-light-rgb: 239, 111, 115;
  --rust-wash:    #FBE2E3;
  --cream-text:   #FAF5F5;
  --stone-light:  rgba(250,245,245,0.66);

  /* ---- Semantic aliases (original stylesheet's names, remapped) ---- */
  --primary:        var(--rust);
  --primary-hover:  var(--rust-deep);
  --primary-light:  var(--rust-wash);
  --primary-dark:   var(--rust-deep);
  --bg-white:       var(--paper);
  --bg-gray:        var(--paper-alt);
  --bg-dark:        var(--espresso);
  --bg-dark-soft:   var(--espresso-2);
  --text-primary:   var(--ink);
  --text-secondary: var(--stone);
  --text-muted:     var(--stone-2);
  --text-white:     var(--cream-text);
  --text-white-muted: var(--stone-light);
  --border:         var(--paper-line);
  --border-light:   var(--paper-line-soft);
  --border-dark:    var(--espresso-line);

  --font-sans:  'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Poppins', var(--font-sans);
  --font-mono:  'Poppins', var(--font-sans);

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;

  --radius-sm: 6px; --radius-md: 8px; --radius-lg: 10px; --radius-xl: 16px; --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(21,18,14,0.05);
  --shadow-md: 0 10px 28px rgba(21,18,14,0.08);
  --shadow-lg: 0 24px 56px rgba(21,18,14,0.12);
  --shadow-xl: 0 30px 70px rgba(21,18,14,0.35);

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-pop:   cubic-bezier(0.34, 1.56, 0.64, 1);

  --transition-fast:  150ms var(--ease-soft);
  --transition-base:  280ms var(--ease-out);
  --transition-slow:  480ms var(--ease-out);
  --transition-bounce: 520ms var(--ease-pop);

  --max-w: 1200px; --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--paper); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--rust); color: var(--cream-text); }

h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--stone); line-height: 1.7; }

.ipa { font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.01em; font-size: 0.875rem; color: var(--rust); text-transform: lowercase; }

/* ---- Eyebrow — "Word Pair." editorial label ---- */
.eyebrow { display: inline-flex; align-items: baseline; gap: 0; font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.01em; text-transform: capitalize; color: var(--rust); font-weight: 600; margin-bottom: var(--space-4); border-bottom: 1.5px solid var(--rust); padding-bottom: 4px; }
.eyebrow::after { content: "."; }
.eyebrow::before { display: none; }
.eyebrow.center { justify-content: center; margin-left: auto; margin-right: auto; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-24) 0; }
.section-alt { background: var(--paper-alt); }
.section-dark { background: var(--espresso); color: var(--cream-text); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream-text); }
.section-dark p { color: var(--stone-light); }
.section-head { max-width: 640px; margin-bottom: var(--space-16); }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-top: var(--space-2); }
.section-head p { margin-top: var(--space-4); font-size: 1.125rem; }

/* ---- Nav ---- */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); background: rgba(255,255,255,0.92); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); border-bottom: 1px solid var(--paper-line); transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base); }
.site-nav.scrolled { box-shadow: var(--shadow-sm); }
.site-nav .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand strong { font-family: var(--font-sans); font-size: 1.3rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.brand small { font-family: var(--font-sans); font-size: 0.625rem; letter-spacing: 0.13em; color: var(--rust); text-transform: uppercase; font-weight: 600; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: var(--space-8); }
.nav-links a { font-size: 0.9375rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: var(--space-2) 0; transition: color var(--transition-fast); }
.nav-links a:hover, .nav-links a.active { color: var(--rust); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: var(--rust); transform: scaleX(0); transform-origin: left; transition: transform var(--transition-base); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: var(--space-4); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--paper-line); border-radius: 50%; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; z-index: 1001; transition: all var(--transition-fast); }
.nav-toggle span { display: block; width: 16px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all var(--transition-base); }
.nav-toggle.active { border-color: var(--ink); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Transparent overlay nav for the homepage hero — solidifies once scrolled past it.
   Pure presentation hook (a class name), no content is added or changed. */
.site-nav.nav-overlay { background: transparent; border-bottom-color: transparent; }
.site-nav.nav-overlay .brand strong { color: var(--cream-text); }
.site-nav.nav-overlay .brand small { color: var(--rust-light); }
.site-nav.nav-overlay .nav-links a { color: rgba(250,245,245,0.82); }
.site-nav.nav-overlay .nav-links a:hover, .site-nav.nav-overlay .nav-links a.active { color: var(--cream-text); }
.site-nav.nav-overlay .nav-toggle { border-color: rgba(250,245,245,0.4); }
.site-nav.nav-overlay .nav-toggle span { background: var(--cream-text); }
.site-nav.nav-overlay .nav-cta .btn-primary { background: transparent; border-color: rgba(250,245,245,0.55); color: var(--cream-text); }
.site-nav.nav-overlay .nav-cta .btn-primary:hover { background: rgba(250,245,245,0.12); border-color: var(--cream-text); }
.site-nav.nav-overlay.scrolled { background: rgba(255,255,255,0.94); border-bottom-color: var(--paper-line); }
.site-nav.nav-overlay.scrolled .brand strong { color: var(--ink); }
.site-nav.nav-overlay.scrolled .brand small { color: var(--rust); }
.site-nav.nav-overlay.scrolled .nav-links a { color: var(--ink-soft); }
.site-nav.nav-overlay.scrolled .nav-links a:hover, .site-nav.nav-overlay.scrolled .nav-links a.active { color: var(--rust); }
.site-nav.nav-overlay.scrolled .nav-toggle { border-color: var(--paper-line); }
.site-nav.nav-overlay.scrolled .nav-toggle span { background: var(--ink); }
.site-nav.nav-overlay.scrolled .nav-cta .btn-primary { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.site-nav.nav-overlay.scrolled .nav-cta .btn-primary:hover { background: var(--rust); border-color: var(--rust); }

/* ---- Buttons — rectangular by default ("Learn More"/"Get a Quote" style),
   pill for nav CTA + hero CTAs + final CTA ("Request a Consultation"/"Find a Lawyer" style) ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); font-family: var(--font-sans); font-weight: 600; font-size: 0.9375rem; padding: 13px 26px; border-radius: var(--radius-md); border: 1.5px solid transparent; cursor: pointer; transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base); white-space: nowrap; position: relative; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--rust); border-color: var(--rust); box-shadow: 0 10px 24px rgba(var(--rust-rgb),0.3); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline::after { content: "→"; display: inline-block; margin-left: 2px; transition: transform var(--transition-base); }
.btn-outline:hover::after { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--stone); border-color: transparent; padding: 12px 20px; }
.btn-ghost:hover { color: var(--rust); }
.btn-white { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-white:hover { background: var(--rust); border-color: var(--rust); color: var(--cream-text); }
.btn-dark { background: var(--espresso); color: var(--cream-text); border-color: var(--espresso); }
.btn-dark:hover { background: var(--rust); border-color: var(--rust); }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-full); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; border-radius: var(--radius-full); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta .btn, .final-cta .btn { border-radius: var(--radius-full); }

/* Buttons on dark grounds (hero / final CTA / booking card) read as light pills */
.hero .btn-primary, .final-cta .btn-primary, .booking-card .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero .btn-primary:hover, .final-cta .btn-primary:hover, .booking-card .btn-primary:hover { background: var(--rust); color: var(--cream-text); border-color: var(--rust); }
.hero .btn-outline, .final-cta .btn-outline { border-color: rgba(250,245,245,0.4); color: var(--cream-text); }
.hero .btn-outline:hover, .final-cta .btn-outline:hover { background: rgba(250,245,245,0.1); border-color: var(--cream-text); color: var(--cream-text); }

/* ---- Hero (original hero-grid / hero-content / hero-visual / hero-card markup) ---- */
.hero {
  padding-top: calc(var(--nav-h) + var(--space-24));
  padding-bottom: var(--space-24);
  background:
    radial-gradient(ellipse 900px 520px at 88% -8%, rgba(var(--rust-light-rgb),0.18), transparent 60%),
    radial-gradient(ellipse 700px 520px at 2% 108%, rgba(var(--rust-rgb),0.16), transparent 55%),
    linear-gradient(160deg, var(--espresso) 0%, var(--espresso-2) 55%, var(--espresso) 100%);
  color: var(--cream-text);
  position: relative; overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; pointer-events: none; opacity: 0.6;
}
.hero-bg-shape { position: absolute; top: -15%; right: -8%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(var(--rust-light-rgb),0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; position: relative; z-index: 2; }
.hero-content { position: relative; z-index: 2; opacity: 0; animation: heroRise 0.9s var(--ease-out) 0.1s forwards; }
.hero-tag { display: inline-flex; align-items: center; font-family: var(--font-sans); font-size: 0.8125rem; color: var(--rust-light); background: rgba(var(--rust-light-rgb),0.1); border: 1px solid rgba(var(--rust-light-rgb),0.3); padding: 9px 18px; border-radius: var(--radius-full); margin-bottom: var(--space-6); font-weight: 500; letter-spacing: 0.01em; }
.hero h1 { color: var(--cream-text); font-size: clamp(2.75rem, 5.5vw, 4.5rem); line-height: 1.05; margin-bottom: var(--space-6); }
.hero h1 em { font-style: italic; color: var(--rust-light); font-weight: 400; }
.hero p.lead { font-size: 1.125rem; color: var(--stone-light); max-width: 520px; margin-bottom: var(--space-8); line-height: 1.7; }
.hero-ctas { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; opacity: 0; animation: heroRise 0.9s var(--ease-out) 0.3s forwards; }
@keyframes heroRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-card { background: rgba(251,247,239,0.045); backdrop-filter: blur(6px); border: 1px solid rgba(251,247,239,0.14); border-radius: var(--radius-lg); padding: var(--space-8); width: 100%; max-width: 380px; box-shadow: var(--shadow-xl); position: relative; z-index: 2; transition: transform var(--transition-base); }
.hero-card:hover { transform: translateY(-4px); }
.hero-card .ipa { display: block; margin-bottom: var(--space-4); font-size: 0.8125rem; color: var(--rust-light); }
.hero-card h3 { font-family: var(--font-sans); font-size: 1.5rem; margin-bottom: var(--space-3); font-weight: 600; color: var(--cream-text); }
.hero-card p { color: var(--stone-light); font-size: 0.9375rem; margin-bottom: var(--space-6); }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); padding-top: var(--space-6); border-top: 1px solid rgba(251,247,239,0.14); }
.hero-stats div b { display: block; font-size: 1.5rem; color: var(--cream-text); font-weight: 700; margin-bottom: 2px; letter-spacing: -0.02em; }
.hero-stats div span { font-size: 0.6875rem; color: var(--stone-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* ---- Cards / Pillars — flat, thin divider lines between items ---- */
.card { background: transparent; border: none; border-radius: 0; padding: var(--space-8) var(--space-6); transition: opacity var(--transition-base); position: relative; border-left: 1px solid var(--paper-line); }
.grid-3 .card:first-child, .grid-2 .card:first-child { border-left: none; padding-left: 0; }
.card:hover { opacity: 0.7; }
.section-alt .card { background: transparent; }
.card .ipa { display: block; margin-bottom: var(--space-4); font-size: 0.8125rem; color: var(--stone-2); }
.card h3 { margin-bottom: var(--space-3); font-size: 1.25rem; }
.card p { font-size: 0.9375rem; color: var(--stone); line-height: 1.65; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--paper-line); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--paper-line); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--paper-line); }
.pillar { background: transparent; border: none; border-left: 1px solid var(--paper-line); border-radius: 0; padding: var(--space-8) var(--space-6) var(--space-8) var(--space-6); transition: opacity var(--transition-base); }
.pillar:first-child { border-left: none; padding-left: 0; }
.pillar:hover { opacity: 0.7; }
.pillar .ipa { display: block; margin-bottom: var(--space-4); font-size: 0.8125rem; color: var(--stone-2); }
.pillar h3 { font-size: 1.125rem; margin-bottom: var(--space-3); }
.pillar p { font-size: 0.9375rem; color: var(--stone); line-height: 1.65; }

/* ---- Programs list — flat numbered rows, hairline-divided ---- */
.programs-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--paper-line); }
.program-row { display: grid; grid-template-columns: 80px 1fr auto; gap: var(--space-8); align-items: center; padding: var(--space-7, 28px) 0; background: transparent; border: none; border-bottom: 1px solid var(--paper-line); border-radius: 0; transition: padding var(--transition-base); }
.program-row:hover { padding-left: var(--space-3); }
.program-row .ipa { font-size: 0.9375rem; color: var(--stone-2); font-weight: 500; }
.program-row h3 { font-size: 1.25rem; margin-bottom: var(--space-1); }
.program-row:hover h3 { color: var(--rust); }
.program-row p { font-size: 0.9375rem; color: var(--stone); }
.program-row .ptag { font-family: var(--font-sans); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--stone); border: 1px solid var(--paper-line); padding: 7px 16px; border-radius: var(--radius-full); white-space: nowrap; font-weight: 600; }
.services-list { display: flex; flex-direction: column; border-top: 1px solid var(--paper-line); }
.service-row { display: grid; grid-template-columns: 1fr auto; gap: var(--space-8); align-items: center; padding: var(--space-7, 28px) 0; border-bottom: 1px solid var(--paper-line); transition: padding var(--transition-base); }
.service-row:hover { padding-left: var(--space-3); }
.service-row h3 { font-size: 1.25rem; margin-bottom: var(--space-1); }
.service-row:hover h3 { color: var(--rust); }
.service-row p { font-size: 0.9375rem; color: var(--stone); }
.service-enquire { justify-self: end; }

/* ---- Split panel ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--paper-line); }
.split > div { padding: var(--space-16); }
.split-left { background: #120A0B; color: var(--cream-text); }
.split-left h3 { color: var(--cream-text); }
.split-left p.desc { color: var(--stone-light); }
.split-right { background: var(--paper); }
.split-right p.desc { color: var(--stone); }
.split h3 { font-size: 1.75rem; margin-bottom: var(--space-4); }
.split p.desc { font-size: 1rem; line-height: 1.7; margin-bottom: var(--space-6); }
.taglist { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.taglist li { font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; padding: 8px 16px; border: 1px solid var(--paper-line); border-radius: var(--radius-full); color: var(--stone); font-weight: 600; transition: all var(--transition-fast); }
.taglist li:hover { border-color: var(--rust); color: var(--rust); background: var(--rust-wash); }
.split-left .taglist li { border-color: var(--espresso-line); color: var(--stone-light); }
.split-left .taglist li:hover { border-color: var(--rust-light); color: var(--cream-text); background: rgba(var(--rust-light-rgb),0.14); }

/* ---- Coach page ---- */
.coach-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-16); align-items: center; }
.coach-portrait { background: radial-gradient(circle at 75% 18%, rgba(var(--rust-light-rgb),0.4), transparent 55%), linear-gradient(160deg, var(--espresso-3) 0%, var(--espresso) 100%); aspect-ratio: 4/5; border-radius: var(--radius-lg); position: relative; display: flex; align-items: flex-end; padding: var(--space-8); overflow: hidden; box-shadow: var(--shadow-xl); }
.coach-portrait::before { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"); mix-blend-mode: overlay; }
.coach-portrait .cap { position: relative; z-index: 2; }
.coach-portrait .cap .ipa { color: var(--rust-light); font-size: 0.8125rem; display: block; margin-bottom: var(--space-2); }
.coach-portrait .cap strong { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 600; color: var(--cream-text); display: block; }
.coach-body h2 { margin-bottom: var(--space-6); }
.coach-body > p { color: var(--stone); font-size: 1.0625rem; line-height: 1.75; margin-bottom: var(--space-4); }
.highlights { list-style: none; padding: 0; margin-top: var(--space-8); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); border-top: 1px solid var(--paper-line); padding-top: var(--space-8); }
.highlights li { display: flex; align-items: flex-start; gap: var(--space-3); font-size: 0.9375rem; font-weight: 500; color: var(--ink); }
.highlights li::before { content: ""; width: 6px; height: 6px; background: var(--rust); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--paper-line); }
.step { background: transparent; border: none; border-left: 1px solid var(--paper-line); border-radius: 0; padding: var(--space-10) var(--space-8); position: relative; transition: opacity var(--transition-base); }
.step:first-child { border-left: none; }
.step:hover { opacity: 0.75; }
.step .num { font-family: var(--font-sans); color: var(--stone-2); font-size: 0.8125rem; display: block; margin-bottom: var(--space-5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.step h3 { font-size: 1.25rem; margin-bottom: var(--space-3); }
.step p { color: var(--stone); font-size: 0.9375rem; line-height: 1.65; }

/* ---- Testimonials ---- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--paper-line); }
.testimonial { background: transparent; border: none; border-left: 1px solid var(--paper-line); border-radius: 0; padding: var(--space-8); transition: opacity var(--transition-base); }
.testimonial:first-child { border-left: none; }
.testimonial:hover { opacity: 0.75; }
.testimonial .mark { font-family: var(--font-sans); font-size: 3rem; color: var(--rust); line-height: 1; display: block; margin-bottom: var(--space-2); opacity: 0.55; }
.testimonial p { font-family: var(--font-sans); font-style: italic; font-size: 1.125rem; color: var(--ink); line-height: 1.55; margin-bottom: var(--space-6); font-weight: 400; }
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-author .avatar { width: 40px; height: 40px; border-radius: 50%; background: #A8262C; display: flex; align-items: center; justify-content: center; color: var(--cream-text); font-weight: 600; font-size: 0.875rem; }
.testimonial-author .name { font-weight: 600; font-size: 0.9375rem; color: var(--ink); }
.testimonial-author .role { font-size: 0.8125rem; color: var(--stone); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: none; background: transparent; margin-bottom: 0; border-radius: 0; overflow: visible; border-bottom: 1px solid var(--paper-line); transition: all var(--transition-base); }
.faq-item:first-child { border-top: 1px solid var(--paper-line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: var(--space-6) 0; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); cursor: pointer; font-family: var(--font-sans); font-size: 1.0625rem; font-weight: 500; color: var(--ink); transition: color var(--transition-fast); }
.faq-q:hover { color: var(--rust); }
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; background: transparent; border: 1.5px solid var(--paper-line); color: var(--rust); font-size: 1.1rem; font-weight: 400; display: flex; align-items: center; justify-content: center; transition: all var(--transition-base); flex-shrink: 0; margin-left: var(--space-4); }
.faq-item.open .faq-q .plus { background: var(--rust); border-color: var(--rust); color: var(--cream-text); transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--rust); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow), padding var(--transition-slow); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 0 var(--space-6); color: var(--stone); font-size: 0.9375rem; line-height: 1.7; max-width: 640px; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); }
.contact-info h2 { margin-bottom: var(--space-6); }
.contact-info > p { color: var(--stone); font-size: 1.0625rem; line-height: 1.7; margin-bottom: var(--space-10); max-width: 440px; }
.contact-methods { display: flex; flex-direction: column; }
.contact-method { display: flex; align-items: center; gap: var(--space-5); padding: var(--space-5) 0; border-top: 1px solid var(--paper-line); transition: all var(--transition-fast); }
.contact-method:last-child { border-bottom: 1px solid var(--paper-line); }
.contact-method:hover { padding-left: var(--space-2); }
.contact-method .icn { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 1.5px solid var(--rust); color: var(--rust); display: flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-size: 1rem; flex-shrink: 0; transition: all var(--transition-base); }
.contact-method:hover .icn { background: var(--rust); color: var(--cream-text); transform: scale(1.08); }
.contact-method .label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); display: block; margin-bottom: 2px; font-weight: 600; }
.contact-method .val { font-weight: 600; font-size: 1rem; color: var(--ink); transition: color var(--transition-fast); }
.contact-method a.val:hover { color: var(--rust); }

.booking-card { background: var(--espresso); color: var(--cream-text); padding: var(--space-10); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.booking-card::before { content: ""; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(var(--rust-light-rgb),0.14) 0%, transparent 60%); pointer-events: none; }
.booking-card .eyebrow { color: var(--rust-light); border-bottom-color: rgba(var(--rust-light-rgb),0.5); margin-bottom: var(--space-4); }
.booking-card h3 { color: var(--cream-text); font-size: 1.75rem; margin-bottom: var(--space-3); }
.booking-card > p { color: var(--stone-light); font-size: 0.9375rem; margin-bottom: var(--space-8); }
.form-row { margin-bottom: var(--space-5); position: relative; z-index: 2; }
.form-row label { display: block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--stone-light); margin-bottom: var(--space-2); font-weight: 600; }
.form-row input, .form-row select, .form-row textarea { width: 100%; background: rgb(88, 27, 27); border: 1px solid rgba(15,15,15,0.12); color: white; padding: 14px 16px; font-family: var(--font-sans); font-size: 0.9375rem; border-radius: var(--radius-md); transition: all var(--transition-fast); }
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(245, 239, 239, 0.45); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--rust-light); background: rgba(77, 32, 32, 0.98); box-shadow: 0 0 0 3px rgba(var(--rust-light-rgb),0.18); }
.form-row select { color: var(--ink); background: rgba(255,255,255,0.95); color-scheme: light; }
.form-row select option { background: var(--paper); color: var(--ink); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.booking-card .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; margin-top: var(--space-2); border-radius: var(--radius-md); }
.form-note { font-size: 0.8125rem; color: rgba(250,245,245,0.4); margin-top: var(--space-4); line-height: 1.6; text-align: center; }

/* ---- Final CTA ---- */
.final-cta { background: linear-gradient(160deg, var(--espresso) 0%, var(--espresso-2) 60%, var(--espresso) 100%); color: var(--cream-text); text-align: center; padding: var(--space-24) 0; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--rust-light-rgb),0.12) 0%, transparent 70%); pointer-events: none; }
.final-cta .eyebrow { color: var(--rust-light); justify-content: center; border-bottom-color: rgba(var(--rust-light-rgb),0.5); }
.final-cta h2 { color: var(--cream-text); max-width: 700px; margin: var(--space-6) auto var(--space-4); position: relative; z-index: 2; }
.final-cta p { color: var(--stone-light); max-width: 520px; margin: 0 auto var(--space-10); font-size: 1.125rem; position: relative; z-index: 2; }
.final-cta .hero-ctas { justify-content: center; position: relative; z-index: 2; }

/* ---- Footer ---- */
footer { background: var(--espresso); color: var(--stone-light); padding: var(--space-16) 0 var(--space-8); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: var(--space-10); border-bottom: 1px solid var(--espresso-line); flex-wrap: wrap; gap: var(--space-8); }
.footer-top .brand strong { color: var(--cream-text); }
.footer-top .brand small { color: var(--rust-light); }
.footer-desc { max-width: 280px; margin-top: var(--space-4); font-size: 0.875rem; color: rgba(250,245,245,0.42); line-height: 1.6; }
.footer-links { display: flex; gap: var(--space-16); flex-wrap: wrap; }
.footer-col h4 { color: var(--cream-text); font-family: var(--font-sans); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-5); font-weight: 600; }
.footer-col a, .footer-col span { display: block; font-size: 0.875rem; margin-bottom: var(--space-3); color: rgba(250,245,245,0.55); transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--rust-light); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: var(--space-8); font-size: 0.8125rem; color: rgba(250,245,245,0.32); flex-wrap: wrap; gap: var(--space-4); }

/* ---- Footer Logo ---- */
.logo-footer {
  display: block;
  position: relative;
  height: 140px;
  width: auto;
  object-fit: contain;
}

/* ---- WhatsApp float ---- */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 2000; background: #25D366; color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,0.38); transition: all var(--transition-bounce); }
.wa-float:hover { transform: scale(1.1) rotate(6deg); box-shadow: 0 14px 38px rgba(37,211,102,0.48); }
.wa-float svg { width: 26px; height: 26px; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); will-change: transform, opacity; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---- Mobile menu ---- */
.mobile-menu { position: fixed; inset: 0; background: var(--paper); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-8); opacity: 0; pointer-events: none; transition: opacity var(--transition-base); }
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 500; color: var(--ink); transition: color var(--transition-fast); }
.mobile-menu a:hover { color: var(--rust); }
.mobile-menu a.active { color: var(--rust); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .hero-visual { order: -1; }
  .coach-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .split { grid-template-columns: 1fr; }
  .pillars, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(3) { border-left: none; }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid var(--paper-line); }
  .step:first-child { border-top: none; }
  .testimonials { grid-template-columns: 1fr; }
  .testimonial { border-left: none; border-top: 1px solid var(--paper-line); }
  .testimonial:first-child { border-top: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; border-top: none; }
  .card { border-left: none; border-top: 1px solid var(--paper-line); padding-left: 0; }
  .grid-3 .card:first-child, .grid-2 .card:first-child { border-top: none; }
  .logo-footer { height: 130px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: var(--space-16) 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + var(--space-16)); padding-bottom: var(--space-16); }
  .hero h1 { font-size: 2.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .grid-2, .grid-3, .grid-4, .pillars, .steps, .testimonials { grid-template-columns: 1fr; }
  .pillar { border-left: none; border-top: 1px solid var(--paper-line); padding-left: 0; }
  .pillar:first-child { border-top: none; }
  .program-row { grid-template-columns: 1fr; gap: var(--space-4); }
  .program-row .ptag { justify-self: start; }
  .service-row { grid-template-columns: 1fr; gap: var(--space-4); }
  .service-enquire { justify-self: start; }
  .highlights { grid-template-columns: 1fr; }
  .split > div { padding: var(--space-10); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: var(--space-10); }
  .footer-links { gap: var(--space-10); }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--space-2); }
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 24px; height: 24px; }
  .logo-footer { height: 120px; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .hero h1 { font-size: 2.25rem; }
  .section-head h2 { font-size: 1.75rem; }
  .card, .pillar, .step, .testimonial { padding: var(--space-6); }
  .booking-card { padding: var(--space-6); }
  .faq-q { padding: var(--space-5) 0; font-size: 1rem; }
  .faq-a p { padding: 0 0 var(--space-5); }
  .logo-footer { height: 110px; }
}



.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18,10,11,0.82) 0%, rgba(34,16,18,0.78) 55%, rgba(18,10,11,0.85) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18,10,11,0.82) 0%, rgba(34,16,18,0.78) 60%, rgba(18,10,11,0.85) 100%);
  z-index: 1;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}




/* img */
/* Top row: text + image side by side */
.why-intro {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px; /* pushes pillars below the image */
}

.why-image img {
  width: 450px;
  height: 330px;   /* tall image that exceeds the text height */
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-intro {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .why-image {
    order: -1; /* image moves above text on tablet/mobile */
    margin-bottom: 24px;
  }
  .why-image img {
    width: 100%;
    height: 360px;
  }
}

@media (max-width: 640px) {
  .why-image img {
    height: 280px;
  }
}


/* corporate */
.bg-image-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.bg-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
  border-radius: inherit;
}

.bg-image-card > * {
  position: relative;
  z-index: 1;
}

.bg-image-card .eyebrow,
.bg-image-card h3,
.bg-image-card .desc,
.bg-image-card .taglist li {
  color: #fff;
}

.bg-image-card .taglist li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-bg {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  isolation: isolate;
}

.brand-logo-bg::before {
  content: "";
  position: absolute;
  z-index: -1;

  width: 125px;
  height: 75px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.411) 0%,
    rgba(255, 255, 255, 0.24) 35%,
    rgba(255, 255, 255, 0.12) 60%,
    rgba(255, 255, 255, 0) 78%
  );

  pointer-events: none;
}

.brand-logo {
  display: block;
  position: relative;
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 600px) {
  .site-nav {
    overflow: hidden;
  }

  .brand-logo-bg {
    padding: 0;
    height: 100%;
    position: relative;
  }

  .brand-logo-bg::before {
    width: 115px;
    height: 65px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.60) 0%,
      rgba(255, 255, 255, 0.30) 35%,
      rgba(255, 255, 255, 0.08) 60%,
      transparent 75%
    );
  }

  .brand-logo {
    height: 55px;
    width: auto;
    max-width: 150px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .brand-logo-bg::before {
    width: 110px;
    height: 80px;
  }

  .brand-logo {
    height: 60px;
  }

  .logo-footer {
    height: 100px;
  }
}


.mobile-menu #navWaBtnMobile {
  color: #ffffff !important;
  text-decoration: none;
}

/* Hover */
.mobile-menu #navWaBtnMobile:hover {
  color: #ffffff !important;
  background-color: #c92330 !important;
}

/* Visited */
.mobile-menu #navWaBtnMobile:visited {
  color: #ffffff !important;
}

/* Active */
.mobile-menu #navWaBtnMobile:active {
  color: #ffffff !important;
}

.brand-logo-bg::before {
  width: 220px;
  height: 75px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.781) 0%,
    rgba(255, 255, 255, 0.38) 35%,
    rgba(255, 255, 255, 0.12) 60%,
    rgba(255, 255, 255, 0) 78%
  );
}