/* Axioo Financial Consulting · site.css */
:root {
  --navy-900: #0a1322;
  --navy-800: #0f1a2e;
  --navy-700: #16243d;
  --navy: #1a2b4a;
  --navy-500: #22365a;
  --blue: #14498b;
  --gold: #c9a84c;
  --gold-soft: #e6d9b4;
  --cream: #f4f4f1;
  --paper: #fbfbf9;
  --white: #ffffff;
  --ink: #1a2b4a;
  --body: #2d3748;
  --muted: #5a6578;
  --faint: #7a8699;
  --line: #e2e2dc;
  --ice: #b0bdd0;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1248px;
  --gutter: clamp(20px, 6vw, 96px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--sans); color: var(--body); background: var(--paper); line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(42px, 6vw, 84px); }
h2 { font-size: clamp(34px, 4.2vw, 58px); }
h3 { font-size: clamp(24px, 2.2vw, 30px); font-weight: 600; }
p { margin: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.eyebrow { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.lead { font-size: clamp(18px, 1.55vw, 23px); line-height: 1.5; font-weight: 300; color: var(--muted); }
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--navy-800); box-shadow: 0 10px 30px rgba(201,168,76,0.25); }
.btn-gold:hover { color: var(--navy-800); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201,168,76,0.35); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(201,168,76,0.12); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { color: var(--white); background: var(--navy-500); }
.link { font-size: 14px; letter-spacing: 0.08em; color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.link:hover { color: var(--gold); }
.link-sm { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--blue); }

