/* =========================================================
   KingdomRush.com — Custom styles  |  Bootstrap 5 base
   ========================================================= */

:root {
  --gold:        #f5a623;
  --gold-light:  #ffd166;
  --crimson:     #c0392b;
  --crimson-dark:#922b21;
  --dark:        #0e0b07;
  --dark-card:   #1a1510;
  --dark-border: #2e2519;
  --stone:       #8b7355;
  --stone-light: #c4a882;
  --text-dim:    #8a7a66;
  --parchment:   #f5ead8;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: #e8dcc8;
  font-family: 'Cinzel', 'Georgia', serif;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #000; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Utility ── */
.text-gold  { color: var(--gold); }
.text-stone { color: var(--stone-light); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* =========================================================
   NAVBAR
   ========================================================= */
.site-navbar {
  background: rgba(14, 11, 7, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,166,35,0.12);
  padding: 0.55rem 0;
  transition: background 0.3s, border-color 0.3s;
}

.site-navbar.scrolled {
  background: rgba(14, 11, 7, 0.97);
  border-bottom-color: rgba(245,166,35,0.28);
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-crest {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--crimson));
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(245,166,35,0.4);
}

.brand-name {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.brand-tagline {
  font-size: .55rem;
  color: var(--stone);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--stone);
  display: block;
  margin-top: 1px;
}

/* Nav links */
.site-navbar .nav-link {
  color: #c4b49a !important;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.site-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s;
}

.site-navbar .nav-link:hover { color: var(--gold) !important; }
.site-navbar .nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

/* CTA button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--gold), #e8920a);
  border: none;
  color: #1a0e00;
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.15s, filter 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-play:hover {
  box-shadow: 0 0 20px rgba(245,166,35,0.5);
  transform: translateY(-1px);
  filter: brightness(1.08);
  color: #1a0e00;
}

.btn-play:active { transform: translateY(0); }

/* Ghost button */
.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-ghost-gold:hover {
  background: rgba(245,166,35,0.1);
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(245,166,35,0.2);
  color: var(--gold);
}

/* Hamburger */
.navbar-toggler {
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 6px;
  padding: 0.3rem 0.55rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245,166,35,0.85)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Announce bar */
.announce-bar {
  background: linear-gradient(90deg, var(--crimson-dark), var(--crimson));
  color: #ffe8c8;
  font-size: .75rem;
  font-weight: 600;
  text-align: center;
  padding: 0.4rem 1rem;
  letter-spacing: 0.6px;
  font-family: 'Cinzel', serif;
}

/* =========================================================
   COOKIE CONSENT
   ========================================================= */
.cookie-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(130%);
  z-index: 10000;
  width: min(760px, calc(100vw - 2rem));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s;
}

.cookie-bar:not([hidden]) {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-bar-inner {
  background: rgba(20,15,8,0.97);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cookie-icon { font-size: 1.6rem; flex-shrink: 0; }

.cookie-text strong {
  display: block;
  font-size: .88rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.cookie-text p {
  font-size: .76rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.cookie-text a { color: var(--gold); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-cookie-decline {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-dim);
  font-size: .78rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  transition: color 0.2s, background 0.2s;
}

.btn-cookie-decline:hover { color: #fff; background: rgba(255,255,255,0.09); }

@media (max-width: 520px) {
  .cookie-bar-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .btn-cookie-decline, .btn-play { flex: 1; justify-content: center; }
}

/* =========================================================
   TOAST
   ========================================================= */
#toastWrap {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.kr-toast {
  background: rgba(20,15,8,0.96);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold-light);
  font-size: .83rem;
  font-weight: 600;
  padding: 0.65rem 1.3rem;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
  font-family: 'Cinzel', serif;
}

.kr-toast.show { opacity: 1; transform: translateY(0); }

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.05);
  transition: transform 10s ease;
  will-change: transform;
}

.hero-section:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(14,11,7,0.96) 0%,
    rgba(14,11,7,0.80) 45%,
    rgba(14,11,7,0.40) 100%
  );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(192,57,43,0.18), transparent),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(245,166,35,0.08), transparent);
  pointer-events: none;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { left: 15%; animation-delay: 0s;   animation-duration: 9s;  }
