/* =============================================
   SEAREAL — GLOBAL STYLESHEET
   Design system, header, footer, components.
   Used across every page on the site.
   ============================================= */

:root {
  --navy: #0F2A4A;
  --navy-deep: #0A1F38;
  --navy-soft: #1A3A5F;
  --gold: #D4A24C;
  --gold-soft: #E8C589;
  --gold-20: rgba(212, 162, 76, 0.20);
  --gold-10: rgba(212, 162, 76, 0.10);
  --cream: #FAF7F1;
  --cream-warm: #F4EFE3;
  --white: #FFFFFF;
  --text: #1A2438;
  --text-muted: #5A6478;
  --border: #E5E2DA;
  --shadow-sm: 0 2px 8px rgba(15, 42, 74, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 42, 74, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 42, 74, 0.14);
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   HEADER (Option 2 — utility strip + main nav)
   ============================================= */

.utility-bar {
  background: var(--navy-deep);
  color: var(--gold-soft);
  padding: 8px 0;
  font-size: 13px;
}
.utility-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.util-left, .util-right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.util-link {
  color: var(--gold-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.15s;
}
.util-link:hover { color: var(--gold); }
.util-divider {
  width: 1px;
  height: 14px;
  background: rgba(232, 197, 137, 0.3);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-tag {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}
.nav-area {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-list a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  display: block;
}
.nav-list a:hover {
  background: var(--gold-20);
  color: var(--navy-deep);
}
.nav-list a.has-dropdown::after {
  content: '▾';
  margin-left: 5px;
  font-size: 10px;
  opacity: 0.5;
}
.nav-list a.active { color: var(--gold); font-weight: 600; }
.ndis-badge-placeholder {
  width: 84px;
  height: 50px;
  border: 2px dashed var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9px;
  color: var(--gold);
  line-height: 1.2;
  padding: 5px;
  font-weight: 600;
  background: var(--gold-20);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: var(--navy);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  display: inline-block;
  font-family: 'Manrope', sans-serif;
}
.btn-primary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-hero-primary {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}
.btn-hero-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 162, 76, 0.4);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}
.btn-hero-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: all 0.2s;
}
.btn-link:hover { color: var(--gold); gap: 12px; }

/* =============================================
   BREADCRUMBS (internal pages)
   ============================================= */
.breadcrumbs {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumbs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep {
  color: var(--text-muted);
  opacity: 0.5;
}
.breadcrumbs .current {
  color: var(--navy);
  font-weight: 600;
}

/* =============================================
   HERO (homepage variant)
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(212, 162, 76, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(212, 162, 76, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-decorative {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(212, 162, 76, 0.15);
  border-radius: 50%;
  top: -160px;
  right: -160px;
  pointer-events: none;
}
.hero-decorative.smaller {
  width: 320px;
  height: 320px;
  top: 80px;
  right: -40px;
  border-color: rgba(212, 162, 76, 0.10);
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 400;
}
.hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* =============================================
   HERO (internal pages — smaller)
   ============================================= */
.hero-internal {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-internal .hero-inner {
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}
.hero-internal h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero-internal .hero-lead {
  font-size: 17px;
  margin-bottom: 28px;
}

/* =============================================
   IMAGE PLACEHOLDERS
   ============================================= */
.hero-image, .body-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 162, 76, 0.18), rgba(212, 162, 76, 0.05));
  border: 2px dashed rgba(212, 162, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.body-image {
  background: linear-gradient(135deg, var(--cream-warm), var(--cream));
  border-color: var(--gold);
}
.body-image-wide {
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream-warm), var(--cream));
  border: 2px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.image-placeholder-content {
  text-align: center;
  color: var(--gold-soft);
  padding: 24px;
}
.body-image .image-placeholder-content,
.body-image-wide .image-placeholder-content {
  color: var(--gold);
}
.image-placeholder-content .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(212, 162, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-image .image-placeholder-content .icon,
.body-image-wide .image-placeholder-content .icon {
  background: var(--gold-20);
}
.image-placeholder-content .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.image-placeholder-content .desc {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}
.hero-floating-card {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--white);
  color: var(--navy-deep);
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.hero-floating-card .stat-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-floating-card .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* =============================================
   SECTION BASE
   ============================================= */
section { padding: 100px 0; }
.section-eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-eyebrow.left { justify-content: flex-start; }
.section-eyebrow.left::after { display: none; }
.section-title {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-align: center;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-title.left { text-align: left; }
.section-lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.65;
}
.section-lead.left { margin-left: 0; text-align: left; }

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.trust-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-stat .num em { color: var(--gold); font-style: normal; font-weight: 500; }
.trust-stat .lbl {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 8px;
}
.trust-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
}

