
/* ═══════════════════════════════════════════
   TICKER TAPE — landing page (fixed)
   ═══════════════════════════════════════════ */
.ticker-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 28px;
  background: #06090f;
  border-bottom: 1px solid rgba(200,169,110,.28);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* "LIVE" label pinned left */
.ticker-live {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px 0 12px;
  height: 100%;
  background: rgba(200,169,110,.12);
  border-right: 1px solid rgba(200,169,110,.25);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c8a84c;
  white-space: nowrap;
  z-index: 2;
}
.ticker-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: livePulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%,100% { opacity:1; box-shadow:0 0 5px #22c55e; }
  50%      { opacity:.5; box-shadow:0 0 10px #22c55e; }
}

/* Scrolling viewport */
.ticker-viewport {
  flex: 1;
  overflow: hidden;
  height: 100%;
  position: relative;
}

/* The moving track */
.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
  position: absolute;
  top: 0; left: 0;
}

/* Each price item */
.tk-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  height: 28px;
  border-right: 1px solid rgba(255,255,255,.05);
  flex-shrink: 0;
}
.tk-cat {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c8a84c;
}
.tk-sym {
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.tk-price {
  font-size: .7rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  letter-spacing: .01em;
}
.tk-chg {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.tk-chg.up   { color: #22c55e; }
.tk-chg.down { color: #ef4444; }

.tk-sep {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(200,169,110,.3);
  margin: 0 2px;
  flex-shrink: 0;
}

/* Push header down */
.site-header {
  top: 28px !important;
}
.hero-section {
  padding-top: calc(var(--nav-h) + 28px) !important;
}

@media (max-width: 768px) {
  .ticker-bar { height: 24px; }
  .tk-item    { padding: 0 10px; }
  .tk-cat     { display: none; }
  .site-header  { top: 24px !important; }
  .hero-section { padding-top: calc(var(--nav-h) + 24px) !important; }
}

/* ═══════════════════════════════════════════════════════════════
   style.css — Waninnie Holdings | Bright Premium Theme
   Fonts: Cormorant Garant (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  /* Dark zones — hero, footer only */
  --dark:        #0c1018;
  --dark-mid:    #141b26;
  --dark-card:   #1b2436;
  --dark-border: rgba(200, 169, 110, 0.18);

  /* Light zones — all main sections */
  --white:       #ffffff;
  --cream:       #faf7f2;
  --cream-mid:   #f3ede3;
  --cream-deep:  #ede5d8;

  /* Gold */
  --gold:        #b8922e;
  --gold-bright: #d4a93c;
  --gold-pale:   rgba(184, 146, 46, 0.12);
  --gold-glow:   rgba(184, 146, 46, 0.28);

  /* Text on light backgrounds */
  --txt-head:    #111827;
  --txt-body:    #374151;
  --txt-muted:   #6b7280;
  --txt-faint:   #9ca3af;

  /* Text on dark backgrounds */
  --txt-d-head:  #f0ead8;
  --txt-d-muted: #8a95a8;

  /* Borders */
  --b-light:     rgba(0, 0, 0, 0.08);
  --b-card:      rgba(0, 0, 0, 0.06);

  /* Typography */
  --f-display: 'Cormorant Garant', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  /* Radii */
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;

  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 74px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--txt-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ─── LAYOUT ─── */
.sec-container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 108px 0; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: var(--gold); color: #fff;
  font-family: var(--f-body); font-weight: 600;
  font-size: .92rem; letter-spacing: .05em;
  border-radius: 60px; border: 2px solid var(--gold);
  transition: background .25s, box-shadow .25s, transform .2s;
}
.btn-gold:hover {
  background: var(--gold-bright); border-color: var(--gold-bright);
  box-shadow: 0 8px 28px var(--gold-glow);
  transform: translateY(-2px);
}
.btn-gold.btn-wide { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 34px;
  border: 1.5px solid rgba(255,255,255,.45); color: #fff;
  font-weight: 500; font-size: .92rem;
  border-radius: 60px;
  backdrop-filter: blur(6px);
  transition: border-color .25s, background .25s, transform .2s;
}
.btn-ghost:hover {
  border-color: var(--gold-bright);
  background: rgba(184,146,46,.18); color: #fce8a0;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION  (always dark / glassmorphism)
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h); z-index: 900;
  background: rgba(12,16,24,.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--dark-border);
  transition: background .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(12,16,24,.97);
  box-shadow: 0 4px 40px rgba(0,0,0,.55);
}
.nav-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 40px; height: 40px;
  background: rgba(184,146,46,.15);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright); font-size: 1.1rem; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 700; font-size: 1rem; letter-spacing: .14em; color: #fff; }
.logo-tag  { font-weight: 300; font-size: .58rem; letter-spacing: .3em; color: var(--gold-bright); text-transform: uppercase; }

/* Nav links */
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.68); letter-spacing: .04em;
  padding: 4px 0; border-bottom: 1.5px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

