/* ─── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --bg-0:         #080c08;
  --bg-1:         #0f140f;
  --bg-2:         #141c13;
  --bg-card:      #192117;
  --bg-card-h:    #1f2b1d;
  --border:       #273525;
  --border-l:     #334430;

  --gold:         #c8a84a;
  --gold-l:       #e2c06a;
  --gold-dim:     rgba(200, 168, 74, 0.15);
  --green:        #2d6e3e;
  --green-l:      #3d9454;

  --text-1:       #f0f0eb;
  --text-2:       #9fae9a;
  --text-3:       #697a65;

  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --transition:   0.25s ease;

  --container:    1180px;
  --gap:          clamp(1.5rem, 4vw, 3rem);
}

/* ─── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
}
img, iframe, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-1);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); }
p  { color: var(--text-2); }
em { font-style: normal; color: var(--gold); }
strong { color: var(--text-1); font-weight: 600; }

/* ─── LAYOUT ──────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-header.centered { text-align: center; }
.section-header p { margin-top: 0.75rem; font-size: 1.05rem; }
.section-footer { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-0);
}
.btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,74,0.3); }
.btn-secondary {
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid var(--border-l);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold-dim); transform: translateY(-2px); }

/* ─── NAVBAR ──────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 12, 8, 0.92);
  backdrop-filter: blur(16px);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
/* Before scroll — white text so it reads over hero images */
.navbar:not(.scrolled) .nav-links a          { color: rgba(255,255,255,0.88); }
.navbar:not(.scrolled) .nav-links a:hover    { color: var(--gold); }
.navbar:not(.scrolled) .nav-social-link      { color: rgba(255,255,255,0.7); }
.navbar:not(.scrolled) .nav-social-link:hover{ color: var(--gold); }
.navbar:not(.scrolled) .lang-opt             { color: rgba(255,255,255,0.65); }
.navbar:not(.scrolled) .lang-picker          { border-color: rgba(255,255,255,0.2); }
.navbar:not(.scrolled) .lang-sep             { color: rgba(255,255,255,0.2); }
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text-1);
}
.nav-logo span { color: var(--gold); }
.nav-logo-img { height: 80px; width: auto; display: block; }
.logo-mobile { display: none; }
.footer-logo-img { height: 96px; width: auto; display: block; margin-bottom: 0.75rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-2); transition: color var(--transition); }
.nav-links a:hover { color: var(--text-1); }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: var(--gold);
  color: var(--bg-0) !important;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  transition: all var(--transition) !important;
}
.btn-nav-cta:hover { background: var(--gold-l) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 1rem 5rem;
}
/* Hero background carousel */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(45, 110, 62, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, rgba(8,12,8,0.25) 0%, rgba(8,12,8,0.55) 45%, var(--bg-0) 100%);
}
.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 7s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
/* Hero carousel dots */
.hero-carousel-nav {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-cdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}
.hero-cdot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  border-color: var(--gold);
}
.hero-cdot:hover:not(.active) { background: rgba(255,255,255,0.6); }
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float linear infinite;
}
@keyframes float {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-120vh) scale(1.5); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  background: var(--gold-dim);
  transition: opacity 0.25s ease;
}
.hero-title {
  margin-bottom: 1.25rem;
  text-shadow: 0 0 80px rgba(45,110,62,0.4);
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--text-2);
  transition: opacity 0.25s ease;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(25, 33, 23, 0.6);
  backdrop-filter: blur(8px);
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
}
.stat {
  padding: 1rem 2rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix { color: var(--gold); font-weight: 700; }
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.25rem;
}
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-3);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── ABOUT ───────────────────────────────────────────────────────────────── */
.about { background: var(--bg-1); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.about-visual { display: flex; justify-content: center; }
.about-img-frame {
  position: relative;
  width: 340px;
  max-width: 100%;
}
.about-img-inner {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.about-img-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-3);
}
.img-placeholder p { font-size: 0.85rem; }
.about-img-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gold);
  color: var(--bg-0);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-lead { font-size: 1.05rem; color: var(--text-2); margin-bottom: 1rem; }
.about-text p { margin-bottom: 1.5rem; }
.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-2);
}
.about-features li svg { color: var(--gold); flex-shrink: 0; }

