/* =====================================================================
   SKTH Distributor Meet 2026 — Premium Corporate Landing Page
   Brand: SKTH Red (#D71920), Cream (#F7F5F0), Charcoal (#101218), Gold accents
===================================================================== */

/* ---------- 1. ROOT TOKENS ---------- */
:root {
  --skth-red:        #D71920;
  --skth-red-dark:   #b3141a;
  --skth-cream:      #F7F5F0;
  --skth-charcoal:   #101218;
  --skth-charcoal-2: #1b1d24;
  --skth-gold:       #C9A86A;
  --skth-gold-soft:  #E5D2A4;

  --ink-1: #101218;
  --ink-2: #2a2d36;
  --ink-3: #565a66;
  --ink-4: #8a8f9c;
  --line:  #e6e2d8;
  --line-2:#ecebe5;

  --font-serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-script:  'Dancing Script', cursive;

  --container: 1280px;
  --gutter: 2rem;

  --shadow-sm: 0 1px 2px rgba(16,18,24,0.04), 0 1px 3px rgba(16,18,24,0.06);
  --shadow-md: 0 4px 16px rgba(16,18,24,0.06), 0 2px 6px rgba(16,18,24,0.04);
  --shadow-lg: 0 12px 40px rgba(16,18,24,0.10), 0 4px 12px rgba(16,18,24,0.06);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ---------- 3. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  position: relative;
}

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--skth-red);
  color: #fff;
  border-color: var(--skth-red);
}
.btn-primary:hover {
  background: var(--skth-red-dark);
  border-color: var(--skth-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(215, 25, 32, 0.28);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ---------- 5. HEADER / NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.nav__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nav__brandtext {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__brandname {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: 0.04em;
}
.nav__brandtag {
  font-size: 0.68rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__links a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 0.5rem 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--skth-red);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--skth-red);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  padding: 0.7rem 1.4rem;
  background: var(--skth-red);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
}
.nav__cta span {
  transition: transform 0.25s var(--ease);
  display: inline-block;
}
.nav__cta:hover {
  background: var(--skth-red-dark);
  color: #fff;
}
.nav__cta:hover span {
  transform: translateX(4px);
}

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--ink-1);
  transition: all 0.3s var(--ease);
}
.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 5b. OLD HEADER STYLES (unused fallback) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo svg {
  width: 100%;
  height: 100%;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: 0.04em;
}
.brand-full {
  font-size: 0.68rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 0.5rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--skth-red);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--skth-red);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
  padding: 0.7rem 1.4rem;
  font-size: 0.78rem;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink-1);
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile header behavior (from responsive sections) */
@media (max-width: 768px) {
  .main-nav,
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: block;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter) 2rem;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .main-nav.open a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-2);
    font-size: 0.95rem;
  }
  .main-nav.open a::after { display: none; }

  .brand-full { display: none; }
}

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 78px;
  background: var(--skth-charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(16, 18, 24, 0.92) 0%, rgba(16, 18, 24, 0.65) 45%, rgba(16, 18, 24, 0.45) 100%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.4) 0%, rgba(16, 18, 24, 0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  width: 100%;
}

.hero-left {
  position: relative;
}
.hero-infinity {
  width: 130px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) 0.3s forwards;
}
.infinity-img {
  width: 100%;
  filter: drop-shadow(0 0 25px rgba(201, 168, 106, 0.45));
}

.hero-big-number {
  font-family: var(--font-serif);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: baseline;
}
.number-3 {
  color: var(--skth-red);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 0.95;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
}
.hero-line {
  font-size: clamp(3rem, 7vw, 6rem);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}
.hero-line-strong {
  color: #fff;
  font-weight: 700;
  font-style: italic;
}

.hero-tagline {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.7;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}
.hero-right-inner {
  max-width: 460px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.hero-skth {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--skth-gold);
  text-transform: uppercase;
  font-weight: 500;
}
.hero-event {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  color: #fff;
  margin-top: 0.4rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.hero-desc {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  z-index: 3;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll-cue span {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  animation: scrollCue 1.8s infinite var(--ease);
}

@keyframes scrollCue {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- 7. DISTRIBUTOR FAMILY ---------- */
.distributors {
  background: var(--skth-cream);
  padding: 7rem 0;
}
.distributors-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--skth-red);
  margin-bottom: 1.5rem;
}
.eyebrow-light {
  color: var(--skth-gold);
}

.dist-number {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 600;
  color: var(--skth-red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plus {
  font-size: 0.5em;
  vertical-align: top;
  margin-left: 4px;
}
.dist-label {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink-1);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}
.dist-desc {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.75;
  max-width: 320px;
}

.dist-center {
  display: flex;
  justify-content: center;
}
.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1.1;
}
.map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(16, 18, 24, 0.08));
}
.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--skth-red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.18);
  animation: pulse 2.4s infinite var(--ease);
  cursor: pointer;
  transition: transform 0.2s var(--ease);
}
.map-pin::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #fff;
  border-radius: 50%;
  transform: rotate(45deg);
}
.map-pin::before {
  content: attr(data-loc);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background: var(--skth-charcoal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
  z-index: 10;
}
.map-pin:hover {
  transform: rotate(-45deg) scale(1.25);
  animation-play-state: paused;
}
.map-pin:hover::before {
  opacity: 1;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(215, 25, 32, 0.08); }
}

