/* ============ Relocating to Cyprus: invest and relocate ============
   Design language: private-wealth editorial.
   Fraunces display serif · ink navy · limestone paper · brass gold.
   Hairline rules, square corners, generous whitespace. */

:root {
  --ink: #0f1b29;
  --ink-2: #16253a;
  --paper: #f5f1e8;
  --card: #fdfcf9;
  --gold: #c49a58;
  --gold-deep: #96713a;
  --text: #232a33;
  --muted: #6d675a;
  --line: #ded6c4;
  --line-dark: rgba(255, 255, 255, .14);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Hanken Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--gold); color: var(--ink); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.display, h1, h2 { font-family: "Fraunces", Georgia, serif; }

/* Italic serif accent inside display headings */
h1 em, h2 em { font-style: italic; font-weight: 480; color: var(--gold); }
.section:not(.dark) h2 em, .sun-copy h2 em { color: var(--gold-deep); }

/* Scroll reveal (class added by JS; no-JS users see everything) */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.rv-in { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(245, 241, 232, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner { display: flex; align-items: center; gap: 36px; height: 78px; }
.logo {
  display: flex; align-items: baseline; gap: 12px;
  color: var(--ink); text-decoration: none;
}
.logo:hover { text-decoration: none; }
/* viewBox is cropped to the artwork, so the mark's bottom edge is the
   horizon line; flex baseline alignment sits it on the text baseline */
.logo .mark { width: 36px; height: 21.5px; }
/* wordmark sized so the longer brand name still sits on one line
   in the 78px header and inside the footer brand column */
.logo .word {
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap;
}
.main-nav { display: flex; gap: 34px; flex: 1; justify-content: center; }
.main-nav a {
  color: var(--ink); font-weight: 700; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 0; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.main-nav a:hover { color: var(--gold-deep); text-decoration: none; }
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta {
  border: 1px solid var(--ink); color: var(--ink);
  font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 22px; white-space: nowrap; transition: background .2s, color .2s;
}
.header-cta:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--ink); cursor: pointer; margin-left: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; border: 0; cursor: pointer; font-family: inherit;
  background: var(--gold); color: var(--ink);
  font-weight: 700; font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  padding: 18px 34px; text-align: center;
  transition: background .22s var(--ease), transform .12s var(--ease), box-shadow .22s var(--ease);
}
.btn:hover { background: #b78c49; text-decoration: none; box-shadow: 0 10px 28px rgba(196, 154, 88, .28); }
.btn:active { transform: scale(.985); }
.btn.ghost {
  background: transparent; border: 1px solid rgba(255,255,255,.45); color: #fff;
  transition: border-color .22s var(--ease), background .22s var(--ease);
}
.btn.ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; box-shadow: none; }

/* ---------- Kicker ---------- */
.kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold-deep);
}
.kicker::before { content: ""; width: 32px; height: 1px; background: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  background:
    linear-gradient(rgba(10, 17, 27, .5), rgba(10, 17, 27, .74)),
    var(--hero-img) center 62% / cover no-repeat;
  padding: 48px 0;
  display: flex; align-items: center;
  min-height: calc(100vh - 78px);
  min-height: calc(100svh - 78px);
}
.hero .container { width: 100%; }
.hero .kicker { color: var(--gold); margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(38px, 5vw, 60px); font-weight: 480;
  max-width: 880px; line-height: 1.06; letter-spacing: -.01em;
}
.hero p.sub {
  margin-top: 18px; font-size: 18px; color: rgba(255,255,255,.85);
  max-width: 660px; line-height: 1.65; font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats { display: flex; margin-top: 54px; flex-wrap: wrap; row-gap: 28px; }
.hero-stats .hs { padding: 2px 44px; border-left: 1px solid rgba(255,255,255,.28); }
.hero-stats .hs:first-child { padding-left: 0; border-left: 0; }
.hero-stats b {
  display: block; font-family: "Fraunces", Georgia, serif;
  font-size: 34px; font-weight: 500; color: var(--gold); line-height: 1;
}
.hero-stats b small { font-size: .5em; font-weight: 500; letter-spacing: .02em; }
.hero-stats span {
  display: block; margin-top: 9px; font-size: 10.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.72);
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.tint { background: #fdfcf9; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.dark { background: var(--ink); color: #fff; }
.section-head { max-width: 700px; margin-bottom: 58px; }
.section-head .kicker { margin-bottom: 20px; }
.section.dark .section-head .kicker { color: var(--gold); }
.section-head h2 {
  font-size: clamp(30px, 3.8vw, 46px); font-weight: 500;
  color: var(--ink); line-height: 1.12; letter-spacing: -.01em;
}
.section.dark .section-head h2 { color: #fff; }
.section-head p { margin-top: 18px; font-size: 16.5px; color: var(--muted); line-height: 1.7; }
.section.dark .section-head p { color: rgba(255,255,255,.68); }

/* ---------- Numbers band ---------- */
.numbers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.number-card { background: var(--ink); padding: 40px 36px; }
.number-card .figure {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(46px, 4.8vw, 60px); font-weight: 500;
  color: var(--gold); line-height: 1;
}
.number-card .figure small { font-size: .42em; font-weight: 500; letter-spacing: .02em; }
.number-card h3 { margin-top: 18px; font-size: 15px; font-weight: 700; letter-spacing: .02em; color: #fff; }
.number-card p { margin-top: 9px; font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.65; }
.fine-print { margin-top: 30px; font-size: 12px; color: rgba(255,255,255,.42); max-width: 780px; line-height: 1.7; }
.section:not(.dark) .fine-print { color: var(--muted); }

/* ---------- Calculator ---------- */
.calc-panel {
  display: grid; grid-template-columns: 1fr 1.1fr;
  background: var(--card); border: 1px solid var(--line);
}
.calc-inputs { padding: 46px 44px; }
.calc-inputs label {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: var(--gold-deep); margin: 30px 0 10px;
}
.calc-inputs label:first-child { margin-top: 0; }
.calc-inputs select, .calc-inputs input[type="text"] {
  width: 100%; padding: 15px 16px; border: 1px solid #d3cab5;
  font-size: 17px; font-weight: 600; font-family: inherit; color: var(--ink);
  background: #fff; border-radius: 0; appearance: auto;
}
.calc-inputs select:focus, .calc-inputs input[type="text"]:focus { outline: 1px solid var(--gold-deep); outline-offset: 0; }
.calc-inputs select { cursor: pointer; }
.calc-inputs input[type="range"] { width: 100%; margin-top: 18px; accent-color: var(--gold-deep); }
.calc-note { margin-top: 28px; font-size: 12px; color: var(--muted); line-height: 1.7; }
.calc-results { background: var(--ink); color: #fff; padding: 46px 44px; display: flex; flex-direction: column; }
.calc-row { display: flex; justify-content: space-between; align-items: baseline; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.calc-row .lbl { font-size: 14.5px; color: rgba(255,255,255,.72); }
.calc-row .val { font-size: 19px; font-weight: 700; letter-spacing: .01em; }
.calc-row .val small { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.55); margin-left: 8px; }
.calc-save { margin-top: auto; padding-top: 34px; }
.calc-save .lead { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); }
.calc-save .big {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(38px, 4.4vw, 56px); font-weight: 500;
  color: var(--gold); line-height: 1.08; margin-top: 10px;
}
.calc-save .decade { margin-top: 12px; font-size: 14.5px; color: rgba(255,255,255,.68); }
.calc-save .decade b { color: #fff; font-weight: 600; }

/* ---------- Benefit cards ---------- */
.grid { display: grid; gap: 40px 48px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.benefit-card { border-top: 1px solid #cdc4ae; padding-top: 28px; transition: border-color .35s var(--ease); }
.benefit-card:hover { border-top-color: var(--gold-deep); }
.benefit-card .icon { margin-bottom: 22px; }
.benefit-card .icon svg { width: 27px; height: 27px; stroke: var(--gold-deep); }
.benefit-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px; font-weight: 550; color: var(--ink); letter-spacing: 0; line-height: 1.25;
}
.benefit-card p { margin-top: 12px; font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ---------- Sunshine chart ---------- */
.sun-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sun-chart .bar-row { margin-bottom: 24px; }
.bar-row .bar-label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; margin-bottom: 8px; letter-spacing: .02em; }
.bar-row .bar-label span:last-child { color: var(--muted); font-weight: 500; font-variant-numeric: tabular-nums; }
.bar-row .bar-track { height: 5px; background: #e9e2d1; overflow: hidden; }
.bar-row .bar-fill { height: 100%; background: #b3aa94; width: 0; transition: width 1.1s cubic-bezier(.22,.9,.35,1); }
.bar-row.cy .bar-fill { background: var(--gold); }
.bar-row.cy .bar-label span:first-child { color: var(--gold-deep); }
.sun-copy h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 500; color: var(--ink); line-height: 1.12; }
.sun-copy p { margin-top: 18px; font-size: 16px; color: var(--muted); line-height: 1.7; }
.sun-copy ul { margin-top: 26px; list-style: none; }
.sun-copy li { padding-left: 30px; position: relative; margin-bottom: 12px; font-size: 15px; }
.sun-copy li::before { content: "·"; position: absolute; left: 0; color: var(--gold-deep); }

/* ---------- Residency pathway cards ---------- */
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 26px; }
.path-card {
  background: var(--card); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.path-card:hover {
  transform: translateY(-4px); border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(15, 27, 41, .1);
}
.path-card .thumb { height: 150px; overflow: hidden; }
.path-card .thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); }
.path-card .body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.path-card .tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em;
  color: var(--gold-deep); margin-bottom: 12px;
}
.path-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px; font-weight: 550; color: var(--ink); line-height: 1.25;
}
.path-card p { margin-top: 10px; font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.path-card .key-fact {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: .02em;
}

/* ---------- Invest split ---------- */
.invest-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.invest-img { border: 1px solid var(--line); padding: 10px; background: var(--card); }
.invest-img img { width: 100%; height: 470px; object-fit: cover; }
.invest-list { list-style: none; margin-top: 30px; }
.invest-list li { display: flex; gap: 24px; padding: 24px 0; border-top: 1px solid var(--line); }
.invest-list .n {
  flex: 0 0 48px; font-family: "Fraunces", Georgia, serif;
  font-size: 27px; font-weight: 500; color: var(--gold-deep); line-height: 1.2;
}
.invest-list b { display: block; color: var(--ink); font-size: 18.5px; font-weight: 700; margin-bottom: 5px; }
.invest-list span { font-size: 15.5px; color: var(--muted); line-height: 1.65; }

/* ---------- Cross-promo (oikia) ---------- */
.promo-box {
  margin-top: 72px; display: flex; align-items: center; gap: 32px;
  background: var(--ink); color: #fff; padding: 42px 46px;
}
.promo-box h3 { font-family: "Fraunces", Georgia, serif; font-size: 24px; font-weight: 500; }
.promo-box p { margin-top: 8px; font-size: 14.5px; color: rgba(255,255,255,.7); line-height: 1.65; }
.promo-box p a { color: var(--gold); font-weight: 600; }
.promo-box .text { flex: 1; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; }
.step { border-top: 1px solid #cdc4ae; padding-top: 26px; }
.step .num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 40px; font-weight: 500; color: var(--gold-deep); line-height: 1;
}
.step h3 { margin-top: 18px; font-size: 16px; font-weight: 700; color: var(--ink); }
.step p { margin-top: 9px; font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; background: none; border: 0; cursor: pointer; font-family: "Fraunces", Georgia, serif;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0; font-size: 20px; font-weight: 500; color: var(--ink); text-align: left;
}
.faq-item button .chev { flex: 0 0 auto; transition: transform .25s; color: var(--gold-deep); font-size: 12px; }
.faq-item.open button .chev { transform: rotate(180deg); }
.faq-item .answer { display: none; padding: 0 0 26px; font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 660px; }
.faq-item.open .answer { display: block; }

/* ---------- Final CTA ---------- */
.cta-final {
  position: relative; color: #fff; text-align: center;
  background:
    linear-gradient(rgba(10, 17, 27, .68), rgba(10, 17, 27, .78)),
    var(--cta-img) center 40% / cover no-repeat;
  padding: 120px 0;
}
.cta-final h2 {
  font-size: clamp(32px, 4.2vw, 52px); font-weight: 480;
  max-width: 800px; margin: 0 auto; line-height: 1.12; letter-spacing: -.01em;
}
.cta-final p { margin: 22px auto 0; font-size: 16.5px; color: rgba(255,255,255,.82); max-width: 540px; line-height: 1.7; }
.cta-final .actions { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 68px 0 36px; }
.site-footer .logo { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin-top: 18px; font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.58); max-width: 300px; }
.site-footer h4 {
  color: var(--gold); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em; margin-bottom: 18px;
}
.site-footer a:not(.logo) { display: block; color: rgba(255,255,255,.68); font-size: 14px; margin-bottom: 11px; }
.site-footer a:not(.logo):hover { color: var(--gold); text-decoration: none; }
.footer-legal {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 11.5px; color: rgba(255,255,255,.38); line-height: 1.7;
}

/* ---------- Assurance strip ---------- */
.assurance { background: var(--card); border-bottom: 1px solid var(--line); }
.assurance-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.assurance-item { padding: 30px 28px; border-left: 1px solid var(--line); }
.assurance-item:first-child { border-left: 0; }
.assurance-item b {
  display: block; font-family: "Fraunces", Georgia, serif;
  font-size: 17.5px; font-weight: 550; color: var(--ink); margin-bottom: 5px;
}
.assurance-item span { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Pull-quote band ---------- */
.quote-band { padding: 104px 0; background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-band blockquote {
  font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 450;
  font-size: clamp(24px, 3.2vw, 38px); line-height: 1.35; color: var(--ink);
  max-width: 900px; margin: 0 auto; text-align: center; position: relative;
}
.quote-band blockquote::before {
  content: "“"; display: block; font-size: 90px; line-height: .6;
  color: var(--gold); font-style: normal; margin-bottom: 22px;
}
.quote-band cite {
  display: block; margin-top: 30px; text-align: center; font-style: normal;
  font-family: "Hanken Grotesk", sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep);
}

/* ---------- Interior page hero ---------- */
.page-hero {
  color: #fff;
  background:
    linear-gradient(rgba(10, 17, 27, .6), rgba(10, 17, 27, .78)),
    var(--hero-img, none) center 55% / cover no-repeat,
    var(--ink);
  padding: 108px 0 84px; border-bottom: 3px solid var(--gold);
}
.page-hero .kicker { color: var(--gold); margin-bottom: 22px; }
.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 58px); font-weight: 480;
  max-width: 800px; line-height: 1.08; letter-spacing: -.01em;
}
.page-hero p.sub { margin-top: 20px; font-size: 17.5px; color: rgba(255,255,255,.82); max-width: 620px; line-height: 1.7; }
.page-hero .hero-stats { margin-top: 58px; }

/* ---------- Editorial image band ---------- */
.img-band { border: 1px solid var(--line); padding: 10px 10px 0; background: var(--card); margin: 0; }
.img-band img { width: 100%; height: clamp(280px, 38vw, 440px); object-fit: cover; }
.img-band figcaption {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 15px 6px; font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.img-band figcaption em { font-style: normal; color: var(--gold-deep); }

/* ---------- Section head with side link ---------- */
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 58px; }
.section-head-row .section-head { margin-bottom: 0; }
.view-all {
  flex: 0 0 auto; font-size: 11.5px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold-deep); padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
}
.view-all:hover { color: var(--ink); text-decoration: none; }

/* ---------- Nav active state ---------- */
.main-nav a.active { color: var(--ink); }
.main-nav a.active::after { transform: scaleX(1); }

/* ---------- Data tables ---------- */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: var(--gold-deep); padding: 0 20px 14px 0;
  border-bottom: 1px solid #cdc4ae;
}
.data-table td { padding: 17px 20px 17px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--text); }
.data-table td.num { font-variant-numeric: tabular-nums; font-weight: 600; }
.data-table .cy-row td { font-weight: 700; color: var(--ink); background: rgba(196, 154, 88, .1); }
.data-table .cy-row td:first-child { padding-left: 14px; }
.table-note { margin-top: 18px; font-size: 12px; color: var(--muted); line-height: 1.7; max-width: 720px; }

