/* ================================================================
   HAMTIV — Components
   Cursor · Loader · Nav · Hero · About · Shows · How · CTA · Footer
   ================================================================ */

/* ╔════════════════════════════════════════════════════════╗
   ║  CUSTOM CURSOR                                         ║
   ╚════════════════════════════════════════════════════════╝ */
.cursor { position:fixed; top:0; left:0; z-index:99999; pointer-events:none; }

.cursor-dot {
  width:8px; height:8px;
  background: var(--gold);
  border-radius:50%;
  position:fixed;
  transform:translate(-50%,-50%);
  box-shadow:0 0 10px var(--gold-glow);
  transition:transform 0.1s, width 0.2s, height 0.2s;
}

.cursor-ring {
  width:38px; height:38px;
  border:1.5px solid rgba(244,163,26,0.55);
  border-radius:50%;
  position:fixed;
  transform:translate(-50%,-50%);
  transition:all 0.15s ease-out;
}

.cursor-ring.hover {
  transform:translate(-50%,-50%) scale(1.8);
  border-color: var(--crimson);
  background:rgba(196,35,72,0.06);
}

.cursor-dot.hover { transform:translate(-50%,-50%) scale(0.5); }


/* ╔════════════════════════════════════════════════════════╗
   ║  CANVAS LOADER                                         ║
   ╚════════════════════════════════════════════════════════╝ */
#loader {
  position:fixed;
  inset:0;
  z-index:9000;
  background: var(--void);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:0;
  transition:opacity 0.8s var(--ease);
}

#loader.done { opacity:0; pointer-events:none; }
#loader.gone { display:none; }

#loaderCanvas {
  border-radius:0;
  display:block;
}

.loader-skip {
  position:absolute;
  bottom:2.5rem;
  right:2.5rem;
  font-family: var(--font-ui);
  font-size:0.6rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color: var(--text-35);
  opacity:0;
  transition:opacity 0.5s;
  cursor:none;
}
.loader-skip.show { opacity:1; }


/* ╔════════════════════════════════════════════════════════╗
   ║  NAVIGATION                                            ║
   ╚════════════════════════════════════════════════════════╝ */
.nav {
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:0 var(--gutter);
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition: var(--t);
}

.nav.scrolled {
  height:64px;
  background:rgba(10,10,9,0.94);
  backdrop-filter:blur(24px) saturate(160%);
  border-bottom:1px solid var(--border-gold);
  box-shadow:0 4px 40px rgba(0,0,0,0.4);
}

/* Logo */
.nav-logo { display:flex; align-items:center; gap:12px; cursor:none; }

.nav-logo-icon { width:36px; height:36px; flex-shrink:0; }

.nav-logo-text { display:flex; flex-direction:column; }

.nav-logo-text .name {
  font-family: var(--font-serif);
  font-size:1.35rem;
  font-weight:600;
  letter-spacing:0.1em;
  line-height:1;
}
.nav-logo-text .name .ham { color: var(--text-100); font-weight:300; }
.nav-logo-text .name .tiv { color: var(--crimson); font-weight:700; }

.nav-logo-text .tagline-nav {
  font-family: var(--font-ui);
  font-size:0.55rem;
  color: var(--gold);
  letter-spacing:0.18em;
  text-transform:uppercase;
  margin-top:2px;
}

/* Links */
.nav-links {
  display:flex;
  align-items:center;
  gap:36px;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size:0.72rem;
  font-weight:400;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--text-60);
  position:relative;
  transition:color 0.3s;
}
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-4px; left:0;
  width:0; height:1px;
  background: var(--gold);
  transition:width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width:100%; }

.nav-cta {
  font-family: var(--font-ui);
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color: var(--gold);
  border:1px solid var(--border-gold);
  padding:0.6rem 1.5rem;
  border-radius: var(--r-sm);
  background:rgba(244,163,26,0.05);
  transition: var(--t);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--void);
  box-shadow: var(--shadow-glow-g);
}