.dist-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink-1);
  margin-bottom: 1.5rem;
}
.location-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.loc-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease);
}
.loc-chip:hover {
  background: var(--skth-red);
  border-color: var(--skth-red);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- 8. WHY COMING TOGETHER ---------- */
.why {
  background: #fff;
  padding: 7rem 0;
}
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink-1);
  display: flex;
  flex-direction: column;
}
.heading-strong {
  font-weight: 700;
  font-style: italic;
  color: var(--skth-red);
}
.section-sub {
  margin-top: 1.25rem;
  font-size: 0.98rem;
  color: var(--ink-3);
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--skth-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.why-card:hover {
  border-color: rgba(215, 25, 32, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--skth-red);
}
.why-icon svg {
  width: 100%;
  height: 100%;
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink-1);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ---------- 9. EVENT DETAILS ---------- */
.event-details {
  background: var(--skth-charcoal);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.event-details::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--skth-gold), transparent);
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}
.event-col {
  text-align: center;
  padding: 1rem;
  position: relative;
}
.event-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.12);
}
.event-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--skth-red);
}
.event-icon svg {
  width: 100%;
  height: 100%;
}
.event-day {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
.event-date {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ---------- 10. PARTNERS ---------- */
.partners {
  background: var(--skth-cream);
  padding: 7rem 0;
}
.partners-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.partner {
  flex: 1;
  text-align: center;
  padding: 1.5rem 2rem;
}
.partner-divider {
  width: 1px;
  background: var(--line);
  margin: 0.5rem 0;
}
.partner-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease);
  border: 2px solid;
}
.partner:hover .partner-logo {
  transform: translateY(-4px) scale(1.04);
}
.partner-logo-skth {
  background: #fff;
  color: var(--skth-red);
  border-color: var(--skth-red);
}
.partner-logo-kt {
  background: #fff;
  color: var(--ink-1);
  border-color: var(--ink-1);
}
.partner-logo-rudra {
  background: #fff;
  color: var(--skth-gold);
  border-color: var(--skth-gold);
}
.partner h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-1);
  margin-bottom: 0.35rem;
}
.partner p {
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- 11. INVITATION + REGISTRATION ---------- */
.invite-register {
  background: #fff;
}
.ir-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}

.ir-left {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ir-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ir-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ir-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(16, 18, 24, 0.78) 0%, rgba(16, 18, 24, 0.55) 100%);
}
.ir-content {
  position: relative;
  z-index: 2;
  padding: 4rem;
  max-width: 540px;
  color: #fff;
}
.ir-greeting {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 600;
  color: #fff;
  margin-top: 1rem;
  line-height: 1.2;
}
.ir-text {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
}
.ir-handwritten {
  margin-top: 1.75rem;
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--skth-gold-soft);
  font-weight: 600;
  line-height: 1.2;
}

.ir-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  background: var(--skth-cream);
}
.form-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.form-heading {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink-1);
  line-height: 1.25;
}
.form-sub {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--ink-3);
}
.register-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.req {
  color: var(--skth-red);
}
.form-group input {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-1);
  transition: all 0.2s var(--ease);
}
.form-group input::placeholder {
  color: var(--ink-4);
}
.form-group input:focus {
  outline: none;
  border-color: var(--skth-red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}
.form-group input.error {
  border-color: var(--skth-red);
  background: rgba(215, 25, 32, 0.03);
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2em;
}
.form-note.success {
  color: #2a8a3f;
}
.form-note.error {
  color: var(--skth-red);
}

/* ---------- 12. FOOTER ---------- */
.skth-footer {
  background: var(--skth-charcoal);
  color: #fff;
  padding: 5.5rem var(--gutter) 2rem;
}

.skth-footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.skth-footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--skth-gold);
  margin-bottom: 1.4rem;
}

/* Brand column */
.skth-footer__brand { max-width: 340px; }

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.site-brand-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.site-brand-logo svg {
  width: 100%;
  height: 100%;
}
.site-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.site-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}
.site-brand-tag {
  font-size: 0.68rem;
  color: var(--skth-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-top: 2px;
}

.skth-footer__tagline {
  margin-top: 1.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.skth-footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.6rem;
}
.skth-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--skth-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}
.skth-footer__social a:hover {
  background: var(--skth-red);
  border-color: var(--skth-red);
  color: #fff;
  transform: translateY(-3px);
}
.skth-footer__social svg {
  width: 17px;
  height: 17px;
}

/* Link columns */
.skth-footer__links li { margin-bottom: 0.65rem; }
.skth-footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
  display: inline-block;
}
.skth-footer__links a:hover {
  color: var(--skth-gold-soft);
  padding-left: 4px;
}

/* Contact column */
.skth-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}
.skth-footer__contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--skth-gold);
}
.skth-footer__contact a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.skth-footer__contact a:hover {
  color: var(--skth-gold-soft);
}

