/* ============================================================
   ICANFIELD · PREMIUM OFFICE — Private Wealth Management
   Dark cinematic luxury system
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #111111;
  --bg-2:      #17181A;
  --espresso:  #19130E;
  --char:      #0A0A0A;
  --panel:     #1B1C1E;
  --line:      rgba(192,148,74,0.20);
  --line-soft: rgba(245,242,236,0.07);

  /* Gold */
  --gold:        #C0944A;
  --gold-bright: #F0E2A6;
  --gold-deep:   #9B7233;
  --champagne:   #F0E2A6;
  --gold-glow:   rgba(192,148,74,0.32);
  --foil: linear-gradient(96deg, #c0944a 0%, #e8d291 38%, #f0e2a6 52%, #d7b66d 66%, #c0944a 100%);

  /* Ink */
  --cream:  #F5F2EC;
  --muted:  #C2B492;
  --dim:    #847B62;

  /* Accents */
  --emerald: #0F3D33;
  --navy:    #0E1B2A;

  /* Type */
  --serif:  "UTM Avo", "Be Vietnam Pro", system-ui, sans-serif;
  --display:"UTM Avo", "Be Vietnam Pro", system-ui, sans-serif;
  --sans:   "Be Vietnam Pro", system-ui, -apple-system, sans-serif;
  --script: "UTM Avo", "Be Vietnam Pro", system-ui, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #0A0A0C; }

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--serif); }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.06; letter-spacing: -0.01em; margin: 0; }
.display {
  font-size: clamp(40px, 7vw, 104px);
  font-weight: 700;
  letter-spacing: -0.018em;
}
.h2 { font-size: clamp(30px, 4.4vw, 60px); font-weight: 700; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); font-weight: 300; }
.gold-text { color: var(--gold); }
.italic { font-style: italic; }
.script { font-family: var(--script); font-weight: 400; font-style: italic; letter-spacing: 0; }
.foil {
  background: var(--foil);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { position: relative; padding: clamp(90px, 12vh, 170px) 0; }
.tac { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 17px 34px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: var(--pad);
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: all .5s var(--ease);
  position: relative; overflow: hidden;
}
.btn .arw { transition: transform .5s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  color: #16110A;
  box-shadow: 0 0 0 rgba(201,168,106,0);
}
.btn-gold:hover { box-shadow: 0 14px 44px -12px var(--gold-glow); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Top Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,12,0.78);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
  padding-top: 16px; padding-bottom: 16px;
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__brand img { height: 40px; width: auto; transition: height .5s var(--ease); }
.nav.scrolled .nav__brand img { height: 33px; }
.nav__brand .bt {
  font-family: var(--serif); font-size: 19px; line-height: 1; letter-spacing: .02em;
  color: var(--cream);
}
.nav__brand .bt small {
  display: block; font-family: var(--sans); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-top: 4px;
}
.nav__links { display: flex; align-items: center; gap: 38px; }
.nav__links a {
  font-size: 13px; letter-spacing: 0.05em; color: var(--muted);
  position: relative; padding: 6px 0; transition: color .4s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .45s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__links a[aria-current] { color: var(--gold); }
.nav__links a[aria-current]::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 1.5px; background: var(--cream); display: block; transition: .3s; }

/* ---------- Media layers ---------- */
.media-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.media-bg video, .media-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(10,10,12,0.25), transparent 55%),
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.35) 40%, rgba(10,10,12,0.92) 100%);
}
.vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 0 200px 40px rgba(0,0,0,0.7), inset 0 0 80px 0 rgba(0,0,0,0.4);
  background: radial-gradient(110% 80% at 50% 45%, transparent 45%, rgba(8,8,10,0.65) 100%);
}
.grain {
  position: fixed; inset: 0; z-index: 3; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Image placeholder (fallback) ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #15171b 0 14px, #101216 14px 28px);
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--dim);
}
.imgwrap { position: relative; overflow: hidden; background: #101216; }
.imgwrap img { transition: transform 1.4s var(--ease), opacity 1s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero .media-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,10,12,0.78) 0%, rgba(10,10,12,0.35) 45%, rgba(10,10,12,0.55) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 120px; max-width: 1080px; }
.hero__title { margin: 26px 0 0; font-size: clamp(38px, 6vw, 90px); }
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span { display: block; }
.hero__title .r-line > span { white-space: nowrap; }
@media (max-width: 640px) { .hero__title { font-size: clamp(34px, 9vw, 52px); } .hero__title .r-line > span { white-space: normal; } }
.hero__sub { max-width: 560px; margin: 30px 0 40px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__meta {
  display: flex; gap: 40px; margin-top: 64px; flex-wrap: wrap;
  border-top: 1px solid var(--line-soft); padding-top: 30px; max-width: 720px;
}
.hero__meta .it .n { font-family: var(--serif); font-size: 30px; color: var(--gold); line-height: 1; }
.hero__meta .it .l { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; margin-top: 8px; }

.scrollcue {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
}
.scrollcue .rail { width: 1px; height: 54px; background: var(--line-soft); position: relative; overflow: hidden; }
.scrollcue .rail::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0% { transform: translateY(0); } 100% { transform: translateY(300%); } }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { background: var(--char); position: relative; text-align: center; }
.manifesto::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 50% 30%, rgba(201,168,106,0.06), transparent 70%);
}
.manifesto__q {
  font-family: var(--serif); font-size: clamp(28px, 4.1vw, 56px); line-height: 1.28;
  font-weight: 400; max-width: 1000px; margin: 32px auto 0; color: var(--cream); position: relative;
}
.manifesto__q em { font-style: italic; color: var(--gold); }
.manifesto__by { margin-top: 40px; color: var(--muted); font-size: 14px; letter-spacing: 0.04em; }
.rule-dot { display: inline-flex; align-items: center; gap: 14px; color: var(--gold-deep); }
.rule-dot::before, .rule-dot::after { content: ""; width: 40px; height: 1px; background: var(--line); }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { background: var(--bg); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 64px; flex-wrap: wrap; }
.sec-head .l { max-width: 620px; }
.sec-head h2 { margin-top: 22px; }
.sec-head p { margin: 18px 0 0; }

.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.pillar {
  position: relative; background: var(--bg-2); padding: 0; min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
  cursor: pointer;
}
.pillar .pmedia { position: absolute; inset: 0; z-index: 0; }
.pillar .pmedia img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: grayscale(0.3) brightness(0.62); }
.pillar::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,14,16,0.2) 0%, rgba(14,14,16,0.55) 50%, rgba(10,10,12,0.96) 100%);
  transition: background .6s var(--ease);
}
.pillar:hover .pmedia img { transform: scale(1.07); filter: grayscale(0) brightness(0.74); }
.pillar:hover::after { background: linear-gradient(180deg, rgba(14,14,16,0.1) 0%, rgba(26,20,16,0.45) 45%, rgba(10,10,12,0.94) 100%); }
.pillar__body { position: relative; z-index: 2; padding: 34px 30px 36px; }
.pillar__no { font-family: var(--serif); font-size: 13px; color: var(--gold); letter-spacing: 0.1em; opacity: .8; }
.pillar__t { font-family: var(--serif); font-size: 25px; margin: 14px 0 0; line-height: 1.18; }
.pillar__d {
  font-size: 14px; color: var(--muted); margin: 14px 0 0; line-height: 1.6;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .6s var(--ease), opacity .5s var(--ease), margin .6s var(--ease);
}
.pillar:hover .pillar__d { max-height: 140px; opacity: 1; }
.pillar__tags { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.pillar__tags span { font-size: 11px; letter-spacing: 0.06em; color: var(--gold); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }
.pillar .topline { position: absolute; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--gold-bright), transparent); z-index: 3; transition: width .7s var(--ease); }
.pillar:hover .topline { width: 100%; }

/* ============================================================
   SCROLL-SCRUB CINEMATIC
   ============================================================ */
.scrub { position: relative; height: 360vh; background: var(--char); }
.scrub__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scrub__sticky video, .scrub__sticky img.scrub-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.62) contrast(1.04);
}
.scrub__sticky .scrim {
  background: linear-gradient(180deg, rgba(10,10,12,0.6), rgba(10,10,12,0.3) 40%, rgba(10,10,12,0.85));
}
.scrub__phases { position: absolute; inset: 0; z-index: 2; }
.scrub__phase {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter); opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease); pointer-events: none;
}
.scrub__phase.on { opacity: 1; transform: translateY(0); }
.scrub__phase .step { font-size: 12px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; }
.scrub__phase h3 { font-family: var(--serif); font-size: clamp(34px, 5.6vw, 78px); margin: 22px 0 0; max-width: 880px; line-height: 1.06; }
.scrub__phase p { max-width: 540px; margin: 24px 0 0; color: var(--muted); }
.scrub__progress { position: absolute; left: var(--gutter); bottom: 56px; z-index: 3; display: flex; gap: 10px; }
.scrub__progress .dash { width: 46px; height: 2px; background: var(--line-soft); overflow: hidden; }
.scrub__progress .dash i { display: block; height: 100%; width: 0; background: var(--gold); transition: width .3s linear; }

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.membership { background: linear-gradient(180deg, var(--char), var(--bg)); }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
.tier {
  position: relative; background: var(--panel); border: 1px solid var(--line-soft);
  padding: 40px 34px 38px; transition: transform .6s var(--ease), border-color .6s var(--ease), box-shadow .6s var(--ease);
  display: flex; flex-direction: column;
}
.tier:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); }
.tier.feat { background: linear-gradient(180deg, #1b1710, var(--panel)); border-color: var(--line); }
.tier.feat::before {
  content: "Đề xuất"; position: absolute; top: 20px; right: 20px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #16110A;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold)); padding: 5px 12px; border-radius: 999px;
}
.tier__k { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.tier__name { font-family: var(--serif); font-size: 34px; margin: 14px 0 0; }
.tier__min { color: var(--muted); font-size: 14px; margin-top: 10px; }
.tier__min b { color: var(--cream); font-weight: 500; font-family: var(--serif); font-size: 18px; }
.tier__line { height: 1px; background: var(--line-soft); margin: 26px 0; }
.tier__feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.tier__feats li { display: flex; gap: 12px; font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.tier__feats li::before { content: "✦"; color: var(--gold); font-size: 11px; margin-top: 3px; flex: none; }
.tier .btn { margin-top: 32px; justify-content: center; width: 100%; }

/* ============================================================
   REAL ESTATE
   ============================================================ */
.estate { background: var(--bg); }
.estate-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; margin-top: 60px; }
.estate-col { display: grid; gap: 22px; }
.estate-col.right { grid-template-rows: 1fr 1fr; }
.prop {
  position: relative; overflow: hidden; min-height: 300px; border: 1px solid var(--line-soft);
  display: flex; align-items: flex-end; cursor: pointer;
}
.prop.tall { min-height: 632px; }
.prop .pm { position: absolute; inset: 0; z-index: 0; }
.prop .pm img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); }
.prop:hover .pm img { transform: scale(1.06); }
.prop::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,12,0) 30%, rgba(10,10,12,0.9) 100%); }
.prop__body { position: relative; z-index: 2; padding: 30px 30px 30px; width: 100%; }
.prop__loc { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.prop__t { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); margin: 12px 0 0; }
.prop__meta { display: flex; gap: 22px; margin-top: 16px; color: var(--muted); font-size: 13px; flex-wrap: wrap; }
.prop__meta b { color: var(--cream); font-weight: 500; }
.prop__flag { position: absolute; top: 24px; left: 24px; z-index: 2; font-size: 12px; letter-spacing: .14em; color: var(--cream); background: rgba(10,10,12,0.5); border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(6px); }