/* Header */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 20; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; padding-bottom: 26px; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 14px; letter-spacing: 0.06em; font-weight: 500; }
.nav a { color: #d5dbe6; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }
.nav .lang { color: #8b97ab; letter-spacing: 0.1em; }
.nav .btn { padding: 11px 20px; font-size: 12px; }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.35); color: #fff; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }
.site-header.light .nav a { color: var(--ink); }
.site-header.light .nav a:hover, .site-header.light .nav a[aria-current="page"] { color: var(--gold); }
.site-header.light .nav-toggle { border-color: var(--navy); color: var(--navy); }

/* Hero */
.hero { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; padding: 170px 0 180px; }
.hero .ridge-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero .ridge-bg svg { width: 100%; height: 100%; display: block; }
.hero .wrap { position: relative; }
.hero h1 { color: #fff; max-width: 14ch; }
.hero .lead { color: var(--ice); max-width: 660px; margin-top: 28px; }
.hero .eyebrow { margin-bottom: 26px; }
.hero .actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.hero .actions .ghost { color: #d5dbe6; font-size: 14px; letter-spacing: 0.08em; border-bottom: 1px solid rgba(213,219,230,0.5); padding-bottom: 3px; }
.hero.compact { padding: 150px 0 110px; }
.hero.compact h1 { font-size: clamp(38px, 5vw, 70px); max-width: 18ch; }
.ridge { animation: drift 18s ease-in-out infinite alternate; }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-40px); } }
.rise { opacity: 0; transform: translateY(24px); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.d1 { animation-delay: .1s; } .d2 { animation-delay: .3s; } .d3 { animation-delay: .5s; } .d4 { animation-delay: .7s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Stats card */
.stats { position: relative; z-index: 2; margin-top: -96px; }
.stats-card { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: #fff; box-shadow: 0 30px 60px rgba(15,26,46,0.18); border-top: 3px solid var(--gold); }
.stat { display: flex; flex-direction: column; gap: 8px; padding: 36px 32px; border-right: 1px solid #e6e6e0; }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--serif); font-size: clamp(38px, 3.6vw, 54px); line-height: 1; color: var(--ink); font-weight: 500; white-space: nowrap; }
.stat .num.sm { font-size: clamp(26px, 2.5vw, 38px); line-height: 1.35; }
.stat .eyebrow { color: var(--faint); font-size: 11px; }
.stats .note { font-size: 12px; color: var(--faint); padding: 12px 4px 0; }

/* Sections */
.section { padding: 104px 0; }
.section.cream { background: var(--cream); }
.section.navy { background: var(--navy); color: #fff; }
.section.navy h2, .section.navy h3 { color: #fff; }
.section.navy .lead, .section.navy p { color: var(--ice); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; margin-bottom: 52px; }
.section-head h2 { max-width: 760px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head p { max-width: 460px; font-size: 18px; color: var(--muted); }

/* Stages timeline */
.stages { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px; padding-top: 0; }
.stages::before { content: ""; position: absolute; left: 7px; right: 7px; top: 7px; height: 1px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 21%, #d9d9d3 21%, #d9d9d3 100%); }
.stage { position: relative; padding-top: 38px; display: flex; flex-direction: column; gap: 12px; }
.stage::before { content: ""; position: absolute; left: 0; top: 0; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 2px solid var(--gold); }
.stage.hot::before { background: var(--gold); box-shadow: 0 0 0 6px rgba(201,168,76,0.18); }
.stage .eyebrow { color: var(--faint); }
.stage.hot .eyebrow { color: var(--gold); }
.stage h3 { font-size: 27px; }
.stage p { font-size: 16px; color: var(--muted); }

/* Preparation band */
.prep { display: grid; grid-template-columns: 7fr 5fr; background: var(--navy); color: #fff; overflow: hidden; }
.prep .text { padding: 104px var(--gutter) 104px; padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); display: flex; flex-direction: column; gap: 26px; }
.prep h2 { color: #fff; }
.prep .lead { color: var(--ice); max-width: 620px; }
.axes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 32px; max-width: 640px; }
.axis { display: flex; flex-direction: column; gap: 4px; padding-left: 16px; border-left: 1px solid var(--gold); }
.axis b { color: #fff; font-weight: 600; font-size: 17px; }
.axis span { color: #8b97ab; font-size: 15px; }
.prep .cta-row { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; margin-top: 6px; }
.ratio .big { font-family: var(--serif); font-size: 34px; color: #fff; line-height: 1; display: block; }
.ratio span { font-size: 13px; color: #8b97ab; }
.prep .photo { position: relative; min-height: 560px; }
.prep .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.prep .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 0%, rgba(26,43,74,0.35) 35%, rgba(26,43,74,0) 70%); }
.prep .caption { position: absolute; left: 40px; bottom: 40px; z-index: 2; background: rgba(15,26,46,0.78); padding: 16px 20px; border-left: 2px solid var(--gold); }
.prep .caption b { font-family: var(--serif); font-size: 22px; color: #fff; font-weight: 500; display: block; }
.prep .caption span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* Cards / tombstones */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid #e6e6e0; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(15,26,46,0.12); border-color: var(--gold); }
.tomb { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 36px 28px; text-align: center; }
.tomb .logo { height: 64px; display: flex; align-items: center; justify-content: center; }
.tomb .logo img { max-height: 58px; max-width: 220px; width: auto; filter: grayscale(1); opacity: .8; transition: filter .3s ease, opacity .3s ease; }
.tomb:hover .logo img { filter: none; opacity: 1; }
.tomb .logo .name { font-family: var(--serif); font-size: 26px; color: var(--ink); font-weight: 600; }
.tomb .type { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.tomb .desc { font-size: 16px; color: var(--muted); line-height: 1.5; }
.tomb .rule { width: 40px; height: 1px; background: var(--gold); }
.tomb .size { font-size: 13px; letter-spacing: 0.1em; color: var(--faint); }
.logo-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px 28px; align-items: center; }
.logo-row img { max-height: 52px; max-width: 100%; width: auto; filter: grayscale(1); opacity: .75; transition: filter .3s ease, opacity .3s ease; }
.logo-row img:hover { filter: none; opacity: 1; }
.track { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; padding-top: 40px; margin-top: 40px; border-top: 1px solid #ddddd6; }
.track .col { display: flex; flex-direction: column; gap: 14px; }
.track .col + .col { padding-left: 48px; border-left: 1px solid #ddddd6; }
.track .eyebrow { color: var(--faint); }
.mini-tombs { display: flex; gap: 14px; }
.mini-tomb { flex: 1; background: var(--navy); padding: 18px 16px; display: flex; flex-direction: column; gap: 4px; border-top: 2px solid var(--gold); }
.mini-tomb b { font-family: var(--serif); color: #fff; font-size: 19px; font-weight: 600; }
.mini-tomb span { color: var(--ice); font-size: 12.5px; }
.footnote { font-size: 12px; color: var(--faint); }

/* Perspectives */
.post-card { display: flex; flex-direction: column; gap: 16px; padding: 36px; border-top: 2px solid var(--navy); }
.post-card .eyebrow { color: var(--faint); }
.post-card h3 { font-size: 28px; line-height: 1.15; }
.post-card p { font-size: 16px; color: var(--muted); }

/* Team */
.team { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; }
.team .intro { display: flex; flex-direction: column; gap: 20px; }
.team .intro p { font-size: 18px; color: var(--muted); }
.partner-note { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px; background: #fff; border-left: 2px solid var(--gold); }
.partner-note b { color: var(--ink); font-size: 16px; }
.partner-note span { font-size: 15px; color: var(--muted); }
.profile { display: flex; gap: 32px; align-items: flex-start; background: #fff; padding: 36px; box-shadow: 0 20px 50px rgba(15,26,46,0.08); }
.profile img { width: 240px; height: 300px; object-fit: cover; object-position: top; flex-shrink: 0; filter: grayscale(1) contrast(1.05); }
.profile .bio { display: flex; flex-direction: column; gap: 12px; }
.profile .bio h3 { font-size: 34px; }
.profile .bio p { font-size: 16.5px; line-height: 1.65; color: var(--muted); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--navy-800); color: #fff; padding: 96px 0; }
.cta-band .ridge-bg { position: absolute; inset: 0; }
.cta-band .ridge-bg svg { width: 100%; height: 100%; display: block; }
.cta-band .wrap { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 48px; }
.cta-band h2 { color: #fff; max-width: 760px; }
.cta-band p { color: var(--ice); max-width: 640px; margin-top: 14px; font-size: 18px; }
.cta-band .contact { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; flex-shrink: 0; }
.cta-band .contact a.small { color: #d5dbe6; font-size: 14px; display: inline-flex; align-items: center; gap: 10px; }
.cta-band .contact a.small:hover { color: var(--gold); }

/* Footer */
.site-footer { background: var(--navy-900); color: #8b97ab; font-size: 14px; line-height: 1.7; padding: 56px 0 40px; }
.site-footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.site-footer img { height: 40px; width: auto; opacity: .9; margin-bottom: 14px; }
.site-footer .eyebrow { color: var(--gold); font-size: 11px; display: block; margin-bottom: 4px; }
.site-footer a { color: #b0bdd0; }
.site-footer a:hover { color: var(--gold); }

/* Inner pages */
.prose { max-width: 720px; }
.prose p { font-size: 19px; line-height: 1.7; color: var(--body); margin-bottom: 22px; }
.prose h2 { font-size: 36px; margin: 44px 0 16px; }
.prose h3 { font-size: 26px; margin: 32px 0 10px; }
.prose ul { padding-left: 20px; margin: 0 0 22px; color: var(--body); font-size: 18.5px; line-height: 1.7; }
.prose blockquote { margin: 32px 0; padding: 24px 28px; border-left: 2px solid var(--gold); background: var(--cream); font-family: var(--serif); font-size: 27px; line-height: 1.35; color: var(--ink); }
.service { display: grid; grid-template-columns: 3fr 9fr; gap: 48px; padding: 56px 0; border-top: 1px solid var(--line); }
.service:first-of-type { border-top: 0; }
.service .num { font-family: var(--serif); font-size: 20px; color: var(--gold); }
.service h2 { font-size: 38px; margin-top: 4px; }
.service .cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.service .cols b { display: block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.service .cols p, .service .cols li { font-size: 16.5px; color: var(--muted); }
.service .cols ul { padding-left: 18px; margin: 0; }
.service .intro { font-size: 18.5px; color: var(--muted); margin: 14px 0 28px; max-width: 720px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filters button { background: #fff; border: 1px solid var(--line); padding: 10px 18px; font-family: var(--sans); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); cursor: pointer; }
.filters button[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.tomb[hidden] { display: none; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.contact-card { display: flex; flex-direction: column; gap: 14px; padding: 36px; border-top: 2px solid var(--navy); }
.contact-card h3 { font-size: 26px; }
.contact-card p { font-size: 16px; color: var(--muted); }
.contact-card .btn { align-self: flex-start; margin-top: auto; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.step-card { padding: 32px; background: #fff; border-top: 2px solid var(--gold); display: flex; flex-direction: column; gap: 10px; }
.step-card .num { font-family: var(--serif); font-size: 32px; color: var(--gold); line-height: 1; }
.step-card h3 { font-size: 25px; }
.step-card p { font-size: 16px; color: var(--muted); }
.bars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; max-width: 520px; margin: 24px 0 8px; }
.bar { display: flex; flex-direction: column; gap: 8px; }
.bar i { display: block; background: var(--navy); }
.bar.gold i { background: var(--gold); }
.bar b { font-family: var(--serif); font-size: 26px; color: var(--ink); font-weight: 600; }
.bar span { font-size: 13px; color: var(--muted); }

.sector { display: flex; gap: 16px; align-items: flex-start; }
.sector svg { width: 28px; height: 28px; flex-shrink: 0; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-top: 4px; }
.sector .t h3 { font-size: 21px; }
.sector .t p { font-size: 15.5px; color: var(--muted); }

/* WhatsApp float */
.wa-float { position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(15,26,46,0.35); border: 1px solid rgba(201,168,76,0.5); z-index: 30; }
.wa-float:hover { background: var(--navy-500); }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise, .reveal, .js .reveal { animation: none; opacity: 1; transform: none; transition: none; }
  .ridge { animation: none; }
}

/* Responsive */
@media (max-width: 1080px) {
  .stats-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid #e6e6e0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
  .stages { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 28px; }
  .stages::before { display: none; }
  .stage { padding-top: 0; padding-left: 30px; }
  .stage::before { top: 7px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prep { grid-template-columns: 1fr; }
  .prep .text { padding-left: var(--gutter); }
  .prep .photo { min-height: 420px; }
  .prep .photo::after { background: linear-gradient(180deg, var(--navy) 0%, rgba(26,43,74,0) 40%); }
  .team { grid-template-columns: 1fr; gap: 40px; }
  .track { grid-template-columns: 1fr; }
  .track .col + .col { padding-left: 0; border-left: 0; padding-top: 32px; border-top: 1px solid #ddddd6; }
  .service { grid-template-columns: 1fr; gap: 16px; padding: 44px 0; }
  .service .cols { grid-template-columns: 1fr; gap: 20px; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
  .contact-grid, .steps { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 0; background: var(--navy-800); flex-direction: column; justify-content: center; gap: 26px; font-size: 18px; transform: translateY(-100%); transition: transform .35s ease; z-index: 40; }
  .nav.open { transform: none; }
  .nav a { color: #fff !important; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 50; }
  .site-header.light .nav-toggle.open { color: #fff; border-color: rgba(255,255,255,0.35); }
  .brand img { height: 42px; }
  .hero { padding: 130px 0 150px; }
  .hero .actions { gap: 18px; }
  .stats { margin-top: -70px; }
  .stats-card { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid #e6e6e0; padding: 26px 24px; }
  .stat:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 36px; }
  .stages { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .axes { grid-template-columns: 1fr; }
  .logo-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-tombs { flex-direction: column; }
  .profile { flex-direction: column; padding: 24px; }
  .profile img { width: 100%; height: auto; aspect-ratio: 4 / 5; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .cta-band .contact { align-items: flex-start; }
  .site-footer .wrap { grid-template-columns: 1fr; gap: 28px; }
  .prep .caption { left: 20px; bottom: 20px; }
  .bars { grid-template-columns: 1fr 1fr; }
}
