
:root{
  --black:#0A0A0C;
  --near-black:#121014;
  --charcoal:#1C171A;
  --red:#8B1538;
  --red-bright:#B01C42;
  --red-deep:#5C0E26;
  --gold:#C9A227;
  --gold-bright:#E4C158;
  --gold-dim:#8f7527;
  --paper:#F7F5F1;
  --paper-dim:#EFEBE2;
  --ink:#241F22;
  --ink-soft:#6b6266;
  --line:rgba(255,255,255,0.1);
  --line-dark:rgba(10,10,12,0.1);
  --font:'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw:1280px;
}
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} *{animation-duration:.01ms !important; transition-duration:.01ms !important;} }
body{
  margin:0; background:var(--paper); color:var(--ink); font-family:var(--font);
  font-weight:400; font-size:16px; line-height:1.65; -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img,svg{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
h1,h2,h3,h4{font-family:var(--font); margin:0; color:var(--black); letter-spacing:-0.01em;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 40px;}
@media (max-width:720px){ .wrap{padding:0 22px;} }

::selection{background:var(--gold); color:var(--black);}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--gold); outline-offset:2px;
}

/* ============ Floating pill nav ============ */
.nav-dock{
  position:fixed; top:22px; left:50%; transform:translateX(-50%); z-index:200;
  display:flex; align-items:center; gap:4px;
  background:rgba(18,16,20,0.72); backdrop-filter:blur(16px) saturate(140%);
  border:1px solid rgba(255,255,255,0.09); border-radius:100px; padding:8px 8px 8px 18px;
  box-shadow:0 12px 40px rgba(0,0,0,0.35);
  transition:top .3s ease, padding .3s ease;
}
.nav-dock .nd-brand{display:flex; align-items:center; gap:9px; margin-right:24px; padding-right:20px; border-right:1px solid rgba(255,255,255,0.12);}
.nav-dock .nd-brand img{height:34px; width:34px; flex-shrink:0; background:#fff; border-radius:50%; padding:4px; object-fit:contain; box-shadow:0 2px 8px rgba(0,0,0,0.25);}
.nav-dock .nd-brand span{font-family:var(--font); font-weight:600; font-size:12.5px; color:#fff; letter-spacing:0.01em; white-space:nowrap;}
.nav-dock .nd-links{display:flex; align-items:center; gap:1px;}
.nav-dock .nd-links a{
  font-size:11.5px; font-weight:500; color:rgba(255,255,255,0.62); padding:9px 12px; border-radius:100px;
  transition:color .2s, background .2s; white-space:nowrap;
}
.nav-dock .nd-links a:hover{color:#fff;}
.nav-dock .nd-links a.active{color:var(--black); background:var(--gold);}
.nav-dock .nd-cta{
  margin-left:6px; background:var(--red); color:#fff; font-size:11.5px; font-weight:600;
  padding:10px 18px; border-radius:100px; white-space:nowrap; transition:background .2s;
}
.nav-dock .nd-cta:hover{background:var(--red-bright);}
.nav-toggle{display:none; background:none; border:none; cursor:pointer; padding:8px; flex-direction:column; gap:4px;}
.nav-toggle span{width:20px; height:2px; background:#fff; display:block; border-radius:2px;}
@media (max-width:1080px){
  .nav-dock{
    left:14px; right:14px; top:14px; transform:none; width:auto;
    justify-content:space-between; padding:10px 10px 10px 16px; border-radius:18px;
  }
  .nav-dock .nd-brand{margin-right:0; padding-right:0; border-right:none;}
  .nav-dock .nd-links{display:none;}
  .nav-dock .nd-cta{display:none;}
  .nav-toggle{display:flex; flex-shrink:0;}
}
@media (max-width:400px){
  .nav-dock .nd-brand span{font-size:11.5px;}
}
.mobile-menu{
  position:fixed; inset:0; z-index:250; background:rgba(10,9,11,0.98); backdrop-filter:blur(10px);
  opacity:0; pointer-events:none; transition:opacity .3s ease; visibility:hidden;
}
.mobile-menu.open{opacity:1; pointer-events:auto; visibility:visible;}
.mobile-menu-inner{
  height:100%; height:100dvh; overflow-y:auto; -webkit-overflow-scrolling:touch;
  display:flex; flex-direction:column; align-items:center; justify-content:flex-start; gap:2px;
  padding:96px 24px 60px;
}
.mobile-menu a{font-size:19px; font-weight:500; color:#fff; padding:13px 0; width:100%; text-align:center; flex-shrink:0;}
.mobile-menu .mm-cta{margin-top:18px; background:var(--red); padding:14px 32px; border-radius:100px; font-weight:600; font-size:14px; flex-shrink:0;}
.mobile-menu-close{
  position:fixed; top:18px; right:18px; z-index:2; width:42px; height:42px; background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.22); border-radius:50%; color:#fff; font-size:20px; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
body.menu-locked{overflow:hidden; height:100%;}
html.menu-locked{overflow:hidden; height:100%;}
body.menu-locked .nav-dock{pointer-events:none;}

/* ============ Section base ============ */
section{position:relative; padding:130px 0;}
@media (max-width:720px){ section{padding:80px 0;} }
.section-dark{background:var(--black); color:#fff;}
.section-dark h2, .section-dark h3, .section-dark h4{color:#fff;}
.section-charcoal{background:var(--near-black); color:#fff;}
.section-charcoal h2, .section-charcoal h3{color:#fff;}
.section-paper-dim{background:var(--paper-dim);}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px; font-size:12.5px; font-weight:600; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--red); margin-bottom:20px;
}
.eyebrow::before{content:""; width:28px; height:2px; background:var(--red); border-radius:2px;}
.eyebrow.on-dark{color:var(--gold);}
.eyebrow.on-dark::before{background:var(--gold);}
.section-head{max-width:700px; margin-bottom:64px;}
.section-head h2{font-size:clamp(30px,4vw,46px); line-height:1.15; font-weight:600;}
.section-head p{font-size:17px; color:var(--ink-soft); margin-top:18px; line-height:1.7; font-weight:300;}
.section-dark .section-head p, .section-charcoal .section-head p{color:rgba(255,255,255,0.62);}

/* diagonal divider between sections */
.diag-top{position:absolute; top:-1px; left:0; width:100%; height:64px; overflow:hidden; line-height:0;}
.diag-top svg{width:100%; height:100%; display:block;}

/* ============ Hero ============ */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  background:radial-gradient(ellipse 1100px 700px at 78% 15%, rgba(139,21,56,0.45), transparent 60%),
             radial-gradient(ellipse 700px 500px at 10% 90%, rgba(201,162,39,0.12), transparent 60%),
             var(--black);
  color:#fff; overflow:hidden; padding:150px 0 100px;
}
.hero-noise{position:absolute; inset:0; opacity:0.04; background-image:repeating-conic-gradient(from 0deg, #fff 0deg 0.5deg, transparent 0.5deg 8deg); pointer-events:none;}
.hero-skyline{position:absolute; bottom:0; left:0; width:100%; height:320px; opacity:0.55; pointer-events:none;}
.hero-grid{position:relative; z-index:2; display:grid; grid-template-columns:1.15fr 0.85fr; gap:60px; align-items:center;}
@media (max-width:980px){ .hero-grid{grid-template-columns:1fr;} }
.hero-badge{
  display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
  padding:8px 18px 8px 8px; border-radius:100px; font-size:12.5px; font-weight:500; color:rgba(255,255,255,0.85); margin-bottom:28px;
}
.hero-badge .dot{width:8px; height:8px; border-radius:50%; background:var(--gold); box-shadow:0 0 12px var(--gold); animation:pulse 2s ease-in-out infinite;}
@keyframes pulse{0%,100%{opacity:1;} 50%{opacity:0.4;}}
.hero h1{font-size:clamp(38px,5.2vw,66px); line-height:1.08; font-weight:600; letter-spacing:-0.02em; color:#fff;}
.hero h1 .accent{
  background:linear-gradient(100deg, var(--gold-bright), var(--gold) 60%, #a5842a);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.hero p.lead{font-size:18px; font-weight:300; color:rgba(255,255,255,0.68); margin-top:26px; max-width:560px; line-height:1.75;}
.hero-ctas{display:flex; gap:16px; margin-top:40px; flex-wrap:wrap;}
.hero-stats{display:flex; gap:40px; margin-top:56px; flex-wrap:wrap;}
@media (max-width:560px){
  .hero-ctas{flex-wrap:nowrap; gap:8px;}
  .hero-ctas .btn{flex:1; padding:13px 8px; font-size:11.5px; justify-content:center; text-align:center; white-space:nowrap; gap:0;}
  .hero-stats{flex-wrap:nowrap; gap:14px; margin-top:40px;}
  .hero-stat{flex:1; min-width:0;}
  .hero-stat .n{font-size:21px;}
  .hero-stat .l{font-size:9.5px; line-height:1.3;}
}
@media (max-width:360px){
  .hero-ctas .btn{font-size:10.5px; padding:12px 5px;}
}
.hero-stat .n{font-size:30px; font-weight:600; color:var(--gold-bright); font-variant-numeric:tabular-nums;}
.hero-stat .l{font-size:12.5px; color:rgba(255,255,255,0.5); margin-top:4px; font-weight:400;}

.hero-card{
  position:relative; background:rgba(255,255,255,0.045); border:1px solid rgba(255,255,255,0.12);
  border-radius:20px; padding:36px 32px; backdrop-filter:blur(20px); box-shadow:0 30px 70px rgba(0,0,0,0.45);
}
.hero-card .seal-icon{width:64px; height:64px; margin-bottom:20px;}
.hero-card .hc-row{display:flex; justify-content:space-between; padding:13px 0; border-bottom:1px solid rgba(255,255,255,0.08); font-size:13.5px;}
.hero-card .hc-row:last-child{border:none;}
.hero-card .hc-row span:first-child{color:rgba(255,255,255,0.5); font-weight:300;}
.hero-card .hc-row span:last-child{color:#fff; font-weight:500; text-align:right;}
.hero-card::before{
  content:""; position:absolute; inset:-1px; border-radius:20px; padding:1px;
  background:linear-gradient(135deg, rgba(201,162,39,0.5), transparent 40%, transparent 70%, rgba(139,21,56,0.5));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none;
}
.scroll-cue{position:absolute; bottom:36px; left:50%; transform:translateX(-50%); z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px;}
.scroll-cue span{font-size:10.5px; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.4); font-weight:500;}
.scroll-cue .line{width:1px; height:36px; background:linear-gradient(rgba(255,255,255,0.6), transparent); animation:scrollcue 1.8s ease-in-out infinite;}
@keyframes scrollcue{0%{transform:scaleY(0); transform-origin:top;} 50%{transform:scaleY(1); transform-origin:top;} 51%{transform-origin:bottom;} 100%{transform:scaleY(0); transform-origin:bottom;}}

/* ============ Buttons ============ */
.btn{
  display:inline-flex; align-items:center; gap:10px; font-family:var(--font); font-size:14px; font-weight:600;
  padding:16px 30px; border-radius:100px; cursor:pointer; border:1px solid transparent; transition:all .25s cubic-bezier(.4,0,.2,1);
}
.btn-primary{background:var(--red); color:#fff;}
.btn-primary:hover{background:var(--red-bright); transform:translateY(-2px); box-shadow:0 10px 30px rgba(139,21,56,0.4);}
.btn-gold{background:linear-gradient(100deg, var(--gold-bright), var(--gold)); color:var(--black);}
.btn-gold:hover{transform:translateY(-2px); box-shadow:0 10px 30px rgba(201,162,39,0.35);}
.btn-ghost{border-color:rgba(255,255,255,0.25); color:#fff;}
.btn-ghost:hover{border-color:var(--gold); color:var(--gold); background:rgba(201,162,39,0.06);}
.btn-ghost-dark{border-color:rgba(10,10,12,0.2); color:var(--ink);}
.btn-ghost-dark:hover{border-color:var(--red); color:var(--red);}

/* ============ About / stat strip ============ */
.about-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px; align-items:start; position:relative; z-index:1;}
@media (max-width:900px){ .about-grid{grid-template-columns:1fr;} }
.about-watermark{position:absolute; top:40px; right:5%; width:220px; height:220px; opacity:0.06; pointer-events:none; z-index:0;}
.about-watermark svg{width:100%; height:100%;}
.about-watermark .seal-icon circle, .about-watermark .seal-icon path{stroke:var(--black);}
@media (max-width:900px){ .about-watermark{width:140px; height:140px; top:10px; right:2%;} }

.mini-steps{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:30px; padding:22px 0; border-top:1px solid rgba(10,10,12,0.1); border-bottom:1px solid rgba(10,10,12,0.1);}
.ms-item{display:flex; flex-direction:column; align-items:flex-start; gap:5px; position:relative; padding-right:14px;}
.ms-item:not(.last)::after{content:""; position:absolute; top:5px; right:0; width:10px; height:1px; background:var(--red); opacity:0.35;}
.ms-dot{width:8px; height:8px; border-radius:50%; background:var(--red); margin-bottom:2px;}
.ms-dot.gold{background:var(--gold);}
.ms-year{font-weight:700; font-size:14px; color:var(--red); white-space:nowrap;}
.ms-label{font-size:11px; color:var(--ink-soft); line-height:1.4;}
@media (max-width:640px){ .mini-steps{grid-template-columns:repeat(2,1fr); gap:20px 14px;} .ms-item:not(.last)::after{display:none;} }

.motive-card{
  background:linear-gradient(160deg, rgba(139,21,56,0.06), rgba(201,162,39,0.04));
  border:1px solid rgba(139,21,56,0.14); border-radius:18px; padding:32px 30px; position:relative; overflow:hidden;
}
.motive-card::before{content:'\201C'; position:absolute; top:-18px; right:20px; font-size:110px; color:var(--red); opacity:0.08; font-family:Georgia,serif;}

.stat-strip{display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:28px;}
@media (max-width:500px){ .stat-strip{grid-template-columns:1fr;} }
.stat-box{
  background:#fff; padding:26px 22px 22px; text-align:left; position:relative; border-radius:14px;
  border:1px solid rgba(10,10,12,0.07); box-shadow:0 10px 26px rgba(20,10,10,0.05);
  transition:transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s; overflow:hidden;
}
.stat-box::before{content:""; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--red), var(--gold));}
.stat-box:hover{transform:translateY(-5px); box-shadow:0 18px 40px rgba(20,10,10,0.1);}
.stat-box .ic{width:22px; height:22px; color:var(--gold-dim); margin-bottom:14px;}
.stat-box .n{font-size:26px; font-weight:700; color:var(--red); font-variant-numeric:tabular-nums;}
.stat-box .l{font-size:12.5px; color:var(--ink-soft); margin-top:6px; line-height:1.4;}

.positioning-quote{
  border:1px solid rgba(10,10,12,0.08); border-left:4px solid var(--gold); border-radius:4px 16px 16px 4px;
  padding:26px 30px 26px 28px; background:#fff; box-shadow:0 12px 30px rgba(20,10,10,0.05); margin-top:30px; position:relative;
}
.positioning-quote::before{content:'\201C'; position:absolute; top:2px; left:22px; font-size:52px; color:var(--gold); opacity:0.3; font-family:Georgia,serif; line-height:1;}
.positioning-quote p{font-size:16.5px; line-height:1.65; color:var(--black); font-weight:500; padding-left:16px;}

/* ============ Cards ============ */
.grid{display:grid; gap:22px;}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
@media (max-width:900px){ .grid-3, .grid-4{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .grid-3, .grid-4, .grid-2{grid-template-columns:1fr;} }

.card{
  background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.09); border-radius:18px; padding:32px 28px;
  transition:transform .35s cubic-bezier(.4,0,.2,1), border-color .35s, background .35s;
  position:relative; overflow:hidden;
}
.card:hover{transform:translateY(-6px); border-color:rgba(201,162,39,0.4); background:rgba(255,255,255,0.05);}
.card .ic{width:30px; height:30px; color:var(--gold); margin-bottom:18px;}
.card h4{font-size:17px; font-weight:600; color:#fff;}
.card p{font-size:14px; color:rgba(255,255,255,0.55); margin-top:10px; line-height:1.65; font-weight:300;}
.card .tag{font-size:11px; font-weight:600; color:var(--gold); letter-spacing:0.08em;}

.card-light{background:var(--white,#fff); border:1px solid rgba(10,10,12,0.08);}
.card-light:hover{border-color:var(--red); background:#fff; box-shadow:0 20px 50px rgba(0,0,0,0.08);}
.card-light .ic{color:var(--red);}
.card-light h4{color:var(--black);}
.card-light p{color:var(--ink-soft);}

/* simple pill list */
.pill-row{display:flex; flex-wrap:wrap; gap:12px;}
.pill{
  border:1px solid rgba(255,255,255,0.15); padding:12px 20px; border-radius:100px; font-size:13.5px; font-weight:500; color:rgba(255,255,255,0.85);
  transition:border-color .25s, color .25s;
}
.pill:hover{border-color:var(--gold); color:var(--gold);}
.pill-light{border-color:rgba(10,10,12,0.14); color:var(--ink); background:#fff;}
.pill-light:hover{border-color:var(--red); color:var(--red);}

/* ============ NPA Ladder ============ */
.ladder{display:flex; flex-direction:column; gap:10px; max-width:680px;}
.rung{display:grid; grid-template-columns:120px 1fr auto; gap:18px; align-items:center; padding:14px 20px; border-radius:12px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08);}
.rung .lbl{font-size:12.5px; font-weight:600; color:rgba(255,255,255,0.55);}
.rung .bar-track{height:8px; background:rgba(255,255,255,0.08); border-radius:6px; overflow:hidden;}
.rung .bar-fill{height:100%; border-radius:6px; width:0; transition:width 1.2s cubic-bezier(.4,0,.2,1);}
.rung.in-view .bar-fill{width:var(--w);}
.rung .stage{font-size:13px; color:rgba(255,255,255,0.8); font-weight:500; text-align:right;}

/* ============ Timeline (process) ============ */
.timeline{position:relative; padding-left:36px; border-left:2px solid rgba(255,255,255,0.1);}
.tphase{position:relative; margin-bottom:70px; padding-left:30px;}
.tphase:last-child{margin-bottom:0;}
.tphase::before{
  content:""; position:absolute; left:-48px; top:2px; width:16px; height:16px; border-radius:50%;
  background:var(--black); border:2px solid var(--gold); box-shadow:0 0 0 6px var(--near-black);
}
.tphase .tp-num{font-size:12.5px; color:var(--gold); font-weight:600; letter-spacing:0.1em; text-transform:uppercase;}
.tphase h3{font-size:26px; margin-top:6px; color:#fff; font-weight:600;}
.tphase .tp-items{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:24px;}
@media (max-width:800px){ .tphase .tp-items{grid-template-columns:1fr 1fr;} }
@media (max-width:520px){ .tphase .tp-items{grid-template-columns:1fr;} }
.tp-item{background:rgba(255,255,255,0.035); border:1px solid rgba(255,255,255,0.08); border-radius:10px; padding:14px 16px; font-size:13.5px; color:rgba(255,255,255,0.75); font-weight:300; line-height:1.5;}

/* ============ Banks list ============ */
.bank-grid{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:rgba(10,10,12,0.08); border-radius:16px; overflow:hidden; border:1px solid rgba(10,10,12,0.08);}
@media (max-width:700px){ .bank-grid{grid-template-columns:1fr;} }
.bank-row{display:flex; align-items:center; gap:16px; padding:18px 22px; background:#fff; font-size:14.5px; font-weight:500;}
.bank-row .idx{font-size:12px; font-weight:700; color:var(--red); width:24px;}

/* ============ Declaration / quote ============ */
.declaration{
  border:1px solid rgba(255,255,255,0.12); border-radius:20px; padding:44px; background:rgba(255,255,255,0.03);
  position:relative;
}
.declaration::before{content:'\201C'; position:absolute; top:8px; left:28px; font-size:80px; color:var(--gold); opacity:0.25; font-family:Georgia,serif;}
.declaration p{font-size:17px; line-height:1.8; color:rgba(255,255,255,0.85); font-weight:300; position:relative;}

/* declaration quote (used in compliance section) */

/* ============ CTA band ============ */
.cta-band{
  background:linear-gradient(120deg, var(--red-deep), var(--red) 60%, var(--red-bright));
  text-align:center; position:relative; overflow:hidden;
}
.cta-band::before{content:""; position:absolute; inset:0; background:radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 60%);}
.cta-band h2{color:#fff; font-size:clamp(28px,3.6vw,42px); position:relative;}
.cta-band p{color:rgba(255,255,255,0.8); margin-top:16px; font-size:16px; position:relative; font-weight:300;}
.cta-band .hero-ctas{justify-content:center; margin-top:36px; position:relative;}

/* ============ Contact ============ */
.contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px;}
@media (max-width:900px){ .contact-grid{grid-template-columns:1fr;} }
.contact-info-card{background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:16px; padding:26px 24px; margin-bottom:16px;}
.contact-info-card h4{color:#fff; font-size:14px; font-weight:600; margin-bottom:10px;}
.contact-info-card p{color:rgba(255,255,255,0.6); font-size:14px; line-height:1.6; margin:3px 0; font-weight:300;}
.contact-info-card a{color:var(--gold);}
.verify-badge{
  display:inline-block; font-size:10px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase;
  color:var(--gold); border:1px solid var(--gold); padding:3px 10px; border-radius:100px; margin-left:8px;
}
.enquiry-form{display:grid; grid-template-columns:1fr 1fr; gap:16px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:20px; padding:32px;}
.enquiry-form .full{grid-column:1/-1;}
@media (max-width:600px){ .enquiry-form{grid-template-columns:1fr;} }
.field label{display:block; font-size:12px; font-weight:500; color:rgba(255,255,255,0.55); margin-bottom:8px;}
.field input, .field select, .field textarea{
  width:100%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.15); border-radius:10px; padding:13px 16px;
  font-family:var(--font); font-size:14px; color:#fff;
}
.field select option{background:#1C171A; color:#fff;}
.field textarea{min-height:100px; resize:vertical;}
.field input:focus, .field select:focus, .field textarea:focus{outline:none; border-color:var(--gold); background:rgba(255,255,255,0.09);}
.field input::placeholder, .field textarea::placeholder{color:rgba(255,255,255,0.3);}

/* ============ Footer ============ */
footer{background:#000; color:rgba(255,255,255,0.55); padding:80px 0 0;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:44px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,0.08);}
@media (max-width:800px){ .footer-grid{grid-template-columns:1fr 1fr; row-gap:36px;} }
@media (max-width:520px){ .footer-grid{grid-template-columns:1fr;} }
.footer-brand{display:flex; align-items:center; gap:12px; margin-bottom:18px;}
.footer-brand img{height:46px; width:46px; background:#fff; border-radius:50%; padding:5px; object-fit:contain;}
.footer-brand span{font-weight:600; font-size:15px; color:#fff;}
footer h5{font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:var(--gold); margin-bottom:20px;}
footer ul{list-style:none; margin:0; padding:0;}
footer li{margin-bottom:12px; font-size:14px; font-weight:300;}
footer li a:hover{color:var(--gold);}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding:28px 0; flex-wrap:wrap; gap:12px; font-size:12.5px; font-weight:300;}
.footer-bottom .legal-links{display:flex; gap:22px;}
.footer-bottom .legal-links a:hover{color:var(--gold);}

/* ============ Reveal animations ============ */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);}
.reveal.in-view{opacity:1; transform:translateY(0);}
.reveal-scale{opacity:0; transform:scale(0.92); transition:opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);}
.reveal-scale.in-view{opacity:1; transform:scale(1);}
.stagger > *{opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1);}
.stagger.in-view > *{opacity:1; transform:translateY(0);}
.stagger.in-view > *:nth-child(1){transition-delay:.05s;}
.stagger.in-view > *:nth-child(2){transition-delay:.11s;}
.stagger.in-view > *:nth-child(3){transition-delay:.17s;}
.stagger.in-view > *:nth-child(4){transition-delay:.23s;}
.stagger.in-view > *:nth-child(5){transition-delay:.29s;}
.stagger.in-view > *:nth-child(6){transition-delay:.35s;}
.stagger.in-view > *:nth-child(7){transition-delay:.41s;}
.stagger.in-view > *:nth-child(8){transition-delay:.47s;}
.stagger.in-view > *:nth-child(9){transition-delay:.53s;}
.stagger.in-view > *:nth-child(10){transition-delay:.59s;}
.stagger.in-view > *:nth-child(11){transition-delay:.65s;}
.stagger.in-view > *:nth-child(12){transition-delay:.71s;}
.stagger.in-view > *:nth-child(13){transition-delay:.77s;}
.stagger.in-view > *:nth-child(14){transition-delay:.83s;}

.hero-grid > *{opacity:0; transform:translateY(24px); animation:heroIn .9s cubic-bezier(.16,1,.3,1) forwards;}
.hero-grid > *:nth-child(1){animation-delay:.15s;}
.hero-grid > *:nth-child(2){animation-delay:.4s;}
@keyframes heroIn{to{opacity:1; transform:translateY(0);}}
.hero-badge{opacity:0; animation:heroIn .8s cubic-bezier(.16,1,.3,1) forwards; animation-delay:.05s;}

/* ============ Inner page slim breadcrumb bar (non-home pages) ============ */
.page-crumb-bar{
  position:relative; padding:130px 0 12px; background:var(--black); color:#fff; overflow:hidden;
}
.page-crumb-bar .crumb{font-size:12.5px; color:rgba(255,255,255,0.45); font-weight:400; position:relative; z-index:1;}
.page-crumb-bar .crumb a{color:rgba(255,255,255,0.7);}
.page-crumb-bar .crumb a:hover{color:var(--gold);}
@media (max-width:720px){ .page-crumb-bar{padding:100px 0 10px;} }
