/* ════════════════════════════════════════════════
   SCHREUDER CONSULTING — Shared Design System
   ════════════════════════════════════════════════ */

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

:root {
  --navy:        #0d1f35;
  --navy-mid:    #1a3350;
  --navy-light:  #24466b;
  --gold:        #b89c6a;
  --gold-light:  #d4b98a;
  --gold-pale:   #f0e8d8;
  --cream:       #f6f1e9;
  --cream-dark:  #ece5d8;
  --white:       #ffffff;
  --text:        #1a1a2e;
  --text-mid:    #3d4a5c;
  --text-light:  #7a8898;
  --border:      rgba(184,156,106,0.22);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --r:           4px;
  --ease:        0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow:      0 2px 24px rgba(13,31,53,0.08);
  --shadow-lg:   0 8px 48px rgba(13,31,53,0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY HELPERS ── */
.serif { font-family: var(--serif); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(13,31,53,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,156,106,0.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon { display: flex; align-items: center; }
.nav-logo-icon svg { width: 32px; height: 32px; }
.nav-logo-icon img { display: block; width: 38px; height: 38px; object-fit: contain; }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 500;
  color: var(--white); letter-spacing: 0.03em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-cta {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(184,156,106,0.5);
  padding: 9px 22px; border-radius: var(--r);
  text-decoration: none; transition: all var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--ease); }

.mobile-menu {
  display: none; position: fixed;
  top: 70px; left: 0; width: 100%;
  background: var(--navy); z-index: 199;
  padding: 24px 40px 32px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 13px 0;
  font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--ease);
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .m-cta {
  display: inline-block; margin-top: 18px;
  padding: 12px 28px; background: var(--gold);
  color: var(--navy); font-weight: 500;
  border-radius: var(--r); border-bottom: none;
}

/* ════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 120px 48px 72px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(36,70,107,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 2;
}
.page-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.page-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.page-eyebrow span {
  font-size: 0.73rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.15;
  color: var(--white); margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-lead {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 580px;
}

/* ════════════════════════════════════
   SECTION & LAYOUT HELPERS
   ════════════════════════════════════ */
.section { padding: 96px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-bg-cream { background: var(--cream); }
.section-bg-navy  { background: var(--navy); }
.section-bg-white { background: var(--white); }

.eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.eyebrow span {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300; line-height: 1.2; color: var(--text); margin-bottom: 14px;
}
.section-title em { font-style: italic; }
.section-title-light { color: var(--white); }
.section-lead {
  font-size: 1.02rem; color: var(--text-mid); line-height: 1.75; max-width: 580px;
}
.section-lead-light { color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════
   BUTTONS
   ════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: var(--r);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: all var(--ease);
  cursor: pointer; border: none; font-family: var(--sans);
}
.btn-gold {
  background: var(--gold); color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,156,106,0.3); }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.28); color: rgba(255,255,255,0.85);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-navy {
  border: 1px solid rgba(13,31,53,0.25); color: var(--text);
}
.btn-outline-navy:hover { border-color: var(--gold); color: var(--navy); }
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); }

/* Arrow icon for buttons */
.btn-arrow { width: 14px; height: 14px; }

/* ════════════════════════════════════
   LION LOGO SVG (inline)
   ════════════════════════════════════ */
/* Used inline in HTML */

/* ════════════════════════════════════
   CONTACT FORM (shared)
   ════════════════════════════════════ */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px; padding: 44px 40px;
}
.contact-form-card h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--text); margin-bottom: 6px;
}
.form-sub { font-size: 0.85rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid #ddd; border-radius: var(--r);
  font-family: var(--sans); font-size: 0.92rem;
  color: var(--text); background: var(--white);
  outline: none; transition: border-color var(--ease);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy-light); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.76rem; color: var(--text-light); margin-bottom: 22px; line-height: 1.6; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--navy); color: var(--white);
  border: none; border-radius: var(--r);
  font-family: var(--sans); font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer;
  transition: all var(--ease);
}
.form-submit:hover { background: var(--navy-light); }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success .success-icon { font-size: 2rem; margin-bottom: 12px; color: var(--gold); }
.form-success h4 {
  font-family: var(--serif); font-size: 1.5rem;
  color: var(--text); margin-bottom: 8px;
}
.form-success p { font-size: 0.92rem; color: var(--text-mid); }

/* ════════════════════════════════════
   CONTENT CARDS
   ════════════════════════════════════ */
.cards-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }

.card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px; padding: 36px 32px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-navy {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,0.08);
}
.card-cream { background: var(--cream); border-color: var(--cream-dark); }

.card-num {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: var(--cream-dark); line-height: 1; margin-bottom: 16px;
}
.card-num-dark { color: rgba(255,255,255,0.12); }
.card h3 {
  font-family: var(--serif); font-size: 1.35rem;
  font-weight: 500; color: var(--text); margin-bottom: 12px;
}
.card-navy h3 { color: var(--white); }
.card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.card-navy p { color: rgba(255,255,255,0.6); }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.76rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy-light);
  text-decoration: none; font-weight: 500;
  transition: gap var(--ease), color var(--ease);
}
.card-link:hover { gap: 12px; color: var(--gold); }
.card-link-light { color: rgba(255,255,255,0.5); }
.card-link-light:hover { color: var(--gold-light); gap: 12px; }

/* ════════════════════════════════════
   DIVIDER
   ════════════════════════════════════ */
.divider-gold {
  width: 48px; height: 1px; background: var(--gold); margin: 28px 0;
}

