/* ============================================================
   bp.css — Beach Point Design System
   Swimming Teaching on the Yorkshire Coast
   Version: 1.0.0 | © 2026 Beach Point
   ============================================================ */

/* ============================================================
   1. FONT IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   2. ROOT DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Colour palette --- */
  --teal:        #004E5F;
  --teal-mid:    #006B80;
  --teal-light:  #0096B4;
  --ocean:       #00B4D8;
  --ocean-pale:  #E0F7FA;
  --sand:        #F7B731;
  --sand-warm:   #E5A020;
  --sand-pale:   #FFF8E6;
  --white:       #FFFFFF;
  --off-white:   #F5F9FA;
  --grey-100:    #EEF2F5;
  --grey-200:    #DDE4EA;
  --grey-400:    #8FA3B1;
  --grey-600:    #4A6070;
  --grey-800:    #1E3040;

  /* --- Typography scale (fluid) --- */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --text-xs:   clamp(0.8rem, 1.4vw, 0.875rem);
  --text-sm:   clamp(0.925rem, 1.6vw, 1rem);
  --text-base: clamp(1.0625rem, 1.8vw, 1.15rem);
  --text-lg:   clamp(1.1rem, 2vw, 1.25rem);
  --text-xl:   clamp(1.2rem, 2.5vw, 1.5rem);
  --text-2xl:  clamp(1.5rem, 3vw, 2rem);
  --text-3xl:  clamp(2rem, 4vw, 2.75rem);
  --text-4xl:  clamp(2.5rem, 5vw, 3.5rem);
  --text-hero: clamp(2.8rem, 7vw, 5.5rem);

  /* --- Spacing scale --- */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;

  /* --- Layout --- */
  --max-w:      1200px;
  --max-w-wide: 1400px;
  --nav-h:      72px;

  /* --- Border radii --- */
  --r-sm:   6px;   --r-md:  12px; --r-lg: 20px;
  --r-xl:   28px;  --r-2xl: 40px; --r-full: 999px;

  /* --- Shadows (teal-shifted) --- */
  --shadow-sm:   0 1px 4px rgba(0,50,70,.08);
  --shadow-md:   0 4px 16px rgba(0,50,70,.12);
  --shadow-lg:   0 8px 32px rgba(0,50,70,.16);
  --shadow-xl:   0 16px 60px rgba(0,50,70,.22);
  --shadow-card: 0 2px 20px rgba(0,50,70,.10);
  --shadow-glow: 0 8px 24px rgba(247,183,49,.35);

  /* --- Transitions --- */
  --t-fast:   150ms ease;
  --t-mid:    280ms ease;
  --t-slow:   450ms ease;
  --t-spring: 350ms cubic-bezier(.34,1.56,.64,1);
}

/* ============================================================
   3. RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--grey-800);
}

h1 { font-size: var(--text-4xl); font-weight: 800; }
h2 { font-size: var(--text-3xl); font-weight: 700; }
h3 { font-size: var(--text-xl);  font-weight: 700; }
h4 { font-size: var(--text-lg);  font-weight: 600; }
h5 { font-size: var(--text-base); font-weight: 600; }
h6 { font-size: var(--text-sm);  font-weight: 600; }

p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--grey-600);
}

strong { font-weight: 600; color: var(--grey-800); }

.lead {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--grey-600);
}

/* ============================================================
   5. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.container-wide {
  width: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.section {
  padding-block: var(--space-20);
}

.section-sm {
  padding-block: var(--space-12);
}

.section-lg {
  padding-block: var(--space-32);
}

/* ============================================================
   6. BACKGROUND UTILITIES
   ============================================================ */
.bg-teal     { background: var(--teal); }
.bg-teal-mid { background: var(--teal-mid); }
.bg-white    { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-ocean-pale { background: var(--ocean-pale); }
.bg-sand-pale  { background: var(--sand-pale); }

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t-mid), box-shadow var(--t-mid);
  background: transparent;
}

.nav.scrolled {
  background: rgba(0, 40, 55, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: var(--space-8);
  gap: var(--space-8);
}

/* Brand wordmark */
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.nav-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-links > li {
  position: relative;
}

.nav-links a,
.nav-links button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links a.active {
  color: var(--ocean);
}

/* Dropdown arrow */
.nav-dropdown-btn::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: var(--space-1);
  transition: transform var(--t-fast);
}