.hero-particles span:nth-child(2) { left: 32%; animation-delay: 1.5s; animation-duration: 7s;  }
.hero-particles span:nth-child(3) { left: 55%; animation-delay: 3s;   animation-duration: 11s; }
.hero-particles span:nth-child(4) { left: 70%; animation-delay: 0.8s; animation-duration: 8s;  }
.hero-particles span:nth-child(5) { left: 82%; animation-delay: 2.2s; animation-duration: 9s;  }
.hero-particles span:nth-child(6) { left: 45%; animation-delay: 4s;   animation-duration: 10s; }

@keyframes particle-float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.28);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(.7); }
}

/* Title */
.hero-title {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #f5ead8;
  margin: 0;
}

.hero-title-highlight {
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 60%, var(--crimson) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub */
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(.88rem, 1.4vw, 1rem);
  color: #a89880;
  line-height: 1.75;
  max-width: 460px;
}

/* Rating */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

.hero-rating-text {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: var(--text-dim);
}

/* Button size variants */
.btn-play-lg  { font-size: .88rem; padding: 0.72rem 1.6rem; }
.btn-ghost-lg { font-size: .88rem; padding: 0.72rem 1.4rem; }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: -0.3px;
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-stat-sep {
  width: 1px; height: 36px;
  background: rgba(245,166,35,0.15);
  flex-shrink: 0;
}

/* Floating card */
.hero-card {
  position: relative;
  width: 340px;
  background: rgba(20,15,8,0.75);
  border: 1px solid rgba(245,166,35,0.18);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(245,166,35,0.06),
    0 28px 80px rgba(0,0,0,0.65),
    0 0 60px rgba(192,57,43,0.12);
  animation: float-card 5.5s ease-in-out infinite;
}

@keyframes float-card {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-18px) rotate(0.5deg); }
}

.hero-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.hero-card-live {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(192,57,43,0.9);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.4px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.2s infinite;
}

.hero-card-info {
  padding: 1rem 1.2rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-name {
  font-family: 'Cinzel', serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--parchment);
}

.hero-card-sub {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

.hero-card-rating {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--parchment);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  opacity: .45;
  transition: opacity 0.2s;
}

.hero-scroll:hover { opacity: .85; }

.hero-scroll-mouse {
  display: block;
  width: 22px; height: 36px;
  border: 2px solid rgba(245,166,35,0.5);
  border-radius: 11px;
  position: relative;
}

.hero-scroll-dot {
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 7px;
  border-radius: 2px;
  background: var(--gold);
  animation: scroll-dot 2s ease-in-out infinite;
}

.hero-scroll-label {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

@keyframes scroll-dot {
  0%   { top: 5px;  opacity: 1; }
  80%  { top: 16px; opacity: 0; }
  100% { top: 5px;  opacity: 0; }
}

/* =========================================================
   SHARED SECTION ELEMENTS
   ========================================================= */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0 0;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.25));
}

.section-divider::after {
  background: linear-gradient(90deg, rgba(245,166,35,0.25), transparent);
}

.divider-gem {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: .6;
  padding: 0 1rem;
  flex-shrink: 0;
}

.section-label {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding: 0 1rem;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: .45;
}

.section-label::before { right: 100%; margin-right: -0.7rem; }
.section-label::after  { left:  100%; margin-left:  -0.7rem; }

.section-title {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--parchment);
  letter-spacing: -0.3px;
  margin: 0;
}

.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

.mb-6 { margin-bottom: 5rem !important; }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section {
  padding: 0 0 6rem;
  position: relative;
}

/* Image wrap */
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  border: 1px solid var(--dark-border);
  transition: transform 6s ease;
}

.about-img-wrap:hover .about-img { transform: scale(1.03); }

