/* =====================================================================
   One Hour Title — Design System
   Apple-inspired aesthetic · floating dynamic cards · gold + ink palette
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0b0b0c;
  --ink-soft:   #1d1d1f;
  --ink-2:      #2b2b2f;
  --text:       #1d1d1f;
  --muted:      #6e6e73;
  --muted-2:    #86868b;
  --line:       rgba(0,0,0,.08);

  --bg:         #ffffff;
  --bg-alt:     #f5f5f7;
  --bg-dark:    #0b0b0c;

  --gold:       #e6cf4b;
  --gold-deep:  #c9a227;
  --gold-bright:#f4df5f;
  --gold-soft:  rgba(230,207,75,.14);
  --gold-line:  rgba(201,162,39,.35);

  --card:       rgba(255,255,255,.72);
  --card-brd:   rgba(255,255,255,.6);

  --shadow-sm:  0 1px 2px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.05);
  --shadow-md:  0 8px 30px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg:  0 30px 60px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.08);
  --shadow-gold:0 20px 50px rgba(201,162,39,.28);

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --maxw: 1180px;
  --ease: cubic-bezier(.22,1,.36,1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.section-pad { padding: clamp(72px, 11vw, 140px) 0; }

/* ---------- Type ---------- */
h1,h2,h3,h4 { letter-spacing: -.022em; line-height: 1.06; color: var(--ink-soft); font-weight: 700; }
.display {
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.h-xl { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -.03em; }
.h-lg { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.h-md { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.4rem); color: var(--muted); font-weight: 400; letter-spacing: -.01em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before { content:""; width: 22px; height: 1.5px; background: var(--gold-deep); display:inline-block; }
.text-muted { color: var(--muted); }
.center { text-align: center; }
.max-60 { max-width: 60ch; }
.mx-auto { margin-left: auto; margin-right: auto; }

.gold-text { color: var(--gold-deep); }
.grad-text {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-bright) 60%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 1rem; font-weight: 600; letter-spacing: -.01em;
  padding: 14px 26px; border-radius: 980px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: #000; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #241d00; box-shadow: 0 10px 26px rgba(201,162,39,.34);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201,162,39,.45); }
.btn-ghost { background: rgba(0,0,0,.05); color: var(--ink-soft); }
.btn-ghost:hover { background: rgba(0,0,0,.09); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.35); color:#fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
  padding: 14px 0;
}
.header.scrolled {
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 68px; width: auto; transition: opacity .3s; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  padding: 9px 15px; border-radius: 980px; transition: background .25s, color .25s;
}
.nav-links a:hover { background: rgba(0,0,0,.05); }
.nav-links a.active { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-weight: 600; font-size: .95rem; color: var(--ink-soft); display:inline-flex; align-items:center; gap:7px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold-deep); }
.burger { display: none; width: 44px; height: 44px; border-radius: 50%; align-items:center; justify-content:center; }
.burger span { position: relative; width: 20px; height: 1.8px; background: var(--ink); transition: .3s var(--ease); }
.burger span::before, .burger span::after { content:""; position:absolute; left:0; width:20px; height:1.8px; background: var(--ink); transition:.3s var(--ease); }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { top:0; transform: rotate(45deg); }
.burger.open span::after { top:0; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(24px); -webkit-backdrop-filter: saturate(180%) blur(24px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 32px; opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a { font-size: 2rem; font-weight: 600; letter-spacing: -.02em; color: var(--ink-soft); padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border: none; }
.mobile-menu .mm-actions { margin-top: 26px; display:flex; flex-direction:column; gap: 12px; }

/* ---------- Hero ---------- */
.hero { padding: 168px 0 90px; position: relative; overflow: hidden; }
.hero-bg { position:absolute; inset:0; z-index:-1; }
.blob { position:absolute; border-radius:50%; filter: blur(70px); opacity: .5; }
.blob.g1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(230,207,75,.55), transparent 70%); top:-140px; right:-120px; }
.blob.g2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(201,162,39,.35), transparent 70%); bottom:-180px; left:-140px; }
.hero h1 { max-width: 16ch; }
.hero .lead { max-width: 46ch; margin-top: 22px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { margin-top: 40px; display:flex; flex-wrap:wrap; gap: 22px 34px; align-items:center; }
.hero-badge { display:flex; align-items:center; gap:10px; color: var(--muted); font-size:.95rem; font-weight:500; }
.hero-badge svg { width: 20px; height: 20px; color: var(--gold-deep); flex:none; }

/* ---------- Floating cards ---------- */
.float-card, .card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.float-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

/* glass card variant */
.glass {
  background: var(--card);
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--card-brd);
}

