/* ===================================================
   FIRSTBOX.LV – Main Stylesheet
   =================================================== */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold: #cd2026;
  --gold-light: #e04b50;
  --gold-dim: rgba(205,32,38,0.12);
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #252525;
  --light: #f5f5f5;
  --light-2: #ebebeb;
  --white: #ffffff;
  --text-dark: #111111;
  --text-mid: #555555;
  --text-light: #ffffff;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --nav-height: 72px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --promo-height: 40px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { font-weight: 400; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(205,32,38,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  margin-bottom: 56px;
}
.section-title h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}
.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(205,32,38,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205,32,38,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}

/* ===================================================
   PROMO BAR  (above nav)
   =================================================== */
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  min-height: var(--promo-height);
  height: auto;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  padding: 6px 40px 6px 16px;
  text-align: center;
}
.promo-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.promo-bar a:hover { opacity: 0.8; }
.promo-bar-sep {
  opacity: 0.4;
  display: inline-block;
  margin: 0 2px;
}
.promo-close {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px 8px;
  line-height: 1;
  transition: opacity var(--transition);
}
.promo-close:hover { opacity: 1; }
body.has-promo { --promo-offset: var(--promo-height); }
body.has-promo .nav { top: var(--promo-height); }
body.has-promo .nav-mobile { top: calc(var(--promo-height) + var(--nav-height)); }
body.has-promo .hero,
body.has-promo .page-hero { padding-top: var(--promo-height); }

/* ===================================================
   LOGO IMAGE
   =================================================== */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  /* Only show text logo as fallback */
}
.nav-logo-text span { color: var(--gold); }
/* When logo image is present, hide text */
.nav-logo-img + .nav-logo-text { display: none; }

/* ===================================================
   LANGUAGE SWITCHER
   =================================================== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.lang-btn.active,
.lang-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.lang-btn.active { color: var(--gold); }

/* ===================================================
   FIRSTBOX.LV EXTERNAL LINK IN NAV
   =================================================== */
.nav-ext-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 5px 10px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-ext-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}
.nav.scrolled .nav-links a { color: rgba(0,0,0,0.65); }
.nav.scrolled .nav-links a:hover { color: var(--text-dark); }
.nav.scrolled .nav-links a.active { color: var(--gold); font-weight: 600; }
.nav.scrolled .nav-links a.active::after { background: var(--gold); }
.nav.scrolled .nav-logo-text { color: var(--text-dark); }
.nav.scrolled .lang-switch { border-color: rgba(0,0,0,0.15); }
.nav.scrolled .lang-btn { color: rgba(0,0,0,0.5); }
.nav.scrolled .lang-btn.active { color: var(--gold); }
.nav.scrolled .nav-ext-link { color: rgba(0,0,0,0.45); border-color: rgba(0,0,0,0.15); }
.nav.scrolled .nav-ext-link:hover { color: var(--text-dark); border-color: rgba(0,0,0,0.3); }
.nav.scrolled .nav-burger span { background: var(--text-dark); }
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); font-weight: 600; }
.nav-cta { margin-left: 12px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  inset: var(--nav-height) 0 0 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-dark);
  font-size: 1.4rem;
  font-family: var(--font-heading);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

/* ===================================================
   HERO SECTION  (3D tour embed)
   =================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}
.hero-tour-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* Overlay gradient so top nav area stays readable */
.hero-overlay-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
/* Bottom overlay with CTA */
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 0 0 48px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  pointer-events: auto;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.hero-content .badge { margin-bottom: 12px; }
.hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 24px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  border-top: 1px solid rgba(0,0,0,0.07);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===================================================
   PRODUCTS SECTION
   =================================================== */
.products { background: var(--light); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
/* Placeholder for missing images */
.product-card-img.placeholder {
  background: var(--light-2);
}
.product-placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
  user-select: none;
}
.product-card-body {
  padding: 16px;
}
.product-card-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-dark);
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.product-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===================================================
   WHY US / SERVICES
   =================================================== */
.services { background: var(--light); }
.services .section-title h2 { color: var(--text-dark); }
.services .section-title p { color: var(--text-mid); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: rgba(205,32,38,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===================================================
   HOW IT WORKS / PROCESS
   =================================================== */
.process { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(205,32,38,0.08);
}
.step h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===================================================
   ABOUT STRIP
   =================================================== */
.about-strip {
  background: var(--light);
  overflow: hidden;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.about-strip-img {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.about-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-strip-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: var(--light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(0,0,0,0.15);
}
.about-strip-text {
  background: var(--gold);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-strip-text .badge { background: rgba(255,255,255,0.18); color: var(--white); border-color: rgba(255,255,255,0.3); }
.about-strip-text h2 { color: var(--white); margin-bottom: 20px; }
.about-strip-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-strip-text blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
}

/* ===================================================
   GALLERY STRIP
   =================================================== */
.gallery { background: var(--light-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light);
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(0,0,0,0.15);
  background: var(--light-2);
}

/* ===================================================
   CONTACT SECTION
   =================================================== */
.contact { background: var(--white); }
.contact .section-title h2 { color: var(--text-dark); }
.contact .section-title p { color: var(--text-mid); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.5;
}
.contact-detail-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-detail-text a {
  color: var(--text-mid);
  transition: color var(--transition);
}
.contact-detail-text a:hover { color: var(--gold); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--light-2);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

/* Contact Form */
.contact-form { }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(0,0,0,0.28);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(205,32,38,0.03);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 10px;
  text-align: center;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--light);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text-dark); }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-mid);
}
.footer-bottom a {
  color: var(--text-mid);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-vat {
  font-size: 0.75rem;
  color: var(--text-mid);
}

/* ===================================================
   PAGE HERO (Inner pages)
   =================================================== */
.page-hero {
  background: var(--gold);
  padding: calc(var(--nav-height) + 64px) 0 64px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.5); }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  background: var(--light-2);
}
.about-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.about-content-layout img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/5;
}
.about-text .badge { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--light-2);
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.value-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ===================================================
   BOX TYPES PAGE
   =================================================== */
.box-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.box-card {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.box-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(205,32,38,0.3);
}
.box-card-img {
  aspect-ratio: 1/1;
  background: var(--light-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform var(--transition);
}
.box-card:hover .box-card-img img { transform: scale(1.05); }
.box-card-body { padding: 20px; }
.box-card-code {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.box-card-body h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.box-samples-cta {
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-top: 56px;
}
.box-samples-cta h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.box-samples-cta p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.price-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 8px 24px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

/* ===================================================
   TOAST / NOTIFICATION
   =================================================== */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--white);
  color: var(--text-dark);
  padding: 14px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateX(0); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-content-layout { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; --promo-height: 36px; }
  .section-pad { padding: 64px 0; }
  .promo-bar { font-size: 0.72rem; padding: 6px 36px 6px 12px; gap: 0; flex-direction: column; }
  .promo-bar-sep { display: none; }
  .promo-bar a { display: inline-block; font-size: 0.7rem; margin-top: 2px; white-space: normal; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-grid { height: auto; }
  .gallery-item { height: 180px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-strip-text { padding: 48px 32px; }
  .about-content-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps::before { display: none; }
  .steps { gap: 32px; }
  .box-samples-cta { padding: 32px 24px; }
  #samples .container > div { grid-template-columns: 1fr !important; }
  .nav > .container .lang-switch { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
}
