:root {
  --navy: #0a1428;
  --navy-2: #101f3d;
  --navy-3: #16294d;
  --gold: #c9a24b;
  --gold-2: #e6c878;
  --gold-soft: rgba(201, 162, 75, 0.12);
  --cream: #f6f3ec;
  --paper: #fbfaf6;
  --ink: #161c28;
  --muted: #6c7689;
  --line: rgba(16, 31, 61, 0.08);
  --shadow: 0 24px 60px -18px rgba(10, 20, 40, 0.45);
  --shadow-sm: 0 12px 30px -12px rgba(10, 20, 40, 0.25);
  --radius: 20px;
  --radius-lg: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand-text strong { font-family: 'Cormorant Garamond', serif; letter-spacing: .2px; font-weight: 600; }
.container { width: min(1200px, 92%); margin: 0 auto; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: #1a1407; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: .92rem; letter-spacing: .2px;
  cursor: pointer; border: 1.5px solid transparent; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s, color .35s;
  position: relative; overflow: hidden; font-family: inherit;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1407; box-shadow: 0 14px 30px -10px rgba(201,162,75,.6); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(201,162,75,.7); }
.btn-outline { border-color: rgba(255,255,255,.45); color: #fff; backdrop-filter: blur(4px); }
.btn-outline:hover { background: #fff; color: var(--navy); transform: translateY(-3px); border-color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { background: #f1ede3; }
.btn-block { width: 100%; margin-top: 1.1rem; }

/* ---------- Disclaimer ---------- */
.disclaimer-overlay {
  position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center;
  background: rgba(6, 12, 24, .9); backdrop-filter: blur(10px); padding: 1.2rem; animation: fade .4s ease;
}
.disclaimer-overlay[hidden] { display: none; }
.disclaimer-box {
  background: linear-gradient(180deg, #fff, #faf7f0); max-width: 720px; width: 100%;
  border-radius: var(--radius-lg); padding: 2.6rem 2.4rem; box-shadow: var(--shadow);
  border-top: 5px solid var(--gold); max-height: 88vh; overflow-y: auto;
  animation: pop .55s cubic-bezier(.18,.89,.32,1.28); position: relative;
}
.disclaimer-box::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px; background: linear-gradient(180deg, rgba(201,162,75,.5), transparent); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.disclaimer-emblem { font-size: 2.8rem; text-align: center; filter: drop-shadow(0 4px 8px rgba(201,162,75,.4)); }
.disclaimer-box h2 { text-align: center; color: var(--navy); font-size: 2.1rem; margin: .3rem 0 1rem; }
.disclaimer-text { color: #404a5c; font-size: .94rem; line-height: 1.75; white-space: pre-line; max-height: 42vh; overflow-y: auto; padding-right: .6rem; }
.disclaimer-text::-webkit-scrollbar { width: 6px; }
.disclaimer-text::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }
.disclaimer-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.7rem; flex-wrap: wrap; }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: .4s cubic-bezier(.2,.8,.2,1); background: transparent; padding: 1.3rem 0; }
.nav.scrolled { background: rgba(10,20,40,.78); box-shadow: 0 10px 40px -12px rgba(0,0,0,.5); padding: .75rem 0; backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid rgba(201,162,75,.18); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .75rem; color: #fff; }
.brand-logo { font-size: 2rem; line-height: 1; filter: drop-shadow(0 2px 6px rgba(201,162,75,.5)); }
.brand-logo img { height: 46px; width: auto; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-size: 1.5rem; color: #fff; line-height: 1.05; font-weight: 700; }
.brand-text small { color: var(--gold-2); font-size: .64rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: #eef0f5; font-weight: 500; font-size: .92rem; position: relative; opacity: .9; transition: .3s; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transition: .35s; border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; z-index: 1100; }
.hamburger span { width: 26px; height: 2.5px; background: #fff; transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.slider { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.14); transition: opacity 1.6s ease, transform 8s ease; }
.slide.active { opacity: 1; transform: scale(1); }
.slider-overlay { position: absolute; inset: 0; background:
  radial-gradient(1200px 700px at 78% 18%, rgba(201,162,75,.18), transparent 60%),
  linear-gradient(105deg, rgba(7,14,28,.95) 0%, rgba(7,14,28,.78) 45%, rgba(7,14,28,.45) 100%); }
.hero-content { position: relative; z-index: 3; padding-top: 90px; max-width: 780px; }
.hero-kicker { display: inline-flex; align-items: center; gap: .7rem; color: var(--gold-2); letter-spacing: 4px; text-transform: uppercase; font-size: .76rem; font-weight: 700; }
.hero-kicker::before { content: ''; width: 38px; height: 1.5px; background: var(--gold); display: inline-block; }
.hero h1 { font-size: clamp(2.8rem, 6.2vw, 5rem); line-height: 1.02; margin: .8rem 0 1.1rem; font-weight: 700; }
.hero h1 .accent { background: linear-gradient(120deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.14rem; max-width: 580px; color: #d9dde6; margin-bottom: 2.2rem; line-height: 1.8; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-2); line-height: 1; }
.hero-trust span { font-size: .76rem; letter-spacing: 1px; text-transform: uppercase; color: #aeb6c4; margin-top: .3rem; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: .6rem; z-index: 4; }
.slider-dots button { width: 11px; height: 11px; border-radius: 50%; border: 2px solid rgba(255,255,255,.7); background: transparent; cursor: pointer; transition: .35s; padding: 0; }
.slider-dots button.active { background: var(--gold); border-color: var(--gold); width: 32px; border-radius: 8px; }
.scroll-cue { position: absolute; bottom: 26px; right: 40px; z-index: 4; color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: 2px; writing-mode: vertical-rl; text-transform: uppercase; display: flex; align-items: center; gap: .6rem; }
.scroll-cue::after { content: ''; width: 1.5px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: cue 1.8s ease-in-out infinite; }

/* ---------- Layout / sidebar ---------- */
.layout { display: grid; grid-template-columns: 1fr 340px; gap: 3.4rem; padding: 5.5rem 0 2rem; align-items: start; }
.section { padding: 3.6rem 0; }
.section-head { margin-bottom: 2.4rem; }
.section-head.center { text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: var(--gold); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; font-size: .74rem; }
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--gold); }
.section-head.center .eyebrow::after { content: ''; width: 26px; height: 1.5px; background: var(--gold); }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); color: var(--navy); margin-top: .5rem; line-height: 1.1; }
.lead { font-size: 1.1rem; color: #4a5566; max-width: 740px; }

.stats { display: flex; gap: 3rem; margin-top: 2.8rem; flex-wrap: wrap; padding: 1.8rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat strong { display: block; font-size: 3rem; color: var(--navy); font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1; }
.stat span { color: var(--muted); font-size: .85rem; letter-spacing: .5px; }

/* Services cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.6rem;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s; position: relative; overflow: hidden;
}
.card::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius); background: radial-gradient(400px 200px at 50% -40%, var(--gold-soft), transparent); opacity: 0; transition: .4s; }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: rgba(201,162,75,.4); }
.card:hover::after { opacity: 1; }
.card .ico { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: var(--gold-2); margin-bottom: 1.1rem; box-shadow: 0 10px 22px -10px rgba(10,20,40,.6); }
.card h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.6rem; }
.member { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s; border: 1px solid var(--line); }
.member:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.member-photo { aspect-ratio: 3/3.5; background: linear-gradient(160deg, var(--navy-2), var(--navy)); background-size: cover; background-position: center; position: relative; }
.member-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(10,20,40,.65)); }
.member-photo .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.2rem; color: var(--gold-2); position: relative; z-index: 1; }
.member-info { padding: 1.2rem 1.3rem 1.5rem; }
.member-info h3 { color: var(--navy); font-size: 1.55rem; }
.member-info .role { color: var(--gold); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; }
.member-info p { color: var(--muted); font-size: .9rem; margin-top: .55rem; line-height: 1.6; }

/* Sidebar */
.sidebar-sticky { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.5rem; }
.side-card { background: linear-gradient(160deg, var(--navy-2), var(--navy)); color: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.side-card::before { content: '⚖'; position: absolute; right: -10px; top: -20px; font-size: 7rem; color: rgba(201,162,75,.08); }
.side-card h3 { color: var(--gold-2); font-size: 1.6rem; margin-bottom: 1.1rem; }
.side-contact { list-style: none; display: flex; flex-direction: column; gap: .95rem; }
.side-contact li { display: flex; gap: .8rem; font-size: .9rem; color: #cfd6e3; align-items: flex-start; }
.side-contact li span:first-child { color: var(--gold); flex-shrink: 0; }
.side-gallery { display: flex; flex-direction: column; gap: 1.1rem; }
.side-gallery figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.side-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.side-gallery figure:hover img { transform: scale(1.09); }
.side-gallery figcaption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(10,20,40,.9)); color: #fff; padding: 1.4rem .95rem .8rem; font-size: .85rem; font-weight: 500; }

/* Contact */
.contact-section { background: linear-gradient(180deg, var(--paper), #efe9dd); position: relative; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; margin-top: 1rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 1.8rem; }
.contact-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-list .ico { width: 46px; height: 46px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-list strong { display: block; color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem; }
.contact-list span.val { color: var(--muted); font-size: .92rem; }
.social-row { display: flex; gap: .8rem; flex-wrap: wrap; }
.social-row a { width: 48px; height: 48px; border-radius: 14px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; transition: .35s; }
.social-row a:hover { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1407; transform: translateY(-5px); box-shadow: 0 14px 26px -10px rgba(201,162,75,.7); }
.contact-map { border-radius: var(--radius); overflow: hidden; min-height: 340px; box-shadow: var(--shadow); background: #dde3ec; }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.contact-map .map-ph { display: flex; align-items: center; justify-content: center; height: 100%; min-height: 340px; color: var(--muted); text-align: center; padding: 2rem; }

/* Footer */
.footer { background: var(--navy); color: #c2cad8; padding: 3rem 0 2.2rem; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
.footer-disc { font-size: .8rem; color: #7e8aa0; max-width: 700px; line-height: 1.6; }
.footer-admin { color: #4f5b74; font-size: .74rem; margin-top: .5rem; transition: .3s; }
.footer-admin:hover { color: var(--gold-2); }

/* Floating WhatsApp */
.float-wa { position: fixed; right: 24px; bottom: 24px; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 14px 30px -8px rgba(37,211,102,.7); z-index: 900; animation: pulse 2.4s infinite; transition: transform .3s; }
.float-wa:hover { transform: scale(1.1); }

/* Animations */
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(34px) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Preloader ---------- */
.preloader { position: fixed; inset: 0; z-index: 3000; background: radial-gradient(900px 600px at 50% 30%, var(--navy-3), var(--navy)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; transition: opacity .6s ease, visibility .6s; }
.preloader.done { opacity: 0; visibility: hidden; }
.pre-emblem { position: relative; width: 92px; height: 92px; display: grid; place-items: center; margin-bottom: 1rem; }
.pre-scale { position: absolute; inset: 0; width: 92px; height: 92px; transform: rotate(-90deg); }
.pre-ring { stroke-dasharray: 289; stroke-dashoffset: 289; animation: draw 1.6s ease-in-out infinite; }
.pre-icon { font-size: 2.2rem; color: var(--gold-2); }
.pre-name { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; letter-spacing: 4px; font-weight: 700; }
.pre-tag { color: var(--gold-2); font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; }
@keyframes draw { 0% { stroke-dashoffset: 289; } 50% { stroke-dashoffset: 72; } 100% { stroke-dashoffset: 289; transform: rotate(360deg); transform-origin: center; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transform: scaleX(0); transform-origin: left; z-index: 1500; transition: transform .1s linear; }

/* ---------- Nav active + cta ---------- */
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { width: 100%; }
.nav-cta { padding: .5rem 1.2rem; border: 1.5px solid var(--gold); border-radius: 50px; color: var(--gold-2) !important; transition: .3s; }
.nav-cta:hover { background: var(--gold); color: #1a1407 !important; }
.nav-cta::after { display: none; }

/* ---------- Hero extras ---------- */
.hero-grain { position: absolute; inset: 0; opacity: .5; pointer-events: none; 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='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E"); }
.hero-trust .div { width: 1px; align-self: stretch; background: linear-gradient(transparent, rgba(255,255,255,.25), transparent); }
.btn .arr { transition: transform .3s; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Marquee ---------- */
.marquee { background: var(--navy); border-top: 1px solid rgba(201,162,75,.2); border-bottom: 1px solid rgba(201,162,75,.2); overflow: hidden; padding: .9rem 0; }
.marquee-track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; animation: scroll-x 30s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { color: #cdd5e3; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; letter-spacing: .5px; }
.marquee-track span.dot { color: var(--gold); font-size: .9rem; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; transition: .4s; position: relative; }
.why-item:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.why-ico { display: inline-flex; width: 58px; height: 58px; border-radius: 50%; align-items: center; justify-content: center; font-size: 1.7rem; background: var(--gold-soft); border: 1px solid var(--line); margin-bottom: 1rem; }
.why-item h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: .3rem; }
.why-item p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ---------- Process ---------- */
.process { background: linear-gradient(160deg, var(--navy-2), var(--navy)); color: #fff; padding: 5rem 0; position: relative; overflow: hidden; }
.process::before { content: '⚖'; position: absolute; right: -40px; bottom: -60px; font-size: 18rem; color: rgba(201,162,75,.05); }
.section-head.light h2 { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; margin-top: 1rem; }
.step { background: rgba(255,255,255,.04); border: 1px solid rgba(201,162,75,.2); border-radius: var(--radius); padding: 2rem 1.6rem; transition: .4s; position: relative; }
.step:hover { background: rgba(255,255,255,.07); transform: translateY(-8px); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: .6rem; }
.step h3 { color: #fff; font-size: 1.45rem; margin-bottom: .4rem; }
.step p { color: #aeb6c4; font-size: .9rem; line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--paper); padding: 5rem 0; }
.tcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; margin-top: 1rem; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); position: relative; transition: .4s; }
.tcard::before { content: '“'; position: absolute; top: .2rem; right: 1.2rem; font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold-soft); line-height: 1; }
.tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.tstars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; margin-bottom: .9rem; }
.tcard blockquote { color: #3c4456; font-size: 1rem; line-height: 1.7; font-style: italic; }
.tcard figcaption { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.tavatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-3), var(--navy)); color: var(--gold-2); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; flex-shrink: 0; }
.tmeta { display: flex; flex-direction: column; }
.tmeta strong { color: var(--navy); font-family: 'Inter', sans-serif; font-size: .95rem; }
.tmeta small { color: var(--muted); font-size: .8rem; }
.muted-c { text-align: center; color: var(--muted); grid-column: 1/-1; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--navy-3)); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 400px at 85% 50%, rgba(201,162,75,.18), transparent 60%); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3.4rem 0; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-inner p { color: #c2cad8; margin-top: .4rem; max-width: 520px; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }

/* ---------- Footer redesign ---------- */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 2.2rem; }
.footer-brand .footer-logo { font-size: 2rem; display: inline-block; }
.footer-brand .footer-logo img { height: 46px; }
.footer-brand strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: #fff; margin: .3rem 0 .7rem; }
.footer-col h4 { color: var(--gold-2); font-family: 'Inter', sans-serif; font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; color: #b3bccc; font-size: .9rem; margin-bottom: .6rem; transition: .3s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; gap: .6rem; }
.footer-bottom p { font-size: .82rem; color: #8e98ac; }

/* ---------- Back to top ---------- */
.back-top { position: fixed; right: 24px; bottom: 92px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--navy); color: var(--gold-2); font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .35s; z-index: 900; box-shadow: var(--shadow-sm); }
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--gold); color: #1a1407; }

/* Responsive */
@media (max-width: 1000px) {
  .layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .sidebar-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px; background: linear-gradient(160deg, var(--navy-2), var(--navy)); flex-direction: column; padding: 6rem 2rem; gap: 1.6rem; transition: .45s cubic-bezier(.2,.8,.2,1); box-shadow: -20px 0 50px rgba(0,0,0,.5); }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .scroll-cue { display: none; }
  .hero-trust { gap: 1.4rem; }
}