.nav-links li:hover .nav-dropdown-btn::after,
.nav-links li.open .nav-dropdown-btn::after {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(0, 40, 55, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t-mid), transform var(--t-mid), visibility var(--t-mid);
  pointer-events: none;
}

.nav-links li:hover .nav-dropdown,
.nav-links li.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
}

.nav-dropdown a:hover {
  background: rgba(0,180,216,0.12);
  color: var(--ocean);
}

.nav-dropdown-ext::after {
  content: ' ↗';
  opacity: 0.6;
  font-size: 0.75em;
}

/* Nav CTA button */
.nav-cta {
  background: var(--sand) !important;
  color: var(--teal) !important;
  font-weight: 600 !important;
  border-radius: var(--r-full) !important;
  padding: var(--space-2) var(--space-6) !important;
  transition: background var(--t-fast), transform var(--t-spring) !important;
}

.nav-cta:hover {
  background: var(--sand-warm) !important;
  transform: translateY(-1px) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  border-radius: var(--r-sm);
  cursor: pointer;
  background: none;
  border: none;
  transition: background var(--t-fast);
}

.nav-hamburger:hover {
  background: rgba(255,255,255,0.08);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-mid), width var(--t-mid);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 30, 45, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-6) var(--space-8);
  flex-direction: column;
  gap: var(--space-2);
  overflow-y: auto;
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--t-mid), transform var(--t-mid);
  pointer-events: none;
}

.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile a {
  display: block;
  padding: var(--space-4) var(--space-2);
  color: rgba(255,255,255,0.88);
  font-size: var(--text-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.nav-mobile a:hover {
  color: var(--ocean);
  padding-left: var(--space-4);
}

.nav-mobile a.mobile-sub {
  font-size: var(--text-base);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  padding-left: var(--space-4);
  font-family: var(--font-body);
  border-bottom: none;
}

.nav-mobile a.mobile-sub:hover {
  color: var(--ocean);
  padding-left: var(--space-8);
}

.nav-mobile .mobile-group-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ocean);
  font-weight: 600;
  padding: var(--space-5) var(--space-2) var(--space-2);
  font-family: var(--font-body);
}

.nav-mobile .mobile-cta {
  display: inline-block;
  margin-top: var(--space-6);
  background: var(--sand);
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  border-radius: var(--r-full);
  padding: var(--space-4) var(--space-8);
  text-align: center;
  transition: background var(--t-fast);
}

.nav-mobile .mobile-cta:hover {
  background: var(--sand-warm);
  padding-left: var(--space-8);
}

/* ============================================================
   8. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.65em 1.5em;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-spring), box-shadow var(--t-fast);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-2px);
}

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

/* Primary — sand/gold */
.btn-primary {
  background: var(--sand);
  color: var(--teal);
  border-color: var(--sand);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--sand-warm);
  border-color: var(--sand-warm);
  box-shadow: 0 10px 30px rgba(247,183,49,.5);
}

/* Outline — for dark backgrounds */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

/* Teal */
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-md);
}

/* Sizes */
.btn-lg {
  padding: 0.8em 2em;
  font-size: var(--text-lg);
}

.btn-sm {
  padding: 0.45em 1.1em;
  font-size: var(--text-sm);
}

/* Group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* ============================================================
   9. BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-ocean {
  background: rgba(0,180,216,0.15);
  color: var(--ocean);
  border: 1px solid rgba(0,180,216,0.25);
}

.badge-sand {
  background: rgba(247,183,49,0.15);
  color: var(--sand-warm);
  border: 1px solid rgba(247,183,49,0.25);
}

.badge-white {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.18);
}

/* ============================================================
   10. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: linear-gradient(140deg, #002f3a 0%, #004E5F 55%, #006B80 100%);
}

/* Dot-grid texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0,180,216,0.12);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(0,150,180,0.08);
  bottom: 10%;
  left: 10%;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.04); }
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay {
  background: rgba(0, 20, 30, 0.15);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-8);
  padding-block: var(--space-24);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.eyebrow-line {
  width: 32px;
  height: 3px;
  background: var(--ocean);
  border-radius: var(--r-full);
}

.eyebrow-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ocean);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  max-width: 800px;
}

.hero h1 em {
  font-style: normal;
  display: block;
  font-size: 0.62em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-top: var(--space-2);
}

.hero-lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--space-10);
}

.hero-signpost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.hero-signpost a {
  color: var(--ocean);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}

.hero-signpost a:hover {
  color: var(--white);
}

/* Short page hero variant */
.hero-page {
  min-height: 50vh;
  padding-block: var(--space-16) var(--space-12);
}