/* ============================================================
   WHY / ADVISORS / STATS
   ============================================================ */
.why { background: var(--char); position: relative; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.why__list { list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-direction: column; gap: 28px; }
.why__list li { display: flex; gap: 20px; }
.why__list .ic { flex: none; width: 46px; height: 46px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); font-family: var(--serif); font-size: 17px; border-radius: 50%; }
.why__list h4 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin: 0 0 6px; }
.why__list p { margin: 0; color: var(--muted); font-size: 14.5px; }

.advisors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.advisor { position: relative; overflow: hidden; border: 1px solid var(--line-soft); }
.advisor .am { aspect-ratio: 3/4; }
.advisor .am img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5) brightness(0.82); transition: filter 1s var(--ease), transform 1.4s var(--ease); }
.advisor:hover .am img { filter: grayscale(0) brightness(1); transform: scale(1.04); }
.advisor::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,12,0.92)); }
.advisor__b { position: absolute; z-index: 2; left: 20px; bottom: 18px; }
.advisor__b .nm { font-family: var(--serif); font-size: 18px; }
.advisor__b .rl { font-size: 12px; color: var(--gold); letter-spacing: 0.04em; margin-top: 3px; }

.stats { border-top: 1px solid var(--line-soft); margin-top: clamp(60px, 9vh, 110px); padding-top: clamp(50px, 7vh, 80px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat .num { font-family: var(--serif); font-size: clamp(40px, 5vw, 68px); color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.stat .num .suf { color: var(--cream); }
.stat .lbl { color: var(--muted); font-size: 13.5px; margin-top: 14px; letter-spacing: 0.02em; }

/* ============================================================
   INSIGHT
   ============================================================ */
.insight { background: var(--bg); }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.art { display: flex; flex-direction: column; cursor: pointer; }
.art__media { aspect-ratio: 16/11; overflow: hidden; border: 1px solid var(--line-soft); }
.art__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); filter: brightness(0.86); }
.art:hover .art__media img { transform: scale(1.05); }
.art__cat { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-top: 22px; }
.art__t { font-family: var(--serif); font-size: 23px; line-height: 1.25; margin: 14px 0 0; transition: color .4s var(--ease); }
.art:hover .art__t { color: var(--gold); }
.art__meta { color: var(--dim); font-size: 13px; margin-top: 14px; display: flex; gap: 14px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; overflow: hidden; min-height: 86vh; display: flex; align-items: center; }
.final .media-bg img, .final .media-bg video { filter: brightness(0.4) saturate(0.9); }
.final .scrim { background: radial-gradient(80% 90% at 50% 50%, rgba(10,10,12,0.55), rgba(8,8,10,0.92)); }
.final__inner { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; }
.final h2 { font-size: clamp(36px, 6vw, 84px); margin: 28px 0 0; }
.final p { margin: 28px auto 40px; max-width: 560px; }
.final__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final__contact { margin-top: 46px; display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.final__contact a { color: var(--cream); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.final__contact a:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--char); border-top: 1px solid var(--line-soft); padding: 80px 0 38px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand img { height: 64px; margin-bottom: 22px; }
.footer__brand p { color: var(--muted); font-size: 14px; max-width: 320px; }
.footer__col h5 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; font-weight: 600; }
.footer__col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 13px; transition: color .3s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line-soft); margin-top: 60px; padding-top: 28px;
  color: var(--dim); font-size: 12.5px; letter-spacing: 0.02em;
}
.footer__bottom .lk { display: flex; gap: 24px; }
.footer__bottom a:hover { color: var(--muted); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; }
.reveal.in { opacity: 1; }
.reveal { transform: translateY(26px); }
.reveal.in { transform: none; }
.reveal.anim { transition: opacity .95s var(--ease), transform .95s var(--ease); }
.reveal.anim.d1 { transition-delay: .07s; }
.reveal.anim.d2 { transition-delay: .14s; }
.reveal.anim.d3 { transition-delay: .21s; }
.reveal.anim.d4 { transition-delay: .28s; }

.r-line { overflow: hidden; }
.r-line > span { display: block; transform: translateY(108%); }
.r-line.in > span { transform: none; }
.r-line.anim > span { transition: transform .9s var(--ease); }
.r-line.anim.d1 > span { transition-delay: .1s; }
.r-line.anim.d2 > span { transition-delay: .22s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .r-line > span { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scrollcue .rail::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .insight-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
    position: fixed; inset: 64px 0 auto 0; background: rgba(10,10,10,0.97);
    backdrop-filter: blur(18px); padding: 20px var(--gutter) 30px; border-bottom: 1px solid var(--line);
    z-index: 99;
  }
  .nav.open .nav__links a { font-size: 18px; padding: 12px 0; width: 100%; }
  body.nav-open { overflow: hidden; }
  .why__grid { grid-template-columns: 1fr; gap: 50px; }
  .estate-grid { grid-template-columns: 1fr; }
  .prop.tall { min-height: 380px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .hero__meta { gap: 28px; }
  .scrub { height: 300vh; }
}
@media (max-width: 560px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .advisors { grid-template-columns: 1fr 1fr; }
  .hero__meta .it .n { font-size: 24px; }
  .sec-head { margin-bottom: 44px; }
}

/* ============================================================
   SHARED SUB-PAGE SYSTEM  (interior pages)
   ============================================================ */

/* Italic accent (replaces former script font) */
.flourish { font-family: var(--display); font-style: italic; font-weight: 400; font-size: clamp(22px, 2.6vw, 38px); color: var(--gold); line-height: 1.1; display: inline-block; letter-spacing: 0.005em; }

/* ---------- Sub-page hero ---------- */
.subhero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; overflow: hidden; }
.subhero .media-bg img, .subhero .media-bg video { filter: brightness(0.5) grayscale(0.2) contrast(1.05); }
@keyframes slowzoom { from { transform: scale(1.02); } to { transform: scale(1.13); } }
.subhero .media-bg img { animation: slowzoom 26s var(--ease) infinite alternate; }
@media (prefers-reduced-motion: reduce) { .subhero .media-bg img { animation: none; } }
.subhero .scrim { background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.35) 38%, rgba(10,10,10,0.95) 100%); }
.subhero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(56px, 9vh, 110px); padding-top: 160px; }
.subhero__inner .display { margin: 20px 0 0; }
.subhero__lead { max-width: 640px; margin: 28px 0 0; color: var(--cream); font-weight: 300; font-size: clamp(17px, 1.5vw, 21px); }
.breadcrumb { display: flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: color .3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold-deep); }
.breadcrumb .cur { color: var(--gold); }

/* ---------- Two-column intro ---------- */
.intro-split { background: var(--char); }
.intro-split .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.intro-split h2 { font-size: clamp(28px, 3.6vw, 50px); }
.intro-split .body p { color: var(--muted); margin: 0 0 20px; font-size: 16.5px; }
.intro-split .body p:last-child { margin-bottom: 0; }
.intro-split .body .lead { color: var(--cream); font-weight: 300; margin-bottom: 26px; }