/* Hamburger */
.nav-hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  padding:4px;
  cursor:none;
}
.nav-hamburger span {
  display:block; width:24px; height:1.5px;
  background: var(--text-100);
  border-radius:2px;
  transition: var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(4.5px,4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(4.5px,-4.5px); }


/* ╔════════════════════════════════════════════════════════╗
   ║  HERO                                                  ║
   ╚════════════════════════════════════════════════════════╝ */
.hero {
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:linear-gradient(145deg, #0a0a09 0%, #0f0812 40%, #120a18 70%, #0a0a09 100%);
}

/* Grid overlay */
.hero-grid {
  position:absolute; inset:0; z-index:1;
  background-image:
    linear-gradient(rgba(244,163,26,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,163,26,0.03) 1px, transparent 1px);
  background-size:70px 70px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Ambient glow */
.hero-glow {
  position:absolute; z-index:2;
  width:800px; height:800px;
  border-radius:50%;
  background:radial-gradient(circle,
    rgba(196,35,72,0.12) 0%,
    rgba(244,163,26,0.06) 40%,
    transparent 70%);
  top:50%; left:50%;
  transform:translate(-50%,-55%);
  animation:glow 6s ease-in-out infinite;
  pointer-events:none;
}

/* Liquid blobs */
.liquid-blob {
  position:absolute;
  border-radius:60% 40% 30% 70% / 60% 30% 70% 40%;
  filter:blur(80px);
  animation:liquidBlob 20s ease-in-out infinite;
  pointer-events:none;
  z-index:1;
}

/* Floating particles */
.hero-particles { position:absolute; inset:0; z-index:2; pointer-events:none; }
.particle {
  position:absolute;
  border-radius:50%;
  animation:particleRise linear infinite;
}

/* Hero content */
.hero-content {
  position:relative;
  z-index:10;
  text-align:center;
  max-width:900px;
  padding:0 var(--gutter);
  padding-top:80px;
}

.hero-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-family: var(--font-ui);
  font-size:0.65rem;
  font-weight:700;
  letter-spacing:0.25em;
  text-transform:uppercase;
  color: var(--gold);
  margin-bottom:2rem;
  opacity:0;
  animation:fadeUp 0.9s var(--ease-out) 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content:''; width:44px; height:1px; background: var(--gold); opacity:0.45;
}

.hero-logo-display {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:2.5rem;
  opacity:0;
  animation:scaleIn 1s var(--ease-out) 0.5s forwards;
}

.hero-logo-icon-large { width:72px; height:72px; filter:drop-shadow(0 0 24px rgba(196,35,72,0.6)); }

.hero-logo-wordmark {
  font-family: var(--font-serif);
  font-size:clamp(3rem, 7vw, 5.5rem);
  font-weight:700;
  letter-spacing:0.06em;
  line-height:1;
}
.hero-logo-wordmark .ham { font-weight:300; color: var(--text-100); }
.hero-logo-wordmark .tiv { font-weight:700; color: var(--gold); }

.hero-title {
  font-family: var(--font-serif);
  font-size:clamp(2rem, 4.5vw, 3.8rem);
  font-weight:300;
  line-height:1.15;
  letter-spacing:-0.01em;
  color: var(--text-100);
  margin-bottom:1.25rem;
  opacity:0;
  animation:fadeUp 0.9s var(--ease-out) 0.7s forwards;
}
.hero-title strong { font-weight:700; font-style:italic; color: var(--crimson); }

.hero-subtitle {
  font-size:1rem;
  font-weight:300;
  line-height:1.85;
  color: var(--text-60);
  max-width:520px;
  margin:0 auto 2.5rem;
  opacity:0;
  animation:fadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.hero-actions {
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeUp 0.9s var(--ease-out) 1.1s forwards;
}

/* Stats bar */
.hero-stats {
  position:relative; z-index:10;
  display:flex;
  gap:clamp(2rem, 5vw, 5rem);
  padding:2rem var(--gutter);
  margin-top:5rem;
  border-top:1px solid var(--border-gold);
  width:100%;
  max-width: var(--max);
  justify-content:center;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeUp 0.9s var(--ease-out) 1.3s forwards;
}

.hero-stat { text-align:center; }

.hero-stat .num {
  font-family: var(--font-serif);
  font-size:clamp(1.6rem, 3vw, 2.2rem);
  font-weight:700;
  color: var(--text-100);
  line-height:1;
}
.hero-stat .num span { color: var(--crimson); }

.hero-stat .lbl {
  font-family: var(--font-ui);
  font-size:0.6rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color: var(--text-35);
  margin-top:0.3rem;
}

/* Scroll indicator */
.hero-scroll {
  position:absolute;
  bottom:2rem; left:50%;
  transform:translateX(-50%);
  z-index:10;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.5rem;
}
.hero-scroll span {
  font-family: var(--font-ui);
  font-size:0.58rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color: var(--text-35);
}
.scroll-line {
  width:1px; height:40px;
  background:linear-gradient(to bottom, var(--gold), transparent);
  animation:scrollLine 2s ease-in-out infinite;
}


/* ╔════════════════════════════════════════════════════════╗
   ║  ABOUT                                                 ║
   ╚════════════════════════════════════════════════════════╝ */
.about-section {
  padding:clamp(5rem, 10vw, 9rem) var(--gutter);
  background: var(--surface);
  border-top:1px solid var(--border-gold);
  border-bottom:1px solid var(--border-gold);
  position:relative;
  overflow:hidden;
}

/* Big watermark text */
.about-bg-text {
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size:clamp(8rem, 20vw, 18rem);
  font-weight:700;
  color:transparent;
  -webkit-text-stroke:1px rgba(244,163,26,0.06);
  white-space:nowrap;
  pointer-events:none;
  user-select:none;
  z-index:0;
  letter-spacing:0.05em;
}

.about-grid {
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(3rem, 8vw, 7rem);
  align-items:center;
  max-width: var(--max);
  margin:0 auto;
}

/* Image frame */
.about-visual {
  position:relative;
}

.about-img-frame {
  position:relative;
  border-radius: var(--r-lg);
  overflow:hidden;
  aspect-ratio:4/5;
  border:1px solid var(--border-gold);
  box-shadow: var(--shadow-3d), var(--shadow-glow-c);
}

.about-img-inner {
  width:100%; height:100%;
  background:linear-gradient(145deg, var(--surface-2), var(--surface-3));
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-img-inner img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.7s var(--ease);
}

.about-img-frame:hover .about-img-inner img { transform:scale(1.04); }

/* Top accent line on frame */
.about-img-frame::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, var(--crimson), var(--gold));
  z-index:2;
}

/* Badge */
.about-badge {
  position:absolute;
  bottom:-1.5rem; right:-1.5rem;
  background: var(--surface-3);
  border:1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding:1.2rem 1.5rem;
  text-align:center;
  box-shadow: var(--shadow-card);
  backdrop-filter:blur(12px);
}
.about-badge .b-num {
  font-family: var(--font-serif);
  font-size:2.2rem;
  font-weight:700;
  color: var(--gold);
  line-height:1;
}
.about-badge .b-txt {
  font-family: var(--font-ui);
  font-size:0.6rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color: var(--text-60);
  margin-top:0.3rem;
  line-height:1.5;
}

/* About content */
.about-content {}

.about-features {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  margin-top:2rem;
}

.about-feat {
  background:rgba(255,255,255,0.025);
  border:1px solid var(--border);
  border-radius: var(--r-md);
  padding:1.25rem;
  transition: var(--t);
}
.about-feat:hover {
  border-color: var(--border-gold);
  background:rgba(244,163,26,0.04);
}

.about-feat-icon { font-size:1.4rem; margin-bottom:0.6rem; }
.about-feat-title {
  font-family: var(--font-ui);
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.04em;
  color: var(--text-100);
  margin-bottom:0.35rem;
}
.about-feat-text {
  font-size:0.78rem;
  line-height:1.6;
  color: var(--text-60);
}


/* ╔════════════════════════════════════════════════════════╗
   ║  SHOWS / NOW STREAMING                                 ║
   ╚════════════════════════════════════════════════════════╝ */
.shows-section {
  padding:clamp(5rem, 10vw, 9rem) var(--gutter);
  position:relative;
  overflow:hidden;
}

.shows-section .liquid-blob {
  width:600px; height:600px;
  background: rgba(196,35,72,0.06);
  top:-10%; right:-10%;
  opacity:0.5;
  animation-delay:-8s;
}

.shows-header {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:3rem;
  flex-wrap:wrap;
  gap:1rem;
  max-width: var(--max);
  margin-inline:auto;
  margin-bottom:3rem;
}

.shows-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
  gap:1.5rem;
  max-width: var(--max);
  margin-inline:auto;
}