.hero-page .hero-content {
  padding-block: var(--space-12);
}

/* ============================================================
   11. SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: var(--space-12);
}

.section-header.centered {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.section-eyebrow.centered {
  justify-content: center;
}

.section-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--ocean);
  border-radius: var(--r-full);
}

.section-eyebrow-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* On dark backgrounds */
.section-eyebrow-text.light { color: rgba(255,255,255,0.55); }
.section-eyebrow-line.light { background: rgba(255,255,255,0.3); }

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header h2.text-white { color: var(--white); }

.section-header .lead {
  max-width: 640px;
}

.section-header.centered .lead {
  margin-inline: auto;
}

/* ============================================================
   12. OFFER CARDS (3-col grid)
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.offer-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  transition: background var(--t-mid), transform var(--t-spring), border-color var(--t-mid);
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,180,216,0.3);
  transform: translateY(-4px);
}

.offer-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(0,180,216,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-6);
  transition: background var(--t-mid), transform var(--t-spring);
}

.offer-card:hover .offer-icon {
  background: rgba(0,180,216,0.28);
  transform: scale(1.08);
}

.offer-card h3 {
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.offer-card p {
  color: rgba(255,255,255,0.68);
  font-size: var(--text-sm);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-6);
}

.offer-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--ocean);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: gap var(--t-fast), color var(--t-fast);
  margin-top: auto;
}

.offer-card-link::after {
  content: '→';
  transition: transform var(--t-fast);
}

.offer-card-link:hover {
  color: var(--white);
}

.offer-card-link:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   13. AUDIENCE SPLIT (2-col)
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: var(--space-10);
  border-left: 4px solid transparent;
  transition: border-left-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-spring);
  box-shadow: var(--shadow-card);
}

.audience-card:hover {
  border-left-color: var(--ocean);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.audience-card h3 {
  font-size: var(--text-2xl);
  color: var(--grey-800);
  margin-bottom: var(--space-4);
}

.audience-card p {
  margin-bottom: var(--space-6);
}

.audience-card ul {
  margin-bottom: var(--space-8);
}

.audience-card ul li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  color: var(--grey-600);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.audience-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ocean);
}

.audience-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--teal);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: gap var(--t-fast), color var(--t-fast);
}

.audience-card-link::after {
  content: '→';
  transition: transform var(--t-fast);
}

.audience-card-link:hover {
  color: var(--ocean);
}

.audience-card-link:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   14. FOUNDER CARD
   ============================================================ */
.founder-section {
  padding-block: var(--space-20);
}

.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-12);
  align-items: start;
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
}

.founder-portrait {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 4rem;
  box-shadow: 0 8px 32px rgba(0,78,95,0.3);
  border: 4px solid var(--ocean-pale);
}

.founder-info {}

.founder-name {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--grey-800);
  margin-bottom: var(--space-1);
}

.founder-title {
  font-size: var(--text-base);
  color: var(--ocean);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.founder-bio {
  margin-bottom: var(--space-6);
}

.founder-bio p {
  margin-bottom: var(--space-4);
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--ocean-pale);
  color: var(--teal);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--r-full);
  border: 1px solid rgba(0,180,216,0.2);
}

.credential-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean);
  flex-shrink: 0;
}

.founder-connected {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--grey-400);
}

.founder-connected a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}

.founder-connected a:hover {
  color: var(--ocean);
}

