/* ==========================================================================
   Ruby Duke Finance Pty Ltd — Website styles
   Palette: Bordeaux & Copper (from brand logo palette)
   ========================================================================== */

:root {
  --bordeaux:      #4A1220;
  --bordeaux-deep: #2C0B14;
  --near-black:    #220F16;
  --copper:        #C47A45;
  --copper-soft:   #D99873;
  --cream:         #F8EFE9;
  --cream-2:       #FBF6F1;
  --line:          #E7D9CF;
  --ink:           #2A1B1E;
  --muted:         #6E5A5A;
  --white:         #FFFFFF;
  --success:       #2C4A35;
  --warn:          #B5852B;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1140px;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(34,15,22,0.06);
  --shadow-md: 0 12px 32px rgba(34,15,22,0.10);
  --shadow-lg: 0 24px 60px rgba(34,15,22,0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-2);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); color: var(--bordeaux); line-height: 1.15; font-weight: 700; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1rem; }
a { color: var(--bordeaux); text-decoration: none; }
a:hover { color: var(--copper); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: .9rem;
}

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--bordeaux); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--copper-soft); }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; }
.section--dark .lead { color: #EAD9CF; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--copper); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #b96c39; color: #fff; box-shadow: var(--shadow-md); }
.btn--dark { background: var(--bordeaux); color: #fff; }
.btn--dark:hover { background: var(--bordeaux-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--bordeaux); border-color: var(--bordeaux); }
.btn--ghost:hover { background: var(--bordeaux); color: #fff; }
.btn--on-dark { background: var(--cream); color: var(--bordeaux); }
.btn--on-dark:hover { background: #fff; color: var(--bordeaux); }
.btn--outline-light { background: transparent; color: var(--cream); border-color: rgba(248,239,233,.5); }
.btn--outline-light:hover { background: rgba(248,239,233,.12); color: #fff; }
/* Send an enquiry - primary call to action across the site */
.btn--enquiry { background: #2C6E9B; color: #fff; border-color: #2C6E9B; box-shadow: 0 2px 8px rgba(44,110,155,.28); }
.btn--enquiry:hover { background: #235880; color: #fff; border-color: #235880; box-shadow: var(--shadow-md); }
/* Feedback box on the contact page */
.feedback-card { background: var(--cream); border-left: 4px solid var(--copper); }
.feedback-card h3 { color: var(--bordeaux); }
.btn--health { background: #4F8A5B; color: #fff; box-shadow: var(--shadow-sm); }
.btn--health:hover { background: #427349; color: #fff; box-shadow: var(--shadow-md); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 60px; width: auto; display: block; }
.brand-fallback { font-family: var(--serif); font-weight: 700; color: var(--bordeaux); font-size: 1.3rem; }

/* Social icons in header */
.nav-social { display: flex; align-items: center; gap: 4px; padding-left: 4px; }
.nav-social a { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: transform .15s, background .15s; }
.nav-social a:hover { background: rgba(0,0,0,.06); transform: translateY(-1px); }
.nav-social svg { width: 17px; height: 17px; }

/* Brand colours for social icons (header + footer) */
.nav-social a[aria-label="Facebook"],  .social-row a[aria-label="Facebook"]  { color: #1877F2; }
.nav-social a[aria-label="Instagram"], .social-row a[aria-label="Instagram"] { color: #E4405F; }
.nav-social a[aria-label="LinkedIn"],  .social-row a[aria-label="LinkedIn"]  { color: #0A66C2; }
.nav-social a[aria-label="YouTube"],   .social-row a[aria-label="YouTube"]   { color: #FF0000; }
.social-row a:hover[aria-label] { color: #fff; }

/* Large logo lockup (used in hero, top-right) */
.hero-right { display: flex; flex-direction: column; gap: 22px; }
.hero-logo-badge {
  background: #fff; border-radius: var(--radius); padding: 20px 26px;
  text-align: center; box-shadow: var(--shadow-md);
}
.hero-logo-badge img { width: min(420px, 100%); height: auto; display: inline-block; }

/* Social media row */
.social-row { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.social-row a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(248,239,233,.08); border: 1px solid rgba(233,217,207,.22); color: #E9D9CF; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.social-row a:hover { background: var(--copper); border-color: var(--copper); color: #fff; transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 9px 12px; border-radius: 8px;
  font-size: .96rem; font-weight: 500; color: var(--ink);
  white-space: nowrap; text-align: center;
}
.nav-drop-toggle { white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--bordeaux); background: rgba(196,122,69,.12); }
.nav-cta { margin-left: 4px; }
.nav-cta a.btn--enquiry, .nav-cta a.btn--enquiry:hover, .nav-cta a.btn--enquiry.active { color: #fff; font-weight: 700; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--bordeaux); margin: 5px 0; transition: .25s; }

/* Compliance dropdown */
.has-dropdown { position: relative; }
.nav-drop-toggle { background: none; border: 0; cursor: pointer; font-family: var(--sans); font-size: .96rem; font-weight: 500; color: var(--ink); padding: 9px 12px; border-radius: 8px; display: inline-flex; align-items: center; gap: 5px; line-height: 1; }
.nav-drop-toggle .caret { font-size: .7em; }
.nav-drop-toggle:hover, .has-dropdown:hover .nav-drop-toggle { color: var(--bordeaux); background: rgba(196,122,69,.12); }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 250px; background: var(--cream-2); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-md); padding: 8px; list-style: none; margin: 8px 0 0; display: none; z-index: 60; }
/* invisible bridge so moving the mouse from the button to the menu doesn't drop the hover */
.dropdown-menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.has-dropdown:hover .dropdown-menu, .dropdown-menu.open { display: block; }
.dropdown-menu li { margin: 0; }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 6px; font-size: .94rem; font-weight: 500; color: var(--ink); white-space: nowrap; }
.dropdown-menu a:hover, .dropdown-menu a.active { background: rgba(196,122,69,.12); color: var(--bordeaux); }

/* Legal / policy pages (body text sized down for readability of long documents) */
.legal { font-size: 13px; line-height: 1.78; color: var(--ink); }
/* Major section divider */
.legal h2 {
  font-size: 1.22rem; margin: 3.2em 0 1.1em; padding-bottom: .5em;
  border-bottom: 2px solid var(--copper); color: var(--bordeaux);
}
.legal > h2:first-child { margin-top: 0; }
/* Sub-section heading */
.legal h3 {
  font-size: 1rem; margin: 2.4em 0 .8em; padding-bottom: .5em;
  border-bottom: 1px solid var(--line); letter-spacing: .005em;
}
.legal > h3:first-child { margin-top: 0; }
.legal h2 + h3 { margin-top: 1.2em; }
.legal p { font-size: 13px; color: var(--ink); margin: 0 0 1.1em; }
.legal ul { margin: 0 0 1.5em; padding-left: 1.4rem; }
.legal li { font-size: 13px; margin-bottom: .6em; color: var(--ink); line-height: 1.72; padding-left: .1rem; }
.legal li::marker { color: var(--copper); }
.legal a { word-break: break-word; }
/* Sub-label inside a legal section (e.g. Mail: / Online:) */
.legal .label { font-weight: 700; color: var(--bordeaux); margin: 1.8em 0 .45em; }
/* Tight blocks for addresses and contact details */
.legal .block { margin: 0 0 1.4em; }
.legal .block p { margin: 0 0 .2em; }
.legal .block p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .has-dropdown { width: 100%; }
  .nav-drop-toggle { width: 100%; justify-content: flex-start; padding: 12px 14px; }
  .dropdown-menu { position: static; box-shadow: none; border: 0; background: transparent; padding: 0 0 6px 14px; margin: 0; min-width: 0; }
  .has-dropdown:hover .dropdown-menu { display: none; }
  .has-dropdown .dropdown-menu.open { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--bordeaux-deep);
  color: var(--cream);
  padding: 90px 0 96px;
  min-height: 560px;
  display: flex; align-items: center;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: url("hero-house.jpg") center/cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(40,10,18,.95) 0%, rgba(40,10,18,.82) 32%, rgba(40,10,18,.5) 60%, rgba(40,10,18,.12) 100%); }
.hero > .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 640px; }
.hero-logo { position: absolute; top: 24px; right: 30px; z-index: 3; }
.hero-logo img { height: 168px; width: auto; display: block; border-radius: 12px; }
@media (max-width: 760px) {
  .hero { min-height: 460px; padding: 66px 0 72px; }
  .hero::before { background-position: 64% center; }
  .hero::after { background: linear-gradient(175deg, rgba(40,10,18,.72) 0%, rgba(40,10,18,.88) 72%); }
  .hero-logo { display: none; }
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .lead { color: #EEDDD3; font-size: 1.25rem; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(248,239,233,.18); }
.hero-trust div { min-width: 120px; }
.hero-trust .num { font-family: var(--serif); font-size: 1.7rem; color: var(--copper-soft); font-weight: 700; }
.hero-trust .lbl { font-size: .82rem; color: #E4D0C6; letter-spacing: .02em; }

.hero-card {
  background: rgba(251,246,241,.06);
  border: 1px solid rgba(248,239,233,.22);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.hero-card h3 { color: #fff; margin-bottom: .8rem; }
.hero-card ul { list-style: none; margin: 0; padding: 0; }
.hero-card li { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; color: #F1E4DB; font-size: .98rem; border-bottom: 1px solid rgba(248,239,233,.1); }
.hero-card li:last-child { border-bottom: 0; }
.tick { color: var(--copper-soft); flex: 0 0 auto; margin-top: 2px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .98rem; }
.card .icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(196,122,69,.18), rgba(74,18,32,.1));
  color: var(--bordeaux); margin-bottom: 16px;
}
.card .icon svg { width: 26px; height: 26px; }
/* Richer, coloured feature icons */
.card .icon.icon--feature {
  width: 64px; height: 64px; border-radius: 16px; position: relative; overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.card .icon.icon--feature::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70px 46px at 80% 8%, rgba(255,255,255,.22), transparent 70%); }
.card .icon.icon--feature svg { width: 36px; height: 36px; position: relative; z-index: 1; }
.card .icon.ic-green { background: linear-gradient(150deg, #3E8163, #2C5E45); }
.card .icon.ic-teal  { background: linear-gradient(150deg, #2E7488, #1E5164); }
.card .icon.ic-gold  { background: linear-gradient(150deg, #D0A43C, #A5761C); }
.card .icon.ic-wine  { background: linear-gradient(150deg, #7A2438, #4A1220); }
.card .icon.ic-copper{ background: linear-gradient(150deg, #C47A45, #9A5A2C); }
/* Values: 5 cards that wrap and stay centred */
.values-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.values-grid .card { flex: 1 1 280px; max-width: 340px; }
@media (max-width: 620px) { .values-grid .card { max-width: none; } }

.pill {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--copper); background: rgba(196,122,69,.12);
  padding: 4px 11px; border-radius: 999px; margin-bottom: 12px;
}

/* ---------- Feature / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--reverse .split-media { order: 2; }
.media-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, var(--bordeaux), var(--bordeaux-deep));
  min-height: 320px; display: grid; place-items: center; padding: 30px;
}

/* Monogram block used as decorative "photo" placeholder */
.monogram {
  font-family: var(--serif); color: var(--cream); text-align: center;
}
.monogram .rd { font-size: 5rem; font-weight: 700; letter-spacing: .04em; line-height: 1; }
.monogram .rule { width: 70px; height: 2px; background: var(--copper); margin: 14px auto; }
.monogram .nm { letter-spacing: .32em; font-family: var(--sans); font-size: .82rem; text-transform: uppercase; color: var(--copper-soft); }

.check-list { list-style: none; margin: 18px 0 0; padding: 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: var(--ink); }
.check-list .tick { color: var(--copper); }

/* ---------- Photo frames (real photos, with branded fallback) ---------- */
.photo-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); margin: 0;
  background: linear-gradient(150deg, var(--bordeaux), var(--bordeaux-deep));
  aspect-ratio: 4 / 3;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame--portrait { aspect-ratio: 4 / 5; }
.photo-frame.photo-empty::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 220px at 72% 18%, rgba(196,122,69,.28), transparent 60%);
}
.photo-frame.photo-empty::after {
  content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--copper-soft); font-family: var(--sans); font-size: .82rem; letter-spacing: .04em;
  text-align: center; padding: 24px; line-height: 1.6;
}

/* ---------- Service tiles (image cards linking to services) ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tile {
  position: relative; display: block; aspect-ratio: 3 / 4; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); text-decoration: none;
  background: linear-gradient(150deg, var(--bordeaux), var(--bordeaux-deep));
}
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.tile:hover img { transform: scale(1.06); }
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(34,15,22,.85) 0%, rgba(34,15,22,.25) 50%, rgba(34,15,22,.05) 100%);
}
.tile .tile-label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px; }
.tile .tile-label h3 { color: #fff; margin: 0 0 2px; font-size: 1.18rem; }
.tile .tile-label span { color: var(--copper-soft); font-size: .84rem; font-weight: 600; }
.tile .tile-arrow { position: absolute; top: 16px; right: 16px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: rgba(248,239,233,.16); display: grid; place-items: center; color: #fff; transition: background .2s; }
.tile:hover .tile-arrow { background: var(--copper); }
.tile.photo-empty::before {
  content: attr(data-label); position: absolute; z-index: 2; top: 14px; left: 14px; right: 56px;
  color: var(--copper-soft); font-size: .7rem; line-height: 1.4;
}
/* Plain image tiles (used when the label/gradient is baked into the image) */
.tile--plain::after { content: none; }
@media (max-width: 960px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tiles { grid-template-columns: 1fr; } .tile:not(.tile--plain) { aspect-ratio: 16/10; } }

/* ---------- Mortgage calculator ---------- */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.calc-result { background: linear-gradient(150deg, var(--bordeaux), var(--bordeaux-deep)); color: var(--cream); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-md); }
.calc-result .big { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: #fff; line-height: 1; margin-top: 6px; }
.calc-result .big small { font-family: var(--sans); font-size: 1rem; color: var(--copper-soft); font-weight: 600; }
.calc-result .row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(248,239,233,.16); font-size: .98rem; color: #EAD9CF; }
.calc-result .row:last-of-type { border-bottom: 0; }
.calc-result .row span:last-child { font-weight: 700; color: #fff; }
@media (max-width: 760px) { .calc-wrap { grid-template-columns: 1fr; } }

/* ---------- Download card ---------- */
.download-card { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.download-card .dl-icon { flex: 0 0 auto; width: 64px; height: 64px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(150deg, rgba(196,122,69,.18), rgba(74,18,32,.12)); color: var(--bordeaux); }
.download-card .dl-icon svg { width: 32px; height: 32px; }
.download-card .dl-body { flex: 1 1 260px; }

/* ---------- Lifeblood community card ---------- */
.lifeblood-card { position: relative; text-align: center; padding-top: 48px; border: 1px solid #F0D8D3; background: linear-gradient(180deg, #FDF3F1 0%, #FFFFFF 55%); overflow: hidden; }
.lifeblood-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #E4362B, #B0271F); }
.lb-drop { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; background: linear-gradient(150deg, #E4362B, #AF2620); box-shadow: 0 10px 20px rgba(200,40,30,.28); }
.lb-drop svg { width: 30px; height: 30px; color: #fff; }
.lb-logo { max-height: 52px; width: auto; margin: 0 auto 16px; display: block; }
.lb-pill { background: rgba(224,54,43,.12); color: #C0281F; }
.lifeblood-card h3 { color: var(--bordeaux); }
.lb-stats { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 24px 0 10px; }
.lb-stat { flex: 1 1 150px; max-width: 210px; background: #fff; border: 1px solid #F0DAD5; border-radius: 14px; padding: 18px 14px; box-shadow: var(--shadow-sm); }
.lb-stat .num { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: #C0281F; line-height: 1; }
.lb-stat .lbl { display: block; margin-top: 7px; font-size: .8rem; font-weight: 600; letter-spacing: .02em; color: var(--muted); }
.btn--blood { background: #D8362A; color: #fff; }
.btn--blood:hover { background: #B62A20; color: #fff; }

/* ---------- Savings example stat block ---------- */
.save-example { margin-top: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream); padding: 18px 22px; }
.save-example .exlabel { font-size: .82rem; color: var(--muted); margin: 0 0 12px; }
.save-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.save-stats > div { display: flex; flex-direction: column; }
.save-stats .num { font-family: var(--serif); font-size: 1.95rem; font-weight: 700; color: var(--bordeaux); line-height: 1; }
.save-stats .lbl { font-size: .82rem; color: var(--copper); font-weight: 600; margin-top: 5px; }

/* ---------- Process graphic (inline SVG) ---------- */
.process-graphic { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); max-width: 440px; margin: 0 auto; }
.process-graphic svg { display: block; width: 100%; height: auto; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step .n {
  counter-increment: step; flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  background: var(--bordeaux); color: #fff; font-family: var(--serif); font-weight: 700;
  display: grid; place-items: center; font-size: 1.1rem;
}
.step h3 { margin-bottom: .2rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Health check ---------- */
.hc-wrap { max-width: 760px; margin: 0 auto; }
.hc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 34px; }
.hc-progress { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; margin-bottom: 28px; }
.hc-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--copper), var(--copper-soft)); transition: width .3s ease; }
.hc-step { display: none; }
.hc-step.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px);} to {opacity:1; transform:none;} }
.hc-q { font-family: var(--serif); font-size: 1.35rem; color: var(--bordeaux); margin-bottom: 4px; }
.hc-help { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.hc-options { display: grid; gap: 12px; }
.hc-opt {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 2px solid var(--line);
  border-radius: 12px; cursor: pointer; transition: .15s; background: var(--cream-2);
}
.hc-opt:hover { border-color: var(--copper-soft); background: #fff; }
.hc-opt input { accent-color: var(--bordeaux); width: 18px; height: 18px; }
.hc-opt.selected { border-color: var(--bordeaux); background: rgba(196,122,69,.08); }
.hc-nav { display: flex; justify-content: space-between; margin-top: 26px; gap: 12px; }
.hc-count { font-size: .85rem; color: var(--muted); align-self: center; }

.hc-result { display: none; }
.hc-result.active { display: block; }
.score-ring { text-align: center; margin-bottom: 18px; }
.score-ring .val { font-family: var(--serif); font-size: 3.4rem; font-weight: 700; color: var(--bordeaux); line-height: 1; }
.score-ring .of { color: var(--muted); font-size: 1rem; }
.score-band { text-align:center; font-weight:700; letter-spacing:.04em; text-transform:uppercase; font-size:.9rem; padding:6px 14px; border-radius:999px; display:inline-block; }
.band-strong { background: rgba(44,74,53,.14); color: var(--success); }
.band-ok { background: rgba(181,133,43,.16); color: var(--warn); }
.band-review { background: rgba(74,18,32,.1); color: var(--bordeaux); }
.hc-feedback { list-style: none; padding: 0; margin: 22px 0 0; }
.hc-feedback li { display:flex; gap:12px; padding:12px 0; border-bottom:1px solid var(--line); color: var(--ink); }
.hc-feedback li:last-child { border-bottom: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 1rem; background: #fff; color: var(--ink); transition: border .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(196,122,69,.15); }
.field textarea { min-height: 130px; resize: vertical; }
.field .req { color: var(--copper); }
.form-note { font-size: .85rem; color: var(--muted); }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success {
  display:none; background: rgba(44,74,53,.1); border:1px solid rgba(44,74,53,.3);
  color: var(--success); padding: 18px 20px; border-radius: 12px; margin-bottom: 18px; font-weight:500;
}
.form-success.show { display:block; }

/* Enquiry sent confirmation (replaces the form on success) */
.enquiry-sent { text-align: center; padding: 26px 8px; }
.es-check { width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: rgba(44,74,53,.12); color: var(--success); }
.es-check svg { width: 38px; height: 38px; }
.enquiry-sent h2 { margin-bottom: .4rem; }
.enquiry-sent p { color: var(--muted); }

/* ---------- Booking embed ---------- */
.calendly-placeholder {
  border: 2px dashed var(--copper-soft); border-radius: var(--radius); background: var(--cream);
  padding: 48px 30px; text-align: center;
}
.calendly-placeholder .mono { font-family: var(--sans); font-size:.85rem; color: var(--muted); background:#fff; border:1px solid var(--line); padding:8px 12px; border-radius:8px; display:inline-block; margin-top:14px; }

/* ---------- FAQ / accordion ---------- */
.faq { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background:#fff; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--bordeaux); list-style: none; display:flex; justify-content:space-between; align-items:center; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--copper); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(150deg, var(--bordeaux), var(--bordeaux-deep)); color: var(--cream); border-radius: 20px; padding: 54px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #EAD9CF; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Article list ---------- */
.article {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
  display:flex; flex-direction:column; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s;
}
.article:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article .art-top { background: linear-gradient(150deg, rgba(74,18,32,.92), rgba(44,11,20,.95)); color:#fff; padding: 22px 24px; }
.article .art-top .pill { background: rgba(248,239,233,.16); color: var(--copper-soft); }
.article .art-body { padding: 22px 24px; }
.article h3 { font-size: 1.15rem; }
.article p { color: var(--muted); font-size:.95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--near-black); color: #E9D9CF; padding: 60px 0 26px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.site-footer h4 { color: var(--copper-soft); font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: #E9D9CF; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-brand img { height: 52px; margin-bottom: 14px; filter: none; }
.footer-brand p { color: #C9B4AB; font-size: .92rem; max-width: 34ch; }
.footer-bottom { border-top: 1px solid rgba(233,217,207,.15); margin-top: 40px; padding-top: 22px; color: #B69E95; font-size: .82rem; }
.footer-bottom p { margin: 0 0 .6rem; }
.disclaimer { font-size: .78rem; color: #9E867D; line-height: 1.6; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.small { font-size: .88rem; color: var(--muted); }
.divider-note { text-align:center; color: var(--muted); font-size:.85rem; margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { gap: 28px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0; background: var(--cream-2);
    flex-direction: column; align-items: stretch; gap: 2px; padding: 14px 18px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 6px 0 0; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-two { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 22px; }
  .hero { padding: 66px 0 74px; }
}