/* Bottom bar */
.skth-footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ---------- 13. WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.25s var(--ease);
  animation: floatPulse 2.6s infinite var(--ease);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1da851;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
  50%      { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); }
}

/* ---------- 14. ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s;  }
.delay-3 { transition-delay: 0.45s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- 15. RESPONSIVE — TABLET ---------- */
@media (max-width: 1024px) {
  :root { --gutter: 1.5rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 0;
  }
  .hero-right { justify-content: flex-start; }
  .hero-right-inner { max-width: 100%; }

  .distributors-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .dist-desc { margin-left: auto; margin-right: auto; }
  .dist-heading { text-align: center; }
  .location-cards { justify-content: center; }
  .map-wrapper { max-width: 380px; margin: 0 auto; }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .skth-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ---------- 16. RESPONSIVE — MOBILE ---------- */
@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }

  .main-nav,
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: block;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter) 2rem;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .main-nav.open a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-2);
    font-size: 0.95rem;
  }
  .main-nav.open a::after { display: none; }

  .brand-full { display: none; }

  .hero {
    padding-top: 78px;
    min-height: auto;
  }
  .hero-inner { padding: 2.5rem 0; }
  .hero-infinity { width: 90px; }
  .hero-right-inner {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.06);
  }
  .hero-cta .btn { flex: 1 1 100%; }

  .distributors,
  .why,
  .partners { padding: 4.5rem 0; }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .why-card { padding: 2rem 1.5rem; }

  .event-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .event-col { padding: 0.5rem; }
  .event-col:not(:last-child)::after {
    top: auto;
    bottom: -1.25rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
  }

  .partners-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .partner-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }

  .ir-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ir-content {
    padding: 3rem 1.5rem;
  }
  .ir-right {
    padding: 3rem 1.5rem;
  }
  .form-card {
    padding: 2rem 1.5rem;
  }

  .skth-footer {
    padding: 3.5rem var(--gutter) 1.75rem;
  }
  .skth-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: left;
  }
  .skth-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ---------- 17. RESPONSIVE — SMALL MOBILE ---------- */
@media (max-width: 480px) {
  .hero-big-number { font-size: 7rem; }
  .hero-line { font-size: 2.5rem; }
  .hero-right-inner { padding: 1.5rem; }
  .ir-handwritten { font-size: 1.8rem; }
  .form-card { padding: 1.75rem 1.25rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- 18. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
}


/* =====================================================================
   DISTRIBUTOR MEET 2026 — ADDITIONAL STYLES
===================================================================== */

/* ---------- EVENT DETAILS: section eyebrow label ---------- */
.event-section-label {
  text-align: center;
  margin-bottom: 2.5rem;
}
.event-section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--skth-gold);
  border-bottom: 2px solid var(--skth-red);
  padding-bottom: 0.35rem;
}

/* ---------- FORM: icon-prefixed inputs ---------- */
.form-input-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.form-input-icon svg {
  position: absolute;
  left: 0.85rem;
  width: 18px;
  height: 18px;
  color: var(--ink-4);
  flex-shrink: 0;
  pointer-events: none;
}
.form-input-icon input,
.form-input-icon select {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-1);
  transition: all 0.2s var(--ease);
  width: 100%;
}
.form-input-icon input::placeholder,
.form-input-icon select {
  color: var(--ink-4);
}
.form-input-icon select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.form-input-select::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--ink-4);
  pointer-events: none;
}
.form-input-icon input:focus,
.form-input-icon select:focus {
  outline: none;
  border-color: var(--skth-red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}
.form-input-icon input.error {
  border-color: var(--skth-red);
  background: rgba(215, 25, 32, 0.03);
}

/* ---------- FORM: 2-column row ---------- */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

/* ---------- FORM: footer confirmation note ---------- */
.form-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--ink-3);
}
.form-footer-note span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.form-footer-note svg {
  color: #25d366;
  flex-shrink: 0;
}
.form-footer-note span:last-child svg {
  color: var(--skth-red);
}

/* ---------- INVITATION LEFT: text refinements ---------- */
.ir-content .eyebrow.eyebrow-light {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--skth-gold-soft);
  display: block;
  margin-bottom: 0.75rem;
}

/* ---------- PARTNER: logo circle overflow fix ---------- */
.partner-logo {
  overflow: hidden;
}

/* ---------- REGISTER BUTTON: uppercase match ---------- */
.btn-full {
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  border-radius: var(--radius-sm);
}

/* ---------- FORM HEADING: two-line ---------- */
.form-heading br { line-height: 1.3; }

/* ---------- RESPONSIVE: 2-col form row on mobile ---------- */
@media (max-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .form-footer-note {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
  }
}

/* ---------- MOBILE NAV: nav__links + nav__burger toggle ---------- */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter) 2rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    z-index: 999;
  }
  .nav__links.open {
    display: flex;
  }
  .nav__links a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-2);
    font-size: 0.95rem;
  }
  .nav__links a::after { display: none; }
  .nav__links .nav__cta {
    margin-top: 1rem;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    text-align: center;
  }
  .nav__burger {
    display: flex;
  }
}
@media (min-width: 769px) {
  .nav__burger {
    display: none;
  }
}