/* ============================================================
   15. CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--sand);
  padding-block: var(--space-16);
}

.cta-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-8);
  text-align: center;
}

.cta-strip h2 {
  font-size: var(--text-3xl);
  color: var(--teal);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.cta-strip p {
  font-size: var(--text-lg);
  color: var(--teal-mid);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.cta-strip-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ============================================================
   16. CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-12);
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
}

.form-grid {
  display: grid;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--grey-800);
}

.form-label span {
  color: var(--ocean);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--grey-200);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  color: var(--grey-800);
  background: var(--off-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.15);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--grey-400);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FA3B1' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Contact aside */
.contact-aside {}

.contact-info-card {
  background: var(--teal);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  color: var(--white);
  margin-bottom: var(--space-6);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(0,180,216,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: var(--text-sm);
}

.contact-detail-text strong {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-detail-text a {
  color: var(--ocean);
  text-decoration: none;
  transition: color var(--t-fast);
}

.contact-detail-text a:hover {
  color: var(--white);
}

/* Steps */
.steps-card {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  border: 1px solid var(--grey-200);
}

.steps-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  color: var(--grey-800);
}

.step-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  align-items: flex-start;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  font-size: var(--text-sm);
  color: var(--grey-600);
  line-height: 1.6;
  padding-top: var(--space-1);
}

/* ============================================================
   17. SISTER BAR
   ============================================================ */
.sister-bar {
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sister-inner {
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.sister-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.sister-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.sister-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--t-fast), background var(--t-fast);
  background: transparent;
  border: 1px solid transparent;
}

.sister-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.sister-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sister-current {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  background: #002f3a;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding: var(--space-16) var(--space-8);
  max-width: var(--max-w-wide);
  margin-inline: auto;
}

.footer-brand {}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-1);
}

.footer-brand-tag {
  font-size: var(--text-xs);
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: var(--space-5);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col {}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col ul a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-col ul a:hover {
  color: var(--white);
  padding-left: var(--space-2);
}

.footer-col ul a.ext::after {
  content: '↗';
  font-size: 0.75em;
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-6) var(--space-8);
  max-width: var(--max-w-wide);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   19. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* No-JS fallback: always show content if JS can't add .revealed */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* Delay utility classes */
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ============================================================
   ADDITIONAL PAGE-SPECIFIC COMPONENTS
   ============================================================ */

/* Principle / how-we-teach cards */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.principle-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-mid), transform var(--t-spring);
}

.principle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.principle-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-4);
}

.principle-card h3 {
  font-size: var(--text-xl);
  color: var(--grey-800);
  margin-bottom: var(--space-3);
}

.principle-card p {
  font-size: var(--text-sm);
  color: var(--grey-600);
  line-height: 1.7;
}

/* Lesson type cards (on off-white bg) */
.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.lesson-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-mid), transform var(--t-spring), border-color var(--t-mid);
}

.lesson-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--ocean);
  transform: translateY(-3px);
}

.lesson-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.lesson-card h3 {
  font-size: var(--text-xl);
  color: var(--teal);
  margin-bottom: var(--space-3);
}

.lesson-card p {
  font-size: var(--text-sm);
  color: var(--grey-600);
  line-height: 1.7;
}

/* Numbered steps (how lessons work) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  counter-reset: step-counter;
}

.steps-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-mid), transform var(--t-spring);
  counter-increment: step-counter;
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.step-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.step-card h3 {
  font-size: var(--text-lg);
  color: var(--grey-800);
  margin-bottom: var(--space-3);
}

.step-card p {
  font-size: var(--text-sm);
  color: var(--grey-600);
  line-height: 1.7;
}

/* Stat cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: box-shadow var(--t-mid), transform var(--t-spring);
}

.stat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.stat-card .stat-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.stat-card h3 {
  font-size: var(--text-xl);
  color: var(--teal);
  margin-bottom: var(--space-3);
}

.stat-card p {
  font-size: var(--text-sm);
  color: var(--grey-600);
}

/* Resource cards */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-mid), transform var(--t-spring), border-left-color var(--t-mid);
  border-left: 4px solid transparent;
}

.resource-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-left-color: var(--ocean);
}

.resource-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.resource-card h3 {
  font-size: var(--text-xl);
  color: var(--teal);
  margin-bottom: var(--space-3);
}

.resource-card p {
  font-size: var(--text-sm);
  color: var(--grey-600);
  line-height: 1.7;
}

/* Jake's notes card */
.jakes-notes-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
  position: relative;
  overflow: hidden;
}

