@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --accent: #ff6b4a;
  --accent-dark: #e8522f;
  --accent-light: #ff8c6e;
  --navy: #1c2b3a;
  --navy-mid: #2a3f52;
  --navy-light: #3d5a73;
  --warm-white: #faf9f7;
  --cream: #f5f0e8;
  --cream-dark: #ede7da;
  --stone: #8c7b6e;
  --stone-light: #b5a898;
  --border: #e8e2d9;
  --text: #1c2b3a;
  --text-mid: #4a5568;
  --text-light: #8c7b6e;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 12px rgba(28,43,58,0.06);
  --shadow: 0 4px 24px rgba(28,43,58,0.10);
  --shadow-lg: 0 12px 48px rgba(28,43,58,0.14);
  --transition: 0.28s ease;
  --max-width: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ─── NAVBAR ─────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo .logo-mark {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo .logo-mark svg { width: 22px; height: 22px; fill: white; }
.nav-logo .logo-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.nav-logo .logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--warm-white); }
.nav-links .nav-cta a {
  background: var(--accent);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 600;
}
.nav-links .nav-cta a:hover { background: var(--accent-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 860px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 2px;
    border-bottom: 2px solid var(--accent);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.95rem; padding: 12px 16px; width: 100%; }
  .nav-links .nav-cta { width: 100%; }
  .nav-links .nav-cta a { display: block; text-align: center; border-radius: var(--radius-md); }
}

/* ─── HERO ───────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,43,58,0.55) 0%, rgba(28,43,58,0.25) 60%, rgba(28,43,58,0.45) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
  gap: 36px;
}
.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,107,74,0.35); }

.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost { background: transparent; color: var(--text-mid); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ─── SECTIONS ────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-cream { background: var(--warm-white); }
.section-dark { background: var(--navy); color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--navy);
}

.section-dark .section-title { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 400;
}
.section-dark .section-sub { color: rgba(255,255,255,0.58); }

.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ─── SERVICE CARDS ──────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  transition: background var(--transition);
  position: relative;
}
.service-card:hover { background: var(--warm-white); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.text-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.text-link:hover { gap: 10px; color: var(--accent-dark); }

/* ─── FEATURE LIST ────────────────────── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-mid);
}
.feature-list li .tick {
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list li .tick::after {
  content: '';
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(0, -1px);
  display: block;
}

/* ─── TWO COL ─────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ─── IMAGE PANEL ─────────────────────── */
.img-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  min-height: 400px;
  position: relative;
}

.img-panel img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.img-panel-dark {
  background: var(--navy-mid);
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.img-panel-dark img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  opacity: 0.85;
}

/* ─── STATS STRIP ─────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ─── PROCESS STEPS ──────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step { text-align: center; padding: 0 20px; }

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  transition: all var(--transition);
}

.step:hover .step-num { background: var(--accent); color: var(--white); border-color: var(--accent); }

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.step p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ─── PARTNER BOX ─────────────────────── */
.partner-section {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.partner-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.partner-name span { color: var(--accent); }

.partner-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }

/* ─── CALLOUT BOX ─────────────────────── */
.callout {
  background: var(--cream);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin-top: 24px;
}
.callout h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.callout p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ─── PROPERTY CARDS ─────────────────── */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.property-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }

.property-img {
  height: 200px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.property-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}

.property-body { padding: 22px 24px; }

.property-estate-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.property-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.property-suburb { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; }

.property-specs {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.property-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}

.property-footer { display: flex; align-items: center; justify-content: space-between; }

.property-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.property-price-from { font-size: 0.7rem; color: var(--text-light); font-weight: 500; }

.property-est-title { font-size: 0.72rem; color: var(--text-light); margin-top: 10px; }

/* ─── FILTER BAR ─────────────────────── */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
  flex: 1;
}
.filter-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}
.filter-group select, .filter-group input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition);
}
.filter-group select:focus, .filter-group input:focus {
  outline: none;
  border-color: var(--accent);
}

/* ─── CTA BAND ─────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(255,107,74,0.2) 0%, transparent 60%);
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── STICKY CTA ─────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(28,43,58,0.10);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { font-size: 0.9rem; color: var(--text-mid); font-weight: 500; }
.sticky-cta p strong { color: var(--navy); }

/* ─── LEAD FORM ─────────────────────── */
.form-page {
  min-height: 100vh;
  background: var(--warm-white);
  padding-top: 72px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-lg);
  max-width: 660px;
  margin: 0 auto;
  width: 100%;
  border: 1px solid var(--border);
}

.form-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.form-sub { color: var(--text-mid); margin-bottom: 36px; font-size: 0.95rem; line-height: 1.65; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 16px; font-size: 0.95rem; border-radius: 30px; }
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--stone-light);
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}

/* ─── PAGE HEADER ─────────────────────── */
.page-header {
  background: var(--navy);
  padding: 128px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.15;
}
.page-header::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,74,0.14) 0%, transparent 65%);
  z-index: 1;
}
.page-header-content { z-index: 2; }
.page-header-content { position: relative; }
.page-header .eyebrow { color: var(--accent); }
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.page-header p { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.75; font-weight: 300; }

/* ─── THANK YOU ──────────────────────── */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  padding: 24px;
  padding-top: 72px;
}
.thankyou-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 52px;
  max-width: 580px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--border);
}
.thankyou-icon {
  width: 80px; height: 80px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
}
.thankyou-card h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--navy);
}
.thankyou-card > p { color: var(--text-mid); margin-bottom: 32px; line-height: 1.7; }

/* ─── NEXT STEPS LIST ────────────────── */
.next-steps {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 28px;
  text-align: left;
}
.next-steps-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
}
.next-steps ol { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.next-steps ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.next-steps ol li .num {
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── TRUST TRIO ─────────────────────── */
.trust-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 660px;
  margin: 28px auto 0;
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
}
.trust-item .t-icon { font-size: 1.4rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.72rem; font-weight: 600; color: var(--text-mid); line-height: 1.4; }

/* ─── DISCLAIMER BOX ─────────────────── */
.disclaimer-box {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.disclaimer-box h4 {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.disclaimer-box p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; }

/* ─── FOOTER ─────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-abn { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 12px; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.footer-bottom p + p { margin-top: 6px; }

/* ─── ANIMATIONS ─────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.12s; }
.fade-up.delay-2 { transition-delay: 0.22s; }
.fade-up.delay-3 { transition-delay: 0.32s; }
.fade-up.delay-4 { transition-delay: 0.42s; }

/* ─── EMPTY / LOADING ─────────────────── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--text-light);
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.empty-state p { font-size: 0.92rem; line-height: 1.6; }
.empty-state p a { color: var(--accent); font-weight: 600; }

.skeleton {
  background: linear-gradient(90deg, var(--warm-white) 25%, #f0ebe3 50%, var(--warm-white) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-lg);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card { height: 360px; }

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: 1fr; gap: 1px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .partner-section { grid-template-columns: 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.flip { direction: ltr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-bg-shape { display: none; }
  .hero-stats { gap: 24px; }
  .filter-bar { flex-direction: column; }
  .filter-group { min-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-trio { grid-template-columns: 1fr; }
  .sticky-cta { flex-direction: column; gap: 10px; text-align: center; padding: 16px 20px; }
  .thankyou-card { padding: 40px 24px; }
  .partner-section { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