/* ---------- Feature rows (alternating image / text) ---------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.frow + .frow { margin-top: clamp(70px, 10vh, 130px); }
.frow.rev .frow__media { order: 2; }
.frow__media { position: relative; overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line-soft); }
.frow__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); filter: brightness(0.84) contrast(1.03); }
.frow:hover .frow__media img { transform: scale(1.05); }
.frow__media .tag { position: absolute; top: 22px; left: 22px; z-index: 2; font-size: 12px; letter-spacing: .14em; color: var(--cream); background: rgba(10,10,10,0.55); border: 1px solid var(--line); padding: 8px 15px; border-radius: 999px; backdrop-filter: blur(6px); }
.frow__no { font-family: var(--display); font-size: 15px; letter-spacing: 0.14em; color: var(--gold); }
.frow h3 { font-size: clamp(26px, 3.2vw, 44px); margin: 16px 0 0; }
.frow p { color: var(--muted); margin: 22px 0 0; font-size: 16px; }
.frow__pts { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.frow__pts li { display: flex; gap: 13px; color: var(--cream); font-size: 15px; font-weight: 300; }
.frow__pts li::before { content: "✦"; color: var(--gold); font-size: 11px; margin-top: 4px; flex: none; }

/* ---------- Card grid (markets / classes / types) ---------- */
.cardgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
.gcard { position: relative; overflow: hidden; min-height: 440px; display: flex; align-items: flex-end; border: 1px solid var(--line-soft); cursor: pointer; }
.gcard .gm { position: absolute; inset: 0; z-index: 0; }
.gcard .gm img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); filter: brightness(0.6) grayscale(0.25); }
.gcard:hover .gm img { transform: scale(1.07); filter: brightness(0.72) grayscale(0); }
.gcard::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.5) 45%, rgba(10,10,10,0.95) 100%); }
.gcard__body { position: relative; z-index: 2; padding: 32px 30px 34px; width: 100%; }
.gcard__k { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.gcard__t { font-family: var(--display); font-size: 28px; font-weight: 700; margin: 12px 0 0; line-height: 1.1; }
.gcard__d { color: var(--muted); font-size: 14.5px; margin: 14px 0 0; line-height: 1.6; }
.gcard__stat { display: flex; gap: 26px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.gcard__stat .v { font-family: var(--display); font-size: 24px; color: var(--gold); line-height: 1; }
.gcard__stat .l { font-size: 11px; color: var(--muted); margin-top: 7px; letter-spacing: 0.04em; }
.topline-card { position: absolute; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--gold-bright), transparent); z-index: 3; transition: width .7s var(--ease); }
.gcard:hover .topline-card { width: 100%; }

/* ---------- Process steps ---------- */
.steps { background: var(--char); }
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); margin-top: 60px; }
.step-cell { background: var(--bg); padding: 40px 30px 44px; position: relative; transition: background .5s var(--ease); }
.step-cell:hover { background: var(--bg-2); }
.step-cell .sn { font-family: var(--display); font-size: 14px; color: var(--gold); letter-spacing: 0.1em; }
.step-cell .st { font-family: var(--display); font-size: 22px; font-weight: 700; margin: 18px 0 0; line-height: 1.18; }
.step-cell .sd { color: var(--muted); font-size: 14.5px; margin: 14px 0 0; line-height: 1.6; }

/* ---------- Stat band ---------- */
.statband { background: var(--bg); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.statband .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-top: clamp(56px, 8vh, 90px); padding-bottom: clamp(56px, 8vh, 90px); }
.statband .num { font-family: var(--display); font-weight: 700; font-size: clamp(38px, 4.6vw, 64px); color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.statband .num .suf { color: var(--cream); }
.statband .lbl { color: var(--muted); font-size: 13.5px; margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 50px; border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; color: var(--cream); padding: 30px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--display); font-size: clamp(18px, 2vw, 24px); font-weight: 700; transition: color .3s; }
.faq-q:hover { color: var(--gold); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); transition: transform .4s var(--ease), background .4s; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--gold); }
.faq-q .pm::before { width: 11px; height: 1.5px; }
.faq-q .pm::after { width: 1.5px; height: 11px; transition: transform .4s var(--ease); }
.faq-item.open .faq-q .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { color: var(--muted); margin: 0; padding: 0 60px 30px 0; font-size: 15.5px; line-height: 1.7; }

/* ---------- News ---------- */
.news { background: var(--bg); }
.news-feat { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 4vw, 60px); margin-top: 56px; align-items: center; }
.news-feat__media { position: relative; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--line-soft); }
.news-feat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); }
.news-feat:hover .news-feat__media img { transform: scale(1.04); }
.news-feat__cat, .news-card__cat { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.news-feat h3 { font-size: clamp(26px, 3vw, 42px); margin: 18px 0 0; line-height: 1.16; }
.news-feat p { color: var(--muted); margin: 22px 0 0; font-size: 16px; max-width: 480px; }
.news-feat .nmeta, .news-card__meta { color: var(--dim); font-size: 13px; margin-top: 22px; display: flex; gap: 16px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 64px; }
.news-card { cursor: pointer; display: flex; flex-direction: column; }
.news-card__media { aspect-ratio: 16/11; overflow: hidden; border: 1px solid var(--line-soft); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); filter: brightness(0.88); }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__cat { margin-top: 22px; }
.news-card__t { font-family: var(--display); font-weight: 700; font-size: 21px; line-height: 1.25; margin: 13px 0 0; transition: color .3s; }
.news-card:hover .news-card__t { color: var(--gold); }
.news-cats { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.news-cats button { background: none; border: 1px solid var(--line); color: var(--muted); padding: 9px 20px; border-radius: 999px; font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; cursor: pointer; transition: all .3s var(--ease); }
.news-cats button:hover, .news-cats button.active { border-color: var(--gold); color: var(--gold); background: rgba(192,148,74,0.08); }

/* ---------- Allocation bar (investment page) ---------- */
.alloc { margin-top: 56px; }
.alloc__bar { display: flex; height: 64px; border: 1px solid var(--line); overflow: hidden; }
.alloc__seg { height: 100%; transition: flex .8s var(--ease); position: relative; }
.alloc__legend { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 34px; }
.alloc__item .sw { width: 100%; height: 4px; }
.alloc__item .pct { font-family: var(--display); font-weight: 700; font-size: 28px; color: var(--cream); margin-top: 14px; line-height: 1; }
.alloc__item .nm { color: var(--muted); font-size: 13.5px; margin-top: 8px; line-height: 1.4; }
@media (max-width: 860px) { .alloc__legend { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ============================================================
   QUOTE BAND  (editorial pull-quote)
   ============================================================ */
.quoteband { background: var(--char); position: relative; text-align: center; overflow: hidden; }
.quoteband::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 70% at 50% 28%, rgba(192,148,74,0.08), transparent 70%); pointer-events: none; }
.quoteband .wrap { position: relative; z-index: 2; max-width: 1040px; }
.quoteband__mark { font-family: var(--display); font-size: 90px; line-height: 0.5; color: var(--gold); opacity: 0.5; display: block; height: 50px; }
.quoteband__q { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 3.7vw, 52px); line-height: 1.32; color: var(--cream); margin: 0 auto; letter-spacing: -0.01em; }
.quoteband__q em { font-style: italic; color: var(--gold); }
.quoteband__by { margin-top: 38px; color: var(--muted); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testi { background: var(--bg); }
.testi__card { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: center; max-width: 1080px; margin: 0 auto; }
.testi__media { position: relative; overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line-soft); }
.testi__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) brightness(0.92); transition: transform 1.6s var(--ease); }
.testi__card:hover .testi__media img { transform: scale(1.05); }
.testi__q { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.5vw, 34px); line-height: 1.4; color: var(--cream); margin: 0; }
.testi__q em { font-style: italic; color: var(--gold); }
.testi__who { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.testi__who .ln { width: 36px; height: 1px; background: var(--gold); }
.testi__who .nm { font-family: var(--display); font-weight: 700; font-size: 17px; }
.testi__who .rl { color: var(--muted); font-size: 13px; margin-top: 3px; }

/* ============================================================
   POINT LIST  (who-it's-for / benefits)
   ============================================================ */
.pointlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); margin-top: 56px; }
.point { background: var(--bg); padding: 38px 34px; display: flex; gap: 20px; transition: background .5s var(--ease); }
.point:hover { background: var(--bg-2); }
.point .pn { font-family: var(--display); font-weight: 700; color: var(--gold); font-size: 15px; flex: none; padding-top: 3px; }
.point h4 { font-family: var(--display); font-weight: 700; font-size: 20px; margin: 0 0 10px; }
.point p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.6; }

/* ============================================================
   STRUCTURE LADDER  (family office org)
   ============================================================ */
.ladder { margin-top: 56px; display: flex; flex-direction: column; gap: 16px; }
.rung { display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: center; border: 1px solid var(--line-soft); background: var(--panel); padding: 28px 34px; transition: border-color .5s var(--ease), transform .5s var(--ease); }
.rung:hover { border-color: var(--line); transform: translateX(8px); }
.rung .rk { font-family: var(--display); font-weight: 700; font-size: clamp(18px, 1.8vw, 23px); color: var(--gold); }
.rung .rd { color: var(--muted); font-size: 15px; line-height: 1.6; }
@media (max-width: 700px) { .rung { grid-template-columns: 1fr; gap: 10px; } .pointlist { grid-template-columns: 1fr; } .testi__card { grid-template-columns: 1fr; } }

/* ============================================================
   CROSS-NAV  (related services, before signup)
   ============================================================ */
.cross { background: var(--char); }
.cross-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.cross-card { position: relative; border: 1px solid var(--line-soft); background: var(--bg); padding: 36px 30px 32px; display: flex; flex-direction: column; min-height: 220px; transition: border-color .5s var(--ease), background .5s var(--ease), transform .5s var(--ease); overflow: hidden; }
.cross-card::after { content: ""; position: absolute; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--gold-bright), transparent); transition: width .6s var(--ease); }
.cross-card:hover { border-color: var(--line); transform: translateY(-5px); }
.cross-card:hover::after { width: 100%; }
.cross-card .ck { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.cross-card .ct { font-family: var(--display); font-weight: 700; font-size: 24px; margin: 14px 0 0; line-height: 1.15; }
.cross-card .cd { color: var(--muted); font-size: 14px; margin: 12px 0 0; line-height: 1.6; flex: 1; }
.cross-card .cgo { margin-top: 22px; color: var(--cream); font-size: 13px; letter-spacing: 0.06em; display: inline-flex; align-items: center; gap: 9px; transition: color .4s; }
.cross-card:hover .cgo { color: var(--gold); }
.cross-card .cgo .arw { transition: transform .5s var(--ease); }
.cross-card:hover .cgo .arw { transform: translateX(5px); }
@media (max-width: 860px) { .cross-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SIGNUP FORM  (every page footer)
   ============================================================ */
.signup { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg) 0%, var(--char) 100%); }
.signup::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 80% at 50% 0%, rgba(192,148,74,0.10), transparent 65%); pointer-events: none; }
.signup__card { position: relative; z-index: 2; max-width: 1040px; margin: 0 auto; background: linear-gradient(165deg, #1a1610 0%, var(--panel) 60%); border: 1px solid var(--line); padding: clamp(40px, 6vw, 76px); }
.signup__card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--foil); }
.signup__head { text-align: center; max-width: 600px; margin: 0 auto clamp(34px, 4vw, 50px); }
.signup__head .flourish { margin-bottom: 6px; }
.signup__head h2 { font-size: clamp(28px, 3.6vw, 50px); margin: 6px 0 0; }
.signup__head p { color: var(--muted); margin: 18px 0 0; font-size: 16px; }
.signup__form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  background: rgba(10,10,10,0.5); border: 1px solid var(--line-soft); color: var(--cream);
  font-family: var(--sans); font-size: 15px; padding: 15px 17px; border-radius: 2px;
  transition: border-color .3s, background .3s; width: 100%;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(10,10,10,0.7); }