/* ─── FEATURED VIDEO ──────────────────────────────────────────────────────── */
.featured { background: var(--bg-0); }
.featured-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.video-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-embed-container iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
/* Thumbnail-based player (used when embedding is disabled) */
.yt-thumb-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  transition: opacity var(--transition);
}
.yt-thumb-link img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.yt-thumb-link:hover img { transform: scale(1.04); }
.yt-play-btn {
  position: relative;
  z-index: 1;
  width: 68px; height: 48px;
  background: #ff0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.yt-thumb-link:hover .yt-play-btn { transform: scale(1.1); background: #cc0000; }
.yt-play-btn svg { fill: white; width: 24px; height: 24px; margin-left: 4px; }
.featured-info .video-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.featured-info h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
}
.featured-info p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ─── VIDEOS ──────────────────────────────────────────────────────────────── */
.videos { background: var(--bg-1); }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.video-card:hover { border-color: var(--border-l); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.video-thumb {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--bg-2);
}
.video-thumb .yt-thumb-link { border-radius: 0; }
.video-thumb .yt-play-btn { width: 52px; height: 36px; border-radius: 8px; }
.video-thumb .yt-play-btn svg { width: 18px; height: 18px; }
.thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-3);
  background: var(--bg-2);
}
.video-meta {
  padding: 1rem 1.2rem 1.2rem;
}
.video-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}
.video-meta h3 {
  font-size: 0.92rem;
  color: var(--text-1);
  line-height: 1.4;
}
.video-card--placeholder .thumb-placeholder { color: var(--text-3); }
.video-card--placeholder:hover { opacity: 0.8; }

/* ─── SHOP ────────────────────────────────────────────────────────────────── */
.shop { position: relative; background: var(--bg-0); }
.shop-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(45,110,62,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.product-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-placeholder { color: var(--text-3); }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}
.product-badge--new     { background: var(--green); color: #fff; }
.product-badge--popular { background: var(--gold); color: var(--bg-0); }
.product-badge--digital { background: #5b3eb5; color: #fff; }
.product-info {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.product-info p  { font-size: 0.82rem; color: var(--text-3); flex: 1; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.product-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}
.btn-add-cart {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  background: var(--gold);
  color: var(--bg-0);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-add-cart:hover { background: var(--gold-l); transform: translateY(-1px); }

/* ─── NEWSLETTER ──────────────────────────────────────────────────────────── */
.newsletter { background: var(--bg-1); }
.newsletter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.newsletter-text h2 { margin-bottom: 0.75rem; }
.newsletter-text p  { margin-bottom: 1.5rem; }
.form-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.form-row input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  background: var(--bg-0);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-1);
  font: inherit;
  font-size: 0.92rem;
  transition: border-color var(--transition);
}
.form-row input::placeholder { color: var(--text-3); }
.form-row input:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: 0.78rem; color: var(--text-3); margin-top: 0.6rem; }
.form-msg { font-size: 0.9rem; font-weight: 600; margin-top: 0.6rem; }
.form-msg.success { color: var(--green-l); }
.form-msg.error   { color: #f87171; }
.newsletter-social p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 1rem;
  text-align: center;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all var(--transition);
}
.social-link--yt:hover  { border-color: #ff0000; color: #ff0000; background: rgba(255,0,0,0.06); }
.social-link--ig:hover  { border-color: #e1306c; color: #e1306c; background: rgba(225,48,108,0.06); }

/* ─── PARTNERS ────────────────────────────────────────────────────────────── */
.partners { background: var(--bg-0); }
.partners-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--gap);
  align-items: start;
}
.partners-text h2 { margin-bottom: 0.75rem; }
.partners-text p  { margin-bottom: 0; color: var(--text-2); }
.partners-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: var(--text-2); letter-spacing: 0.02em; }
.form-field input,
.form-field textarea {
  padding: 0.7rem 1rem;
  background: var(--bg-0);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-1);
  font: inherit;
  font-size: 0.92rem;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

/* ─── PAGE BANNER (sub-pages) ─────────────────────────────────────────────── */
.page-banner {
  background: var(--bg-0);
  padding: 9rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-banner .section-tag { margin-bottom: 1rem; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.page-banner p { color: var(--text-2); max-width: 560px; margin: 0 auto; font-size: 0.97rem; }
.partners-form-standalone {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem);
}
.partners-form button[type="submit"] { align-self: flex-start; }
.field-error { display: none; color: #f87171; font-size: 0.78rem; margin-top: 0.2rem; }
.char-counter { font-size: 0.75rem; color: var(--text-3); text-align: right; margin-top: 0.25rem; flex-shrink: 0; }
/* Static page content */
.static-page {
  padding: 8rem 0 5rem;
  max-width: 760px;
  margin: 0 auto;
}
.static-page h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
.static-page .updated { color: var(--text-3); font-size: 0.85rem; margin-bottom: 2.5rem; }
.static-page h2 { font-size: 1.2rem; margin: 2rem 0 0.5rem; color: var(--text-1); }
.static-page p, .static-page li { color: var(--text-2); line-height: 1.8; font-size: 0.95rem; }
.static-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.static-page a { color: var(--gold); text-decoration: underline; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.footer { background: var(--bg-0); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--gap);
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: var(--text-3); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-3);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: var(--text-3); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-3); }
.dev4u-badge { border-radius: 3px; padding: 1px 4px; display: inline-flex; align-items: center; line-height: 1; }
.footer-dev a { display: inline-flex; align-items: center; gap: 5px; text-decoration: none; color: var(--text-3); transition: color var(--transition); }
.footer-dev a:hover { color: var(--text-2); }

