/* =============================================
   VARIABLES
   ============================================= */
:root {
  --navy:       #2c4a6e;
  --navy-dark:  #1e3550;
  --navy-hero:  #2d4f72;
  --gold:       #c9a84c;
  --gold-hover: #b8973e;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --light-gray: #eef0f3;
  --mid-gray:   #8a96a3;
  --border:     #e2e6eb;
  --text-dark:  #1a2332;
  --text-body:  #4a5568;
  --text-light: #6b7a8d;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --radius:     10px;
  --radius-sm:  6px;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --nav-h:      66px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); font-size: 15px; outline: none; }
main { flex: 1; }

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1),
              transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(44,74,110,0.10);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}
.logo-single {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.2px;
  line-height: 1;
}
/* Keep old classes safe in case referenced elsewhere */
.logo-main  { font-size: 13px; font-weight: 400; color: var(--text-dark); }
.logo-bold  { font-weight: 700; }
.logo-light { font-size: 13px; font-weight: 400; color: var(--mid-gray); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover  { color: var(--navy); background: var(--light-gray); }
.nav-link.active { color: var(--navy); font-weight: 700; background: var(--light-gray); }

.nav-contact-btn {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(44,74,110,0.22);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition) !important;
}
.nav-contact-btn:hover {
  background: var(--navy-dark) !important;
  box-shadow: 0 4px 16px rgba(44,74,110,0.28) !important;
  transform: translateY(-1px) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  z-index: 1010;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--light-gray); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav-dropdown {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 999;
  padding: 8px 0 16px;
  animation: slideDown 0.22s cubic-bezier(0.4,0,0.2,1);
}
.nav-dropdown.open { display: block; }
.nav-dropdown .nav-link {
  display: block;
  padding: 13px 24px;
  border-radius: 0;
  font-size: 15px;
  border-bottom: 1px solid var(--light-gray);
}
.nav-dropdown .nav-link:last-child { border-bottom: none; }
.nav-dropdown .nav-contact-btn {
  display: block;
  margin: 12px 20px 4px !important;
  padding: 12px 20px !important;
  text-align: center;
  border-radius: var(--radius-sm) !important;
}

/* =============================================
   SHARED UTILITIES
   ============================================= */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 780px;  margin: 0 auto; padding: 0 28px; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: -0.3px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.1px;
}
.btn:active { transform: scale(0.98) !important; }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,74,110,0.28); }
.btn-navy-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-navy-outline:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-gold   { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-gold.btn-unavailable,
.btn-gold[disabled] {
  background: var(--light-gray) !important;
  color: var(--mid-gray) !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: not-allowed;
  opacity: 0.75;
}
.btn-full   { width: 100%; }
.btn-lg     { padding: 15px 38px; font-size: 16px; }

/* ICON CIRCLE */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.icon-circle svg { color: var(--navy); }
.why-card:hover .icon-circle,
.benefit-card:hover .icon-circle { background: var(--navy); transform: scale(1.08); }
.why-card:hover .icon-circle svg,
.benefit-card:hover .icon-circle svg { color: var(--white); }

/* AVATAR INITIALS */
.avatar-initials {
  width: 100%;
  height: 100%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
}

/* =============================================
   INSTRUCTOR CARD
   ============================================= */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

/* ── Card photo wrap — always shows full image, no cropping ── */
.card-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;      /* consistent ratio, fits whole image */
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* show entire photo, no cropping */
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.card:hover .card-photo { transform: scale(1.04); }

/* Fallback initials inside photo-wrap */
.card-photo-wrap .avatar-initials {
  position: absolute;
  inset: 0;
}

.card-body { padding: 20px 22px 22px; }
.card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.card-meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 6px;
}
.card-meta-row svg { color: var(--mid-gray); flex-shrink: 0; }
.card-body .btn { margin-top: 16px; }