.field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 22px) center, calc(100% - 16px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.signup__actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.signup__note { color: var(--dim); font-size: 12.5px; max-width: 380px; line-height: 1.5; }
.signup__note a { color: var(--muted); border-bottom: 1px solid var(--line); }
.signup .btn-gold { padding: 17px 40px; }
.signup__ok { display: none; text-align: center; padding: 20px 0; }
.signup__ok .flourish { font-size: clamp(34px, 5vw, 56px); }
.signup__ok p { color: var(--muted); margin: 12px 0 0; }
.signup__card.sent .signup__form, .signup__card.sent .signup__head { display: none; }
.signup__card.sent .signup__ok { display: block; }

/* ---------- Sub-page responsive ---------- */
@media (max-width: 1080px) {
  .cardgrid { grid-template-columns: 1fr 1fr; }
  .steps__grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .intro-split .wrap { grid-template-columns: 1fr; gap: 36px; }
  .frow, .frow.rev .frow__media { grid-template-columns: 1fr; order: 0; }
  .frow__media { order: -1 !important; }
  .statband .wrap { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .news-feat { grid-template-columns: 1fr; }
  .signup__form { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cardgrid, .steps__grid, .news-grid { grid-template-columns: 1fr; }
  .statband .wrap { grid-template-columns: 1fr 1fr; }
}

/* ====== DROPDOWN NAV (submenu) + FOOTER 4-COL — added ====== */
.nav__item{ position:relative; display:flex; align-items:center; }
.nav__item > a .caret{ font-size:8px; margin-left:5px; opacity:.55; transition:.3s; }
.nav__item:hover > a .caret{ opacity:1; transform:translateY(1px); }
.nav__sub{
  position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(10px);
  min-width:240px; background:rgba(20,17,12,.97); -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  border:1px solid var(--line); border-radius:14px; padding:10px;
  box-shadow:0 24px 60px rgba(0,0,0,.55);
  opacity:0; visibility:hidden; transition:.26s var(--ease); z-index:120;
  display:flex; flex-direction:column; gap:2px;
}
.nav__item:hover > .nav__sub{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(2px); }
.nav__sub a{ display:block !important; padding:10px 14px; font-size:13px; color:var(--muted); border-radius:9px; white-space:nowrap; width:auto; }
.nav__sub a::after{ display:none !important; }
.nav__sub a:hover{ color:var(--cream); background:rgba(192,148,74,.12); }
.footer__top{ grid-template-columns:1.5fr 1fr 1fr 1fr 1fr; }
@media (max-width:1080px){ .footer__top{ grid-template-columns:1fr 1fr 1fr; } }
@media (max-width:860px){
  .nav.open .nav__item{ flex-direction:column; align-items:flex-start; width:100%; }
  .nav.open .nav__item > a .caret{ display:none; }
  .nav.open .nav__sub{ position:static; transform:none; opacity:1; visibility:visible; background:none; border:none; box-shadow:none; padding:2px 0 10px 18px; min-width:0; }
  .nav.open .nav__sub a{ font-size:15px; color:var(--dim); padding:9px 0; }
  .footer__top{ grid-template-columns:1fr 1fr; }
}

/* ===== VISUAL UPGRADE v4: ảnh SÁNG hơn, LỚN hơn, mỗi section có ảnh ===== */
.scrim{ background: radial-gradient(120% 90% at 50% 0%, rgba(10,10,12,.12), transparent 55%), linear-gradient(180deg, rgba(10,10,12,.32) 0%, rgba(10,10,12,.16) 44%, rgba(10,10,12,.76) 100%) !important; }
.subhero .scrim{ background: linear-gradient(180deg, rgba(10,10,10,.26) 0%, rgba(10,10,10,.10) 46%, rgba(10,10,10,.68) 100%) !important; }
.final .scrim{ background: radial-gradient(85% 95% at 50% 50%, rgba(10,10,12,.32), rgba(8,8,10,.80)) !important; }
.vignette{ box-shadow: inset 0 0 170px 26px rgba(0,0,0,.36) !important; background: radial-gradient(110% 80% at 50% 45%, transparent 58%, rgba(8,8,10,.40) 100%) !important; }
.gcard{ min-height:470px; }
.gcard .gm img{ filter: brightness(.98) grayscale(0) !important; }
.gcard:hover .gm img{ filter: brightness(1.07) grayscale(0) !important; }
.pillar{ min-height:480px; }
.pillar .pmedia img{ filter: grayscale(0) brightness(.92) !important; }
.pillar:hover .pmedia img{ filter: grayscale(0) brightness(1.04) !important; }
.bandimg{ width:100%; height:clamp(320px,42vw,580px); object-fit:cover; border-radius:18px; display:block; filter:brightness(1.04); box-shadow:0 30px 70px rgba(0,0,0,.45); }
.sec-photo{ margin-top:48px; }

/* ===== v6: text-card gọn · liquid-glass photoband · submenu rõ ===== */
/* Card không ảnh → kiểu text gọn gàng, không cao trống */
.gcard:not(:has(.gm)){ min-height:0; align-items:stretch; background:var(--panel); border:1px solid var(--line-soft); border-radius:16px; }
.gcard:not(:has(.gm))::after{ display:none !important; }
.gcard:not(:has(.gm)) .gcard__body{ padding:32px 28px !important; }
/* Liquid glass: content nằm trên ảnh lớn với nền mờ */
.subhero[style*="min-height"] .subhero__inner{
  background:linear-gradient(135deg, rgba(20,17,12,.42), rgba(20,17,12,.24));
  -webkit-backdrop-filter:blur(13px) saturate(1.2); backdrop-filter:blur(13px) saturate(1.2);
  border:1px solid rgba(245,242,236,.16); border-radius:24px;
  padding:clamp(30px,4vw,54px); max-width:800px;
  box-shadow:0 36px 90px rgba(0,0,0,.42);
}
.subhero[style*="min-height"] .scrim{ background:linear-gradient(180deg, rgba(10,10,10,.16) 0%, rgba(10,10,10,.04) 50%, rgba(10,10,10,.42) 100%) !important; }
/* Submenu: chỉ báo rõ hơn */
.nav__item > a .caret{ opacity:1 !important; color:var(--gold) !important; font-size:10px !important; display:inline-block; transition:transform .3s var(--ease); }
.nav__item:hover > a .caret{ transform:rotate(180deg); }
.nav__item:hover > a{ color:var(--cream); }
.nav__sub{ border-color:rgba(192,148,74,.42) !important; }
.nav__sub::before{ content:""; position:absolute; top:-7px; left:50%; transform:translateX(-50%) rotate(45deg); width:12px; height:12px; background:rgba(20,17,12,.97); border-left:1px solid rgba(192,148,74,.42); border-top:1px solid rgba(192,148,74,.42); }

/* ============================================================
   ╔══════════════════════════════════════════════════════╗
   ║  v7 · LIQUID-LUXURY POLISH                             ║
   ║  warm charcoal · glassmorphism · bright editorial      ║
   ╚══════════════════════════════════════════════════════╝
   ============================================================ */

/* ---- 1 · WARM TOKENS (override, later-wins) ---- */
:root{
  --bg:        #15140F;   /* warm charcoal, not black */
  --bg-2:      #1A1814;
  --char:      #100F0B;   /* deepest warm */
  --espresso:  #1E1810;
  --panel:     #201C15;
  --line:      rgba(192,148,74,0.26);
  --line-soft: rgba(245,242,236,0.08);

  --cream:  #F6F1E8;
  --muted:  #C8BA9C;
  --dim:    #918468;

  /* light-section ink */
  --ink:        #1B1510;
  --ink-muted:  #5E5443;
  --ink-dim:    #8C806B;
  --cream-bg:   #ECE5D7;
  --cream-bg-2: #E4D9C6;

  --glass-bg:    rgba(28,24,17,0.30);
  --glass-bord:  rgba(246,241,232,0.18);
  --glass-shadow: 0 30px 80px -28px rgba(0,0,0,0.66);
  --r-lg: 26px;
  --r-md: 18px;
}
body{ background:var(--bg); }

/* warm ambient wash behind everything */
body::before{
  content:""; position:fixed; inset:0; z-index:-2; pointer-events:none;
  background:
    radial-gradient(60% 50% at 82% -8%, rgba(192,148,74,0.10), transparent 60%),
    radial-gradient(55% 45% at 8% 108%, rgba(155,114,51,0.08), transparent 60%),
    linear-gradient(180deg, #15140F 0%, #131209 60%, #15140F 100%);
}

/* ---- 2 · LIQUID BLOBS ---- */
.blobs{ position:absolute; inset:0; z-index:0; overflow:hidden; pointer-events:none; }
.blob{
  position:absolute; border-radius:50%; filter:blur(54px); opacity:.7;
  will-change:transform; mix-blend-mode:screen;
}
.blob.a{ width:46vw; height:46vw; left:-10vw; top:-8vw;
  background:radial-gradient(circle at 35% 35%, rgba(240,226,166,0.42), rgba(192,148,74,0.16) 55%, transparent 72%);
  animation:blobdrift 24s var(--ease) infinite alternate; }
.blob.b{ width:40vw; height:40vw; right:-12vw; top:18vw;
  background:radial-gradient(circle at 60% 40%, rgba(215,182,109,0.34), rgba(155,114,51,0.12) 58%, transparent 74%);
  animation:blobdrift2 30s var(--ease) infinite alternate; }
.blob.c{ width:34vw; height:34vw; left:24vw; bottom:-14vw;
  background:radial-gradient(circle at 50% 50%, rgba(192,148,74,0.30), transparent 70%);
  animation:blobdrift 27s var(--ease) infinite alternate-reverse; }
@keyframes blobdrift{ from{ transform:translate3d(0,0,0) scale(1); } to{ transform:translate3d(6vw,4vw,0) scale(1.16); } }
@keyframes blobdrift2{ from{ transform:translate3d(0,0,0) scale(1.08); } to{ transform:translate3d(-5vw,-3vw,0) scale(.92); } }
@media (prefers-reduced-motion: reduce){ .blob{ animation:none !important; } }

/* ---- 3 · GLASS SYSTEM ---- */
.glass{
  background:var(--glass-bg);
  -webkit-backdrop-filter:blur(22px) saturate(1.4);
  backdrop-filter:blur(22px) saturate(1.4);
  border:1px solid var(--glass-bord);
  border-radius:var(--r-lg);
  box-shadow:var(--glass-shadow), inset 0 1px 0 rgba(246,241,232,0.12);
}
.glass-card{
  position:relative;
  background:linear-gradient(155deg, rgba(38,32,22,0.58), rgba(24,21,15,0.40));
  -webkit-backdrop-filter:blur(18px) saturate(1.3);
  backdrop-filter:blur(18px) saturate(1.3);
  border:1px solid var(--glass-bord);
  border-radius:var(--r-md);
  box-shadow:0 22px 60px -34px rgba(0,0,0,0.7), inset 0 1px 0 rgba(246,241,232,0.10);
  transition:transform .6s var(--ease), border-color .6s var(--ease), box-shadow .6s var(--ease);
  overflow:hidden;
}
.glass-card::before{
  content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background:radial-gradient(120% 80% at 0% 0%, rgba(240,226,166,0.10), transparent 42%);
  opacity:0; transition:opacity .6s var(--ease);
}
.glass-card:hover{ transform:translateY(-6px); border-color:rgba(192,148,74,0.5); box-shadow:0 40px 90px -40px rgba(0,0,0,0.8), 0 0 0 1px rgba(192,148,74,0.18); }
.glass-card:hover::before{ opacity:1; }

/* glass button */
.btn-glass{
  background:rgba(246,241,232,0.06);
  -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
  color:var(--cream); border:1px solid var(--glass-bord); border-radius:999px;
}
.btn-glass:hover{ border-color:var(--gold); color:var(--gold); background:rgba(192,148,74,0.10); transform:translateY(-2px); box-shadow:0 14px 40px -16px var(--gold-glow); }
/* round the existing buttons for the liquid look */
.btn{ border-radius:999px; }
.btn-ghost{ border-radius:999px; }
.btn-gold{ border-radius:999px; box-shadow:0 10px 30px -14px rgba(192,148,74,0.5); }

/* ---- 4 · WARM, BRIGHT IMAGE TREATMENT ---- */
.editorial{ position:relative; overflow:hidden; border-radius:var(--r-lg); }
.editorial img{ width:100%; height:100%; object-fit:cover; display:block;
  filter:saturate(1.08) contrast(1.03) brightness(1.04); transition:transform 1.5s var(--ease); }
.editorial::after{ /* unifying warm glaze, very light */
  content:""; position:absolute; inset:0; pointer-events:none; border-radius:inherit;
  background:linear-gradient(165deg, rgba(192,148,74,0.06), transparent 38%, rgba(20,18,14,0.14));
  mix-blend-mode:multiply;
}
.editorial.zoom:hover img{ transform:scale(1.06); }
.editorial .ed-tag{
  position:absolute; left:18px; top:18px; z-index:2;
  font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--cream);
  background:rgba(16,15,11,0.4); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  border:1px solid var(--glass-bord); padding:8px 14px; border-radius:999px;
}

/* ---- 5 · LIGHT (BRIGHT) SECTION — re-scope tokens ---- */
.section--light{
  --cream:#1B1510; --muted:#5E5443; --dim:#8C806B;
  --line-soft:rgba(27,21,16,0.12); --line:rgba(192,148,74,0.34);
  --glass-bg:rgba(255,253,248,0.55); --glass-bord:rgba(27,21,16,0.10);
  background:var(--cream-bg); color:var(--ink);
  position:relative;
}
.section--light::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(70% 60% at 85% 0%, rgba(192,148,74,0.12), transparent 60%);
}
.section--light .eyebrow{ color:var(--gold-deep); }
.section--light .glass-card{ background:linear-gradient(155deg, rgba(255,253,248,0.74), rgba(247,242,233,0.5)); border-color:rgba(27,21,16,0.08); box-shadow:0 24px 60px -38px rgba(60,46,20,0.4); }
.section--light .glass-card:hover{ border-color:rgba(192,148,74,0.5); }

/* ---- 6 · SPLIT 50/50 (image ⇆ text) ---- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,5vw,84px); align-items:center; }
.split.rev .split__media{ order:2; }
.split__media{ position:relative; border-radius:var(--r-lg); overflow:visible; }
.split__media .editorial{ aspect-ratio:4/5; box-shadow:0 50px 100px -50px rgba(0,0,0,0.7); }
.split__media .float-stat{
  position:absolute; right:-26px; bottom:-26px; z-index:3; padding:22px 26px; min-width:180px;
  border-radius:var(--r-md);
}
.split__media .float-stat .v{ font-family:var(--display); font-weight:700; font-size:38px; color:var(--gold); line-height:1; }
.split__media .float-stat .l{ font-size:12.5px; color:var(--muted); margin-top:8px; letter-spacing:.03em; }
.split__body h2{ margin-top:20px; }
.split__body .lead{ margin-top:22px; }
.split__list{ list-style:none; margin:32px 0 0; padding:0; display:flex; flex-direction:column; gap:20px; }
.split__list li{ display:flex; gap:16px; align-items:flex-start; }
.split__list .ic{ flex:none; width:42px; height:42px; border-radius:50%; display:grid; place-items:center;
  background:rgba(192,148,74,0.12); border:1px solid var(--line); color:var(--gold); font-size:15px; }
.split__list h4{ font-family:var(--display); font-weight:700; font-size:18px; margin:0 0 5px; }
.split__list p{ margin:0; color:var(--muted); font-size:14.5px; line-height:1.55; }
@media (max-width:860px){ .split{ grid-template-columns:1fr; gap:40px; } .split.rev .split__media{ order:0; } .split__media .float-stat{ right:14px; bottom:-20px; } }

/* ---- 7 · FULL-BLEED PHOTOBAND w/ glass panel ---- */
.photoband{ position:relative; min-height:78vh; display:flex; align-items:center; overflow:hidden; }
.photoband__media{ position:absolute; inset:0; z-index:0; }
.photoband__media img{ width:100%; height:100%; object-fit:cover; filter:saturate(1.06) contrast(1.02) brightness(1.0); }
.photoband__media::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(16,15,11,0.78) 0%, rgba(16,15,11,0.42) 42%, rgba(16,15,11,0.18) 100%); }
.photoband__panel{ position:relative; z-index:2; padding:clamp(34px,4vw,56px); max-width:560px; }
.photoband .statband{ background:transparent; border:none; }