/* ════════════════════════════════════
   PROCESS STEPS (horizontal)
   ════════════════════════════════════ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px;
  border: 1px solid var(--cream-dark); border-radius: 8px; overflow: hidden;
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--cream-dark);
  background: var(--white);
  transition: background var(--ease);
}
.step:last-child { border-right: none; }
.step:hover { background: var(--cream); }
.step-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: rgba(13,31,53,0.08); line-height: 1; margin-bottom: 16px;
}
.step h3 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--text); margin-bottom: 10px;
}
.step p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; }

/* ════════════════════════════════════
   QUOTE BLOCK
   ════════════════════════════════════ */
.quote-block {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 300;
  font-style: italic; color: var(--gold-light);
  line-height: 1.5; padding-left: 24px;
  border-left: 2px solid var(--gold);
  margin: 40px 0;
}
.quote-block-dark { color: var(--text); }

/* ════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════ */
.trust-bar {
  background: var(--cream); padding: 24px 48px;
  border-bottom: 1px solid var(--cream-dark);
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: center; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-mid); letter-spacing: 0.03em;
}
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ════════════════════════════════════
   CTA STRIP
   ════════════════════════════════════ */
.cta-strip {
  background: var(--navy-mid); padding: 80px 48px; text-align: center;
}
.cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 16px; line-height: 1.25;
}
.cta-strip h2 em { font-style: italic; color: var(--gold-light); }
.cta-strip p {
  font-size: 0.98rem; color: rgba(255,255,255,0.58);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.7;
}
.cta-strip .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
footer {
  background: var(--navy); padding: 56px 48px 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-brand-logo svg { width: 28px; height: 28px; }
.footer-brand-logo img { display: block; width: 32px; height: 32px; object-fit: contain; }
.footer-brand-name {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--white); font-weight: 500;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color var(--ease);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.75rem; color: rgba(255,255,255,0.28);
  text-decoration: none; transition: color var(--ease);
}
.footer-legal a:hover { color: var(--gold); }

/* ════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════ */
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 8px; padding: 36px 30px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--serif); font-size: 5rem; line-height: 0.7;
  color: var(--gold); opacity: 0.25;
  position: absolute; top: 22px; left: 24px;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.star { color: var(--gold); font-size: 0.88rem; }
.testimonial-card blockquote {
  font-family: var(--serif); font-size: 1rem;
  font-weight: 300; font-style: italic;
  line-height: 1.65; color: var(--text); margin-bottom: 22px;
}
.testimonial-meta strong {
  display: block; font-size: 0.84rem; font-weight: 500;
  color: var(--text); margin-bottom: 2px;
}
.testimonial-meta span { font-size: 0.78rem; color: var(--text-light); }

/* ════════════════════════════════════
   CREDENTIALS LIST
   ════════════════════════════════════ */
.creds { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.cred {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
}
.cred-light {
  background: var(--cream); border-color: var(--cream-dark);
}
.cred-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
}
.cred span { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.cred-light span { color: var(--text-mid); }

/* ════════════════════════════════════
   STAT STRIP
   ════════════════════════════════════ */
.stats-strip {
  display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden;
  margin-top: 56px;
}
.stat-item {
  flex: 1; min-width: 160px; padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
  color: var(--white); line-height: 1;
}
.stat-num span { color: var(--gold); font-size: 1.8rem; }
.stat-label {
  font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 4px;
}

/* ════════════════════════════════════
   LEGAL PAGES
   ════════════════════════════════════ */
.legal-content {
  max-width: 780px;
}
.legal-content h2 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  color: var(--text); margin: 36px 0 12px;
}
.legal-content h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
  color: var(--text); margin: 24px 0 8px;
}
.legal-content p {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px;
}
.legal-content a { color: var(--navy-light); }
.legal-content a:hover { color: var(--gold); }

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(3) { border-right: 1px solid var(--cream-dark); }
  .step:nth-child(4) { border-right: none; }
}
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { padding: 20px 24px 28px; }
  .section { padding: 72px 24px; }
  .page-hero { padding: 100px 24px 60px; }
  .trust-bar { padding: 18px 24px; }
  .cta-strip { padding: 60px 24px; }
  footer { padding: 44px 24px 24px; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px solid var(--cream-dark); }
  .step:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .stats-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-strip .btn-row { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeUp 0.75s ease both; }
.anim-delay-1 { animation-delay: 0.12s; }
.anim-delay-2 { animation-delay: 0.24s; }
.anim-delay-3 { animation-delay: 0.36s; }

/* ── CONVERSION UPGRADES (v6) ── */

/* Result tag on testimonials */
.testimonial-result-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(184,156,106,.1); border: 1px solid rgba(184,156,106,.25);
  border-radius: 4px; padding: 4px 10px; margin-bottom: 14px;
  font-size: .72rem; color: var(--gold); letter-spacing: .06em;
}

/* Service result line */
.svc-result {
  font-size: .78rem; color: var(--gold); letter-spacing: .05em;
  margin-bottom: 8px; font-weight: 500;
}

/* Award badge */
.award-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(184,156,106,.1); border: 1px solid rgba(184,156,106,.3);
  border-radius: 8px; padding: 14px 18px; margin-top: 20px;
  width: 100%;
}
.award-badge-icon { font-size: 1.5rem; flex-shrink: 0; }
.award-badge-text strong { display: block; font-size: .88rem; color: var(--gold-light); }
.award-badge-text span { font-size: .72rem; color: rgba(255,255,255,.5); }

/* Trust logos strip */
.trust-logos {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  justify-content: center; margin-top: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.trust-logo-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.trust-logo-badge {
  background: var(--navy); border-radius: 6px; padding: 7px 14px;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; white-space: nowrap;
}
.trust-logo-sub { font-size: .65rem; color: var(--text-light); letter-spacing: .04em; }

/* Problem strip */
.ps-icon svg { stroke: var(--gold); }

/* Booking form (subpage usage) */
.booking-card {
  background: var(--white); border-radius: 10px; padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
