/* ============================================================
   Business Mentors Sydney — styles.css
   Single bundled stylesheet. Mobile-first responsive.
   Breakpoints: 640px (tablet), 1024px (desktop)
   Max content width: 1100px

   Adapted from the Business Mentors family template.
   Palette and typography identical to Business Mentors Perth.
   BMS-specific: --navy-footer (#0E2038) for footer background.
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Brand palette — Business Mentors Sydney */
  --navy:        #1B3A5C;   /* headings, navigation, primary navy */
  --navy-footer: #0E2038;   /* footer background only */
  --gold:        #B8933A;   /* logo line 2, eyebrows, heading accents */
  --blue:        #2E75B6;   /* CTA buttons, links */
  --blue-hover:  #144569;   /* CTA hover */
  --green:       #2E7D32;   /* form success state only */

  /* Neutral functional colours */
  --ink:         #1A1A1A;   /* body copy */
  --muted:       #5A5A5A;   /* secondary text */
  --off:         #FAFAFA;   /* page background */
  --white:       #FFFFFF;
  --line:        #e4e4e4;   /* borders */
  --line-soft:   #eeeeee;   /* subtle separators */
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* ---------- Base typography ---------- */
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
}

section:not([class]) p,
section:not([class]) li {
  color: var(--muted);
  margin-bottom: 1.25em;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

/* Mobile-first type scale — overridden at 640px and 1024px */
h1 { font-size: 28px; line-height: 1.1; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }

p  { margin: 0; }
a  { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

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

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

strong { font-weight: 500; }

/* ---------- Layout wrapper ---------- */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 2px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--muted);
  display: none;               /* hidden on mobile */
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(14, 32, 56, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

/* --- Logo / brand --- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-wordmark {
  font-family: Georgia, serif;
  line-height: 1.1;
}

.brand-wordmark .line1 {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.brand-wordmark .line2 {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-style: italic;
  margin-top: 3px;
}

/* --- Primary nav (desktop only) --- */
.primary-nav {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.primary-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color 0.15s;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--navy);
}

.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--gold);
}

/* --- Header right --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.phone-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.phone-text {
  display: none;
}

.phone-text small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-family: Inter, system-ui, sans-serif;
}

.phone-text .phone-num {
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.header-enquire {
  display: none;
}

/* --- Hamburger --- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile nav drawer --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: 99;
  padding: 12px 24px 20px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .nav-divider {
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}

.mobile-nav .nav-secondary a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

/* ============================================================
   EYEBROW LABEL — universal primitive
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--white);
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--line-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.hero-copy h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.65;
  max-width: 520px;
}

.hero-cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.hero-cta-row .btn {
  width: 100%;
  justify-content: center;
  padding: 15px 22px;
}

/* --- Trust block --- */
.trust {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.trust-label {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}

.tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 10px;
}

/* ============================================================
   ENQUIRY FORM CARD
   ============================================================ */
.enquire-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 28px 22px 24px;
  box-shadow: 0 16px 48px -12px rgba(14, 32, 56, 0.16),
              0 2px 8px rgba(14, 32, 56, 0.04);
  position: relative;
}

.enquire-tag {
  position: absolute;
  top: -13px;
  right: 20px;
  background: var(--navy);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 11px;
}

.enquire-card h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.form-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* --- Form fields --- */
.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #d2d2d2;
  border-radius: 2px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 117, 182, 0.12);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #c0392b;
}

.field-error {
  display: none;
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
}

.field.error .field-error {
  display: block;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* --- Submit button --- */
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  margin-top: 6px;
}

.form-submit:hover  { background: var(--blue-hover); }
.form-submit:active { transform: translateY(1px); }

.form-fineprint {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.form-phone-alt {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #ddd;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink);
}

.form-phone-alt a {
  color: var(--navy);
  font-weight: 500;
  font-size: 15.5px;
}

/* --- Form success state --- */
.form-success {
  display: none;
  text-align: center;
  padding: 36px 12px;
}

.form-success.visible {
  display: block;
}

.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 22px;
}

.form-success h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================================
   SECTION HEAD — universal primitive
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head .eyebrow {
  justify-content: center;
  margin-bottom: 12px;
}

.section-head h2 {
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.65;
}

/* ============================================================
   SERVICES / MENTOR-TYPES GRID
   ============================================================ */
.services {
  padding: 80px 0;
  background: var(--off);
}

/* 1-col mobile → 2-col tablet → 4-col desktop (4×2 for 8 categories) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--white);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 18px;
}

.service-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  flex: 1;
}

.service-card a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s;
  align-self: flex-start;
}

.service-card a:hover {
  color: var(--blue-hover);
}

/* 1-col mobile → 3-col desktop (Section 2: Why this works) */
.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

/* Closing note and text CTA link below content sections */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

.section-cta p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.section-cta a {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s;
}

.section-cta a:hover { color: var(--blue-hover); }

/* ============================================================
   FEE STRIP
   ============================================================ */