/* statband as glass tiles */
.statband.glassstats .wrap{ gap:18px; }
.statband.glassstats .wrap > div{ padding:30px 26px; border-radius:var(--r-md);
  background:linear-gradient(155deg, rgba(38,32,22,0.5), rgba(20,18,13,0.34));
  -webkit-backdrop-filter:blur(16px); backdrop-filter:blur(16px);
  border:1px solid var(--glass-bord); box-shadow:inset 0 1px 0 rgba(246,241,232,0.10); }

/* ---- 8 · HERO upgrade (glass content panel, bright) ---- */
.hero .media-bg::after{ background:linear-gradient(95deg, rgba(16,15,11,0.74) 0%, rgba(16,15,11,0.34) 46%, rgba(16,15,11,0.12) 100%) !important; }
.hero .media-bg img, .hero .media-bg video{ filter:saturate(1.08) contrast(1.02) brightness(1.06); }
.hero__panel{
  position:relative; max-width:660px; padding:clamp(30px,3.4vw,52px);
  border-radius:var(--r-lg);
  background:linear-gradient(150deg, rgba(28,24,17,0.32), rgba(18,16,11,0.15));
  -webkit-backdrop-filter:blur(26px) saturate(1.35); backdrop-filter:blur(26px) saturate(1.35);
  border:1px solid var(--glass-bord);
  box-shadow:var(--glass-shadow), inset 0 1px 0 rgba(246,241,232,0.12);
}
.hero__panel::before{ content:""; position:absolute; top:0; left:26px; right:26px; height:1px;
  background:linear-gradient(90deg, transparent, rgba(240,226,166,0.6), transparent); }