/* =============================================
   SERVICES GRID (cards with icons)
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.3s;
}
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-20);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.05);
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-features {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
}
.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.read-more {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.2s;
  align-self: flex-start;
}
.read-more:hover { color: var(--gold); gap: 10px; }

/* =============================================
   SPLIT LAYOUT (image + content)
   ============================================= */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.image-right .split-content { order: 1; }
.split-grid.image-right .split-image-wrap { order: 2; }

.image-overlay-card {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
  z-index: 2;
}
.image-overlay-card .badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.image-overlay-card .badge-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-overlay-card .badge-label {
  font-size: 11px;
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.image-overlay-card .badge-text {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.points-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}
.point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.point-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.point h4 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.point p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* =============================================
   LOCATIONS GRID
   ============================================= */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.location-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.location-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.location-card:hover .location-icon {
  transform: rotate(-5deg) scale(1.05);
}
.location-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.location-card .region {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.location-card .arrow {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.location-card:hover .arrow { opacity: 1; }

/* =============================================
   STEPS / HOW IT WORKS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-20), var(--gold), var(--gold-20));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  transition: all 0.3s;
}
.step-card:hover .step-number {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.05);
}
.step-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  padding: 0 12px;
}

/* =============================================
   TESTIMONIALS (dark navy bg)
   ============================================= */
.testimonials-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 162, 76, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(212, 162, 76, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-title em { color: var(--gold-soft); }
.testimonials-section .section-lead { color: rgba(255, 255, 255, 0.7); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 162, 76, 0.2);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}
.testimonial-quote-mark {
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 0.8;
  margin-bottom: 8px;
  height: 28px;
}
.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Fraunces', serif;
}
.testimonial-attr .name {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}
.testimonial-attr .meta {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.blog-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--cream-warm), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px dashed var(--gold);
}
.blog-thumb .thumb-content { text-align: center; }
.blog-thumb .thumb-content svg {
  margin-bottom: 8px;
  opacity: 0.6;
}
.blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.blog-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-card .read {
  color: var(--navy);
  font-weight: 600;
}

/* =============================================
   BLOG ARTICLE PAGE (long-form)
   ============================================= */
.article-section {
  background: var(--white);
  padding: 80px 0;
}
.article-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 64px;
}
.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.article-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--navy);
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.article-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 23px;
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.article-body h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.article-body p {
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  margin: 0 0 24px 24px;
}
.article-body li {
  margin-bottom: 10px;
  padding-left: 4px;
}
.article-body strong { color: var(--navy); font-weight: 700; }
.article-body em { font-style: italic; }
.article-body a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
  transition: color 0.15s;
}
.article-body a:hover { color: var(--gold); }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream);
  padding: 20px 28px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.article-body th {
  background: var(--cream);
  color: var(--navy);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gold);
}
.article-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

/* Article meta header */
.article-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(212, 162, 76, 0.10) 0%, transparent 45%);
}
.article-header-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.article-tag {
  display: inline-block;
  background: var(--gold-20);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.article-title {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.article-meta-row {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  flex-wrap: wrap;
}
.article-meta-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-meta-row svg { color: var(--gold-soft); }

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  height: fit-content;
}
.article-sidebar h5 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.article-toc {
  list-style: none;
  margin-bottom: 32px;
}
.article-toc li { margin-bottom: 10px; }
.article-toc a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  display: block;
  padding: 4px 0;
  transition: color 0.15s;
}
.article-toc a:hover { color: var(--gold); }