.fees {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

/* 1-col mobile → 2-col desktop (1fr / 1.3fr) */
.fees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.fees-copy h2 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.fees-copy p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 460px;
}

.fees-copy p + p {
  margin-top: 12px;
}

.fees-copy a {
  color: var(--blue);
  font-weight: 500;
  transition: color 0.15s;
}

.fees-copy a:hover {
  color: var(--blue-hover);
}

/* Four pill cards — 2×2 grid on mobile, stays 2×2 on desktop */
.fees-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fee-pill {
  background: var(--off);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
}

.fee-pill-title {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--navy);
  line-height: 1.25;
}

.fee-pill-body {
  font-size: 13px;
  color: var(--muted);
  margin-top: 7px;
  line-height: 1.55;
}

/* ============================================================
   ABOUT STRIP — navy background
   ============================================================ */
.about-strip {
  background: var(--navy);
  color: #dce5ef;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative ring — compass rose echo */
.about-strip::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(184, 147, 58, 0.12);
  pointer-events: none;
}

/* 1-col mobile → 2-col desktop (portrait left, copy right) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.about-strip .eyebrow {
  color: var(--gold);
}

.about-strip h2 {
  color: var(--white);
  max-width: 460px;
}

.about-strip .section-cta a { color: var(--gold); }

.about-body {
  color: #b8c6d4;
  font-size: 15.5px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 540px;
}

.about-body + .about-body {
  margin-top: 14px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(184, 147, 58, 0.2);
}

/* Placeholder shown before portrait is available */
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0 12px,
    rgba(255,255,255,0.07) 12px 24px
  );
  border: 1px solid rgba(184, 147, 58, 0.25);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.about-photo-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Four-cell credentials grid */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.07);
  margin-top: 28px;
}

.cred-item {
  background: var(--navy);
  padding: 18px 20px;
  border-top: 2px solid var(--gold);
}

.cred-title {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: normal;
  color: var(--white);
  line-height: 1.2;
}

.cred-body {
  font-size: 12.5px;
  color: #a0b2c4;
  margin-top: 5px;
  line-height: 1.45;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: 80px 0;
  background: var(--off);
}

/* 1-col mobile → 2-col tablet and up */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--navy);
  line-height: 1.35;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--navy);
  background: var(--off);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--navy);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-item.open .faq-toggle {
  background: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14.5px;
  color: #383838;
  line-height: 1.65;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 24px 22px;
}

.faq-group + .faq-group { margin-top: 56px; }
.faq-group { scroll-margin-top: 80px; }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.cta-close {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--line-soft);
}

.cta-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px;
  background: var(--off);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
}

.cta-box h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: normal;
  text-decoration: none;
  transition: color 0.15s;
}

.cta-phone-link:hover {
  color: var(--blue);
}

.cta-box form   { text-align: left; }
.cta-box form p { max-width: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-footer);
  color: #9aaabb;
  padding: 64px 0 0;
  font-size: 14px;
}

/* 1-col mobile → 2-col tablet → 4-col desktop */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

/* Brand column — wordmark reversed to white/gold on dark background */
.footer-brand .brand-wordmark .line1 { color: var(--white); }
.footer-brand .brand-wordmark .line2 { color: var(--gold); }

.footer-tagline {
  color: #7a8c9a;
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 290px;
}

/* Nav and contact columns */
.footer-col h4 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 16px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: #9aaabb;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold); }

/* Contact detail rows */
.footer-contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.footer-contact-label {
  color: #556070;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 50px;
  padding-top: 1px;
  flex-shrink: 0;
}

.footer-contact-value {
  color: #d0dae4;
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-contact-value a {
  color: #d0dae4;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact-value a:hover { color: var(--gold); }

/* Legal strip */
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0 28px;
  font-size: 12px;
  color: #4e5f70;
  line-height: 1.7;
}

.footer-legal-text strong {
  color: #8a9aaa;
  font-weight: 500;
}

.footer-legal-links {
  margin-top: 8px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #4e5f70;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ============================================================
   PAGE HEADER — inner pages
   ============================================================ */
.page-header {
  background: var(--white);
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header .page-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.65;
}

/* ============================================================
   MENTOR TYPES — category jump nav
   ============================================================ */
.category-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 24px 0 28px;
}

.category-jumps a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}

.category-jumps a:not(:last-child)::after {
  content: "·";
  margin-left: 20px;
  color: var(--muted);
}

.category-jumps a:hover { color: var(--blue-hover); }

.mentor-categories section[id] { scroll-margin-top: 80px; }

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps {
  padding: 80px 0;
  background: var(--off);
}

.page-content {
  padding: 80px 0;
  background: var(--off);
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: normal;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.step-content p + p {
  margin-top: 12px;
}

/* Four-step process strip (homepage Section 5) */
.process {
  padding: 80px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ============================================================
   ABOUT PAGE — bio section
   ============================================================ */
.about-page {
  padding: 80px 0;
  background: var(--off);
}

/* 1-col mobile → 2-col desktop (photo left, bio right) */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.about-page-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}

.about-page-bio h2 {
  font-size: 22px;
  margin-bottom: 18px;
}

.about-page-bio p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
}