.jakes-notes-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: var(--space-8);
  font-family: var(--font-heading);
  font-size: 12rem;
  color: var(--ocean-pale);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.jakes-notes-card > * {
  position: relative;
  z-index: 1;
}

.jakes-notes-card p {
  font-size: var(--text-lg);
  color: var(--grey-600);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--space-8);
}

.jakes-notes-attribution {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.jakes-notes-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.jakes-notes-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--grey-800);
}

.jakes-notes-role {
  font-size: var(--text-xs);
  color: var(--ocean);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jakes-notes-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--teal);
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

.jakes-notes-link:hover {
  color: var(--ocean);
}

/* FAQ accordion */
.faq-list {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-6) var(--space-8);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--grey-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: color var(--t-fast), background var(--t-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--ocean);
  font-weight: 400;
  transition: transform var(--t-mid);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--teal);
  background: var(--off-white);
}

.faq-item[open] summary {
  color: var(--teal);
  border-bottom: 1px solid var(--grey-200);
}

.faq-body {
  padding: var(--space-6) var(--space-8);
}

.faq-body p {
  color: var(--grey-600);
  font-size: var(--text-base);
  line-height: 1.75;
}

/* Parent tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.tip-item {
  display: flex;
  gap: var(--space-4);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
  transition: box-shadow var(--t-mid), border-color var(--t-mid);
}

.tip-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--ocean);
}

.tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tip-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--grey-800);
  margin-bottom: var(--space-2);
}

.tip-text p {
  font-size: var(--text-sm);
  color: var(--grey-600);
  line-height: 1.65;
}

/* Connected brand section (dark teal) */
.connected-section h2 {
  color: var(--white);
}

.connected-section .section-eyebrow-text {
  color: var(--ocean);
}

.connected-section p {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   20. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- 1024px --- */
@media (max-width: 1024px) {
  .offer-grid        { grid-template-columns: 1fr 1fr; }
  .lesson-grid       { grid-template-columns: 1fr 1fr; }
  .principle-grid    { grid-template-columns: 1fr 1fr; }
  .steps-grid        { grid-template-columns: 1fr 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .founder-card      { gap: var(--space-8); padding: var(--space-8); }
  .contact-layout    { grid-template-columns: 1fr; }
  .resource-grid     { grid-template-columns: 1fr 1fr; }
  .tips-grid         { grid-template-columns: 1fr 1fr; }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .nav-links         { display: none; }
  .nav-hamburger     { display: flex; }
  .nav-mobile        { display: flex; }

  .hero-content      { padding-block: var(--space-16); }

  .offer-grid        { grid-template-columns: 1fr; }
  .audience-grid     { grid-template-columns: 1fr; }
  .principle-grid    { grid-template-columns: 1fr; }
  .lesson-grid       { grid-template-columns: 1fr; }
  .stat-grid         { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: 1fr; }
  .steps-grid-3      { grid-template-columns: 1fr; }
  .resource-grid     { grid-template-columns: 1fr; }
  .tips-grid         { grid-template-columns: 1fr; }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-portrait  { margin-inline: auto; }
  .founder-credentials { justify-content: center; }
  .founder-connected { justify-content: center; }

  .footer-grid       { grid-template-columns: 1fr 1fr; gap: var(--space-8); padding: var(--space-12) var(--space-6); }
  .footer-bottom     { flex-direction: column; text-align: center; }

  .form-row          { grid-template-columns: 1fr; }
  .sister-inner      { flex-direction: column; align-items: flex-start; gap: var(--space-3); }

  .jakes-notes-card  { padding: var(--space-8); }

  .container,
  .container-wide    { padding-inline: var(--space-5); }
}

/* --- 480px --- */
@media (max-width: 480px) {
  .footer-grid       { grid-template-columns: 1fr; }
  .btn-group         { flex-direction: column; align-items: flex-start; }
  .hero h1           { letter-spacing: -0.02em; }
  .section           { padding-block: var(--space-16); }
  .section-lg        { padding-block: var(--space-20); }
  .form-card         { padding: var(--space-6); }
  .founder-card      { padding: var(--space-6); }
  .steps-card        { padding: var(--space-6); }
  .contact-info-card { padding: var(--space-6); }
}

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