.hero__chips{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.hero__chip{ display:flex; flex-direction:column; padding:14px 20px; border-radius:14px;
  background:rgba(246,241,232,0.05); border:1px solid var(--glass-bord); }
.hero__chip .n{ font-family:var(--display); font-weight:700; font-size:24px; color:var(--gold); line-height:1; }
.hero__chip .l{ font-size:11px; color:var(--muted); margin-top:6px; letter-spacing:.04em; }
@media (max-width:560px){ .hero__chips{ display:none; } }

/* ---- 9 · GLASS PILLAR / INSIGHT polish ---- */
.pillar{ border-radius:var(--r-md); }
.pillar .pmedia img{ filter:saturate(1.08) brightness(0.96) !important; }
.pillar::after{ background:linear-gradient(180deg, rgba(16,15,11,0.05) 0%, rgba(16,15,11,0.42) 48%, rgba(16,15,11,0.94) 100%) !important; }
.pillar:hover .pmedia img{ filter:saturate(1.12) brightness(1.06) !important; }
.pillar__body{ -webkit-backdrop-filter:blur(2px); }
.art__media{ border-radius:var(--r-md); }
.art__media img{ filter:saturate(1.06) brightness(1.0); }

/* ---- 10 · SECTION HEAD label + scrub glass ---- */
.scrub__phase h3{ background:linear-gradient(180deg,#fff,#efe6d6); -webkit-background-clip:text; background-clip:text; }
.scrub__phase{ padding-left:var(--gutter); padding-right:var(--gutter); }
.scrub__panel{ max-width:760px; padding:clamp(28px,3vw,44px); border-radius:var(--r-lg);
  background:linear-gradient(150deg, rgba(20,18,13,0.4), rgba(16,15,11,0.2));
  -webkit-backdrop-filter:blur(16px); backdrop-filter:blur(16px); border:1px solid var(--glass-bord); }
.scrub__sticky video, .scrub__sticky img.scrub-poster{ filter:saturate(1.06) brightness(0.78) contrast(1.03) !important; }

/* ---- 11 · REVEAL refinements ---- */
.reveal{ transform:translateY(34px); }
.reveal.anim{ transition:opacity 1s var(--ease), transform 1s var(--ease); }
.fadein{ opacity:0; transition:opacity 1.1s var(--ease); }
.fadein.in{ opacity:1; }
.scaleup{ opacity:0; transform:scale(.965) translateY(24px); }
.scaleup.anim{ transition:opacity 1s var(--ease), transform 1.1s var(--ease); }
.scaleup.in{ opacity:1; transform:none; }

/* eyebrow chip variant */
.eyebrow.pill{ background:rgba(192,148,74,0.10); border:1px solid var(--line); padding:8px 16px 8px 14px; border-radius:999px; }
.eyebrow.pill::before{ width:18px; }

/* divider flourish */
.divider{ display:flex; align-items:center; justify-content:center; gap:16px; color:var(--gold-deep); }
.divider::before, .divider::after{ content:""; height:1px; width:min(120px,18vw); background:linear-gradient(90deg,transparent,var(--line),transparent); }

/* section spacing on big editorial blocks */
.section.tight{ padding-top:clamp(70px,9vh,120px); padding-bottom:clamp(70px,9vh,120px); }

/* nav warm glass */
.nav.scrolled{ background:rgba(18,16,11,0.72) !important; }

/* footer warm */
.footer{ position:relative; overflow:hidden; }
.footer .blobs .blob{ opacity:.28; }

/* nav collapse earlier (avoid brand/links overlap on mid widths) */
@media (max-width:1080px){
  .nav__links{ display:none; }
  .nav__cta .btn-ghost{ display:none; }
  .nav__burger{ display:flex; }
  .nav.open .nav__links{
    display:flex; flex-direction:column; gap:4px; align-items:flex-start;
    position:fixed; inset:64px 0 auto 0; background:rgba(16,15,11,0.97);
    -webkit-backdrop-filter:blur(18px); backdrop-filter:blur(18px);
    padding:20px var(--gutter) 30px; border-bottom:1px solid var(--line); z-index:99; max-height:calc(100vh - 64px); overflow:auto;
  }
  .nav.open .nav__links > a{ font-size:18px; padding:12px 0; width:100%; }
  .nav.open .nav__item{ flex-direction:column; align-items:flex-start; width:100%; }
  .nav.open .nav__item > a{ font-size:18px; padding:12px 0; width:100%; }
  .nav.open .nav__item > a .caret{ display:none; }
  .nav.open .nav__sub{ position:static; transform:none; opacity:1; visibility:visible; background:none; border:none; box-shadow:none; padding:2px 0 10px 18px; min-width:0; }
  .nav.open .nav__sub::before{ display:none; }
  .nav.open .nav__sub a{ font-size:15px; color:var(--dim); padding:9px 0; }
}

/* ============================================================
   v7 · SUB-PAGE UPLIFT (applies to every interior page)
   ============================================================ */
/* keep section content above injected liquid blobs */
.section > .wrap, .subhero > .wrap, .final > .wrap, .photoband > .wrap,
.signup > .wrap, .quoteband > .wrap, .cross > .wrap, .manifesto > .wrap,
.steps > .wrap, .membership > .wrap, .why > .wrap, .estate > .wrap, .news > .wrap, .testi > .wrap{
  position:relative; z-index:1;
}

/* brighter sub-hero imagery */
.subhero .media-bg img, .subhero .media-bg video{ filter:saturate(1.1) contrast(1.04) brightness(1.12) !important; }
.subhero .scrim{ background:linear-gradient(180deg, rgba(16,15,11,.16) 0%, rgba(16,15,11,.02) 44%, rgba(16,15,11,.5) 100%) !important; }
.subhero .vignette{ box-shadow:inset 0 0 140px 22px rgba(0,0,0,.26) !important; background:radial-gradient(120% 85% at 50% 40%, transparent 62%, rgba(8,8,10,.28) 100%) !important; }

/* sub-hero content → frosted glass panel (all interior pages) */
.subhero{ align-items:flex-end; }
.subhero__inner{
  position:relative; z-index:2; width:auto; max-width:840px;
  margin-bottom:clamp(38px,7vh,88px);
  padding:clamp(30px,3.4vw,50px) clamp(28px,3.2vw,48px);
  background:linear-gradient(150deg, rgba(30,26,18,0.34), rgba(18,16,11,0.16));
  -webkit-backdrop-filter:blur(26px) saturate(1.4); backdrop-filter:blur(26px) saturate(1.4);
  border:1px solid var(--glass-bord); border-radius:var(--r-lg);
  box-shadow:var(--glass-shadow), inset 0 1px 0 rgba(246,241,232,0.14);
}
.subhero__inner::before{ content:""; position:absolute; top:0; left:26px; right:26px; height:1px;
  background:linear-gradient(90deg,transparent,rgba(240,226,166,0.6),transparent); }
.subhero__inner .display{ margin-top:14px; }
.subhero__lead{ color:var(--cream); }
@media (max-width:560px){ .subhero__inner{ padding:26px 22px; } }

/* liquid-rounded media + standalone cards (consistent with homepage) */
.frow__media, .gcard, .prop, .testi__media, .news-feat__media, .news-card__media,
.advisor, .cross-card, .tier, .alloc__bar, .art__media{ border-radius:var(--r-md); }
.frow__media img{ filter:saturate(1.07) contrast(1.02) brightness(0.96) !important; }
.gcard .gm img{ filter:saturate(1.08) brightness(0.98) grayscale(0) !important; }
.gcard:hover .gm img{ filter:saturate(1.12) brightness(1.08) grayscale(0) !important; }
.prop .pm img, .news-card__media img, .news-feat__media img{ filter:saturate(1.06) brightness(1.0) !important; }
.testi__media img{ filter:saturate(1.05) brightness(0.98) grayscale(0) !important; }
.advisor .am img{ filter:saturate(1.04) brightness(0.96) grayscale(0.15) !important; }

/* tier / cross cards → soft glass */
.tier{ background:linear-gradient(155deg, rgba(34,29,20,0.6), rgba(22,19,13,0.42)); -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px); border-color:var(--glass-bord); }
.cross-card{ -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); }

/* quote / manifesto warm glow already present; lift type a touch */
.quoteband__q em, .manifesto__q em{ color:var(--gold); }

/* ============================================================
   v8 · LIVELIER LIQUID BG · NAV CTA HIGHLIGHT · RICHER FOOTER
   ============================================================ */

/* stronger, more colourful blobs (visible through the glass) */
.blob.a{ background:radial-gradient(circle at 35% 35%, rgba(244,228,168,0.6), rgba(192,148,74,0.26) 54%, transparent 72%); }
.blob.b{ background:radial-gradient(circle at 60% 40%, rgba(222,188,112,0.5), rgba(155,114,51,0.2) 56%, transparent 74%); }
.blob.c{ background:radial-gradient(circle at 50% 50%, rgba(201,158,82,0.46), rgba(192,148,74,0.14) 60%, transparent 72%); }

/* ---- NAV CTA — highlighted gold pill ---- */
.nav__cta .btn-ghost{
  background:linear-gradient(120deg, var(--gold-bright), var(--gold)) !important;
  color:#16110A !important; border:1px solid rgba(240,226,166,0.6) !important;
  -webkit-backdrop-filter:none; backdrop-filter:none;
  box-shadow:0 8px 26px -10px var(--gold-glow);
  animation:ctaGlow 3.4s var(--ease) infinite;
}
.nav__cta .btn-ghost:hover{ color:#16110A !important; border-color:#fff !important; transform:translateY(-2px); box-shadow:0 16px 42px -12px rgba(192,148,74,0.7); }
.nav__cta .btn-ghost .arw{ color:#16110A; }
@keyframes ctaGlow{
  0%,100%{ box-shadow:0 8px 24px -12px rgba(192,148,74,0.5); }
  50%{ box-shadow:0 10px 30px -8px rgba(240,226,166,0.7); }
}
@media (prefers-reduced-motion: reduce){ .nav__cta .btn-ghost{ animation:none; } }

/* ---- RICHER FOOTER ---- */
.footer{ background:linear-gradient(180deg, #100F0B 0%, #14120C 60%, #16140D 100%); padding-top:0; }
.footer::before{ content:""; position:absolute; top:0; left:0; right:0; height:2px; background:var(--foil); opacity:.85; z-index:3; }
.footer__inner-glow{ }
.footer::after{
  content:"ICANFIELD"; position:absolute; left:50%; bottom:-0.14em; transform:translateX(-50%);
  font-family:var(--display); font-weight:700; font-size:clamp(70px,17vw,260px); letter-spacing:-0.03em;
  line-height:.8; color:transparent; -webkit-text-stroke:1px rgba(192,148,74,0.12);
  pointer-events:none; z-index:0; white-space:nowrap;
}
.footer > .wrap{ padding-top:84px; }
.footer .footer__top{ position:relative; z-index:1; }
.footer__brand img{ height:74px; filter:drop-shadow(0 8px 26px rgba(192,148,74,0.28)); }
.footer__brand p{ color:var(--muted); }
.footer__col h5{ display:flex; align-items:center; gap:9px; }
.footer__col h5::before{ content:""; width:14px; height:1px; background:var(--gold); display:inline-block; }
.footer__col a{ position:relative; width:max-content; transition:color .3s var(--ease), transform .3s var(--ease); }
.footer__col a:hover{ color:var(--gold); transform:translateX(5px); }
.footer__bottom{ position:relative; z-index:1; border-top:1px solid var(--line); }
.footer__bottom .lk a{ position:relative; padding-bottom:2px; }
.footer__bottom .lk a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold); transition:width .4s var(--ease); }
.footer__bottom .lk a:hover{ color:var(--gold); }
.footer__bottom .lk a:hover::after{ width:100%; }
.footer .blob{ opacity:.4 !important; }
@media (max-width:560px){ .footer::after{ font-size:clamp(54px,22vw,120px); } }

/* ============================================================
   v9 · BUGFIXES — heroes on background · grid counts · form
   ============================================================ */

/* (#3,#4) HERO content sits directly on the background — no glass box */
.hero__panel{
  background:none !important; -webkit-backdrop-filter:none !important; backdrop-filter:none !important;
  border:none !important; box-shadow:none !important; padding:0 !important; max-width:680px;
}
.hero__panel::before{ display:none !important; }
.hero .media-bg::after{ background:linear-gradient(95deg, rgba(12,11,8,0.84) 0%, rgba(12,11,8,0.5) 40%, rgba(12,11,8,0.12) 74%) !important; }
.hero .scrim{ background:linear-gradient(180deg, rgba(12,11,8,0.30) 0%, transparent 40%, rgba(12,11,8,0.42) 100%) !important; }
.hero__title, .hero .eyebrow, .hero__sub{ text-shadow:0 2px 32px rgba(0,0,0,0.55); }
.hero__chip{ background:rgba(20,17,11,0.40); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); }

/* (#3,#4,#1) SUB-HERO content directly on background — no glass box */
.subhero{ min-height:88vh; padding-top:108px; align-items:flex-end; }
.subhero__inner{
  background:none !important; -webkit-backdrop-filter:none !important; backdrop-filter:none !important;
  border:none !important; box-shadow:none !important;
  max-width:860px; padding:0 !important; margin-bottom:clamp(46px,8vh,98px);
}
.subhero__inner::before{ display:none !important; }
.subhero .scrim{ background:linear-gradient(180deg, rgba(12,11,8,0.34) 0%, rgba(12,11,8,0.06) 36%, rgba(12,11,8,0.74) 100%) !important; }
.subhero__inner .display{ font-size:clamp(38px,5.4vw,76px); }
.subhero__inner .display, .subhero__inner .flourish, .subhero__lead, .subhero .breadcrumb{ text-shadow:0 2px 28px rgba(0,0,0,0.58); }
.subhero__lead{ max-width:640px; }

/* (#1) eyebrow pill — multiline safe tag */
.eyebrow.pill{ flex-wrap:wrap; border-radius:16px; }

/* (#2) approach CTA band reads as its own section */
.approach-cta{ background:var(--char); text-align:center; }
.approach-cta .approach-link{ display:flex; flex-direction:column; align-items:center; }

/* (#5) GRID quantity-aware — never leave an orphan row (desktop only; tablet/mobile keep responsive cols) */
@media (min-width:1081px){
  .cardgrid:has(> :nth-child(4)):not(:has(> :nth-child(5))){ grid-template-columns:repeat(2,1fr); }
  .cardgrid:has(> :nth-child(2)):not(:has(> :nth-child(3))){ grid-template-columns:repeat(2,1fr); }
  .cardgrid:has(> :only-child){ grid-template-columns:1fr; max-width:560px; margin-left:auto; margin-right:auto; }
  .pillar-grid:has(> :nth-child(3)):not(:has(> :nth-child(4))){ grid-template-columns:repeat(3,1fr); }
}

/* (#6) FORM validation states */
.field.invalid input, .field.invalid select, .field.invalid textarea{ border-color:#C9533A !important; background:rgba(201,83,58,0.07) !important; }
.field .err{ display:none; color:#E59177; font-size:12px; letter-spacing:.01em; margin-top:1px; }
.field.invalid .err{ display:block; }

/* ============================================================
   v11 · NAV MATCHES SITEMAP — single "Giải pháp" mega-menu
   ============================================================ */
.nav__mega{
  left:50%; transform:translateX(-50%) translateY(10px);
  display:grid; grid-template-columns:repeat(4, minmax(168px,1fr)); gap:6px 18px;
  min-width:min(840px, calc(100vw - 36px)); padding:18px;
}
.nav__item:hover > .nav__mega{ transform:translateX(-50%) translateY(2px); }
.nav__megacol{ display:flex; flex-direction:column; gap:1px; }
.nav__sub a.nav__megahead{
  color:var(--gold) !important; font-weight:600; font-size:11.5px !important; letter-spacing:.1em;
  text-transform:uppercase; padding:9px 14px !important; margin-bottom:4px;
  border-bottom:1px solid var(--line-soft); border-radius:8px 8px 0 0;
}
.nav__sub a.nav__megahead:hover{ background:rgba(192,148,74,.16); color:var(--gold) !important; }
@media (max-width:1080px){
  .nav.open .nav__mega{ grid-template-columns:1fr; min-width:0; padding:2px 0 8px 18px; gap:0; }
  .nav.open .nav__megacol{ margin-bottom:8px; }
  .nav.open .nav__sub a.nav__megahead{ border:none; color:var(--gold) !important; font-size:13px !important; padding:10px 0 4px !important; margin-bottom:0; }
}

/* ============================================================
   v12 · SOLUTIONS — link premise → four pillars (one flow)
   ============================================================ */
.intro-split.flow-intro{ padding-bottom:clamp(36px,5vh,60px); }
.flow-link{ grid-column:1 / -1; display:flex; flex-direction:column; align-items:center; gap:14px; margin-top:clamp(40px,6vh,76px); }
.flow-link__cap{ font-size:11px; letter-spacing:.28em; text-transform:uppercase; color:var(--gold); }
.flow-link__line{ width:1px; height:54px; background:linear-gradient(180deg, transparent, var(--gold)); }
.flow-link__chev{ color:var(--gold); font-size:18px; line-height:1; animation:flowbob 2.2s var(--ease) infinite; }
@keyframes flowbob{ 0%,100%{ transform:translateY(0); opacity:.55; } 50%{ transform:translateY(6px); opacity:1; } }
.flow-pillars{ background:var(--char) !important; padding-top:clamp(28px,4vh,52px) !important; }
@media (prefers-reduced-motion: reduce){ .flow-link__chev{ animation:none; } }

/* ============================================================
   v13 · COMPARISON TABLE (product comparison)
   ============================================================ */
.cmp{ margin-top:56px; border:1px solid var(--line-soft); border-radius:var(--r-md); overflow:hidden; background:linear-gradient(155deg, rgba(34,29,20,0.4), rgba(20,18,13,0.28)); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px); }
.cmp table{ width:100%; border-collapse:collapse; }
.cmp th, .cmp td{ text-align:left; padding:18px 22px; border-bottom:1px solid var(--line-soft); font-size:14.5px; vertical-align:top; }
.cmp thead th{ background:rgba(192,148,74,0.12); color:var(--gold); font-family:var(--display); font-weight:700; font-size:12.5px; letter-spacing:.05em; text-transform:uppercase; }
.cmp tbody tr{ transition:background .4s var(--ease); }
.cmp tbody tr:hover{ background:rgba(192,148,74,0.07); }
.cmp tbody td{ color:var(--muted); line-height:1.5; }
.cmp tbody td:first-child{ font-family:var(--display); font-weight:700; color:var(--cream); }
.cmp tbody tr:last-child td{ border-bottom:none; }
@media (max-width:760px){ .cmp{ overflow-x:auto; } .cmp table{ min-width:640px; } }

/* ============================================================
   v14 · METHOD --linked (Phương pháp page) — tighter linkage
   ============================================================ */
.method--linked .method-steps::before{
  height:3px; opacity:.65; background-size:220% 100%;
  background:linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold-bright) 50%, var(--gold) 88%, transparent);
  animation:flowline 4.5s linear infinite;
}
@keyframes flowline{ 0%{ background-position:220% 0; } 100%{ background-position:-220% 0; } }
.method--linked .mstep__node{ width:74px; height:74px; font-size:25px; }
.method--linked .method-steps::before{ top:37px; }
@media (prefers-reduced-motion: reduce){ .method--linked .method-steps::before{ animation:none; } }

/* ============================================================
   v15 · sub-hero small-text legibility · 5/6-step in one row
   ============================================================ */
/* (#1) darken lower band + strong shadow so breadcrumb/flourish read on bright photos */
.subhero .scrim{ background:linear-gradient(180deg, rgba(12,11,8,0.46) 0%, rgba(12,11,8,0.12) 28%, rgba(12,11,8,0.52) 60%, rgba(12,11,8,0.9) 100%) !important; }
.subhero__inner .breadcrumb{ color:var(--cream); }
.subhero__inner .breadcrumb, .subhero__inner .flourish, .subhero__lead{ text-shadow:0 2px 18px rgba(0,0,0,0.92), 0 1px 4px rgba(0,0,0,0.7) !important; }
.subhero__inner .display{ text-shadow:0 3px 30px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.5) !important; }

