/* ============================================================
   SHOTIKA — shotika.css
   Extends css/style.css. Shotika-specific tokens and components.
   ============================================================ */

/* ===== SHOTIKA TOKENS ===== */
:root {
  --shotika:       #B5892A;
  --shotika-light: #C9A043;
  --shotika-dark:  #9A7223;
}

/* ===== SHOTIKA NAV ===== */
.shotika-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.shotika-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shotika-nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
}
.shotika-nav-back {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.shotika-nav-back:hover { color: #fff; }

/* ===== HERO ===== */
.shotika-hero {
  background: var(--navy);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
  max-width: var(--max-width);
  margin: 0 auto;
}
.shotika-hero-badge {
  display: inline-block;
  background: rgba(181,137,42,0.15);
  border: 1px solid rgba(181,137,42,0.35);
  color: var(--shotika);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
  display: block;
  width: fit-content;
}
.shotika-hero-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shotika);
  margin-bottom: var(--space-sm);
}
.shotika-hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: var(--space-md);
}
.shotika-hero-sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}
.shotika-hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.btn--shotika {
  display: inline-block;
  background: var(--shotika);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 2px solid var(--shotika);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn--shotika:hover { background: var(--shotika-dark); border-color: var(--shotika-dark); }
.btn--ghost-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn--ghost-white:hover { border-color: #fff; color: #fff; }
.shotika-hero-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.shotika-hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(232,98,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.shotika-hero-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* ===== STATS BAR ===== */
.shotika-stats {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 4vw, 60px);
}
.shotika-stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.shotika-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(16px, 3vw, 40px);
  gap: 4px;
}
.shotika-stat + .shotika-stat {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.shotika-stat-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 4px;
}
.shotika-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--shotika);
  line-height: 1;
}
.shotika-stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.shotika-stat-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

/* ===== FLAVORS SECTION ===== */
.shotika-flavors {
  background: var(--navy);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
}
.shotika-flavors-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.shotika-section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shotika);
  margin-bottom: var(--space-sm);
}
.shotika-section-heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: var(--space-xl);
}
.shotika-flavors-img-wrap {
  margin-bottom: var(--space-lg);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(13,27,42,0.12);
}
.shotika-flavors-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}
.shotika-flavors-note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ===== WHY SHOTIKA ===== */
.shotika-why {
  background: var(--navy-mid);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
}
.shotika-why-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.shotika-why-heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: var(--space-lg);
}
.shotika-why-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.shotika-why-body p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}
.shotika-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.shotika-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}
.shotika-why-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shotika-why-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
}

/* ===== CTA SECTION ===== */
.shotika-cta {
  background: var(--navy);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.shotika-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.shotika-cta-heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
  line-height: 1.12;
}
.shotika-cta-sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}
.shotika-cta-contact {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.shotika-cta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shotika-cta-item-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.shotika-cta-item-value {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.shotika-cta-item-value:hover { text-decoration: underline; }
.btn--cta-white {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.btn--cta-white:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ===== SHOTIKA FOOTER ===== */
.shotika-footer {
  background: var(--navy);
  padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 60px);
  text-align: center;
}
.shotika-footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: var(--space-sm);
}
.shotika-footer-note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-sm);
}
.shotika-footer-copy {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .shotika-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(48px, 8vw, 80px);
    padding-bottom: clamp(48px, 8vw, 80px);
  }
  .shotika-hero-text { order: 2; }
  .shotika-hero-img-wrap { order: 1; }
  .shotika-hero-sub { max-width: 100%; }
  .shotika-why-inner { grid-template-columns: 1fr; }
  .shotika-why-img-wrap { order: -1; }
}

@media (max-width: 767px) {
  .shotika-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .shotika-stat { padding: 16px; }
  .shotika-stat + .shotika-stat { border-left: none; }
  .shotika-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .shotika-stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .shotika-cta-contact { flex-direction: column; gap: var(--space-md); }
}

@media (max-width: 480px) {
  .shotika-hero-actions { flex-direction: column; }
  .shotika-hero-actions a { text-align: center; }
}