/* subtle float animation for hero visual */
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
.animate-float { animation: floaty 6s ease-in-out infinite; }
.animate-float.slow { animation-duration: 8.5s; }
.animate-float.d1 { animation-delay: -2s; }
.animate-float.d2 { animation-delay: -4s; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.feature {
  padding: 34px 30px; border-radius: var(--r-lg);
  background: var(--bg); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold-line); }
.feature .ic {
  width: 54px; height: 54px; border-radius: 16px; display:grid; place-items:center;
  background: linear-gradient(135deg, var(--gold-soft), rgba(201,162,39,.06));
  border: 1px solid var(--gold-line); margin-bottom: 20px;
}
.feature .ic svg { width: 26px; height: 26px; color: var(--gold-deep); }
.feature h3 { font-size: 1.24rem; margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: 1rem; }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 10px; }
.stat .num { font-size: clamp(2.3rem,4vw,3.2rem); font-weight: 700; letter-spacing: -.03em; color: var(--ink-soft); }
.stat .num .grad-text { display:inline; }
.stat .lbl { color: var(--muted); font-size: .98rem; margin-top: 4px; }

/* ---------- Dark section ---------- */
.dark { background: var(--bg-dark); color: #f5f5f7; }
.dark h1,.dark h2,.dark h3 { color: #fff; }
.dark .lead, .dark .text-muted { color: #a1a1a6; }
.dark .feature { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); box-shadow: none; }
.dark .feature:hover { background: rgba(255,255,255,.06); border-color: var(--gold-line); }
.dark .feature p { color: #a1a1a6; }
.dark-glow { position:absolute; inset:0; overflow:hidden; z-index:0; }
.dark-glow .blob.g1 { opacity:.4; }

/* ---------- Split / showcase ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.stack-cards { position: relative; min-height: 476px; }
.stack-cards .sc {
  position: absolute; padding: 22px 24px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); width: 290px;
}
.sc .ic-sm { width: 42px; height: 42px; border-radius: 12px; background: var(--gold-soft); border:1px solid var(--gold-line); display:grid; place-items:center; margin-bottom: 12px; }
.sc .ic-sm svg { width: 21px; height:21px; color: var(--gold-deep); }
.sc h4 { font-size: 1.05rem; margin-bottom: 4px; }
.sc p { font-size: .9rem; color: var(--muted); }
.sc-1 { top: 0; left: 0; }
.sc-2 { top: 162px; right: 0; }
.sc-3 { top: 322px; left: 34px; }

/* ---------- List check ---------- */
.checks { display: grid; gap: 14px; margin-top: 8px; }
.checks li { display: flex; align-items: flex-start; gap: 13px; font-size: 1.06rem; color: var(--ink-soft); }
.checks li svg { width: 22px; height: 22px; color: var(--gold-deep); flex:none; margin-top: 2px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.step { padding: 32px 28px; border-radius: var(--r-lg); background: var(--bg-alt); border:1px solid var(--line); position: relative; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step .n { font-size: .82rem; font-weight: 700; letter-spacing:.12em; color: var(--gold-deep); }
.step h3 { font-size: 1.24rem; margin: 12px 0 8px; }
.step p { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--r-xl); padding: clamp(46px,6vw,72px);
  background: linear-gradient(135deg, #111 0%, #1b1b1e 100%);
  position: relative; overflow: hidden; text-align: center; color: #fff;
}
.cta-band::after {
  content:""; position:absolute; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(230,207,75,.4), transparent 68%);
  top:-160px; right:-120px; filter: blur(30px);
}
.cta-band h2 { color:#fff; position:relative; }
.cta-band .lead { color:#c9c9ce; position:relative; }
.cta-actions { margin-top: 30px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,52px); align-items:start; }
.info-card { padding: 22px 24px; border-radius: var(--r-md); background: var(--bg-alt); border:1px solid var(--line); display:flex; gap:16px; align-items:center; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card .ic { width:48px; height:48px; border-radius:14px; background: var(--gold-soft); border:1px solid var(--gold-line); display:grid; place-items:center; flex:none; }
.info-card .ic svg { width:22px; height:22px; color: var(--gold-deep); }
.info-card .lbl { font-size:.8rem; text-transform:uppercase; letter-spacing:.1em; color: var(--muted-2); }
.info-card .val { font-size:1.08rem; font-weight:600; color: var(--ink-soft); }
.form { padding: clamp(26px,3vw,38px); border-radius: var(--r-lg); background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display:block; font-size:.86rem; font-weight:600; color: var(--ink-soft); margin-bottom:7px; }
.field input, .field select, .field textarea {
  width:100%; padding:13px 15px; border:1px solid var(--line); border-radius: 13px;
  font-family:inherit; font-size:1rem; color: var(--ink-soft); background:#fbfbfd; transition:border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--gold-deep); background:#fff; box-shadow: 0 0 0 4px var(--gold-soft);
}
.form-note { font-size:.84rem; color: var(--muted); margin-top: 6px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 150px 0 60px; position: relative; overflow:hidden; }
.page-hero .blob.g1 { width:420px;height:420px; top:-160px; right:-100px; }

/* ---------- Trust / partner ---------- */
.partner { display:flex; align-items:center; gap: 26px; flex-wrap:wrap; justify-content:center; }
.partner img { height: 44px; width:auto; opacity:.85; filter: grayscale(.1); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: #a1a1a6; padding: 64px 0 30px; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 34px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer img.f-logo { height: 64px; margin-bottom: 16px; }
.footer h5 { color:#fff; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; font-weight:600; }
.footer a { color:#a1a1a6; font-size:.96rem; display:inline-block; padding:5px 0; transition: color .25s; }
.footer a:hover { color: var(--gold); }
.footer .f-desc { font-size:.96rem; max-width: 34ch; }
.footer .f-contact li { display:flex; gap:10px; align-items:flex-start; padding:5px 0; font-size:.96rem; }
.footer .f-contact svg { width:17px;height:17px;color:var(--gold); flex:none; margin-top:3px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; padding-top:24px; flex-wrap:wrap; font-size:.86rem; color:#6e6e73; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stack-cards { min-height: 360px; max-width: 420px; margin: 0 auto; }
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
}
@media (max-width: 620px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { padding-top: 132px; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn, .mm-actions .btn { width: 100%; }
  .wrap { padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity:1; transform:none; transition:none; }
}

/* =====================================================================
   IMAGERY & FLOATING DYNAMIC MATERIALS  (v2)
   ===================================================================== */

/* ---- Cinematic image hero ---- */
.hero2 { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 140px 0 90px; overflow: hidden; }
.hero2 .kb { position: absolute; inset: 0; z-index: 0; }
.hero2 .kb img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 26s ease-in-out infinite alternate; }
.hero2 .scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(102deg, rgba(8,8,10,.9) 0%, rgba(8,8,10,.66) 32%, rgba(8,8,10,.18) 60%, rgba(8,8,10,.42) 100%),
    linear-gradient(to top, rgba(8,8,10,.72) 0%, transparent 42%);
}
.hero2 .wrap { position: relative; z-index: 2; }
.hero2 h1, .hero2 h2, .hero2 h3 { color: #fff; }
.hero2 .lead { color: rgba(255,255,255,.84); }
.hero2 .eyebrow { color: var(--gold-bright); }
.hero2 .eyebrow::before { background: var(--gold-bright); }
@keyframes kenburns { from { transform: scale(1.06) translate(0,0); } to { transform: scale(1.18) translate(-1.6%, -1.6%); } }

.hero-chips { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 17px; border-radius: 980px; font-size: .92rem; font-weight: 500; color: #fff;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px) saturate(150%); -webkit-backdrop-filter: blur(12px) saturate(150%);
}
.chip svg { width: 17px; height: 17px; color: var(--gold-bright); }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue .mouse { width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; background: var(--gold-bright); border-radius: 3px; transform: translateX(-50%); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0%,100% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; transform: translate(-50%,8px); } }

/* ---- Floating drifting photo cluster ---- */
.floaters { position: relative; height: 500px; }
.pf { position: absolute; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid rgba(255,255,255,.72); will-change: transform; }
.pf img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-1 { width: 236px; height: 310px; top: 8px; right: 78px; animation: drift 7.5s ease-in-out infinite; }
.pf-2 { width: 216px; height: 158px; top: 264px; right: 246px; animation: drift 9.5s ease-in-out infinite; animation-delay: -3s; }
.pf-3 { width: 194px; height: 236px; bottom: -6px; right: 8px; animation: drift 8.4s ease-in-out infinite; animation-delay: -5s; }
.pf-badge { position: absolute; z-index: 4; padding: 12px 16px; border-radius: 16px; background: rgba(255,255,255,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; animation: drift 6.5s ease-in-out infinite; animation-delay: -1.5s; }
.pf-badge .dot { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); display: grid; place-items: center; }
.pf-badge .dot svg { width: 18px; height: 18px; color: #241d00; }
.pf-badge .t { font-size: .74rem; color: var(--muted); line-height: 1.1; }
.pf-badge .v { font-size: .98rem; font-weight: 700; color: var(--ink-soft); }
.pf-badge.b1 { top: 22px; left: -6px; }
@keyframes drift { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(-1.3deg); } }

/* ---- Framed images ---- */
.img-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.img-frame:hover img { transform: scale(1.055); }
.img-frame.ring { outline: 1px solid var(--gold-line); outline-offset: -1px; }
.img-frame .glow { position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 -80px 90px -40px rgba(8,8,10,.5); }
.float-img { animation: floaty 8s ease-in-out infinite; }

/* overlay glass card sitting on an image */
.overlay-card {
  position: absolute; z-index: 3; padding: 18px 20px; border-radius: 18px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.7); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 13px;
}
.overlay-card .ic { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--gold-soft), rgba(201,162,39,.05)); border: 1px solid var(--gold-line); display: grid; place-items: center; flex: none; }
.overlay-card .ic svg { width: 22px; height: 22px; color: var(--gold-deep); }
.overlay-card .t { font-size: .76rem; color: var(--muted); }
.overlay-card .v { font-size: 1.02rem; font-weight: 700; color: var(--ink-soft); }
.overlay-card.bl { left: -22px; bottom: 26px; animation: floaty 7s ease-in-out infinite; }
.overlay-card.tr { right: -18px; top: 30px; animation: floaty 8s ease-in-out infinite; animation-delay: -3s; }

/* ---- Media card (image + text) ---- */
.media-card { border-radius: var(--r-lg); overflow: hidden; background: var(--bg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.media-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); }
.media-card .thumb { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.media-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.media-card:hover .thumb img { transform: scale(1.07); }
.media-card .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,10,.35), transparent 55%); }
.media-card .body { padding: 24px 24px 28px; }
.media-card .body h3 { font-size: 1.24rem; margin-bottom: 8px; }
.media-card .body p { color: var(--muted); }
.media-card .tag { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 7px 13px; border-radius: 980px; font-size: .76rem; font-weight: 600; letter-spacing: .04em; color: #241d00; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); box-shadow: 0 6px 16px rgba(201,162,39,.4); }

/* ---- Scrolling gallery marquee ---- */
.marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 20px; width: max-content; animation: scrollx 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.m-img { position: relative; width: 360px; height: 240px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); flex: none; }
.m-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.m-img:hover img { transform: scale(1.06); }
.m-img .cap { position: absolute; left: 16px; bottom: 14px; color: #fff; font-weight: 600; font-size: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,.6); z-index: 2; }
.m-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,10,.5), transparent 55%); }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 10px)); } }