/* NAVY BANNER */
.navy-banner {
  background: var(--navy-hero);
  color: var(--white);
  padding: 60px 28px;
  text-align: center;
}
.navy-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  animation: fadeUp 0.5s ease both;
}
.navy-banner p {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeUp 0.5s 0.1s ease both;
}

/* =============================================
   HOME — HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 28px;
  overflow: hidden;
  isolation: isolate;
}
/* Background image layer — sits behind everything */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  display: block;
}
/* Dark gradient overlay — sits between image and content */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(20, 38, 60, 0.62) 0%,
    rgba(20, 38, 60, 0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  animation: fadeUp 0.65s cubic-bezier(0.4,0,0.2,1) both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeUp 0.65s 0.12s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.65s 0.24s cubic-bezier(0.4,0,0.2,1) both;
}

/* =============================================
   HOME — WHY CHOOSE
   ============================================= */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.why-card:hover {
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* =============================================
   HOME — FEATURED INSTRUCTORS
   ============================================= */
.featured-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =============================================
   HOME — LOCATION TABS
   ============================================= */
.location-section { background: var(--white); }
.location-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.location-tab {
  padding: 11px 32px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-body);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
}
.location-tab:hover, .location-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(44,74,110,0.22);
  transform: translateY(-1px);
}
.location-tab.coming-soon {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

/* =============================================
   HOME — CTA SECTION  (with generated background)
   ============================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 96px 28px;
  text-align: center;
  background: var(--navy-hero);
}
/* Layered radial gradient "bokeh" background */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201,168,76,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(44,74,110,0.6) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(28,52,82,0.8) 0%, transparent 50%),
    linear-gradient(135deg, #1e3550 0%, #2d4f72 45%, #3a5f85 100%);
  pointer-events: none;
}
/* Decorative circles */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 260px at 8% 70%, rgba(255,255,255,0.04) 0%, transparent 70%),
    radial-gradient(circle 180px at 92% 20%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(circle 120px at 75% 85%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 34px);
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.3;
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* =============================================
   FIND INSTRUCTORS PAGE
   ============================================= */
.find-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
}

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile-hero {
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--border);
  animation: fadeIn 0.4s ease both;
}
.profile-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.profile-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.profile-avatar-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
}
.profile-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--border);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.profile-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.profile-title  { font-size: 15px; color: var(--text-light); margin-bottom: 6px; }
.profile-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14.5px;
  color: var(--text-body);
}

/* Quick Summary */
.quick-summary {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  animation: scaleIn 0.4s 0.08s ease both;
}
.qs-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 22px; }
.qs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin-bottom: 26px;
}
.qs-item-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--mid-gray); margin-bottom: 4px; font-weight: 600; }
.qs-item-value { font-size: 15px; font-weight: 600; color: var(--text-dark); line-height: 1.5; }
.qs-item-value + .qs-item-value { margin-top: 2px; }
.qs-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Profile About */
.profile-about { padding: 48px 0 0; }
.profile-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 52px;
}
.profile-about-inner h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.profile-about-inner p {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.8;
}

/* Disclaimer */
.profile-disclaimer {
  background: #f0f4f8;
  border-top: 1px solid var(--border);
  padding: 24px 28px;
}
.profile-disclaimer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.disclaimer-icon { color: var(--mid-gray); flex-shrink: 0; margin-top: 1px; }
.profile-disclaimer p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   JOIN PAGE
   ============================================= */