/* 3D Show Card */
.show-card {
  display:block;
  color: var(--text-100);
  background: var(--surface-2);
  border:1px solid var(--border);
  border-radius: var(--r-md);
  overflow:hidden;
  position:relative;
  transform-style:preserve-3d;
  transition: transform 0.1s var(--ease), box-shadow 0.3s, border-color 0.3s;
  will-change:transform;
  box-shadow: var(--shadow-card);
}
.show-card:hover {
  border-color:rgba(196,35,72,0.45);
  box-shadow: var(--shadow-3d), var(--shadow-glow-c);
  z-index:2;
}

/* Shimmer overlay on hover */
.show-card::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,
    transparent 30%,
    rgba(255,255,255,0.03) 50%,
    transparent 70%);
  background-size:400px 400px;
  opacity:0;
  transition:opacity 0.3s;
  pointer-events:none;
}
.show-card:hover::after { opacity:1; }

.show-poster {
  aspect-ratio:2/3;
  background-size:cover;
  background-position:center top;
  position:relative;
  overflow:hidden;
}
.show-poster::after {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(
    to top,
    rgba(18,14,24,0.9) 0%,
    rgba(18,14,24,0.3) 55%,
    transparent 100%
  );
}

.show-badge {
  position:absolute;
  top:0.75rem; right:0.75rem;
  z-index:2;
  font-family: var(--font-ui);
  font-size:0.55rem;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  background: var(--crimson);
  color:#fff;
  padding:0.25rem 0.65rem;
  border-radius: var(--r-sm);
  box-shadow:0 2px 12px rgba(196,35,72,0.5);
}

