/* ═══════════════════════════════════════
   VITH HUB — Global Design System v2
   Fonts: Inter (body) + Plus Jakarta Sans (headings)
   Updated: 2026
═══════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
/* @import in HTML: 
   https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Noto+Sans+Thai:wght@300;400;500;600;700&display=swap
*/

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'Noto Sans Thai', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  /* color & background: set per-page in inline <style> */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --navy:    #0B1F3B;
  --navy2:   #0d2545;
  --navy3:   #071529;
  --navyL:   #1a3560;
  --gold:    #C9A227;
  --gold2:   #E4BC4A;
  --gold3:   #F5D680;
  --goldDk:  #9B7A10;
  --red:     #e5141e;
  --white:   #ffffff;
  --off:     #F7F5F0;
  --gray-50: #F9FAFB;
  --gray-100:#F3F4F6;
  --gray-200:#E5E7EB;
  --gray-400:#9CA3AF;
  --gray-600:#4B5563;
  --gray-800:#1F2937;

  /* Dark theme sub-colors */
  --sub:     rgba(255,255,255,.58);
  --subl:    rgba(255,255,255,.35);
  --border:  rgba(255,255,255,.08);
  --borderG: rgba(201,162,39,.22);

  /* Typography Scale */
  --fs-hero:    clamp(40px, 6vw, 64px);   /* Hero H1 */
  --fs-display: clamp(32px, 4vw, 48px);   /* Large display */
  --fs-h2:      clamp(26px, 3.5vw, 36px); /* Section titles */
  --fs-h3:      22px;                      /* Subtitle */
  --fs-body:    16px;                      /* Body */
  --fs-small:   14px;                      /* Small/caption */
  --fs-xs:      12px;                      /* XS/label */

  /* Line Heights */
  --lh-tight:  1.1;
  --lh-snug:   1.3;
  --lh-normal: 1.6;
  --lh-loose:  1.75;

  /* Spacing */
  --section:  80px;     /* Section padding */
  --section-sm: 56px;
  --gutter:   2rem;

  /* Layout */
  --max:      1200px;

  /* Radius */
  --r:    8px;
  --rM:   12px;
  --rL:   16px;
  --rXL:  24px;
  --rFull: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-md: 0 8px 28px rgba(0,0,0,.1),  0 4px 10px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 56px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);
  --shadow-gold: 0 8px 32px rgba(201,162,39,.35);

  /* Transitions */
  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .4s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */

/* Headings use Plus Jakarta Sans */
h1, h2, h3, h4, h5, h6,
.heading, .display {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', system-ui, sans-serif;
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}

/* Hero — 64px */
.text-hero {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* Display — 48px */
.text-display {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

/* Section H2 — 36px */
.text-h2, h2 {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Subtitle — 22px */
.text-subtitle, h3 {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Body — 16px */
.text-body, p {
  font-family: 'Inter', 'Noto Sans Thai', sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-loose);
  font-weight: 400;
}

/* Small */
.text-sm { font-size: var(--fs-small); }
.text-xs { font-size: var(--fs-xs); }

/* Eyebrow label */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section) var(--gutter);
}
.section-sm {
  padding: var(--section-sm) var(--gutter);
}

/* ═══════════════════════════════════════
   SHARED NAV v2
═══════════════════════════════════════ */

.vith-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 64px;
  transition: var(--transition);
}
/* .vith-nav::before removed — bg set directly on .vith-nav per-page */
.vith-nav.scrolled::before {
  background: rgba(7, 21, 41, .98);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.vith-nav.light::before {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  height: 64px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--goldDk), var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(201,162,39,.3);
}
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-logo-text span { color: var(--gold2); }
.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subl);
  display: block;
  margin-top: 2px;
}
.nav-logo-wrap { display: flex; flex-direction: column; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sub);
  padding: 7px 13px;
  border-radius: var(--r);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.07);
  font-weight: 600;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--goldDk), var(--gold), var(--gold2));
  color: var(--navy);
  padding: 9px 20px;
  border-radius: var(--r);
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 10px rgba(201,162,39,.25);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.nav-cta-arrow {
  font-size: 12px;
  transition: transform .2s;
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(7,21,41,.99);
  backdrop-filter: blur(20px);
  padding: 1.5rem 1.75rem 2rem;
  border-bottom: 1px solid var(--borderG);
  flex-direction: column;
  gap: 4px;
  z-index: 898;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  padding: 11px 14px;
  border-radius: var(--r);
  transition: var(--transition);
}
.nav-mobile-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-mobile-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--goldDk), var(--gold));
  color: var(--navy);
  padding: 13px 20px;
  border-radius: var(--r);
  text-align: center;
  margin-top: 10px;
}

/* ═══════════════════════════════════════
   BUTTONS v2 — Modern Style
═══════════════════════════════════════ */

/* Primary — Gold */
.btn-primary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--goldDk), var(--gold), var(--gold2));
  color: var(--navy);
  padding: 13px 28px;
  border-radius: var(--rM);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,162,39,.3);
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,.45);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