/* ---------- Dash list ---------- */
.dash-list { list-style: none; }
.dash-list li { padding-left: 30px; position: relative; margin-bottom: 13px; font-size: 15px; line-height: 1.6; }
.dash-list li::before { content: "·"; position: absolute; left: 0; color: var(--gold-deep); }
.dash-list b { color: var(--ink); }

/* ---------- Route blocks (residency page) ---------- */
.route { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; padding: 64px 0; border-top: 1px solid #cdc4ae; }
.route:first-of-type { border-top: 0; padding-top: 0; }
.route .media { border: 1px solid var(--line); padding: 10px; background: var(--card); }
.route .media img { width: 100%; height: 330px; object-fit: cover; filter: saturate(.88); }
.route.flip .media { order: 2; }
.route .tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em;
  color: var(--gold-deep); margin-bottom: 14px; display: block;
}
.route h3 { font-family: "Fraunces", Georgia, serif; font-size: clamp(24px, 2.6vw, 32px); font-weight: 500; color: var(--ink); line-height: 1.15; }
.route .body-copy { margin-top: 14px; font-size: 15.5px; color: var(--muted); line-height: 1.7; }
.route .dash-list { margin-top: 22px; }
.route .key-fact { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: .03em; }

/* ---------- Fact box ---------- */
.fact-box { border: 1px solid var(--line); background: var(--card); padding: 32px; }
.fact-box h3 { font-family: "Fraunces", Georgia, serif; font-size: 21px; font-weight: 550; color: var(--ink); margin-bottom: 14px; }
.fact-box .dash-list li { font-size: 14px; margin-bottom: 11px; }