/* Frame corners */
.frame-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--gold);
  border-style: solid;
  opacity: .55;
}

.fc-tl { top: -6px; left: -6px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.fc-tr { top: -6px; right: -6px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.fc-bl { bottom: -6px; left: -6px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.fc-br { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* Image badge */
.about-img-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1rem;
  background: rgba(20,15,8,0.95);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  min-width: 180px;
}

.aib-icon { font-size: 1.6rem; flex-shrink: 0; }

.aib-title {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.aib-sub {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

/* Lore list */
.lore-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.lore-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.lore-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
  filter: drop-shadow(0 0 6px rgba(245,166,35,0.3));
}

.lore-item strong {
  font-family: 'Cinzel', serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--parchment);
  display: block;
  margin-bottom: 0.2rem;
}

.lore-item p {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* Lore cards (3-col) */
.lore-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.lore-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(245,166,35,0.08);
}

.lore-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.lore-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.lore-card:hover .lore-card-img { transform: scale(1.07); }

.lore-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.lore-card-title {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 0.55rem;
}

.lore-card-text {
  font-family: 'Inter', sans-serif;
  font-size: .83rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.features-section {
  padding-bottom: 6rem;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.15), transparent);
}

/* Top 4 feature cards */
.feat-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--fc, #f5a623) 8%, transparent), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--fc, #f5a623) 30%, transparent);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.feat-card:hover::before { opacity: 1; }

.feat-icon-wrap {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.25));
}

.feat-card-title {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--parchment);
  margin: 0 0 0.6rem;
}

.feat-card-text {
  font-family: 'Inter', sans-serif;
  font-size: .83rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0;
}

/* Checklist */
.feat-checklist {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feat-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: #b0a08c;
  line-height: 1.5;
}

.fc-check {
  color: var(--gold);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 4px rgba(245,166,35,0.5));
}

/* Stat cards */
.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 1.4rem 1.3rem 1.2rem;
  transition: border-color 0.3s;
}

.stat-card:hover { border-color: rgba(245,166,35,0.22); }

.stat-card-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-card-label {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.85rem;
}

.stat-card-bar {
  height: 3px;
  background: var(--dark-border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.stat-card-bar::after {
  content: '';
  position: absolute;
  inset-block: 0; left: 0;
  width: var(--pct, 70%);
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  border-radius: 2px;
}

/* Feature image card */
.feat-img-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--dark-border);
}

.feat-img-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.feat-img-card:hover .feat-img-card-img { transform: scale(1.05); }

.feat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,11,7,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
}

.feat-img-label {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.3px;
}

/* =========================================================
   REVIEWS SECTION
   ========================================================= */
.reviews-section {
  padding-bottom: 6rem;
  position: relative;
}

/* Overall score */
.reviews-score-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 2rem 2.4rem;
  flex-wrap: wrap;
}

.reviews-score-left {
  text-align: center;
  flex-shrink: 0;
}

.rs-num {
  font-family: 'Cinzel', serif;
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.rs-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin: 0.3rem 0 0.4rem;
}

.rs-count {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reviews-score-bars {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.rs-bar-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: var(--text-dim);
}

.rs-bar-row > span:first-child { flex-shrink: 0; width: 28px; }

.rs-bar-track {
  flex: 1;
  height: 6px;
  background: var(--dark-border);
  border-radius: 3px;
  overflow: hidden;
}

.rs-bar-fill {
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  border-radius: 3px;
  transition: width 1s ease;
}

.rs-bar-pct { flex-shrink: 0; width: 32px; text-align: right; }

/* Review cards */
.review-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.featured-review {
  border-color: rgba(245,166,35,0.22);
  background: linear-gradient(135deg, rgba(245,166,35,0.04), var(--dark-card));
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(245,166,35,0.2);
}

.review-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--crimson-dark));
  display: grid;
  place-items: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(245,166,35,0.2);
}

.review-name {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--parchment);
}

.review-meta {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  color: var(--text-dim);
  margin-top: 0.1rem;
}