.show-info {
  padding:1rem 1rem 1.2rem;
}
.show-genre {
  font-family: var(--font-ui);
  font-size:0.6rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color: var(--gold);
  margin-bottom:0.3rem;
}
.show-title {
  font-family: var(--font-serif);
  font-size:1rem;
  font-weight:600;
  line-height:1.25;
  margin-bottom:0.35rem;
}
.show-eps { font-size:0.72rem; color: var(--text-35); }
.show-watch {
  margin-top:0.75rem;
  font-family: var(--font-ui);
  font-size:0.7rem;
  font-weight:600;
  letter-spacing:0.06em;
  color: var(--crimson);
  display:flex;
  align-items:center;
  gap:0.35rem;
  transition:gap 0.2s;
}
.show-card:hover .show-watch { gap:0.65rem; }


/* ╔════════════════════════════════════════════════════════╗
   ║  HOW IT WORKS                                          ║
   ╚════════════════════════════════════════════════════════╝ */
.how-section {
  padding:clamp(5rem, 10vw, 9rem) var(--gutter);
  background:linear-gradient(180deg, var(--surface) 0%, var(--ink) 100%);
  border-top:1px solid var(--border-gold);
  position:relative;
}

/* Watermark */
.how-section::before {
  content:'HOW';
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size:clamp(10rem, 25vw, 22rem);
  font-weight:700;
  color:transparent;
  -webkit-text-stroke:1px rgba(244,163,26,0.04);
  white-space:nowrap;
  pointer-events:none;
  user-select:none;
}