.join-hero { background: var(--navy-hero); padding: 60px 28px; text-align: center; }
.join-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  animation: fadeUp 0.5s ease both;
}
.join-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin: 0 auto;
  animation: fadeUp 0.5s 0.1s ease both;
}
.join-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 72px 0;
}
.benefit-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.benefit-card:hover {
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.benefit-card h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.benefit-card p  { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

/* Apply Form */
.apply-form-wrap { max-width: 540px; margin: 0 auto; padding: 0 28px 80px; }
.apply-form-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.45s ease both;
}
.apply-form-title { font-size: 22px; font-weight: 700; text-align: center; color: var(--text-dark); margin-bottom: 28px; }

/* Forms */
.form-group  { margin-bottom: 20px; }
.form-label  { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-label span { color: #e53e3e; }
.form-input {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(44,74,110,0.10);
}
.form-input::placeholder { color: var(--mid-gray); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero { background: var(--navy-hero); padding: 60px 28px; text-align: center; }
.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  animation: fadeUp 0.5s ease both;
}
.about-content { padding: 64px 0; }
.about-content p {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-content p:last-child { margin-bottom: 0; }
.about-content strong { color: var(--text-dark); }

/* =============================================
   PRICING PAGE
   ============================================= */
.pricing-hero { background: var(--navy-hero); padding: 60px 28px; text-align: center; }
.pricing-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  animation: fadeUp 0.5s ease both;
}
.pricing-hero p { font-size: 16px; color: rgba(255,255,255,.82); max-width: 520px; margin: 0 auto; }
.pricing-content { padding: 64px 0; }
.pricing-content h2 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; margin-top: 40px; }
.pricing-content h2:first-child { margin-top: 0; }
.pricing-content p { font-size: 15.5px; color: var(--text-body); line-height: 1.8; margin-bottom: 12px; }
.pricing-content strong { color: var(--text-dark); }
.price-highlight { font-size: 24px; font-weight: 700; color: var(--navy); margin: 14px 0; }
.price-highlight span { font-size: 15px; font-weight: 400; color: var(--text-light); }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 44px 0; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero { background: var(--navy-hero); padding: 60px 28px; text-align: center; }
.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  animation: fadeUp 0.5s ease both;
}
.contact-hero p { font-size: 16px; color: rgba(255,255,255,.82); }
.contact-content { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.contact-info p  { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
  margin-bottom: 14px;
}
.contact-detail svg { color: var(--navy); flex-shrink: 0; }

/* =============================================
   ENQUIRY MODAL
   ============================================= */
body.modal-open { overflow: hidden; }

.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,28,46,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.enquiry-overlay.visible { opacity: 1; }
.enquiry-overlay.visible .enquiry-modal { transform: translateY(0); opacity: 1; }

.enquiry-modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
}
.enquiry-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--mid-gray);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.enquiry-close:hover { color: var(--text-dark); background: var(--light-gray); }

.enquiry-header { margin-bottom: 24px; }
.enquiry-title { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.enquiry-subtitle { font-size: 14px; color: var(--text-light); line-height: 1.55; }

.enquiry-section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--navy);
  margin: 24px 0 14px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--light-gray);
}
.enquiry-section-label:first-child { margin-top: 0; }

.eq-checkboxes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.eq-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--text-body);
  cursor: pointer;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  transition: all var(--transition);
  user-select: none;
}
.eq-check:hover { border-color: var(--navy); color: var(--navy); }
.eq-check input[type="checkbox"] { accent-color: var(--navy); width: 15px; height: 15px; cursor: pointer; }

.form-label-optional { font-size: 12px; font-weight: 400; color: var(--mid-gray); margin-left: 4px; }