/* ---------- Enquiry form ---------- */
.enquiry-panel { display: grid; grid-template-columns: 1.4fr 1fr; background: var(--card); border: 1px solid var(--line); }
.enquiry-form { padding: 46px 44px; }
.enquiry-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form label {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: var(--gold-deep); margin: 24px 0 9px;
}
.enquiry-form .row2 label { margin-top: 0; }
.enquiry-form .row2 > div { margin-top: 24px; }
.enquiry-form label:first-child, .enquiry-form .row2:first-child > div { margin-top: 0; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%; padding: 14px 15px; border: 1px solid #d3cab5; border-radius: 0;
  font-size: 16px; font-weight: 500; font-family: inherit; color: var(--ink); background: #fff;
}
.enquiry-form textarea { min-height: 110px; resize: vertical; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { outline: 1px solid var(--gold-deep); }
.enquiry-form .btn { margin-top: 30px; width: 100%; }
.enquiry-aside { background: var(--ink); color: #fff; padding: 46px 40px; }
.enquiry-aside h3 { font-family: "Fraunces", Georgia, serif; font-size: 22px; font-weight: 500; }
.enquiry-aside .mini-steps { list-style: none; margin-top: 26px; }
.enquiry-aside .mini-steps li { display: flex; gap: 16px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; }
.enquiry-aside .mini-steps .n { font-family: "Fraunces", Georgia, serif; font-size: 18px; color: var(--gold); flex: 0 0 26px; }
.enquiry-aside .direct { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.9; }
.enquiry-aside .direct a { color: var(--gold); }
.enquiry-success { padding: 70px 44px; text-align: center; display: none; }
.enquiry-success h3 { font-family: "Fraunces", Georgia, serif; font-size: 28px; font-weight: 500; color: var(--ink); }
.enquiry-success p { margin-top: 12px; color: var(--muted); max-width: 420px; margin-left: auto; margin-right: auto; }
.enquiry-panel.sent .enquiry-form { display: none; }
.enquiry-panel.sent .enquiry-success { display: block; }

/* ---------- Team cards / testimonials ---------- */
.team-card .thumb { height: 300px; }
.team-card .thumb img { object-position: top center; }
.testimonial-card { background: var(--card); border: 1px solid var(--line); padding: 28px 26px; }
.testimonial-card p { font-size: 15px; line-height: 1.7; color: var(--text); }
.testimonial-card p::before { content: "“"; color: var(--gold-deep); font-family: "Fraunces", Georgia, serif; font-size: 26px; margin-right: 2px; }
.testimonial-card cite {
  display: block; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
  font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deep);
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 12px; }

/* ---------- Lead magnet band ---------- */
.magnet-band { background: var(--ink); color: #fff; padding: 64px 0; }
.magnet-inner { display: flex; align-items: center; gap: 44px; }
.magnet-inner .text { flex: 1; }
.magnet-inner h2 { font-family: "Fraunces", Georgia, serif; font-size: clamp(24px, 3vw, 34px); font-weight: 500; }
.magnet-inner h2 em { font-style: italic; color: var(--gold); }
.magnet-inner p { margin-top: 10px; font-size: 15px; color: rgba(255,255,255,.72); max-width: 520px; }
.magnet-form { display: flex; gap: 10px; flex: 0 0 auto; }
.magnet-form input {
  width: 280px; padding: 16px 16px; border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: 15px; border-radius: 0;
}
.magnet-form input::placeholder { color: rgba(255,255,255,.5); }
.magnet-form input:focus { outline: 1px solid var(--gold); }
.magnet-note { margin-top: 10px; font-size: 11.5px; color: rgba(255,255,255,.45); }

/* ---------- Verdict box ---------- */
.verdict-box { background: var(--ink); color: #fff; padding: 40px 44px; margin-top: 8px; }
.verdict-box .kicker { color: var(--gold); margin-bottom: 16px; }
.verdict-box p { font-size: 16.5px; line-height: 1.75; color: rgba(255,255,255,.85); max-width: 860px; }
.verdict-box p b, .verdict-box p strong { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .numbers-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .calc-panel, .sun-split, .invest-split, .route, .enquiry-panel { grid-template-columns: 1fr; }
  .magnet-inner { flex-direction: column; align-items: flex-start; }
  .magnet-form { width: 100%; flex-wrap: wrap; }
  .magnet-form input { flex: 1; width: auto; min-width: 200px; }
  .route { gap: 32px; padding: 48px 0; }
  .route.flip .media { order: 0; }
  .route .media img { height: 240px; }
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .invest-img img { height: 300px; }
  .sun-split { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats .hs { padding: 2px 26px; }
  .assurance-inner { grid-template-columns: 1fr; }
  .assurance-item { border-left: 0; border-top: 1px solid var(--line); padding: 20px 0; }
  .assurance-item:first-child { border-top: 0; }
  .main-nav {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 18px 24px 24px; gap: 16px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
}
@media (max-width: 560px) {
  .numbers-grid, .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .hero { padding: 84px 0 68px; }
  .section { padding: 64px 0; }
  .hero-stats { margin-top: 52px; }
  .hero-stats .hs { flex: 0 0 50%; padding: 2px 0 2px 18px; }
  .hero-stats .hs:nth-child(odd) { padding-left: 0; border-left: 0; }
  .promo-box { flex-direction: column; align-items: flex-start; padding: 34px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .calc-inputs, .calc-results { padding: 32px 26px; }
}