.how-header {
  text-align:center;
  margin-bottom:4rem;
  position:relative; z-index:1;
}
.how-header .section-tag { justify-content:center; }

.how-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  max-width: var(--max);
  margin-inline:auto;
  position:relative; z-index:1;
}

.how-card {
  background: var(--surface-2);
  border:1px solid var(--border);
  border-radius: var(--r-lg);
  padding:2.5rem 1.75rem 2rem;
  text-align:center;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow-card);
  transition: var(--t);
}
.how-card::before {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg, var(--crimson), var(--gold));
  transform:scaleX(0);
  transition:transform 0.4s var(--ease);
}
.how-card:hover {
  transform:translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-3d), 0 0 40px rgba(196,35,72,0.08);
}
.how-card:hover::before { transform:scaleX(1); }

.how-card::after {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:100%;
  background:radial-gradient(ellipse 70% 40% at 50% 0%,
    rgba(196,35,72,0.06), transparent);
  opacity:0;
  transition:opacity 0.4s;
  pointer-events:none;
}
.how-card:hover::after { opacity:1; }

.how-step-num {
  font-family: var(--font-serif);
  font-size:0.65rem;
  font-weight:700;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color: var(--text-15);
  margin-bottom:1.25rem;
}
.how-icon {
  font-size:2.5rem;
  margin-bottom:1.25rem;
  display:block;
  animation:floatY 5s ease-in-out infinite;
}
.how-card:nth-child(2) .how-icon { animation-delay:1.7s; }
.how-card:nth-child(3) .how-icon { animation-delay:3.4s; }

.how-card h3 {
  font-family: var(--font-serif);
  font-size:1.1rem;
  font-weight:600;
  margin-bottom:0.75rem;
  color: var(--text-100);
}
.how-card p {
  font-size:0.83rem;
  line-height:1.75;
  color: var(--text-60);
}


/* ╔════════════════════════════════════════════════════════╗
   ║  DOWNLOAD CTA                                          ║
   ╚════════════════════════════════════════════════════════╝ */
.cta-section {
  padding:clamp(6rem, 12vw, 10rem) var(--gutter);
  background:linear-gradient(135deg, var(--void) 0%, #110816 40%, #0d0a10 100%);
  text-align:center;
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--border-gold);
}

.cta-section .liquid-blob {
  width:900px; height:900px;
  background:rgba(196,35,72,0.08);
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  opacity:0.6;
}

.cta-content { position:relative; z-index:2; max-width:700px; margin:0 auto; }

.cta-title {
  font-family: var(--font-serif);
  font-size:clamp(2.2rem, 5vw, 4rem);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-0.02em;
  margin-top:1rem;
  margin-bottom:1.25rem;
}
.cta-title span { color: var(--crimson); font-style:italic; }

.cta-sub {
  font-size:1rem;
  line-height:1.8;
  color: var(--text-60);
  max-width:500px;
  margin:0 auto 3rem;
}

/* Store buttons */
.store-row {
  display:flex;
  gap:1.25rem;
  justify-content:center;
  flex-wrap:wrap;
}

.store-btn {
  display:inline-block;
  cursor:none;
  transition: transform 0.25s var(--ease-spring), filter 0.25s;
}
.store-btn:hover { transform:translateY(-4px) scale(1.02); filter:brightness(1.1); }
.store-btn:active { transform:scale(0.98); }

.store-badge-svg {
  display:block;
  width:176px;
  height:52px;
  border-radius: var(--r-sm);
}