/* ---- Gold-texture panel (stats / bands) ---- */
.gold-panel { position: relative; overflow: hidden; border-radius: var(--r-xl); background: #0b0b0c; }
.gold-panel .bg { position: absolute; inset: 0; z-index: 0; }
.gold-panel .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.gold-panel .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(11,11,12,.92) 0%, rgba(11,11,12,.6) 55%, rgba(11,11,12,.4) 100%); }
.gold-panel .inner { position: relative; z-index: 2; padding: clamp(40px,6vw,68px); }
.gold-panel h2, .gold-panel .stat .num { color: #fff; }
.gold-panel .lead { color: rgba(255,255,255,.78); }
.gold-panel .stat .lbl { color: rgba(255,255,255,.62); }

/* ---- Image CTA band ---- */
.cta-image { position: relative; overflow: hidden; border-radius: var(--r-xl); text-align: center; }
.cta-image .bg { position: absolute; inset: 0; z-index: 0; }
.cta-image .bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 30s ease-in-out infinite alternate; }
.cta-image .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,8,10,.82), rgba(8,8,10,.66)); }
.cta-image .inner { position: relative; z-index: 2; padding: clamp(52px,7vw,92px) clamp(24px,5vw,60px); }
.cta-image h2 { color: #fff; }
.cta-image .lead { color: rgba(255,255,255,.82); }

/* ---- Inner page image hero ---- */
.page-hero2 { position: relative; min-height: 60vh; display: flex; align-items: center; padding: 150px 0 70px; overflow: hidden; }
.page-hero2 .kb { position: absolute; inset: 0; z-index: 0; }
.page-hero2 .kb img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 28s ease-in-out infinite alternate; }
.page-hero2 .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(8,8,10,.9) 0%, rgba(8,8,10,.62) 45%, rgba(8,8,10,.32) 100%), linear-gradient(to top, rgba(8,8,10,.6), transparent 50%); }
.page-hero2 .wrap { position: relative; z-index: 2; }
.page-hero2 h1 { color: #fff; }
.page-hero2 .lead { color: rgba(255,255,255,.84); }
.page-hero2 .eyebrow { color: var(--gold-bright); }
.page-hero2 .eyebrow::before { background: var(--gold-bright); }

/* feature card with small image accent */
.feature.has-img { padding: 0; overflow: hidden; }
.feature.has-img .thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.feature.has-img .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.feature.has-img:hover .thumb img { transform: scale(1.07); }
.feature.has-img .fbody { padding: 26px 28px 30px; }

/* section eyebrow centered helper already exists */

@media (max-width: 960px) {
  .floaters { display: none; }
  .overlay-card.bl { left: 12px; }
  .overlay-card.tr { right: 12px; }
}
@media (max-width: 620px) {
  .hero2 { min-height: 92svh; padding-top: 120px; }
  .m-img { width: 280px; height: 190px; }
  .overlay-card { display: none; }
}

/* ---- Adaptive header over dark image heroes ---- */
.header .brand .logo-light { display: none; }
.header:not(.scrolled) .brand .logo-dark { display: none; }
.header:not(.scrolled) .brand .logo-light { display: block; }
.header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.92); }
.header:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,.16); }
.header:not(.scrolled) .nav-links a.active { color: var(--gold-bright); }
.header:not(.scrolled) .nav-phone { color: #fff; }
.header:not(.scrolled) .nav-phone svg { color: var(--gold-bright); }
.header:not(.scrolled) .burger span,
.header:not(.scrolled) .burger span::before,
.header:not(.scrolled) .burger span::after { background: #fff; }
.burger.open span { background: transparent !important; }
.burger.open span::before,
.burger.open span::after { background: var(--ink) !important; }

/* icon box inside media-card bodies */
.media-card .body .ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-soft), rgba(201,162,39,.06)); border: 1px solid var(--gold-line); }
.media-card .body .ic svg { width: 26px; height: 26px; color: var(--gold-deep); }