.nav-login-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 22px;
  background: rgba(184,146,46,.14);
  border: 1px solid var(--dark-border); border-radius: 40px;
  color: var(--gold-bright); font-size: .86rem; font-weight: 500;
  transition: background .25s, color .25s;
}
.nav-login-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold-bright); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   HERO  (stays dark — slideshow needs it)
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.slides-wrap { position: absolute; inset: 0; z-index: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1.4s var(--ease), transform 8s linear;
}
.slide.is-active { opacity: 1; z-index: 1; transform: scale(1); }
.slide-veil {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,14,22,.28) 0%, rgba(10,14,22,.58) 55%, rgba(10,14,22,.86) 100%);
}

/* Vault rings */
.vault-rings {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; display: flex; align-items: center; justify-content: center;
}
.vring { position: absolute; border-radius: 50%; border: 1px solid rgba(200,169,110,.1); animation: ringPulse 6s ease-in-out infinite; }
.vring-1 { width: 500px; height: 500px; animation-delay: 0s; }
.vring-2 { width: 740px; height: 740px; animation-delay: 1.8s; }
.vring-3 { width: 1000px; height: 1000px; animation-delay: 3.6s; }
@keyframes ringPulse {
  0%,100% { opacity: .1; transform: scale(1); }
  50%      { opacity: .25; transform: scale(1.02); }
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 24px;
  max-width: 920px; width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: .72rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold-bright); margin-bottom: 26px;
}
.eyebrow-rule { display: block; width: 48px; height: 1px; background: var(--gold-bright); opacity: .55; }

.slides-text-wrap { position: relative; min-height: 210px; }
.slide-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  pointer-events: none;
}
.slide-copy.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.slide-copy h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 600; line-height: 1.08;
  color: #fff; margin-bottom: 18px;
}
.slide-copy h1 em { font-style: italic; color: var(--gold-bright); }
.slide-copy p { font-size: 1.12rem; font-weight: 300; color: rgba(255,255,255,.78); }

.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 44px; flex-wrap: wrap;
}

.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20; width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(200,169,110,.3); background: rgba(10,14,22,.4);
  color: var(--gold-bright); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, transform .2s;
}
.slide-arrow:hover { background: rgba(184,146,46,.22); border-color: var(--gold-bright); transform: translateY(-50%) scale(1.08); }
.arrow-prev { left: 28px; }
.arrow-next { right: 28px; }

.slide-dots {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%); z-index: 20; display: flex; gap: 12px;
}
.sdot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid rgba(200,169,110,.45); background: transparent;
  transition: background .3s, transform .3s, border-color .3s;
}
.sdot.is-active { background: var(--gold-bright); border-color: var(--gold-bright); transform: scale(1.35); box-shadow: 0 0 10px var(--gold-glow); }

.scroll-cue {
  position: absolute; bottom: 30px; right: 38px; z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.35); font-size: .65rem; letter-spacing: .15em;
  text-transform: uppercase; writing-mode: vertical-rl;
}
.scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--gold-bright), transparent); animation: scrollDrop 2.2s ease-in-out infinite; }
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR  — bright white strip
   ═══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--b-light); border-bottom: 1px solid var(--b-light);
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
}
.trust-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 32px; font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--txt-muted);
}
.trust-item i { color: var(--gold); font-size: .95rem; }
.trust-sep { width: 1px; height: 26px; background: var(--b-light); }