/* (#2) process grids: 5 steps → one row of 5; 6 steps → 3×2 (no orphan/empty) */
@media (min-width:1081px){
  .steps__grid:has(> :nth-child(5)):not(:has(> :nth-child(6))){ grid-template-columns:repeat(5,1fr); }
  .steps__grid:has(> :nth-child(6)):not(:has(> :nth-child(7))){ grid-template-columns:repeat(3,1fr); }
}
.steps__grid:has(> :nth-child(5)) .step-cell{ padding:34px 22px 38px; }
.steps__grid .step-cell .st{ font-size:19px; }

/* ============================================================
   v16 · GALLERY (project images) — mosaic, no empty space
   ============================================================ */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:clamp(150px,19vw,212px); gap:16px; margin-top:44px; }
.gimg{ position:relative; overflow:hidden; border-radius:var(--r-md); border:1px solid var(--line-soft); }
.gimg img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform 1.3s var(--ease); filter:saturate(1.05) brightness(1.0); }
.gimg:hover img{ transform:scale(1.06); }
.gimg::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 62%, rgba(10,10,12,0.35)); opacity:0; transition:opacity .45s var(--ease); pointer-events:none; }
.gimg:hover::after{ opacity:1; }
.gimg.g-lg{ grid-column:span 2; grid-row:span 2; }
@media (max-width:640px){ .gallery{ grid-template-columns:repeat(2,1fr); grid-auto-rows:130px; } .gimg.g-lg{ grid-column:span 2; grid-row:span 2; } }

