/* ============================================
   Just A TAD — Design Tokens
============================================ */
:root {
  --burgundy: #762727;
  --burgundy-dark: #5c1e1e;
  --gray: #575757;
  --gold: #ceac71;
  --gold-light: #e6d3ab;

  --bg: #ffffff;
  --bg-soft: #faf8f5;
  --bg-soft-2: #f5f1ea;
  --ink: #221c1c;

  --font-head: "Liberation Serif", Georgia, serif;
  --font-body: "Poppins", -apple-system, Segoe UI, sans-serif;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 2px 10px rgba(34, 28, 28, 0.06);
  --shadow-md: 0 10px 30px rgba(34, 28, 28, 0.09);
  --shadow-lg: 0 20px 50px rgba(34, 28, 28, 0.14);

  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--burgundy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--gray); }

a { color: var(--burgundy); text-decoration: none; }

/* ============================================
   Custom outlined icon system
============================================ */
.icon-line,
.trust-icon svg,
.authority-icon svg,
.service-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

@media (min-width: 1340px) {
  .container { padding: 0 32px; }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--burgundy);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--burgundy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--burgundy-dark); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-ghost:hover { background: var(--burgundy); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--gold);
  width: 100%;
}
.btn-outline:hover { background: var(--gold); color: var(--burgundy-dark); }

.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-text {
  background: none;
  border: none;
  padding: 0;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0;
}
.btn-text:hover { color: var(--gold); transform: translateX(2px); }

.btn-gold {
  background: var(--gold);
  color: var(--burgundy-dark);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { background: var(--gold-light); }

/* ============================================
   Header
============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav.open { max-height: 500px; }
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav a {
  color: var(--ink);
  font-weight: 500;
  display: block;
}
.mobile-nav .btn { margin-top: 6px; }

/* ============================================
   Hero — full-bleed image with overlay
============================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(46,12,12,0.93) 0%, rgba(92,30,30,0.82) 42%, rgba(92,30,30,0.42) 78%, rgba(92,30,30,0.25) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--gold-light); }
.hero-inner h1 {
  color: #fff;
  font-size: clamp(2.2rem, 2.6vw + 1.5rem, 3.4rem);
  margin-bottom: 18px;
}
.hero-lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
  margin-top: 4px;
}
.hero-trust .icon-line {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gold);
  stroke-width: 2.4;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 26px;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: #fff; color: var(--burgundy-dark); border-color: #fff; }

/* ============================================
   Trust bar
============================================ */
.trust-bar {
  background: var(--gray);
  padding: 30px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 18px;
  border-left: 1px solid rgba(206, 172, 113, 0.3);
}
.trust-item:first-child { border-left: none; }
.trust-item p {
  color: #fff;
  font-weight: 500;
  font-size: 0.84rem;
  margin: 0;
  line-height: 1.25;
  text-align: left;
}
.trust-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  color: var(--gold);
}
.trust-icon svg { width: 22px; height: 22px; }

/* ============================================
   Authority
============================================ */
.authority { padding: 100px 0; }
.authority-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.authority-intro h2 {
  font-size: clamp(1.8rem, 1.8vw + 1.1rem, 2.3rem);
  max-width: 430px;
}
.authority-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 24px 0 0;
}
.authority-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.authority-list li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.authority-list li:first-child { padding-top: 0; }
.authority-list li:last-child { border-bottom: none; }
.authority-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--gold-light);
}
.authority-icon svg { width: 22px; height: 22px; }
.authority-list h3 { font-size: 1.08rem; margin-bottom: 6px; }
.authority-list p { font-size: 0.94rem; margin-bottom: 0; }

/* ============================================
   About
============================================ */
.about { padding: 90px 0; }
.about-bridge {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.15rem, 1.4vw + 0.75rem, 1.35rem);
  color: var(--burgundy);
  line-height: 1.55;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/4.9;
  object-fit: cover;
  object-position: top center;
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 6px; }
.about-roles {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.brand-meaning {
  font-size: 0.92rem;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* ============================================
   Section heads (shared)
============================================ */
.section-head {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 2.2vw + 1.2rem, 2.7rem);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.section-lead {
  font-size: 1.04rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 760px) {
  .section-head { max-width: 900px; }
}

/* ============================================
   Services
============================================ */
.services { background: var(--bg-soft); padding: 90px 0; }
.card-grid {
  display: grid;
  gap: 24px;
}
.services-grid { grid-template-columns: repeat(4, 1fr); }
.services-grid-2 { grid-template-columns: repeat(2, 1fr); }
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }

.program-category { margin-bottom: 40px; }
.program-category:last-child { margin-bottom: 0; }
.category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--burgundy);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(206, 172, 113, 0.35);
  cursor: pointer;
  list-style: none;
}
.category-title::-webkit-details-marker { display: none; }
.category-title .category-count {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
}
.category-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--burgundy);
  transition: transform 0.2s ease;
}
.program-category[open] .category-chevron { transform: rotate(180deg); }
.program-category .category-body { padding-top: 4px; }

.service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-soft-2);
  color: var(--burgundy);
  margin-bottom: 16px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.92rem; margin-bottom: 18px; }
.service-card .btn-text { margin-top: auto; }