.eq-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
}
.eq-error-msg {
  font-size: 13.5px;
  color: #c53030;
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 600px) {
  .enquiry-modal { padding: 28px 20px 24px; max-height: 95vh; }
  .eq-checkboxes { gap: 8px; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy-dark); padding: 40px 28px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-logo strong { color: var(--white); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* =============================================
   SUCCESS STATE
   ============================================= */
.success-box { text-align: center; padding: 44px 20px; animation: scaleIn 0.35s ease both; }
.success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ebf8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-box h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.success-box p  { font-size: 15px; color: var(--text-body); }

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .instructor-grid  { grid-template-columns: repeat(2, 1fr); }
  .find-grid        { grid-template-columns: repeat(2, 1fr); }
  .join-benefits    { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — SMALL TABLET (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .hamburger { display: flex; }
  .nav-links  { display: none; }  /* hide desktop nav on mobile */

  .profile-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .qs-btns { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================= */
@media (max-width: 600px) {
  :root { --nav-h: 58px; }

  .container, .container-narrow { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  /* Sections */
  .section    { padding: 52px 0; }
  .section-sm { padding: 36px 0; }
  .section-title { margin-bottom: 36px; }

  /* Hero */
  .hero { min-height: auto; padding: 72px 20px 64px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; }

  /* Grids → single column */
  .why-grid, .join-benefits { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .instructor-grid, .find-grid { grid-template-columns: 1fr; }

  /* Profile */
  .profile-hero { padding: 36px 0 28px; }
  .profile-hero-inner { padding: 0 20px; gap: 22px; }
  .profile-name { font-size: 22px; }
  .quick-summary { padding: 22px; }
  .qs-grid { grid-template-columns: 1fr; gap: 14px; }
  .qs-btns { grid-template-columns: 1fr; }
  .profile-about-inner { padding: 0 20px 40px; }
  .profile-disclaimer { padding: 20px; }

  /* Location tabs */
  .location-tabs { gap: 8px; }
  .location-tab { padding: 10px 20px; font-size: 14px; }

  /* CTA */
  .cta-section { padding: 72px 20px; }

  /* Forms */
  .apply-form-wrap { padding: 0 20px 60px; }
  .apply-form-box  { padding: 28px 22px; }
  .contact-content { padding: 48px 0; }

  /* Footer */
  .footer-links { gap: 16px; }

  /* Cards */
  .card-photo-wrap { aspect-ratio: 16 / 10; }
}

/* =============================================
   MICRO INTERACTIONS
   ============================================= */
/* Smooth focus rings */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

/* Form input hover */
.form-input:hover:not(:focus) {
  border-color: var(--mid-gray);
}

/* Card entrance animation on grid */
.instructor-grid .card,
.find-grid .card {
  animation: fadeUp 0.45s cubic-bezier(0.4,0,0.2,1) both;
}
.instructor-grid .card:nth-child(1),
.find-grid .card:nth-child(1) { animation-delay: 0.05s; }
.instructor-grid .card:nth-child(2),
.find-grid .card:nth-child(2) { animation-delay: 0.12s; }
.instructor-grid .card:nth-child(3),
.find-grid .card:nth-child(3) { animation-delay: 0.19s; }
.instructor-grid .card:nth-child(4),
.find-grid .card:nth-child(4) { animation-delay: 0.26s; }

/* Why/benefit card entrance */
.why-grid .why-card,
.join-benefits .benefit-card { animation: fadeUp 0.45s cubic-bezier(0.4,0,0.2,1) both; }
.why-grid .why-card:nth-child(1)        { animation-delay: 0.04s; }
.why-grid .why-card:nth-child(2)        { animation-delay: 0.10s; }
.why-grid .why-card:nth-child(3)        { animation-delay: 0.16s; }
.why-grid .why-card:nth-child(4)        { animation-delay: 0.22s; }
.join-benefits .benefit-card:nth-child(1) { animation-delay: 0.04s; }
.join-benefits .benefit-card:nth-child(2) { animation-delay: 0.10s; }
.join-benefits .benefit-card:nth-child(3) { animation-delay: 0.16s; }
.join-benefits .benefit-card:nth-child(4) { animation-delay: 0.22s; }
/* =============================================
   ROB LESTER — CUSTOM INSTRUCTOR PROFILE
   ============================================= */

/* Two-column custom QS grid (Rob only) */
.qs-grid-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 26px;
}
.qs-col-left,
.qs-col-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 12px 0 0;
}
.qs-col-right { padding: 0 0 0 20px; border-left: 1px solid var(--border); }

.qs-block { display: flex; flex-direction: column; gap: 4px; }
.qs-block .qs-item-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--mid-gray);
  font-weight: 600;
  margin-bottom: 4px;
}
.qs-block .qs-item-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Areas of Expertise bullet list */
.qs-expertise-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.qs-expertise-list li {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
}
.qs-expertise-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
}

/* Card tagline row (Patient and calm Instructor) */
.card-tagline {
  font-style: italic;
  color: var(--text-light) !important;
}
.card-tagline svg { color: var(--mid-gray) !important; }

/* Mobile — stack custom QS columns */
@media (max-width: 600px) {
  .qs-grid-custom { grid-template-columns: 1fr; }
  .qs-col-right { padding: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 18px; }
}
/* =============================================
   JOIN FORM — REQUIREMENTS SECTION
   ============================================= */
.join-requirements-group {
  margin-bottom: 24px;
}
.join-req-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.req-required { color: #e53e3e; }
.join-req-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.join-req-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.join-req-section-head {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-top: 12px;
  margin-bottom: 6px;
}
.join-req-section-head:first-child { margin-top: 0; }
.join-req-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.join-req-list li {
  font-size: 13.5px;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.join-req-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
}
.join-req-confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.5;
}
.join-req-confirm input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}
.join-reserve-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.5;
  font-style: italic;
}