.store-btn--disabled {
  opacity:0.38;
  cursor:default;
  pointer-events:none;
}
.coming-label {
  font-family: var(--font-ui);
  font-size:0.58rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color: var(--gold);
  text-align:center;
  margin-top:0.4rem;
}


/* ╔════════════════════════════════════════════════════════╗
   ║  TRUST STRIP                                           ║
   ╚════════════════════════════════════════════════════════╝ */
.trust-strip {
  padding:3rem var(--gutter);
  background:rgba(10,10,9,0.8);
  border-top:1px solid var(--border-gold);
  border-bottom:1px solid var(--border-gold);
}
.trust-inner {
  display:flex;
  flex-wrap:wrap;
  gap:2.5rem;
  justify-content:center;
  align-items:center;
  text-align:center;
  max-width: var(--max);
  margin:0 auto;
}
.trust-item .t-label {
  font-family: var(--font-ui);
  font-size:0.58rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color: var(--gold);
  margin-bottom:0.3rem;
}
.trust-item .t-val {
  font-family: var(--font-serif);
  font-size:1.6rem;
  font-weight:700;
  color: var(--text-100);
  line-height:1;
}
.trust-item .t-val span { color: var(--crimson); }
.trust-sep {
  width:1px; height:40px;
  background:var(--border-gold);
  opacity:0.5;
}


/* ╔════════════════════════════════════════════════════════╗
   ║  SOCIAL STRIP                                          ║
   ╚════════════════════════════════════════════════════════╝ */
.social-section {
  padding:3.5rem var(--gutter);
  background: var(--surface);
}
.social-inner {
  max-width:700px;
  margin:0 auto;
  text-align:center;
}
.social-label {
  font-family: var(--font-ui);
  font-size:0.65rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color: var(--text-35);
  margin-bottom:1.5rem;
}
.social-links {
  display:flex;
  gap:0.75rem;
  justify-content:center;
  flex-wrap:wrap;
}
.social-link {
  display:flex;
  align-items:center;
  gap:0.55rem;
  font-family: var(--font-ui);
  font-size:0.72rem;
  letter-spacing:0.06em;
  color: var(--text-60);
  border:1px solid var(--border);
  padding:0.65rem 1.35rem;
  border-radius: var(--r-pill);
  background:rgba(255,255,255,0.02);
  transition: var(--t);
}
.social-link:hover {
  border-color: var(--border-gold);
  color: var(--text-100);
  background:rgba(244,163,26,0.05);
  transform:translateY(-2px);
}
.social-link img { width:18px; height:18px; border-radius:4px; flex-shrink:0; }


/* ╔════════════════════════════════════════════════════════╗
   ║  FOOTER                                                ║
   ╚════════════════════════════════════════════════════════╝ */
footer {
  background: var(--void);
  border-top:1px solid var(--border-gold);
  padding:4rem var(--gutter) 2rem;
}

.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;
  max-width: var(--max);
  margin:0 auto 3rem;
}

.footer-brand p {
  font-size:0.83rem;
  line-height:1.75;
  color: var(--text-60);
  margin-top:1rem;
  max-width:280px;
}
.footer-brand-logo {
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-brand-logo svg { width:32px; height:32px; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size:1.3rem;
  font-weight:700;
}
.footer-brand-name .ham { font-weight:300; color: var(--text-100); }
.footer-brand-name .tiv { font-weight:700; color: var(--crimson); }

.footer-col h4 {
  font-family: var(--font-ui);
  font-size:0.65rem;
  font-weight:700;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color: var(--gold);
  margin-bottom:1.25rem;
}
.footer-col ul { display:flex; flex-direction:column; gap:0.75rem; }
.footer-col ul a {
  font-size:0.82rem;
  color: var(--text-60);
  transition:color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max);
  margin:0 auto;
  padding-top:1.5rem;
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:0.75rem;
  font-family: var(--font-ui);
  font-size:0.68rem;
  letter-spacing:0.06em;
  color: var(--text-35);
}