.about-page-bio p + p {
  margin-top: 14px;
}

.about-credentials {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-credentials h3 {
  font-size: 17px;
  margin-bottom: 16px;
}

.cred-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cred-list-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cred-list-item .cred-code {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--navy);
}

.cred-list-item .cred-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: 80px 0;
  background: var(--off);
}

/* 1-col mobile → 2-col desktop (form left, details right) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 32px 28px 28px;
}

.contact-form-wrap h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-details h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-detail-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.contact-detail-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 60px;
  padding-top: 2px;
  flex-shrink: 0;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.contact-detail-value a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
}

.contact-detail-value a:hover {
  text-decoration: underline;
}

.contact-next {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-next h3 {
  font-size: 17px;
  margin-bottom: 20px;
}

.next-step {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.next-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}

.next-step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   PROSE — privacy and terms
   ============================================================ */
.privacy-page {
  padding: 80px 0;
  background: var(--off);
}

.prose {
  max-width: 700px;
}

.prose h2 {
  font-size: 20px;
  margin: 36px 0 12px;
}

.prose p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
}

.error-page-inner {
  max-width: 480px;
}

.error-code {
  font-family: Georgia, serif;
  font-size: 80px;
  font-weight: normal;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.error-page h1 {
  font-size: 26px;
  margin-bottom: 14px;
}

.error-page p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.65;
}

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

.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--muted); }
.text-italic { font-style: italic; }

/* ============================================================
   TABLET — 640px and up
   ============================================================ */
@media (min-width: 640px) {

  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .wrap { padding: 0 40px; }

  .topbar { display: block; }

  .header-inner { height: 76px; }

  .mobile-nav { top: 76px; }

  .phone-text { display: block; }

  .hero { padding: 60px 0 72px; }
  .hero-copy h1 { font-size: 34px; }

  .hero-cta-row {
    grid-template-columns: auto auto;
    justify-content: flex-start;
  }
  .hero-cta-row .btn { width: auto; }

  .trust-list { grid-template-columns: 1fr 1fr; }

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

  .faq-grid { grid-template-columns: 1fr 1fr; }

  .cta-actions { flex-direction: row; justify-content: center; }
  .cta-phone-link { font-size: 26px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .page-header { padding: 60px 0 52px; }
  .page-header h1 { font-size: 34px; }

  .about-page-bio h2 { font-size: 26px; }
}

/* ============================================================
   DESKTOP — 1024px and up
   ============================================================ */
@media (min-width: 1024px) {

  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }

  .wrap { padding: 0 32px; }

  .header-inner { height: 88px; }

  .primary-nav    { display: flex; }
  .header-enquire { display: inline-flex; }
  .hamburger      { display: none; }
  .mobile-nav     { display: none !important; }

  .hero { padding: 72px 0 88px; }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
  }
  .hero-copy h1 { font-size: 40px; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .why-cards     { grid-template-columns: repeat(3, 1fr); }
  .process-grid  { grid-template-columns: repeat(4, 1fr); gap: 24px; }

  .fees-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: center;
  }
  .fees-copy h2 { font-size: 30px; }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
  }

  .cta-box { padding: 56px 48px; }
  .cta-box h2 { font-size: 30px; }
  .cta-phone-link { font-size: 28px; }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 48px;
  }

  .page-header { padding: 72px 0 60px; }
  .page-header h1 { font-size: 40px; }

  .about-page-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: start;
  }
  .about-page-bio h2 { font-size: 30px; }

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
  }
}

/* ============================================================
   ABOUT PAGE HERO — two-column hero (copy left, portrait right)
   ============================================================ */
.about-hero {
  padding: 60px 0 56px;
  background: var(--off);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-hero h1 {
  margin-top: 10px;
}

.about-hero-lede {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
  max-width: 58ch;
}

.about-hero .hero-cta-row {
  margin-top: 28px;
}

/* Placeholder visible on light background */
.about-hero .about-photo-placeholder {
  background: var(--line-soft);
}

.about-hero .about-photo-label {
  color: var(--muted);
}

/* Credential sub-label for expanded about page credential cells */
.cred-sub {
  font-size: 12px;
  font-style: italic;
  color: #a0b2c4;
  margin-top: 4px;
  line-height: 1.4;
}

.cred-sub + .cred-body {
  margin-top: 8px;
}

/* Credentials section — navy background (about page Section 5) */
.about-cred-section {
  background: var(--navy);
  padding: 80px 0;
}

.about-cred-section h2 {
  color: var(--white);
}

.about-cred-section .about-cred-intro {
  color: #b8c6d4;
  font-size: 15.5px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 620px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .about-hero { padding: 80px 0 72px; }
  .about-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
  }
  .about-hero-copy { order: 1; }
  .about-hero-photo { order: 2; }
}