/* =============================================
   FORM — LOADING SPINNER & ERROR STATE
   ============================================= */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.65s linear infinite;
  vertical-align: middle;
  flex-shrink: 0;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }
button:disabled { opacity: 0.7; cursor: not-allowed !important; transform: none !important; box-shadow: none !important; }
.form-error-msg {
  font-size: 13.5px;
  color: #c53030;
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* =============================================
   NAV LOGO — mobile wrap fix
   ============================================= */
@media (max-width: 600px) {
  .logo-single {
    font-size: 13px;
    white-space: normal;
    max-width: 200px;
    line-height: 1.3;
  }
}
/* =============================================
   HERO SEARCH BAR
   ============================================= */
.hero-search-bar {
  margin-bottom: 24px;
}
.hero-search-inner {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 100px;
  padding: 6px 6px 6px 18px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  gap: 10px;
}
.hero-search-inner svg { color: var(--mid-gray); flex-shrink: 0; }
.hero-search-inner input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  min-width: 0;
}
.hero-search-inner input::placeholder { color: var(--mid-gray); }
.hero-search-inner .btn { border-radius: 100px; padding: 10px 22px; font-size: 14.5px; }

/* =============================================
   FIND PAGE SEARCH BAR
   ============================================= */
.find-search-bar { margin-top: 20px; }
.find-search-inner {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 6px 6px 6px 18px;
  max-width: 480px;
  margin: 0 auto;
  gap: 10px;
  backdrop-filter: blur(4px);
}
.find-search-inner svg { color: rgba(255,255,255,0.7); flex-shrink: 0; }
.find-search-inner input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--white);
  outline: none;
  min-width: 0;
}
.find-search-inner input::placeholder { color: rgba(255,255,255,0.6); }
.find-search-inner .btn { border-radius: 100px; padding: 9px 20px; font-size: 14px; }

.find-search-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-body);
  margin: 24px 0 -4px;
}
.find-search-info a { color: var(--navy); font-weight: 600; text-decoration: underline; margin-left: 4px; }
.find-search-info svg { color: var(--navy); }

/* Input error flash */
.input-error { border-color: #e53e3e !important; animation: shake 0.35s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}

/* =============================================
   SMART BADGES ON CARDS
   ============================================= */
.card-photo-wrap { position: relative; }
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  z-index: 2;
}
.badge-best      { background: var(--gold); color: #fff; }
.badge-available { background: var(--navy); color: #fff; }
.badge-travel    { background: #3a7d44; color: #fff; }

/* Distance row on card */
.card-dist-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 6px;
}
.card-dist-row svg { color: var(--navy); flex-shrink: 0; }

/* =============================================
   PROFILE — SERVICE AREA
   ============================================= */
.qs-travel-note {
  font-size: 13px !important;
  color: var(--text-light) !important;
  font-style: italic;
  font-weight: 400 !important;
}

/* =============================================
   PHOTO UPLOAD (Join form)
   ============================================= */
.photo-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.photo-upload-area.drag-over {
  border-color: var(--navy);
  background: var(--light-gray);
}
.photo-upload-preview {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.photo-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--mid-gray);
  font-size: 14px;
}
.photo-upload-placeholder svg { color: var(--navy); }
.photo-upload-hint { font-size: 12px; color: var(--mid-gray); }
.photo-preview-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
}
.btn-outline-upload {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.btn-outline-upload:hover { border-color: var(--navy); background: var(--light-gray); }

/* =============================================
   JOIN FORM — SERVICE AREA & TOGGLES
   ============================================= */
.form-section-head {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.join-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.join-toggle-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  cursor: pointer;
  line-height: 1.5;
}
.join-toggle-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  accent-color: var(--navy);
  cursor: pointer;
}