.share-list {
  display: flex;
  gap: 8px;
}
.share-list a {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.2s;
}
.share-list a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--gold); }
.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  gap: 16px;
}
.faq-question .toggle-icon {
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: all 0.3s;
}
.faq-item.open .toggle-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-answer-inner p { margin-bottom: 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* =============================================
   BIG CTA SECTION (Footer Option 3 inline)
   ============================================= */
.cta-section { padding: 0; background: var(--cream); padding-bottom: 60px; }
.cta-card {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 24px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(15, 42, 74, 0.18);
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(212, 162, 76, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(212, 162, 76, 0.10) 0%, transparent 50%);
  pointer-events: none;
}
.cta-decorative-circle {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(212, 162, 76, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.cta-decorative-circle.small {
  top: auto;
  bottom: -180px;
  right: 80px;
  width: 240px;
  height: 240px;
  border-color: rgba(212, 162, 76, 0.10);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.cta-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-card h2 em {
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 400;
}
.cta-card .lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-side {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 162, 76, 0.20);
  border-radius: 16px;
  padding: 32px;
}
.cta-side .label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.quick-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.quick-line:last-child { border-bottom: none; }
.quick-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(212, 162, 76, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-line .text { flex: 1; }
.quick-line .text .key {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.quick-line .text .val {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.quick-line .text a.val:hover { color: var(--gold-soft); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}
.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-mark {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
}
.footer-brand .brand-name {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 22px;
}
.ndis-footer-badge {
  width: 100px;
  height: 60px;
  border: 2px dashed var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9px;
  color: var(--gold-soft);
  line-height: 1.2;
  padding: 5px;
  font-weight: 600;
  background: rgba(212, 162, 76, 0.10);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}
.footer-meta-line {
  display: inline;
}
.footer-meta a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-left: 18px;
}
.footer-meta a:hover { color: var(--gold-soft); }
.footer-credit {
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
.footer-credit a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 600;
  margin-left: 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.footer-credit a:hover {
  border-bottom-color: var(--gold-soft);
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: all 0.2s;
}
.social-row a:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* =============================================
   PAGINATION (blog index)
   ============================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.pg-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.pg-arrow:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.pg-arrow.disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}
.pg-numbers {
  display: flex;
  gap: 6px;
}
.pg-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.pg-num:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
}
.pg-num.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* =============================================
   PREV / NEXT (article pages)
   ============================================= */
.prev-next-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.prev-next-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 26px;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
  color: inherit;
}
.prev-next-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.prev-next-card.next { text-align: right; }
.pn-label {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.pn-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (max-width: 700px) {
  .prev-next-row { grid-template-columns: 1fr; }
  .prev-next-card.next { text-align: left; }
}

/* =============================================
   FORMS (Contact, Referral, Careers)
   ============================================= */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: var(--cream);
  color: var(--text);
  transition: all 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-20);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group .help {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: auto;
  margin-right: 8px;
}
.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

/* =============================================
   ENTRANCE ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero-lead, .hero-cta-row, .hero-trust-row,
.hero-internal h1, .hero-internal .hero-lead {
  animation: fadeUp 0.8s ease-out backwards;
}
.hero-lead { animation-delay: 0.15s; }
.hero-cta-row { animation-delay: 0.3s; }
.hero-trust-row { animation-delay: 0.45s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 44px; }
  .hero-internal h1 { font-size: 36px; }
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .nav-list { display: none; }
  .ndis-badge-placeholder { display: none; }
  .util-left .util-link:nth-of-type(3),
  .util-left .util-divider:nth-of-type(2) { display: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-card { padding: 48px 32px; }
  .cta-card h2 { font-size: 34px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .section-title { font-size: 34px; }
  .menu-toggle { display: flex; }
  .article-layout { grid-template-columns: 1fr; gap: 32px; }
  .article-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: 34px; }
  .hero-internal { padding: 48px 0 56px; }
  .hero-internal h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .trust-divider { display: none; }
  .trust-strip .trust-stat { flex: 0 0 calc(50% - 16px); }
  .article-title { font-size: 30px; }
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 24px; }
  .article-body h3 { font-size: 20px; }
  .header-inner { padding: 14px 20px; gap: 16px; }
  .utility-inner { padding: 0 20px; gap: 12px; }
  .container { padding: 0 20px; }
  .form-card { padding: 28px 20px; }
}
