/* ═══════════════════════════════════════════════
   EUROCAPITAL — Main Stylesheet
   Dark Luxury · Gold Accent · Private Wealth
═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:    #071528;
  --nav:   #0D2240;
  --nav2:  #091D35;
  --nav3:  #0B2044;
  --gld:   #C9A54A;
  --glt:   #E4CB85;
  --crm:   #F8F3E8;
  --muted: rgba(248,243,232,.42);
  --fn-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --fn-sans: 'Be Vietnam Pro', 'Helvetica Neue', Arial, sans-serif;
  --max: 1280px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--crm);
  font-family: var(--fn-sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* ── Layout ── */
.inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.sp { padding: 80px 0; }
.sp-sm { padding: 48px 0; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gld); color: var(--bg);
  padding: 13px 28px; border-radius: 3px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--glt); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,165,74,.36); color: rgba(248,243,232,.7);
  padding: 12px 28px; border-radius: 3px;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: var(--gld); color: var(--glt); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ── Navigation ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(7,21,40,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,165,74,.08);
  transition: background .3s;
}
.site-nav.scrolled { background: rgba(7,21,40,.98); }

.nav-logo {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-logo svg { fill: none; }
.nav-wordmark {
  font-family: var(--fn-serif); font-size: 17px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--glt);
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links li a {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(248,243,232,.62); transition: color .2s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--glt); }

.nav-cta {
  background: transparent; border: 1px solid rgba(201,165,74,.5);
  color: var(--glt); padding: 9px 20px; border-radius: 2px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--gld); color: var(--bg); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; justify-content: center; align-items: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px; background: var(--glt); transition: .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(7,21,40,.98); border-bottom: 1px solid rgba(201,165,74,.1);
  padding: 24px 32px 28px; flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile ul li a {
  display: block; padding: 10px 12px; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(248,243,232,.65);
  border-radius: 4px; transition: color .2s, background .2s;
}
.nav-mobile ul li a:hover { color: var(--glt); background: rgba(201,165,74,.05); }
.nav-mobile .nav-cta { margin-top: 16px; align-self: flex-start; }

/* ── Breadcrumb ── */
.breadcrumb {
  margin-top: 72px; padding: 14px 0;
  background: rgba(13,34,64,.5); border-bottom: 1px solid rgba(201,165,74,.06);
}
.bc-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(248,243,232,.4);
}
.bc-inner a { color: rgba(248,243,232,.55); transition: color .2s; }
.bc-inner a:hover { color: var(--glt); }
.bc-sep { color: var(--gld); }
.bc-current { color: rgba(248,243,232,.65); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 72px 0 80px;
  background: linear-gradient(135deg, #071528 0%, #0D2240 60%, #071528 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,165,74,.04), transparent);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
}
.page-hero-tag {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gld); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--gld); }
.page-hero h1 {
  font-family: var(--fn-serif); font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.06; color: var(--crm);
  margin-bottom: 20px; max-width: 700px;
}
.page-hero h1 em { color: var(--glt); font-style: italic; display: block; }
.page-hero > .page-hero-inner > p {
  font-size: 15px; line-height: 1.85; color: rgba(248,243,232,.6);
  max-width: 600px; margin-bottom: 8px;
}
.page-hero-stats {
  display: flex; gap: 48px; margin-top: 52px;
  padding-top: 40px; border-top: 1px solid rgba(201,165,74,.1);
  flex-wrap: wrap;
}
.phs-item {}
.phs-val {
  font-family: var(--fn-serif); font-size: 44px; font-weight: 300;
  color: var(--glt); line-height: 1; letter-spacing: -.02em;
}
.phs-val sup { font-size: .38em; color: var(--gld); vertical-align: super; }
.phs-lbl { font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(248,243,232,.42); margin-top: 6px; }

/* ── Section typography ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gld); margin-bottom: 14px;
}
.eyebrow-center { display: flex; justify-content: center; }

.sec-title {
  font-family: var(--fn-serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.1; color: var(--crm); margin-bottom: 18px;
}
.sec-title em { color: var(--glt); font-style: italic; }
.sec-title-center { text-align: center; }

.sec-desc { font-size: 15px; line-height: 1.85; color: rgba(248,243,232,.52); max-width: 520px; }

.gold-rule { width: 48px; height: 1px; background: var(--gld); margin-bottom: 28px; }
.gold-rule-center { margin-left: auto; margin-right: auto; }

/* ── Number Band ── */
.num-band { background: var(--gld); padding: 0; }
.num-band-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.nb-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(7,21,40,.15);
}
.nb-item:last-child { border-right: none; }
.nb-val {
  font-family: var(--fn-serif); font-size: 40px; font-weight: 300;
  color: var(--bg); line-height: 1; letter-spacing: -.02em;
}
.nb-unit { font-size: .5em; }
.nb-lbl { font-size: 13px; font-weight: 600; color: var(--bg); margin-top: 6px; }
.nb-sub { font-size: 11px; color: rgba(7,21,40,.55); margin-top: 2px; }