/* Secondary — Ghost */
.btn-secondary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.06);
  padding: 12px 24px;
  border-radius: var(--rM);
  border: 1px solid rgba(255,255,255,.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-1px);
}

/* Outline light (on white bg) */
.btn-outline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  padding: 12px 24px;
  border-radius: var(--rM);
  border: 1.5px solid var(--gray-200);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--gray-50);
}

/* Red CTA */
.btn-red {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--rM);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(229,20,30,.25);
}
.btn-red:hover {
  background: #c01019;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229,20,30,.35);
}

/* Large variants */
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: var(--rL); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: var(--r); }

/* ═══════════════════════════════════════
   HERO GRADIENT SECTION
═══════════════════════════════════════ */

.hero-gradient {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Multi-layer gradient */
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(201,162,39,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(26,53,96,.8) 0%, transparent 55%),
    linear-gradient(135deg, #050d1a 0%, #0B1F3B 45%, #0d2d54 80%, #071529 100%);
}
.hero-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Hero text styles */
.hero-title {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
  font-size: var(--fs-hero);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title .gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold3), var(--gold2), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear 1s infinite;
}
.hero-subtitle {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 600;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
  margin-bottom: 16px;
}
.hero-body {
  font-family: 'Inter', 'Noto Sans Thai', sans-serif;
  font-size: var(--fs-body);
  color: rgba(255,255,255,.55);
  line-height: var(--lh-loose);
  max-width: 540px;
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════
   LOGO FLOATING ANIMATION
═══════════════════════════════════════ */

@keyframes logo-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25%       { transform: translateY(-12px) rotate(.5deg); }
  50%       { transform: translateY(-20px) rotate(0deg); }
  75%       { transform: translateY(-10px) rotate(-.5deg); }
}
@keyframes logo-glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(201,162,39,.3))
            drop-shadow(0 0 40px rgba(201,162,39,.1));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(201,162,39,.6))
            drop-shadow(0 0 80px rgba(201,162,39,.2));
  }
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,162,39,.35); }
  50%       { box-shadow: 0 8px 36px rgba(201,162,39,.65), 0 0 0 6px rgba(201,162,39,.08); }
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 4px 16px rgba(229,20,30,.3); }
  50%       { box-shadow: 0 8px 28px rgba(229,20,30,.55), 0 0 0 6px rgba(229,20,30,.08); }
}

/* Floating logo wrapper */
.logo-float {
  animation: logo-float 6s ease-in-out infinite, logo-glow 6s ease-in-out infinite;
  display: inline-block;
  transform-origin: center bottom;
}
/* Logo shadow ring */
.logo-float-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-float-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(201,162,39,.3) 0%, transparent 70%);
  filter: blur(6px);
  animation: logo-float 6s ease-in-out infinite;
  animation-direction: reverse;
}

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-24px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right { opacity: 0; transform: translateX(24px);  transition: opacity .65s ease, transform .65s ease; }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

/* ═══════════════════════════════════════
   TICKER BAR
═══════════════════════════════════════ */

.ticker-bar {
  background: linear-gradient(90deg, var(--goldDk), var(--gold), var(--gold2), var(--gold), var(--goldDk));
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  padding: 0 28px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */

.sec-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--goldDk);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.sec-eyebrow.center { justify-content: center; }
.sec-eyebrow.center::before { display: none; }
.sec-eyebrow.light { color: var(--gold2); }
.sec-eyebrow.light::before { background: var(--gold2); }

.sec-h2 {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
  font-size: var(--fs-h2);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.sec-h2.dark { color: var(--navy); }
.sec-h2 em { font-style: italic; opacity: .45; font-weight: 600; }
.sec-h2 span { color: var(--gold2); }

.sec-lead {
  font-family: 'Inter', 'Noto Sans Thai', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 560px;
}
.sec-lead.dark { color: var(--gray-600); }
.sec-lead.center { margin: 0 auto; text-align: center; }

/* ═══════════════════════════════════════
   CARDS — Dark
═══════════════════════════════════════ */

.card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--rL);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card-dark:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--borderG);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.card-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.card-dark:hover::before { opacity: 1; }

/* ═══════════════════════════════════════
   FLOAT CTA
═══════════════════════════════════════ */

.float-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.float-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.float-apply { background: linear-gradient(135deg, var(--goldDk), var(--gold)); color: var(--navy); animation: pulse-gold 3s ease-in-out infinite; }
.float-line  { background: #06C755; color: #fff; }

/* ═══════════════════════════════════════
   DISCLAIMER FOOTER
═══════════════════════════════════════ */

.disclaimer-bar {
  background: var(--navy3);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 2rem;
}
.disclaimer-bar p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  line-height: 1.65;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 1024px) {
  :root {
    --section: 64px;
    --section-sm: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section: 56px;
    --section-sm: 40px;
    --gutter: 1.25rem;
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .btn-lg { padding: 13px 24px; font-size: 15px; }
}

@media (max-width: 480px) {
  :root { --section: 48px; }
  .float-cta { bottom: 16px; right: 16px; }
}