/* ═══════════════════════════════════════════════════════════════
   SHARED SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-label {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.sec-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--txt-head);
  line-height: 1.1; margin-bottom: 16px; letter-spacing: -.01em;
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-sub { font-size: 1rem; color: var(--txt-muted); max-width: 560px; margin: 0 auto; font-weight: 300; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   SERVICES  — white background
   ═══════════════════════════════════════════════════════════════ */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.service-card {
  background: var(--cream);
  border: 1px solid var(--b-card); border-radius: var(--r-lg);
  padding: 38px 30px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), transparent);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(184,146,46,.25); box-shadow: 0 24px 60px rgba(0,0,0,.1); }
.service-card:hover::after { opacity: 1; }

.svc-num {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--f-display); font-size: 3.8rem; font-weight: 700;
  color: rgba(184,146,46,.1); line-height: 1;
}
.svc-icon {
  width: 58px; height: 58px;
  background: var(--gold-pale); border: 1px solid rgba(184,146,46,.22);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-icon i { font-size: 1.55rem; color: var(--gold); }
.service-card h3 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; color: var(--txt-head); margin-bottom: 12px; }
.service-card p  { font-size: .92rem; color: var(--txt-muted); line-height: 1.72; margin-bottom: 20px; }

.svc-list { margin-bottom: 26px; }
.svc-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; border-bottom: 1px solid var(--b-card);
  font-size: .88rem; color: var(--txt-body);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list i { color: var(--gold); font-size: .75rem; flex-shrink: 0; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; font-size: .88rem; transition: gap .2s; }
.svc-link:hover { gap: 14px; }

/* ═══════════════════════════════════════════════════════════════
   FEATURES  — cream background
   ═══════════════════════════════════════════════════════════════ */