/* ─── LANG TOGGLE ─────────────────────────────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  color: var(--text-3);
  transition: color var(--transition);
}
.nav-social-link:hover { color: var(--text-1); }

.lang-picker {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.15rem 0.5rem;
  border: 1.5px solid var(--border-l);
  border-radius: 100px;
}
.lang-opt {
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-3);
  background: none;
  border: none;
  padding: 0.15rem 0.3rem;
  cursor: pointer;
  transition: color var(--transition);
}
.lang-opt.active, .lang-opt:hover { color: var(--gold); }
.lang-sep { color: var(--border-l); font-size: 0.7rem; padding: 0 0.05rem; }

/* ─── INSTAGRAM SECTION ───────────────────────────────────────────────────── */
.instagram { position: relative; background: var(--bg-1); }
.ig-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(193, 53, 132, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ig-profile-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.ig-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.ig-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  padding: 3px;
}
.ig-avatar > svg {
  background: var(--bg-card);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  padding: 12px;
}
.ig-icon-badge {
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-card);
}
.ig-profile-info {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ig-handle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
}
.ig-name { font-size: 0.82rem; color: var(--text-3); }
.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  color: #fff;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-ig:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(188,24,136,0.35); }
.btn-ig-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  color: #c13584;
  border: 1.5px solid #c13584;
  transition: all var(--transition);
}
.btn-ig-outline:hover { background: rgba(193,53,132,0.08); transform: translateY(-2px); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 0;
}
.ig-post {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.ig-post img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.ig-post:hover img { transform: scale(1.06); }
.ig-post:hover .ig-post-overlay { opacity: 1; }
.ig-post:hover { border-color: rgba(193,53,132,0.5); }

/* ─── GALLERY ─────────────────────────────────────────────────────────────── */
.gallery { background: var(--bg-0); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { color: rgba(255,255,255,0.9); }
/* Placeholder when image is missing */
.gallery-item.no-img img { display: none; }
.gallery-item.no-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-card);
}
.gallery-item.no-img .gallery-placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-3);
  z-index: 1;
}
.gallery-item.no-img .gallery-placeholder-icon span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--gold);
  color: #0d0d0d;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 1;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
@media (max-width: 480px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ─── BLOG SECTION ───────────────────────────────────────────────────────── */
.blog-section { background: var(--bg-0); }
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { border-color: var(--border-l); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.blog-card__thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-1);
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }
.blog-card__body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.72rem; color: var(--text-3); }
.blog-card__cat { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card__title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text-1); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card__excerpt { font-size: 0.88rem; color: var(--text-3); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__link { font-size: 0.85rem; font-weight: 600; color: var(--gold); transition: color var(--transition); }
.blog-card__link:hover { color: var(--gold-l); }
.blog-card--skeleton { min-height: 300px; animation: skeleton-pulse 1.5s ease-in-out infinite; }
@keyframes skeleton-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@media (max-width: 900px) { .blog-posts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .blog-posts-grid { grid-template-columns: 1fr; } }

/* ─── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials { background: var(--bg-1); }

/* ─── Carousel wrapper ── */
.testimonials-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 3.5rem;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-track .testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: calc(50% - 1.5rem);
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--bg-card-h);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-l);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.carousel-dot:hover:not(.active) { background: var(--text-3); }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-l);
  transform: translateY(-4px);
}
.testimonial-stars {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-1);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .logo-desktop { display: none; }
  .logo-mobile  { display: block; }
  .gallery-grid,
  .gallery-grid-full { grid-template-columns: repeat(3, 1fr); }
  .testimonials-carousel { padding: 0 2.5rem; }

  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .ig-profile-row { padding: 1rem 1.25rem; }
  .btn-ig { font-size: 0.82rem; padding: 0.55rem 1rem; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    background: rgba(8,12,8,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border: none; padding-top: 1rem; }
  .btn-nav-cta { width: 100%; justify-content: center; padding: 0.75rem !important; }

  .about-grid   { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-img-frame { width: 260px; }

  .featured-wrap { grid-template-columns: 1fr; }

  .videos-grid { grid-template-columns: repeat(2, 1fr); }

  .newsletter-card { grid-template-columns: 1fr; }
  .partners-card { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 540px) {
  .testimonials-carousel { padding: 0; }
  .carousel-btn { display: none; }
  .videos-grid   { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid,
  .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
  .hero-stats    { flex-direction: column; gap: 0; width: auto; }
  .stat-divider  { width: 60px; height: 1px; }
  .footer-grid   { grid-template-columns: 1fr; }
  .ig-grid       { grid-template-columns: repeat(2, 1fr); }
  .ig-profile-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-ig        { width: 100%; justify-content: center; }
}
