/* ============================================================
   TEES WHEELYBOATS — Main Stylesheet
   Fonts: Fraunces (display) + Atkinson Hyperlegible (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;1,9..144,400&family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --deep:        #1B3D4F;
  --deep-dark:   #122C3A;
  --teal:        #2C7A73;
  --teal-light:  #D6EDEB;
  --amber:       #E8992F;
  --amber-dark:  #C4790F;
  --cream:       #FAF7F2;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-mid:    #4A4A4A;
  --border:      #D8D2C8;
  --shadow:      0 2px 16px rgba(27,61,79,0.10);
  --shadow-lg:   0 6px 40px rgba(27,61,79,0.16);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Atkinson Hyperlegible', Helvetica, Arial, sans-serif;

  --radius:   8px;
  --radius-lg: 16px;
  --max-w:    1080px;
  --gutter:   clamp(1rem, 5vw, 2.5rem);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
}

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

a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--cream); }

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.35em; }

/* ── Skip Link ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--amber);
  color: var(--text);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--deep);
}
h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 3vw, 1.55rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 700; font-family: var(--font-body); }

p + p { margin-top: 0.9em; }
.lead { font-size: 1.2rem; line-height: 1.6; color: var(--text-mid); }

/* ── Layout Helpers ────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 4rem 0; }
.section--lg { padding: 6rem 0; }
.section--sm { padding: 2.5rem 0; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  line-height: 1.3;
}
.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--amber);
  color: var(--text);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn--lg {
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
}

/* ── Navigation ────────────────────────────────────────── */
.site-header {
  background: var(--deep);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 80px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-text span { display: block; font-size: 0.75rem; font-weight: 300; opacity: 0.75; font-family: var(--font-body); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
}
.nav-links a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links .nav-cta a {
  background: var(--amber);
  color: var(--text);
  padding: 0.45rem 1rem;
}
.nav-links .nav-cta a:hover {
  background: var(--amber-dark);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  color: var(--white);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Phone banner */
.phone-banner {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 0.5rem var(--gutter);
  font-size: 0.9rem;
}
.phone-banner a {
  color: var(--white);
  font-weight: 700;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--deep);
  color: var(--white);
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/web-img-06.jpeg') center/cover no-repeat;
  opacity: 0.3;
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; max-width: 700px; }
.hero h1 em { font-style: italic; color: #FECF7A; }
.hero .lead { color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 2rem; font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

/* ── Trust Strip ───────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  border-right: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--deep);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ── Cards grid ────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--teal-light); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.5rem; flex: 1; }
.card-body h3 { margin-bottom: 0.6rem; }
.card-body p { color: var(--text-mid); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 1rem;
}

/* ── Section headers ───────────────────────────────────── */
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p { color: var(--text-mid); max-width: 580px; }
.section-header--center { text-align: left; }
.section-header--center p { margin: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

/* ── Steps (booking process) ───────────────────────────── */
.steps { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 2rem; 
  margin-top: 2.5rem; 
  counter-reset: steps;
}
.step { position: relative; padding-top: 0.5rem; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #4E9691; /* Passes WCAG AA 3:1 large text on --cream background */
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; color: var(--text-mid); }

/* ── CTA Band ──────────────────────────────────────────── */
.cta-band {
  background: var(--deep);
  color: var(--white);
  padding: 4rem 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 0 2rem; }

/* ── Donation band ─────────────────────────────────────── */
.donate-band {
  background: var(--teal);
  color: var(--white);
  padding: 3.5rem 0;
}
.donate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.donate-text h2 { color: var(--white); }
.donate-text p { color: rgba(255,255,255,0.85); max-width: 500px; margin-top: 0.5rem; }
.donate-btn .btn--primary { font-size: 1.1rem; }

/* ── Quote / testimonial ───────────────────────────────── */
.quote-section { background: var(--white); }
.quote-block {
  max-width: 720px;
  padding: 3rem 0;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--deep);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.quote-block blockquote::before { content: '\201C'; }
.quote-block blockquote::after  { content: '\201D'; }
.quote-attr { font-size: 0.9rem; color: var(--text-mid); font-weight: 700; }
.quote-attr span { color: var(--teal); }

/* ── Info box ──────────────────────────────────────────── */
.info-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { color: var(--deep); margin: 0; }

/* ── Accordion (FAQ) ───────────────────────────────────── */
.faq-group { margin-bottom: 2.5rem; }
.faq-group h3 { 
  font-size: 0.85rem; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  color: var(--teal);
  font-family: var(--font-body);
  font-weight: 700;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--teal);
  margin-bottom: 0.5rem;
}

details {
  border-bottom: 1px solid var(--border);
}
details summary {
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--deep);
  transition: color 0.15s;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}
details[open] summary::after { transform: rotate(45deg); }
details[open] summary { color: var(--teal); }
.details-body {
  padding-bottom: 1.2rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.details-body p + p { margin-top: 0.7em; }

/* ── Booking steps list ────────────────────────────────── */
.booking-steps { 
  list-style: none; 
  padding: 0; 
  counter-reset: bsteps;
}
.booking-steps li {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  margin-bottom: 0;
}
.booking-steps li:last-child { border-bottom: none; }
.bstep-num {
  counter-increment: bsteps;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.bstep-body h4 { margin-bottom: 0.35rem; color: var(--deep); }
.bstep-body p { color: var(--text-mid); margin: 0; font-size: 0.95rem; }

/* ── Calendar embed ────────────────────────────────────── */
.calendar-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.calendar-wrap iframe { display: block; }

/* ── Contact grid ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-method {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-method:last-child { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-detail { flex: 1; }
.contact-detail h4 { margin-bottom: 0.2rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mid); }
.contact-detail a, .contact-detail p { font-size: 1.05rem; font-weight: 700; color: var(--deep); text-decoration: none; margin: 0; }
.contact-detail a:hover { color: var(--teal); text-decoration: underline; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* ── Volunteer highlights ──────────────────────────────── */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.highlight-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.highlight-item .icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 1rem;
}
.highlight-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.highlight-item p { font-size: 0.95rem; color: var(--text-mid); margin: 0; }

/* ── Supporters ────────────────────────────────────────── */
.supporter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.supporter-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0;
}

/* ── Patron ────────────────────────────────────────────── */
.patron-card {
  background: var(--deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 3rem;
}
.patron-card h2 { color: var(--white); margin-bottom: 0.5rem; }
.patron-card p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* ── Terms ─────────────────────────────────────────────── */
.terms-content h2 { 
  font-size: 1.25rem; 
  margin: 2rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.terms-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.terms-content p, .terms-content li { color: var(--text-mid); }
.terms-content ul { margin-top: 0.5rem; }

/* ── Page hero (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--deep);
  color: var(--white);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: url('img/web-img-02.jpg') center/cover;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 540px; }
.page-hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--deep-dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo-text { font-size: 1.2rem; }
.footer-brand p { font-size: 0.9rem; margin-top: 0.75rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-phone {
  display: block;
  color: var(--amber);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: none;
  margin-top: 0.25rem;
}
.footer-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ── Two-col layout ────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ── Alert / notice ────────────────────────────────────── */
.notice {
  background: #FFF8E7;
  border: 1px solid #F5C842;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #5C4A00;
  margin-bottom: 1.5rem;
}

/* ── Download links ────────────────────────────────────── */
.downloads { list-style: none; padding: 0; }
.downloads li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.downloads li:last-child { border-bottom: none; }
.downloads li::before {
  content: '↓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.downloads a { color: var(--teal); font-weight: 700; text-decoration: none; }
.downloads a:hover { text-decoration: underline; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 820px) {
  .two-col, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--deep-dark); padding: 1rem var(--gutter); gap: 0.25rem; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .trust-item { padding: 0.9rem 1rem; font-size: 0.82rem; }
  .trust-item:nth-child(n+3) { display: none; }
  .donate-inner { flex-direction: column; }
}

@media (max-width: 560px) {
  .trust-strip-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; justify-content: center; }
  .trust-item:nth-child(n+3) { display: flex; }
  .hero { padding: 3.5rem 0 5rem; }
  .cards { grid-template-columns: 1fr; }
}

/* ── Focus styles ──────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Utility classes (replaces inline styles) ──────────── */
.bg-white       { background: var(--white); }
.pt-0           { padding-top: 0; }
.mt-sm          { margin-top: 1rem; }
.mt-md          { margin-top: 1.5rem; }
.mt-lg          { margin-top: 2rem; }
.mt-xl          { margin-top: 2.5rem; }
.mt-xxl         { margin-top: 3rem; }
.mb-md          { margin-bottom: 1.5rem; }
.mb-lg          { margin-bottom: 2rem; }
.pt-lg          { padding-top: 2rem; }
.pb-md          { padding-bottom: 1.5rem; }
.text-mid       { color: var(--text-mid); }
.text-sm        { font-size: 0.9rem; }
.text-xs        { font-size: 0.85rem; }
.text-body-sm   { font-size: 0.95rem; }
.fw-bold        { font-weight: 700; }
.lh-relaxed     { line-height: 1.5; }

/* Narrow container widths */
.container--prose  { max-width: 760px; margin-left: 0; margin-right: auto; }
.container--narrow { max-width: 800px; margin-left: 0; margin-right: auto; }

/* Section with white background, zero top padding */
.section--white-nopt { background: var(--white); padding-top: 0; }

/* Flex button groups */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Footer wordmark (white display text) */
.footer-wordmark {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}
.footer-wordmark span {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0.75;
  font-family: var(--font-body);
}

/* Section with top border separator */
.separator-top {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Pound/currency icon (inline in trust strip and cards) */
.pound-icon {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-body);
}


@media print {
  .site-header, .site-footer, .hero-wave, .page-hero-wave { display: none; }
  body { color: #000; background: #fff; }
}