/* ── List items (numbered) ── */
.list-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px; border: 1px solid rgba(201,165,74,.1);
  border-radius: 8px; margin-bottom: 14px;
  transition: border-color .25s, background .25s;
}
.list-item:hover { border-color: rgba(201,165,74,.28); background: rgba(13,34,64,.5); }
.list-num {
  font-family: var(--fn-serif); font-size: 28px; font-weight: 300;
  color: rgba(201,165,74,.3); line-height: 1; flex-shrink: 0;
  padding-top: 2px; min-width: 36px;
}
.list-txt h4 {
  font-family: var(--fn-serif); font-size: 17px; font-weight: 500;
  color: var(--crm); margin-bottom: 6px;
}
.list-txt p { font-size: 13px; line-height: 1.85; color: rgba(248,243,232,.5); }

/* ── Process steps ── */
.proc-row {
  display: flex; gap: 0; counter-reset: proc;
  position: relative;
}
.proc-row::before {
  content: ''; position: absolute; top: 30px; left: 30px; right: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,165,74,.2), transparent);
}
.proc-item {
  flex: 1; text-align: center; padding: 0 16px; position: relative;
}
.proc-circle {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid rgba(201,165,74,.3);
  background: var(--nav); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.proc-n {
  font-family: var(--fn-serif); font-size: 18px; font-weight: 300; color: var(--gld);
}
.proc-title {
  font-family: var(--fn-serif); font-size: 15px; color: var(--crm);
  margin-bottom: 10px; font-weight: 500;
}
.proc-desc { font-size: 12px; line-height: 1.8; color: rgba(248,243,232,.48); }

/* ── Quote section ── */
.quote-section { background: var(--bg); }
.quote-inner {
  max-width: 800px; margin: 0 auto; padding: 0 48px;
  text-align: center; position: relative;
}
.quote-inner::before {
  content: '"'; font-family: var(--fn-serif); font-size: 200px; font-weight: 300;
  color: rgba(201,165,74,.05); position: absolute; top: -60px; left: 48px; line-height: 1;
}
.big-quote {
  font-family: var(--fn-serif); font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300; font-style: italic; line-height: 1.75;
  color: rgba(248,243,232,.72); position: relative;
}
.big-quote strong { color: var(--glt); font-style: normal; font-weight: 400; }
.quote-attr {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gld); margin-top: 24px;
}

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, #0D2240, #071528);
  padding: 80px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-deco {
  position: absolute; right: -60px; top: -60px;
  width: 400px; height: 400px; opacity: .04;
  stroke: var(--gld); fill: none; stroke-width: 1;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-title {
  font-family: var(--fn-serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; color: var(--crm); margin-bottom: 18px;
}
.cta-title em { color: var(--glt); font-style: italic; }
.cta-sub { font-size: 15px; line-height: 1.8; color: rgba(248,243,232,.56); margin-bottom: 32px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: #050F1E; border-top: 1px solid rgba(201,165,74,.08); }
.footer-top {
  max-width: var(--max); margin: 0 auto; padding: 64px 48px 48px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-wm {
  font-family: var(--fn-serif); font-size: 16px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--glt);
}
.footer-desc { font-size: 13px; line-height: 1.8; color: rgba(248,243,232,.4); }
.flg h5 {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gld); margin-bottom: 18px;
}
.flg ul { display: flex; flex-direction: column; gap: 10px; }
.flg ul li a { font-size: 13px; color: rgba(248,243,232,.48); transition: color .2s; }
.flg ul li a:hover { color: var(--glt); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 20px 48px;
  border-top: 1px solid rgba(201,165,74,.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(248,243,232,.3);
}
.footer-tagline { letter-spacing: .15em; color: rgba(201,165,74,.4); }

/* ── Logo SVG (inline) ── */
.nav-logo-svg, .footer-logo-svg { width: 32px; height: 32px; }

/* ── Scroll reveal animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.stagger-parent .reveal:nth-child(2) { transition-delay: .1s; }
.stagger-parent .reveal:nth-child(3) { transition-delay: .2s; }
.stagger-parent .reveal:nth-child(4) { transition-delay: .3s; }
.stagger-parent .reveal:nth-child(5) { transition-delay: .4s; }

/* ── WordPress body classes offset ── */
.wp-admin-bar .site-nav { top: 32px; }

/* ── Responsive ── */.site-nav { padding: 0 32px; }
  .num-band-inner { padding: 0 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}.sp { padding: 56px 0; }
  .site-nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .num-band-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .page-hero-inner { padding: 0 20px; }
  .page-hero-stats { gap: 28px; }
  .bc-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 20px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }
  .cta-band { padding: 56px 20px; }
  .quote-inner { padding: 0 20px; }
  .proc-row { flex-direction: column; gap: 24px; }
  .proc-row::before { display: none; }
}.page-hero h1 { font-size: 36px; }
  .phs-val { font-size: 32px; }
}