/* ============================================================
   v17 · MOBILE HARDENING
   ============================================================ */
@media (max-width:640px){
  /* heroes: comfortable height, clear of nav */
  .subhero{ min-height:74vh; padding-top:84px; }
  .hero{ min-height:90vh; }
  .hero__inner{ padding-top:92px; padding-bottom:80px; }
  .subhero__inner .display{ font-size:clamp(32px,8.5vw,46px); }
  /* tighter vertical rhythm */
  .section{ padding-top:clamp(54px,10vh,76px); padding-bottom:clamp(54px,10vh,76px); }
  .section.tight{ padding-top:48px; padding-bottom:48px; }
  .sec-head{ gap:16px; margin-bottom:32px; }
  /* method steps stack cleanly */
  .method-steps{ gap:16px; margin-top:40px; }
  .mstep__card{ min-height:0; }
  .method--linked .mstep__node, .mstep__node{ width:58px; height:58px; font-size:21px; }
  /* homepage "what we do" focus bullets → single column */
  .wd-focus{ grid-template-columns:1fr !important; gap:12px !important; }
  /* comparison table: easy horizontal scroll + cue */
  .cmp{ font-size:13px; }
  .cmp th, .cmp td{ padding:14px 16px; }
  /* photoband / final not overly tall */
  .photoband{ min-height:60vh; }
  .final{ min-height:78vh; }
  /* gallery rows shorter */
  .gallery{ grid-auto-rows:120px; gap:10px; }
  /* buttons: full width, stacked, easy tap targets */
  .hero__cta, .final__cta{ width:100%; }
  .hero__cta .btn, .final__cta .btn{ width:100%; justify-content:center; }
  .btn{ --pad:16px 26px; }
  /* eyebrow: avoid over-wide letter-spacing wrap */
  .eyebrow{ letter-spacing:0.28em; }
}

/* ============================================================
   v18 · FIX: submenu jump · sub-hero edge padding · 2-up cards
   ============================================================ */

/* (#1) mega-menu opens with NO positional shift (was jumping on hover) — desktop only */
@media (min-width:1081px){
  .nav__mega{ transform:translateX(-50%) translateY(6px) !important; }
  .nav__item:hover > .nav__mega{ transform:translateX(-50%) translateY(6px) !important; }
}
/* mobile drawer: solid backdrop so the hero doesn't bleed through */
@media (max-width:1080px){
  .nav.open .nav__links{ background:rgba(13,11,7,0.99) !important; }
  /* force the mega submenu flush in the drawer (no centering transform/offset) */
  .nav.open .nav__mega{
    position:static !important; left:auto !important; right:auto !important;
    transform:none !important; min-width:0 !important; width:100% !important;
    grid-template-columns:1fr !important; gap:0 !important; padding:2px 0 10px 18px !important;
    box-shadow:none !important; border:none !important; background:none !important;
  }
  .nav.open .nav__mega::before{ display:none !important; }
}

/* (#2) sub-hero content keeps side gutter (was touching screen edge on mobile),
        and aligns with the rest of the page content */
.subhero__inner{
  max-width:var(--maxw) !important;
  padding-left:var(--gutter) !important;
  padding-right:var(--gutter) !important;
  margin-left:auto; margin-right:auto;
}
.subhero__lead{ max-width:640px; }

/* (#3) mobile: cards 2 per row for an at-a-glance overview (not 1-by-1) */
@media (max-width:600px){
  .cardgrid, .pillar-grid, .insight-grid, .news-grid, .steps__grid, .method-steps{
    grid-template-columns:1fr 1fr !important; gap:12px !important;
  }
  .gcard__body{ padding:18px 15px !important; }
  .gcard__t{ font-size:16.5px; }
  .gcard__d{ font-size:12.5px; line-height:1.5; }
  .gcard__k{ font-size:10px; letter-spacing:0.18em; }
  .gcard .gm{ }
  .pillar{ min-height:280px; }
  .pillar__t{ font-size:17px; }
  .pillar__d{ font-size:12.5px; }
  .pillar__body{ padding:20px 16px 22px; }
  .art__t{ font-size:15.5px; }
  .art__cat{ margin-top:14px; }
  .step-cell{ padding:24px 16px 26px; }
  .step-cell .st{ font-size:16px; }
  .step-cell .sd{ font-size:12.5px; }
  .method-steps{ margin-top:34px; }
  .mstep__node, .method--linked .mstep__node{ width:48px; height:48px; font-size:17px; }
  .mstep__card{ padding:18px 14px; }
  .mstep__t{ font-size:16px; }
  .mstep__d{ font-size:12.5px; line-height:1.5; }
  .mstep__k{ font-size:10px; }
  .sec-head h2{ font-size:clamp(26px,7.6vw,36px); }
}

/* ============================================================
   v10 · nav legibility · line-break balance · METHOD (1-view)
   ============================================================ */

/* (#1) dark layer beneath nav over the hero (initial state, fades on scroll) */
.nav::before{
  content:""; position:absolute; inset:0 0 auto 0; height:160px; pointer-events:none; z-index:-1;
  background:linear-gradient(180deg, rgba(8,7,5,0.66) 0%, rgba(8,7,5,0.30) 48%, transparent 100%);
  opacity:1; transition:opacity .5s var(--ease);
}
.nav.scrolled::before{ opacity:0; }

/* (#4) balanced line wrapping for headings (no ragged orphan lines) */
h1, h2, h3, .display, .h2, .hero__title, .final h2, .subhero__inner .display,
.gcard__t, .pillar__t, .frow h3, .cross-card .ct, .art__t{ text-wrap:balance; }
.lead, p, .subhero__lead, .gcard__d, .frow p{ text-wrap:pretty; }

/* (#3) METHOD — all 4 steps in one view, visually elevated */
.method{ position:relative; overflow:hidden;
  background:radial-gradient(80% 70% at 50% -10%, rgba(192,148,74,0.12), transparent 60%), linear-gradient(180deg,#100F0B 0%, #14120C 100%); }
.method::before{ content:""; position:absolute; top:0; left:0; right:0; height:2px; background:var(--foil); opacity:.85; }
.method__inner{ position:relative; z-index:2; }
.method-steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:64px; position:relative; }
.method-steps::before{ content:""; position:absolute; top:34px; left:9%; right:9%; height:2px;
  background:linear-gradient(90deg, transparent, var(--gold) 14%, var(--gold) 86%, transparent); opacity:.45; }
.mstep{ position:relative; }
.mstep__node{ width:68px; height:68px; border-radius:50%; display:grid; place-items:center;
  font-family:var(--display); font-weight:700; font-size:23px; color:#16110A;
  background:linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow:0 14px 36px -10px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.4); position:relative; z-index:2; }
.mstep__card{ margin-top:26px; padding:28px 24px 30px; border-radius:var(--r-md); min-height:208px;
  background:linear-gradient(155deg, rgba(40,34,23,0.56), rgba(20,18,13,0.36));
  -webkit-backdrop-filter:blur(16px) saturate(1.3); backdrop-filter:blur(16px) saturate(1.3);
  border:1px solid var(--glass-bord); box-shadow:0 24px 60px -36px rgba(0,0,0,.7), inset 0 1px 0 rgba(246,241,232,.08);
  transition:transform .6s var(--ease), border-color .6s var(--ease); }
.mstep:hover .mstep__card{ transform:translateY(-6px); border-color:rgba(192,148,74,.5); }
.mstep__k{ font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); }
.mstep__t{ font-family:var(--display); font-weight:700; font-size:21px; margin:10px 0 0; line-height:1.18; }
.mstep__d{ color:var(--muted); font-size:14px; margin:13px 0 0; line-height:1.6; }
@media (max-width:980px){ .method-steps{ grid-template-columns:repeat(2,1fr); } .method-steps::before{ display:none; } }
@media (max-width:560px){ .method-steps{ grid-template-columns:1fr; } }