/* ============================================
   Who We Help
============================================ */
.who-we-help { padding: 84px 0; background: var(--bg-soft); }
.who-we-help-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.who-we-help-intro { flex-shrink: 0; }
.who-we-help-intro h2 { margin-bottom: 0; }
.who-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  max-width: 620px;
}
.who-list li {
  background: #fff;
  border: 1px solid rgba(206, 172, 113, 0.4);
  color: var(--burgundy);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 10px 22px;
  border-radius: 100px;
}

/* ============================================
   What To Expect — Timeline
============================================ */
.expect { background: var(--bg-soft); padding: 90px 0; }
.timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(118, 39, 39, 0.15);
}
.timeline li {
  position: relative;
  display: flex;
  gap: 22px;
  padding-bottom: 36px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
}
.timeline-content { padding-top: 6px; }
.timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 0.92rem;
  margin-bottom: 0;
}
.calendly-actions { justify-content: center; }

/* ============================================
   Testimonial
============================================ */
.testimonial { padding: 100px 0; background: var(--bg-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: center;
}
.testimonial-quote {
  margin: 0;
}
.testimonial-quote .quote-mark {
  display: block;
  font-family: var(--font-head);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 4px;
}
.testimonial-quote p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: var(--burgundy);
  line-height: 1.35;
  margin-bottom: 20px;
}
.testimonial-quote footer {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.testimonial-media {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-md);
  transform: rotate(1.2deg);
}
.testimonial-media img {
  border-radius: var(--radius-sm);
  box-shadow: none;
}
.testimonial-media figcaption {
  font-size: 0.76rem;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
}

/* ============================================
   Booking
============================================ */
.booking { position: relative; padding: 96px 0; overflow: hidden; }
.booking::before {
  content: "";
  position: absolute;
  top: -140px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206,172,113,0.16) 0%, rgba(206,172,113,0) 70%);
  z-index: 0;
}
.calendly-box { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.calendly-placeholder {
  background: #fff;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 52px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.calendly-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-soft-2);
  color: var(--burgundy);
  margin: 0 auto 18px;
}
.calendly-icon svg { width: 26px; height: 26px; }
.calendly-text {
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 26px;
}

/* ============================================
   Contact
============================================ */
.contact { background: var(--bg-soft); padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
.contact-details {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 560px;
}
.form-row { margin-bottom: 18px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid rgba(87,87,87,0.25);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note {
  font-size: 0.8rem;
  text-align: center;
  margin: 14px 0 0;
  color: var(--gray);
}

/* ============================================
   Training Detail Pages
============================================ */
.detail-hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 64px 0 48px;
  text-align: center;
}
.detail-hero h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.detail-hero .section-lead { max-width: 640px; margin: 0 auto; }

.detail-body { padding: 70px 0 90px; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.35fr;
  gap: 56px;
  align-items: start;
}
.detail-main h2 {
  font-size: 1.3rem;
  margin-top: 36px;
}
.detail-main h2:first-child { margin-top: 0; }
.detail-list {
  margin: 0 0 1em;
  padding-left: 22px;
  color: var(--gray);
}
.detail-list li { margin-bottom: 8px; }
.detail-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.detail-side {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: sticky;
  top: 100px;
}
.detail-side h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}
.related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.related-list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--burgundy);
}
.related-list a:hover { color: var(--gold); }

/* ============================================
   Footer
============================================ */
.site-footer {
  background: #3e1414;
  color: #ffffff;
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}
.footer-slogan {
  font-family: var(--font-head);
  font-style: italic;
  color: #ffffff;
  opacity: 0.9;
  margin-top: 0;
}
.footer-positioning {
  color: #ffffff;
  opacity: 0.85;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  margin-top: 10px;
  max-width: 320px;
}
.footer-cta { margin-top: 22px; }
.footer-links h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #ffffff;
  opacity: 0.9;
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--gold-light); opacity: 1; }
.footer-bottom {
  padding-top: 26px;
  text-align: center;
  font-size: 0.85rem;
  color: #ffffff;
  opacity: 0.8;
}

/* ============================================
   Mobile sticky CTA
============================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 600;
  background: var(--burgundy);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(118, 39, 39, 0.4);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 980px) {
  .about-grid,
  .testimonial-grid,
  .contact-grid,
  .authority-split,
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; }
  .about-media { order: -1; }
  .authority-intro h2 { max-width: none; }
  .services-grid,
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 4px 0; }
  .trust-item { border-left: none; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .brand-logo { height: 42px; }

  .services-grid,
  .services-grid-2,
  .services-grid-3 { grid-template-columns: 1fr; }

  .testimonial-media { transform: none; max-width: 280px; margin: 0 auto; }

  .form-row-split { grid-template-columns: 1fr; gap: 18px; }
  .form-row { margin-bottom: 20px; }
  .contact-form { padding: 26px 22px; }
  .contact-form label { font-size: 0.9rem; margin-bottom: 8px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { padding: 13px 14px; font-size: 1rem; }

  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 96px; }
  .site-footer { padding-bottom: 40px; }

  .hero { min-height: 0; padding: 100px 0 64px; }
  .hero-inner { max-width: none; }
  .about, .services, .authority, .who-we-help, .testimonial, .booking, .contact, .expect {
    padding: 56px 0;
  }
  .program-category { margin-bottom: 44px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before { left: 19px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}