/* =============================================
   FORM HELPERS (spinner, error)
   ============================================= */
.btn-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.65s linear infinite;
  vertical-align: middle;
  flex-shrink: 0;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }
button:disabled { opacity: 0.7; cursor: not-allowed !important; transform: none !important; box-shadow: none !important; }
.form-error-msg {
  font-size: 13.5px;
  color: #c53030;
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* =============================================
   JOIN FORM — REQUIREMENTS
   ============================================= */
.join-requirements-group { margin-bottom: 24px; }
.join-req-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.req-required { color: #e53e3e; }
.join-req-subtitle { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.join-req-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 14px; }
.join-req-section-head { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); margin-top: 12px; margin-bottom: 6px; }
.join-req-section-head:first-child { margin-top: 0; }
.join-req-list { list-style: none; padding: 0; margin: 0 0 4px; display: flex; flex-direction: column; gap: 5px; }
.join-req-list li { font-size: 13.5px; color: var(--text-body); padding-left: 16px; position: relative; line-height: 1.5; }
.join-req-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--navy); }
.join-req-confirm { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; color: var(--text-dark); font-weight: 600; line-height: 1.5; }
.join-req-confirm input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--navy); cursor: pointer; }
.join-reserve-note { text-align: center; font-size: 12.5px; color: var(--text-light); margin-top: 16px; line-height: 1.5; font-style: italic; }

/* =============================================
   LOGO SINGLE LINE
   ============================================= */
.logo-single { font-size: 16px; font-weight: 700; color: var(--navy); white-space: nowrap; letter-spacing: -0.2px; line-height: 1; }
@media (max-width: 600px) {
  .logo-single { font-size: 13px; white-space: normal; max-width: 200px; line-height: 1.3; }
  .hero-search-inner { border-radius: var(--radius); flex-wrap: wrap; padding: 12px; }
  .hero-search-inner .btn { width: 100%; border-radius: var(--radius-sm); }
  .find-search-inner { border-radius: var(--radius); flex-wrap: wrap; padding: 10px; }
  .find-search-inner .btn { width: 100%; border-radius: var(--radius-sm); }
}

/* ROB LESTER CUSTOM QS GRID */
.qs-grid-custom { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 26px; }
.qs-col-left, .qs-col-right { display: flex; flex-direction: column; gap: 18px; padding: 0 12px 0 0; }
.qs-col-right { padding: 0 0 0 20px; border-left: 1px solid var(--border); }
.qs-block { display: flex; flex-direction: column; gap: 4px; }
.qs-block .qs-item-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--mid-gray); font-weight: 600; margin-bottom: 4px; }
.qs-block .qs-item-value { font-size: 14.5px; font-weight: 600; color: var(--text-dark); line-height: 1.5; }
.qs-expertise-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.qs-expertise-list li { font-size: 13.5px; color: var(--text-body); line-height: 1.45; padding-left: 16px; position: relative; }
.qs-expertise-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }
.card-tagline { font-style: italic; color: var(--text-light) !important; }
.card-tagline svg { color: var(--mid-gray) !important; }
@media (max-width: 600px) {
  .qs-grid-custom { grid-template-columns: 1fr; }
  .qs-col-right { padding: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 18px; }
}