.review-stars {
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.review-text {
  font-family: 'Inter', sans-serif;
  font-size: .84rem;
  color: #a89880;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
}

.review-text::before {
  content: '"';
  position: absolute;
  left: 0; top: -2px;
  font-size: 1.4rem;
  color: var(--gold);
  font-style: normal;
  font-family: 'Cinzel', serif;
  line-height: 1;
  opacity: .5;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--dark-border);
}

.review-tag {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.18);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
}

.review-helpful {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: var(--text-dim);
}

/* CTA card */
.review-cta-card {
  background: linear-gradient(135deg, rgba(245,166,35,0.07), rgba(192,57,43,0.06));
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.rcc-icon { font-size: 2.8rem; filter: drop-shadow(0 0 10px rgba(245,166,35,0.35)); }

.rcc-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--parchment);
  margin: 0.3rem 0 0;
}

.rcc-sub {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.rcc-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section {
  padding-bottom: 6rem;
}

/* Info tiles */
.contact-info-tiles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ci-tile {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition: border-color 0.2s, transform 0.2s;
}

.ci-tile:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateX(4px);
}

.ci-tile-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(245,166,35,0.25));
}

.ci-tile-title {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.2rem;
}

.ci-tile-sub {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Contact card */
.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 22px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,166,35,0.06), transparent 70%);
  pointer-events: none;
}

.contact-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--parchment);
  margin: 0;
}

/* Form inputs */
.kr-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.kr-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  color: var(--parchment);
  border-radius: 10px;
  padding: 0.65rem 0.95rem;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}

.kr-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
  color: var(--parchment);
}

.kr-input::placeholder { color: var(--text-dim); opacity: .7; }

.kr-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238a7a66' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 14px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.kr-select option { background: #1a1510; color: var(--parchment); }

textarea.kr-input { resize: vertical; min-height: 120px; }

.input-error {
  border-color: var(--crimson) !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.18) !important;
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%     { transform: translateX(-5px); }
  75%     { transform: translateX(5px); }
}

/* Success state */
.contact-success {
  text-align: center;
  padding: 3rem 1rem;
  animation: fade-up 0.4s ease;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cs-icon { font-size: 3.5rem; filter: drop-shadow(0 0 14px rgba(245,166,35,0.5)); }

.cs-title {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-light);
  margin: 0.8rem 0 0.5rem;
}

.cs-sub {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0 0 0.8rem;
}

.cs-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 3px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--dark-border);
}

/* Newsletter strip */
.footer-newsletter {
  background: linear-gradient(105deg, rgba(245,166,35,0.05), rgba(192,57,43,0.04));
  border-bottom: 1px solid var(--dark-border);
  padding: 2.8rem 0;
}

.fn-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--parchment);
  margin: 0 0 0.35rem;
}

.fn-sub {
  font-family: 'Inter', sans-serif;
  font-size: .84rem;
  color: var(--text-dim);
  margin: 0;
}

.fn-form { display: flex; gap: 0.6rem; }
.fn-input { flex: 1; }
.fn-btn   { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 400px) {
  .fn-form { flex-direction: column; }
}

/* Main footer */
.footer-main { padding: 4rem 0 2.5rem; }

.footer-about {
  font-family: 'Inter', sans-serif;
  font-size: .84rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 300px;
  margin: 0.6rem 0 0;
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--gold);
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links a:hover { color: var(--gold); }

/* Store badge */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  color: var(--parchment);
  font-family: 'Cinzel', serif;
  transition: background 0.2s, box-shadow 0.2s;
}

.store-badge:hover {
  background: rgba(245,166,35,0.14);
  box-shadow: 0 0 18px rgba(245,166,35,0.2);
  color: var(--parchment);
}

.footer-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: var(--text-dim);
  line-height: 1.55;
  opacity: .7;
  margin: 0;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 1.1rem 0;
}

.footer-legal-link {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-legal-link:hover { color: var(--gold); }