.features-section { background: var(--cream); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.feat-card {
  background: var(--white); border: 1px solid var(--b-card);
  border-radius: var(--r-md); padding: 34px 26px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.feat-card:hover { transform: translateY(-8px); border-color: rgba(184,146,46,.3); box-shadow: 0 18px 48px rgba(0,0,0,.1); }
.feat-icon {
  width: 62px; height: 62px; margin: 0 auto 20px;
  background: var(--gold-pale); border: 1px solid rgba(184,146,46,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.feat-icon i { font-size: 1.55rem; color: var(--gold); }
.feat-card h4 { font-family: var(--f-display); font-size: 1.22rem; font-weight: 600; color: var(--txt-head); margin-bottom: 10px; }
.feat-card p  { font-size: .88rem; color: var(--txt-muted); line-height: 1.72; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT  — white background
   ═══════════════════════════════════════════════════════════════ */
.about-section { background: var(--white); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-visual { display: flex; flex-direction: column; gap: 22px; }
.about-img-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--b-card); box-shadow: 0 32px 72px rgba(0,0,0,.12);
  aspect-ratio: 4/3;
}
.about-img-frame img { transition: transform 8s linear; }
.about-img-frame:hover img { transform: scale(1.06); }
.about-badge {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(12,16,24,.82); border: 1px solid var(--dark-border);
  color: var(--gold-bright); padding: 7px 16px; border-radius: 40px;
  font-size: .76rem; font-weight: 600; letter-spacing: .06em;
  backdrop-filter: blur(8px); display: flex; align-items: center; gap: 8px;
}

.about-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.astat {
  background: var(--cream); border: 1px solid var(--b-card);
  border-radius: var(--r-md); padding: 20px 14px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.astat-val { display: block; font-family: var(--f-display); font-size: 1.75rem; font-weight: 700; color: var(--gold); margin-bottom: 5px; }
.astat-lbl { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--txt-muted); }

.about-body .sec-label { display: block; margin-bottom: 12px; }
.about-body .sec-title { text-align: left; margin-bottom: 18px; }
.about-lead { font-family: var(--f-display); font-size: 1.25rem; font-weight: 400; color: var(--txt-head); line-height: 1.55; margin-bottom: 18px; }
.about-txt  { font-size: .92rem; color: var(--txt-muted); line-height: 1.82; margin-bottom: 14px; }
.about-body .btn-gold { margin-top: 14px; }

/* ═══════════════════════════════════════════════════════════════
   LOCATIONS  — cream background
   ═══════════════════════════════════════════════════════════════ */
.locations-section { background: var(--cream); }
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.loc-card {
  background: var(--white); border: 1px solid var(--b-card);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
}
.loc-card:hover { transform: translateY(-8px); border-color: rgba(184,146,46,.3); box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.loc-img { position: relative; height: 174px; overflow: hidden; }
.loc-img img { transition: transform .6s var(--ease); }
.loc-card:hover .loc-img img { transform: scale(1.09); }
.loc-badge { position: absolute; top: 12px; right: 12px; padding: 4px 12px; border-radius: 30px; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.loc-badge.flagship { background: var(--gold); color: #fff; }

.loc-info { padding: 20px 18px; }
.loc-info h4 { font-family: var(--f-display); font-size: 1.18rem; font-weight: 600; color: var(--txt-head); margin-bottom: 5px; }
.loc-info p  { font-size: .8rem; color: var(--txt-muted); margin-bottom: 12px; line-height: 1.5; }
.loc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.loc-tags span { display: flex; align-items: center; gap: 5px; padding: 4px 10px; background: var(--cream); border: 1px solid var(--b-card); border-radius: 30px; font-size: .72rem; color: var(--txt-body); font-weight: 500; }
.loc-tags i { color: var(--gold); font-size: .72rem; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT  — white background
   ═══════════════════════════════════════════════════════════════ */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }

.contact-info .sec-label { margin-bottom: 12px; }
.contact-info .sec-title { text-align: left; margin-bottom: 18px; }
.contact-lead { font-size: .95rem; color: var(--txt-muted); line-height: 1.82; margin-bottom: 40px; }

.cinfo-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 16px; }
.cinfo-icon {
  width: 44px; height: 44px; background: var(--gold-pale);
  border: 1px solid rgba(184,146,46,.22); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.cinfo-item h5 { font-weight: 700; color: var(--txt-head); margin-bottom: 3px; font-size: .88rem; }
.cinfo-item p  { font-size: .85rem; color: var(--txt-muted); }

.social-row { display: flex; gap: 10px; }
.s-btn {
  width: 42px; height: 42px; background: var(--cream);
  border: 1px solid var(--b-card); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .95rem;
  transition: background .25s, border-color .25s, transform .2s;
}
.s-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }

/* Form */
.contact-form-wrap {
  background: var(--cream); border: 1px solid var(--b-card);
  border-radius: var(--r-lg); padding: 42px 38px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.contact-form-wrap h3 { font-family: var(--f-display); font-size: 1.65rem; font-weight: 600; color: var(--txt-head); margin-bottom: 5px; }
.form-note { font-size: .82rem; color: var(--txt-faint); margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-field label { font-size: .73rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--txt-muted); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white); border: 1px solid var(--b-light);
  border-radius: var(--r-sm); padding: 12px 16px;
  color: var(--txt-head); font-family: var(--f-body); font-size: .92rem;
  outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--txt-faint); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-pale); }
.form-field select { cursor: pointer; color: var(--txt-body); }
.form-field select option { background: #fff; color: var(--txt-head); }
.form-field textarea { resize: vertical; min-height: 106px; }

.chk-label { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: var(--txt-muted); margin-bottom: 22px; cursor: pointer; }
.chk-label input { accent-color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.chk-label a { color: var(--gold); }
.chk-label a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER  — dark, keeps premium feel
   ═══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding: 68px 0 48px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: .88rem; color: var(--txt-d-muted); line-height: 1.75; max-width: 270px; margin-bottom: 20px; }
.footer-certs { display: flex; flex-direction: column; gap: 8px; }
.footer-certs span { display: flex; align-items: center; gap: 8px; font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; color: var(--txt-d-muted); }
.footer-certs i { color: var(--gold-bright); }

.footer-col h5 {
  font-weight: 700; font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; margin-bottom: 20px;
  padding-bottom: 12px; position: relative;
}
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: .86rem; color: var(--txt-d-muted); transition: color .2s, padding-left .2s; }
.footer-col ul a:hover { color: var(--gold-bright); padding-left: 4px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; gap: 16px; flex-wrap: wrap; }
.footer-bottom > span { font-size: .8rem; color: var(--txt-d-muted); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: .8rem; color: var(--txt-d-muted); transition: color .2s; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-d-muted); font-size: .82rem;
  transition: background .25s, color .25s, border-color .25s;
}
.footer-socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }


/* ── Ticker responsive ── */
@media (max-width: 768px) {
  :root { --ticker-h: 26px; }
  .ticker-item  { padding: 0 12px; font-size: .66rem; }
  .ticker-price { font-size: .66rem; }
}
@media (max-width: 480px) {
  :root { --ticker-h: 24px; }
  .ticker-item  { padding: 0 10px; }
  .ticker-cat   { display: none; }
}
/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1024px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .features-grid  { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .about-grid     { gap: 44px; }
  .contact-grid   { gap: 48px; }
  .footer-top     { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 768px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 70px 0; }
  .sec-container { padding: 0 18px; }

  /* Nav */
  .hamburger { display: flex; }
  .main-nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(12,16,24,.97); border-bottom: 1px solid var(--dark-border);
    padding: 28px 22px 36px;
    flex-direction: column; align-items: flex-start; gap: 24px;
    transform: translateY(-110%); opacity: 0;
    transition: transform .4s var(--ease), opacity .35s; z-index: 800;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; }
  .nav-link { font-size: 1.08rem; }
  .nav-login-btn { width: 100%; justify-content: center; }

  /* Hero */
  .slide-copy h1 { font-size: 2.6rem; }
  .slide-copy p  { font-size: .98rem; }
  .hero-btns     { flex-direction: column; align-items: center; }
  .arrow-prev    { left: 12px; }
  .arrow-next    { right: 12px; }
  .vault-rings, .scroll-cue { display: none; }
  .slides-text-wrap { min-height: 230px; }

  /* Trust bar */
  .trust-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .trust-item  { flex-shrink: 0; padding: 6px 18px; }
  .trust-sep   { display: none; }

  /* ALL CARD GRIDS → 2 columns on mobile */
  .services-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .features-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .locations-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Tighten card padding on mobile */
  .service-card { padding: 22px 16px; }
  .svc-num      { font-size: 2.8rem; top: 14px; right: 14px; }
  .feat-card    { padding: 22px 14px; }

  /* About */
  .about-grid       { grid-template-columns: 1fr; gap: 34px; }
  .about-stats-row  { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .astat-val        { font-size: 1.4rem; }
  .about-body .sec-title { font-size: 2rem; }

  /* Contact */
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row          { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 30px; padding: 48px 0 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
  .footer-links  { justify-content: center; flex-wrap: wrap; gap: 14px; }
  .footer-socials { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 480px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .slide-copy h1  { font-size: 2.1rem; }
  .hero-eyebrow   { font-size: .62rem; gap: 10px; }
  .eyebrow-rule   { width: 28px; }

  /* Keep 2 columns, just tighter */
  .services-grid  { gap: 10px; }
  .features-grid  { gap: 10px; }
  .locations-grid { gap: 10px; }

  .service-card   { padding: 18px 12px; border-radius: var(--r-md); }
  .feat-card      { padding: 18px 12px; }
  .svc-icon       { width: 44px; height: 44px; margin-bottom: 14px; }
  .svc-icon i     { font-size: 1.15rem; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p  { font-size: .8rem; }
  .svc-list        { display: none; } /* hide on very small to save space */

  .loc-img  { height: 120px; }
  .loc-info { padding: 12px 10px; }
  .loc-info h4 { font-size: .95rem; }

  .footer-top { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr; gap: 10px; }
}
