/* ===== BOUND BY LOYALTY - PREMIUM DESIGN SYSTEM ===== */
/* Syne = editorial heading font, Inter = clean body */
/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  background: #07070c;
  color: #e0e0e0;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 800px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes glow { 0%,100% { box-shadow: 0 0 20px rgba(200,164,78,0.1); } 50% { box-shadow: 0 0 40px rgba(200,164,78,0.25); } }
@keyframes scrollHint { 0%,100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(10px); opacity: 1; } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 18px 0;
  background: rgba(7,7,12,0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(7,7,12,0.92);
  border-bottom-color: rgba(200,164,78,0.1);
}
.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: baseline; gap: 6px; z-index: 1001; }
.hero-logo { position: absolute; top: 88px; right: 48px; width: 140px; height: auto; z-index: 3; opacity: 0.9; pointer-events: none; }
.footer-logo-img { height: 72px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.85; }
.logo-bound { font-family: "Outfit",sans-serif; font-weight: 800; font-size: 1.4rem; color: #fff; letter-spacing: 3px; }
.logo-by { font-family: "Inter",sans-serif; font-weight: 300; font-size: 0.8rem; color: rgba(255,255,255,0.4); font-style: italic; }
.logo-loyalty { font-family: "Outfit",sans-serif; font-weight: 800; font-size: 1.4rem; color: #c8a44e; letter-spacing: 3px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: "Inter",sans-serif; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.65); letter-spacing: 0.5px;
  position: relative; transition: color 0.3s;
}
.nav-link::after {
  content: ""; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, #c8a44e, #e8d5a0); border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-store {
  background: linear-gradient(135deg, #c8a44e, #a8873a);
  color: #fff !important; padding: 8px 20px; border-radius: 8px;
  font-weight: 600; transition: all 0.3s;
}
.nav-store::after { display: none; }
.nav-store:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,78,0.3); }
.lang-switcher { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; }
.lang-active { color: #c8a44e; font-weight: 600; }
.lang-sep { color: rgba(255,255,255,0.2); }
.lang-opt { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.lang-opt:hover { color: #fff; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,12,0.5) 0%, rgba(7,7,12,0.7) 50%, rgba(7,7,12,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px;
  animation: fadeUp 1s ease-out;
}
.hero-eyebrow {
  font-family: "Inter",sans-serif; font-size: 0.85rem; font-weight: 500;
  color: #c8a44e; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 20px; animation: fadeIn 0.8s ease-out 0.2s both;
}
.hero-title {
  font-family: "Outfit",sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px;
  animation: fadeUp 1s ease-out 0.3s both;
}
.hero-gradient {
  background: linear-gradient(135deg, #c8a44e, #e8d5a0, #c8a44e);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero-sub {
  font-family: "Inter",sans-serif; font-size: 1.1rem; color: rgba(255,255,255,0.5);
  letter-spacing: 3px; margin-bottom: 36px;
  animation: fadeUp 1s ease-out 0.5s both;
}
.hero-cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.7s both;
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero-scroll-hint span {
  display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.25);
  border-radius: 14px; position: relative;
}
.hero-scroll-hint span::after {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: #c8a44e; border-radius: 3px;
  animation: scrollHint 2s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 10px;
  font-family: "Outfit",sans-serif; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.5px; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer; border: none; position: relative; overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, #c8a44e, #a8873a);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(200,164,78,0.35); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: #c8a44e; color: #c8a44e; transform: translateY(-3px); }
.btn-outline-light {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline-light:hover { border-color: #c8a44e; color: #c8a44e; transform: translateY(-3px); }
.btn-gold {
  background: linear-gradient(135deg, #c8a44e, #dbb960, #c8a44e);
  background-size: 200% auto;
  color: #0a0a0f; font-weight: 700; letter-spacing: 1px;
}
.btn-gold:hover { background-position: right center; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(200,164,78,0.4); }
.btn-sm-outline { padding: 8px 20px; font-size: 0.8rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; color: rgba(255,255,255,0.6); }
.btn-sm-outline:hover { border-color: #c8a44e; color: #c8a44e; }
.btn-full { width: 100%; text-align: center; }

/* ===== QUALITY BANNER ===== */
.quality-banner {
  padding: 80px 24px;
  background: linear-gradient(180deg, rgba(7,7,12,0.98) 0%, #0e0e18 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quality-banner::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, #c8a44e, transparent);
}
.qb-inner { max-width: 700px; margin: 0 auto; }
.qb-icon {
  font-size: 2rem; color: #c8a44e; margin-bottom: 16px;
  animation: pulse 3s ease-in-out infinite;
}
.qb-title {
  font-family: "Outfit",sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: #fff; letter-spacing: 4px; margin-bottom: 20px;
}
.qb-text {
  font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.6);
}

/* ===== BBL SHOP PROMO ===== */
.shop-promo {
  padding: 100px 24px;
  background: linear-gradient(135deg, #0a0a0f 0%, #12121e 50%, #0a0a0f 100%);
  position: relative;
  overflow: hidden;
}
.shop-promo::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,78,0.06) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.shop-promo-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
}
.shop-promo-tag {
  font-family: "Inter",sans-serif; font-size: 0.85rem; font-weight: 500;
  color: #c8a44e; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.shop-promo-title {
  font-family: "Outfit",sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 16px;
}
.shop-promo-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.55); margin-bottom: 32px; line-height: 1.6;
}
.shop-promo-gallery {
  display: grid; grid-template-columns: 2fr 1fr; gap: 12px;
}
.shop-img-main { border-radius: 16px; overflow: hidden; }
.shop-img-main img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 16px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-img-main:hover img { transform: scale(1.05); }
.shop-img-side { display: flex; flex-direction: column; gap: 12px; }
.shop-img-side img {
  width: 100%; flex: 1; object-fit: cover; border-radius: 12px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-img-side img:hover { transform: scale(1.05); }

/* ===== SERVICES SECTION ===== */
.section-title-center {
  font-family: "Outfit",sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: #fff; text-align: center;
  margin-bottom: 56px; letter-spacing: 3px;
  position: relative;
}
.section-title-center::after {
  content: ""; display: block; width: 60px; height: 3px; margin: 16px auto 0;
  background: linear-gradient(90deg, #c8a44e, #e8d5a0); border-radius: 3px;
}
.services-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0e0e18 0%, #07070c 100%);
}
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.service-card {
  display: block; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 20px;
  overflow: hidden; transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none; position: relative;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(200,164,78,0.05), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,164,78,0.25);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 30px rgba(200,164,78,0.08);
}
.svc-img-wrap { height: 240px; overflow: hidden; }
.svc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .svc-img-wrap img { transform: scale(1.08); }
.svc-body { padding: 28px; }
.svc-title {
  font-family: "Outfit",sans-serif; font-size: 1.15rem; font-weight: 700;
  color: #fff; letter-spacing: 1px; margin-bottom: 10px;
}
.svc-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 12px;
}
.svc-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,164,78,0.1); color: #c8a44e; font-size: 1.2rem;
  transition: all 0.3s;
}
.service-card:hover .svc-arrow { background: #c8a44e; color: #0a0a0f; transform: translateX(4px); }

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  font-family: "Inter",sans-serif; font-size: 0.8rem; font-weight: 600;
  color: #c8a44e; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: "Outfit",sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; color: #fff; margin-bottom: 48px; line-height: 1.2;
}
.accent { color: #c8a44e; }

/* ===== PROJECTS PREVIEW ===== */
.projects-preview {
  padding: 100px 24px;
  background: linear-gradient(180deg, #07070c 0%, #0a0a14 50%, #07070c 100%);
}
.projects-masonry {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px;
}
.proj-item {
  position: relative; border-radius: 16px; overflow: hidden; cursor: pointer;
  height: 320px;
}
.proj-item.proj-large { grid-row: span 2; height: auto; }
.proj-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.proj-item:hover img { transform: scale(1.08); }
.proj-overlay {
  position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.proj-item:hover .proj-overlay { opacity: 1; }
.proj-tag {
  display: inline-block; padding: 4px 12px; background: rgba(200,164,78,0.2);
  border-radius: 20px; font-size: 0.7rem; color: #c8a44e; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; width: fit-content;
}
.proj-overlay h3 { font-family: "Outfit",sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.proj-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.projects-cta { text-align: center; }

/* ===== STATS ===== */
.stats-section {
  padding: 80px 24px;
  background: #0a0a0f;
  border-top: 1px solid rgba(200,164,78,0.08);
  border-bottom: 1px solid rgba(200,164,78,0.08);
}
.stats-grid {
  max-width: 1100px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.stat-item { text-align: center; flex: 1; min-width: 140px; }
.stat-num {
  font-family: "Outfit",sans-serif; font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, #c8a44e, #e8d5a0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 8px; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.08); }

/* ===== PARTNERSHIP ===== */
.partnership-section { padding: 100px 24px; background: #0a0a0f; }
.partnership-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.partnership-img-stack { position: relative; height: 420px; }
.pimg { position: absolute; border-radius: 16px; object-fit: cover; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.pimg-back { width: 75%; height: 75%; top: 0; left: 0; }
.pimg-front {
  width: 65%; height: 55%; bottom: 0; right: 0;
  border: 3px solid rgba(200,164,78,0.2);
  animation: float 6s ease-in-out infinite;
}
.partnership-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.partnership-list { margin-bottom: 32px; }
.partnership-list li {
  display: flex; gap: 14px; margin-bottom: 18px; padding: 16px 20px;
  background: rgba(255,255,255,0.02); border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
}
.partnership-list li:hover { border-color: rgba(200,164,78,0.2); background: rgba(200,164,78,0.03); transform: translateX(8px); }
.plist-icon { color: #c8a44e; font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.partnership-list li div { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.partnership-list li strong { color: #fff; }

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 120px 24px; text-align: center;
  background: linear-gradient(135deg, #0e0e18 0%, #141428 50%, #0e0e18 100%);
  position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,164,78,0.04) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: "Outfit",sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: #fff; margin-bottom: 16px;
}
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 36px; }

/* ===== FOOTER ===== */
.footer { background: #050508; border-top: 1px solid rgba(255,255,255,0.04); padding: 60px 24px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.4); margin-top: 12px; }
.footer-links h4, .footer-contact h4 { font-family: "Outfit",sans-serif; font-size: 0.9rem; font-weight: 600; color: #c8a44e; margin-bottom: 16px; letter-spacing: 1px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-links a:hover { color: #c8a44e; }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-legal:hover { color: #c8a44e; }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  min-height: 40vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 60px;
  background: linear-gradient(135deg, #07070c 0%, #12121e 50%, #07070c 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,78,0.05) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}
.page-hero.compact { min-height: 28vh; }
.page-hero::after {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, #c8a44e, transparent);
}
.page-hero-content { max-width: 700px; position: relative; z-index: 1; animation: fadeUp 0.8s ease-out; }

/* ===== TEXT SECTION ===== */
.text-section { padding: 80px 24px; background: #07070c; }
.text-section.dark { background: #0e0e18; }
.lead-text {
  font-family: "Inter",sans-serif; font-size: 1.15rem; line-height: 1.8;
  color: rgba(255,255,255,0.7); text-align: center;
}

/* ===== SERVICES DETAIL ===== */
.services-detail { padding: 60px 24px 100px; background: #07070c; }
.svc-detail-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-bottom: 80px; padding: 36px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(200,164,78,0.06);
  border-radius: 24px; transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.svc-detail-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,164,78,0.02), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.svc-detail-card:hover::before { opacity: 1; }
.svc-detail-card:hover { border-color: rgba(200,164,78,0.2); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.svc-detail-card.reverse .svc-detail-img { order: 2; }
.svc-detail-card.reverse .svc-detail-body { order: 1; }
.svc-detail-img { border-radius: 16px; overflow: hidden; }
.svc-detail-img img { width: 100%; height: 360px; object-fit: cover; border-radius: 16px; transition: transform 0.7s; }
.svc-detail-card:hover .svc-detail-img img { transform: scale(1.04); }
.svc-num {
  font-family: "Outfit",sans-serif; font-size: 3.5rem; font-weight: 900;
  background: linear-gradient(135deg, rgba(200,164,78,0.12), rgba(200,164,78,0.03));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 8px;
}
.svc-detail-body h2 {
  font-family: "Outfit",sans-serif; font-size: 1.8rem; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.svc-detail-body p { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.65); }

/* ===== FAQ ===== */
.faq-section { padding: 80px 24px; background: #07070c; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden; transition: all 0.3s;
}
.faq-item[open] { border-color: rgba(200,164,78,0.25); background: rgba(200,164,78,0.02); }
.faq-item summary {
  padding: 20px 24px; font-family: "Outfit",sans-serif; font-size: 1.05rem;
  font-weight: 600; color: #fff; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; transition: all 0.3s;
}
.faq-item summary:hover { background: rgba(200,164,78,0.04); }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: #c8a44e; transition: transform 0.3s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 24px 20px; font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.6); }

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 80px 24px; background: #07070c; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; max-width: 1100px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  padding: 24px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 16px;
  transition: all 0.4s; position: relative; overflow: hidden;
}
.contact-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,164,78,0.03), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.contact-card:hover::before { opacity: 1; }
.contact-card:hover { border-color: rgba(200,164,78,0.2); transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.3); }
.contact-icon { font-size: 1.6rem; margin-bottom: 8px; }
.contact-card h3 { font-family: "Outfit",sans-serif; font-size: 1rem; font-weight: 600; color: #c8a44e; margin-bottom: 6px; position: relative; z-index: 1; }
.contact-card a, .contact-card p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; position: relative; z-index: 1; }
.contact-card a:hover { color: #c8a44e; }
.contact-form-wrap {
  padding: 40px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 24px;
  position: relative; overflow: hidden;
}
.contact-form-wrap::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,78,0.04) 0%, transparent 70%);
}
.contact-form-wrap h2 { font-family: "Outfit",sans-serif; font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 28px; position: relative; z-index: 1; }
.form-group { margin-bottom: 20px; position: relative; z-index: 1; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.5); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; color: #fff; font-family: "Inter",sans-serif; font-size: 1rem;
  transition: all 0.3s; outline: none; box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: #c8a44e; background: rgba(200,164,78,0.04);
  box-shadow: 0 0 20px rgba(200,164,78,0.08);
}
.form-group select option { background: #1a1a2e; color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== PROJECTS FULL PAGE ===== */
.projects-full { padding: 60px 24px 40px; background: #07070c; }
.project-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  margin-bottom: 60px; padding: 36px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
  border-radius: 24px; transition: all 0.5s;
}
.project-showcase:hover { border-color: rgba(200,164,78,0.15); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.project-showcase.reverse .project-showcase-img { order: 2; }
.project-showcase.reverse .project-showcase-body { order: 1; }
.project-showcase-img { display: grid; gap: 12px; }
.project-showcase-img img { width: 100%; height: 280px; object-fit: cover; border-radius: 16px; transition: transform 0.5s; }
.project-showcase:hover .project-showcase-img img { transform: scale(1.03); }
.project-showcase-body h3 { font-family: "Outfit",sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.project-showcase-body p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.project-tags span {
  padding: 6px 16px; background: rgba(200,164,78,0.08);
  border: 1px solid rgba(200,164,78,0.15); border-radius: 24px;
  font-size: 0.8rem; color: #c8a44e; font-weight: 500; transition: all 0.3s;
}
.project-tags span:hover { background: rgba(200,164,78,0.15); }
.projects-gallery-section { padding: 60px 24px 80px; background: #0e0e18; }
.projects-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 0.85rem; color: #fff; font-weight: 500;
}

/* ===== LEGAL ===== */
.legal-section { padding: 60px 24px 100px; background: #07070c; }
.legal-section h2 { font-family: "Outfit",sans-serif; font-size: 1.6rem; font-weight: 700; color: #c8a44e; margin-top: 48px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(200,164,78,0.12); }
.legal-section h2:first-child { margin-top: 0; }
.legal-block { margin-bottom: 24px; padding: 20px 24px; background: rgba(255,255,255,0.015); border-radius: 14px; border-left: 3px solid rgba(200,164,78,0.15); }
.legal-block h3 { font-family: "Outfit",sans-serif; font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.legal-block p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.legal-block a { color: #c8a44e; }
.legal-block a:hover { text-decoration: underline; }
.legal-update { margin-top: 40px; font-size: 0.85rem; color: rgba(255,255,255,0.35); text-align: center; }

/* ===== RESPONSIVE ===== */
@media (min-width: 901px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(7,7,12,0.98); backdrop-filter: blur(20px);
    padding: 80px 32px 32px; transition: right 0.4s;
    border-left: 1px solid rgba(200,164,78,0.1);
  }
  .nav-links.active { right: 0; }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 14px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-link::after { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .shop-promo-inner { grid-template-columns: 1fr; gap: 40px; }
  .shop-promo-gallery { grid-template-columns: 1fr; }
  .shop-img-side { flex-direction: row; }
  .shop-img-side img { height: 200px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-masonry { grid-template-columns: repeat(2, 1fr); }
  .proj-item.proj-large { grid-row: span 1; height: 320px; }
  .partnership-inner { grid-template-columns: 1fr; gap: 40px; }
  .partnership-img-stack { height: 320px; }
  .stats-grid { justify-content: center; }
  .stat-divider { display: none; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-detail-card { grid-template-columns: 1fr; }
  .svc-detail-card.reverse .svc-detail-img, .svc-detail-card.reverse .svc-detail-body { order: unset; }
  .contact-grid { grid-template-columns: 1fr; }
  .project-showcase { grid-template-columns: 1fr; }
  .project-showcase.reverse .project-showcase-img, .project-showcase.reverse .project-showcase-body { order: unset; }
  .projects-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .projects-masonry { grid-template-columns: 1fr; }
  .shop-img-side { flex-direction: column; }
  .shop-img-side img { height: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero { min-height: 30vh; padding: 100px 20px 40px; }
  .projects-gallery { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .svc-detail-img img { height: 260px; }
}

/* ===== PREMIUM POLISH ===== */

/* Film grain texture overlay */
body::after {
  content: "";
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #c8a44e, #e8d5a0, #c8a44e);
  background-size: 200% auto;
  z-index: 9999;
  animation: shimmer 4s linear infinite;
  transition: width 0.12s linear;
  pointer-events: none;
}

/* Floating action buttons */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 890;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.float-btn:hover { transform: translateY(-4px) scale(1.1); }
.float-btn-wa { background: #25D366; }
.float-btn-wa:hover { box-shadow: 0 10px 28px rgba(37,211,102,0.4); }
.float-btn-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.float-btn-ig:hover { box-shadow: 0 10px 28px rgba(220,39,67,0.4); }
@media (max-width: 600px) {
  .float-actions { right: 16px; bottom: 20px; }
  .float-btn { width: 44px; height: 44px; }
}

/* Footer brand: flex row for logo, column layout for rest */
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-brand-logo { display: flex; align-items: baseline; gap: 5px; margin-bottom: 10px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.5; margin: 0; }

/* Footer social icons */
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  transition: all 0.3s;
  flex-shrink: 0;
}
.footer-social a svg { fill: currentColor; display: block; }
.footer-social a:hover {
  background: rgba(200,164,78,0.12);
  border-color: rgba(200,164,78,0.3);
  color: #c8a44e;
  transform: translateY(-2px);
}

/* Footer contact links */
.footer-contact-link {
  display: block; font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
  transition: color 0.3s;
}
.footer-contact-link:hover { color: #c8a44e; }
.footer-contact .btn-sm-outline { margin-top: 12px; display: inline-block; }

/* Quality banner title with decorative lines */
.qb-title-row {
  display: flex; align-items: center; gap: 18px;
  justify-content: center; margin-bottom: 20px;
}
.qb-deco-line {
  height: 1px; min-width: 40px; flex: 1; max-width: 80px;
  background: linear-gradient(90deg, transparent, #c8a44e);
  flex-shrink: 0;
}
.qb-deco-line.right { background: linear-gradient(90deg, #c8a44e, transparent); }
.qb-title { margin-bottom: 0 !important; }
@media (max-width: 700px) { .qb-deco-line { display: none; } }

/* Hero buttons — stronger presence */
.btn-primary { box-shadow: 0 4px 24px rgba(200,164,78,0.25); }
.btn-outline { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); background: rgba(255,255,255,0.05); }

/* Subtle golden separator between hero and next section */
.quality-banner {
  border-top: 1px solid rgba(200,164,78,0.08);
}

/* ===== IMAGE COMPOSITION / OBJECT-POSITION ===== */
img[src*="masina"] { object-position: center 62%; }
img[src*="press.jpg"] { object-position: center 48%; }
img[src*="wm.jpg"] { object-position: center 55%; }
img[src*="img1.jpg"] { object-position: 68% 42%; }
img[src*="img2.jpg"] { object-position: center 38%; }
img[src*="img3.jpg"] { object-position: center 30%; }
img[src*="img4.jpg"] { object-position: center 28%; }
img[src*="img5.jpg"] { object-position: center 28%; }
img[src*="img6.jpg"] { object-position: center 25%; }
img[src*="img7.jpg"] { object-position: center 55%; }
img[src*="pxl1"] { object-position: center 18%; }
img[src*="pxl2"] { object-position: center 22%; }

/* ===== PROJECT OVERLAY: always visible on touch/mobile ===== */
@media (max-width: 900px) {
  .proj-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.88) 100%);
  }
  .proj-overlay h3 { font-size: 0.92rem; margin-bottom: 2px; }
  .proj-overlay p { font-size: 0.76rem; }
}

/* ===== STATS: larger, more dramatic numbers ===== */
.stat-num { font-size: 4rem; }
@media (max-width: 600px) { .stat-num { font-size: 2.8rem; } }

/* ===== SERVICE CARD: taller images on desktop ===== */
.svc-detail-img img { height: 400px; }
@media (max-width: 768px) { .svc-detail-img img { height: 270px; } }

/* ===== GLOBAL TYPOGRAPHY POLISH ===== */
h1, h2 { letter-spacing: -0.025em; text-wrap: balance; }
h3 { text-wrap: balance; }
.hero-title { letter-spacing: -0.04em; }
.stat-num { letter-spacing: -0.03em; }
.section-title { letter-spacing: -0.03em; }
.qb-title { font-size: clamp(1.3rem, 3.5vw, 2rem); letter-spacing: 0.06em; }
.qb-text { font-size: 1.05rem; max-width: 660px; margin-left: auto; margin-right: auto; line-height: 1.85; }
.section-label { font-size: 0.72rem; letter-spacing: 0.18em; }

/* ===== CLIENTS TRUST BAR ===== */
.clients-bar {
  padding: 22px 24px;
  background: rgba(255,255,255,0.012);
  border-top: 1px solid rgba(200,164,78,0.07);
  border-bottom: 1px solid rgba(200,164,78,0.07);
}
.clients-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  justify-content: center;
}
.clients-label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); font-weight: 500; white-space: nowrap; flex-shrink: 0;
  padding-right: 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.clients-list {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.clients-list span {
  font-family: "Outfit", sans-serif; font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.35); white-space: nowrap;
  transition: color 0.3s;
  cursor: default;
}
.clients-list span:hover { color: rgba(200,164,78,0.65); }
.c-sep { color: rgba(200,164,78,0.18) !important; }
@media (max-width: 600px) { .clients-label { display: none; } }

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 110px 24px;
  background: linear-gradient(180deg, #07070c 0%, #090910 50%, #07070c 100%);
  border-top: 1px solid rgba(200,164,78,0.06);
  border-bottom: 1px solid rgba(200,164,78,0.06);
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 60px;
}
.process-step {
  padding: 36px 28px 32px;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  position: relative;
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
}
.process-step:hover {
  background: rgba(200,164,78,0.04);
  border-color: rgba(200,164,78,0.2);
  transform: translateY(-6px);
}
.process-step::before {
  content: '';
  position: absolute; top: 0; left: 28px; right: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,78,0.25), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.process-step:hover::before { opacity: 1; }
.process-num {
  font-family: "Outfit",sans-serif; font-size: 4.5rem; font-weight: 900;
  line-height: 1; color: rgba(200,164,78,0.1); margin-bottom: 18px;
  letter-spacing: -0.05em;
}
.process-title {
  font-family: "Outfit",sans-serif; font-size: 1.05rem; font-weight: 700;
  color: #fff; margin-bottom: 12px; letter-spacing: -0.01em;
}
.process-text {
  font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.45);
}
@media (max-width: 900px) {
  .process-section { padding: 80px 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

/* ===== CTA SECTION UPGRADE ===== */
.contact-cta {
  position: relative; overflow: hidden;
  background: #07070c;
}
.cta-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.cta-bg-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
  opacity: 0.06; filter: blur(4px) grayscale(30%);
}
.contact-cta::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(200,164,78,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(200,164,78,0.03) 0%, transparent 80%);
  pointer-events: none;
}
.contact-cta .cta-content { position: relative; z-index: 2; }
.cta-quote {
  font-family: "Outfit", sans-serif; font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.55); max-width: 600px; margin: 0 auto 10px;
  line-height: 1.6; text-wrap: balance; letter-spacing: -0.01em;
}
.cta-quote-author {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(200,164,78,0.5); margin-bottom: 44px;
}
.cta-btn-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px;
}
.cta-btn-row .btn-outline {
  font-size: 0.9rem; padding: 13px 26px;
}

/* ===== PARTNERSHIP SECTION BORDER ===== */
.partnership-section {
  border-top: 1px solid rgba(200,164,78,0.06);
}

/* ===== HERO: left-aligned on desktop ===== */
@media (min-width: 900px) {
  .hero-content {
    text-align: left;
    align-items: flex-start;
    padding-left: 7vw;
    max-width: 100%;
  }
  .hero-eyebrow { text-align: left; }
  .hero-cta-row { justify-content: flex-start; }
  .hero-sub { text-align: left; }
}

/* ===== QUALITY BANNER: FULL-WIDTH TYPOGRAPHIC STATEMENT (desktop) ===== */
@media (min-width: 900px) {
  .quality-banner { padding: 0; overflow: hidden; }
  .quality-banner .section-bg-text { display: none; }
  .qb-inner { max-width: 100%; padding: 0; }
  .qb-icon { display: none; }
  .qb-title-row {
    display: block;
    border-bottom: 1px solid rgba(200,164,78,0.07);
    padding: 0;
    margin: 0;
  }
  .qb-deco-line { display: none; }
  .qb-title {
    display: block;
    font-size: clamp(58px, 12vw, 180px);
    letter-spacing: -0.05em;
    line-height: 0.88;
    text-align: center;
    padding: 48px 40px 44px;
    margin: 0;
    color: #fff;
    text-wrap: balance;
  }
  .qb-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 56px 24px 80px;
    text-align: center;
    display: block;
  }
}

/* ===== MARQUEE TICKER ===== */
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-strip {
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(200,164,78,0.1);
  border-bottom: 1px solid rgba(200,164,78,0.1);
  background: rgba(200,164,78,0.022);
  cursor: default;
}
.ticker-track {
  display: flex; gap: 48px; white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-strip:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(200,164,78,0.45);
  flex-shrink: 0;
}
.tdot { color: rgba(200,164,78,0.2) !important; letter-spacing: 0 !important; }

/* ===== SECTION DECORATIVE BACKGROUND TEXT ===== */
.section-bg-text {
  position: absolute;
  font-family: "Outfit", sans-serif;
  font-size: clamp(70px, 17vw, 210px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,164,78,0.09);
  text-stroke: 1px rgba(200,164,78,0.09);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* quality-banner has its own bg text positioning */
.quality-banner { position: relative; overflow: hidden; }
.quality-banner .section-bg-text { top: 55%; }
.projects-preview { position: relative; overflow: hidden; }
.projects-preview .section-bg-text { top: 30%; left: 60%; }
/* make sure inner content sits above bg text */
.quality-banner .qb-inner,
.projects-preview .container { position: relative; z-index: 1; }

/* ===== HERO: bigger, bolder on desktop ===== */
@media (min-width: 900px) {
  .hero-title { font-size: clamp(4.5rem, 8.5vw, 9.5rem); line-height: 1.02; }
  .hero-content { max-width: 960px; }
}

/* ===== QUALITY BANNER: more dramatic ===== */
.quality-banner { padding: 130px 24px 150px; }
.qb-inner { max-width: 820px; }
.qb-title { font-size: clamp(1.6rem, 4.5vw, 3rem); }
.qb-icon { font-size: 1.6rem; opacity: 0.5; margin-bottom: 24px; letter-spacing: 0.3em; }

/* ===== SERVICES GRID: 4 columns desktop, taller images ===== */
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .svc-img-wrap img { height: 310px; }
  .svc-title { font-size: 0.9rem; }
}
@media (max-width: 899px) {
  .svc-img-wrap img { height: 260px; }
}

/* ===== STATS: gold accent bar above numbers ===== */
.stats-section {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
}
.stats-section::before {
  content: '';
  display: block;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, #c8a44e, #e8d5a0);
  margin: 0 auto 56px;
  border-radius: 2px;
}
.stat-num { font-size: 4.2rem; }
@media (max-width: 700px) { .stat-num { font-size: 2.4rem; } }

/* ===== PROCESS: deeper bg text ===== */
.process-section { position: relative; overflow: hidden; }

/* ===== PARTNERSHIP: image stack bigger on desktop ===== */
@media (min-width: 900px) {
  .partnership-img-stack { height: 480px; }
  .pimg-back { width: 78%; height: 78%; }
}

/* ===== FOOTER: gold gradient separator ===== */
.footer {
  border-top: 1px solid transparent;
  background-image: linear-gradient(#07070c, #07070c),
    linear-gradient(90deg, transparent 0%, rgba(200,164,78,0.25) 50%, transparent 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* ===== MOBILE POLISH (max 768px) ===== */
@media (max-width: 768px) {
  /* Service cards – kratší obrázky */
  .svc-img-wrap img { height: 170px; }

  /* Projekt fotky – menší výška */
  .proj-item img { height: 190px; object-fit: cover; }
  .proj-item.proj-large img { height: 220px; }

  /* Process – 2 sloupce místo 4 pod sebou */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; }
  .process-num { font-size: 3rem; }

  /* Quality banner – méně prázdného prostoru */
  .quality-banner { padding: 56px 0; }
  .qb-title { font-size: clamp(32px, 11vw, 56px); padding: 24px 20px 20px; }
  .qb-text { padding: 0 20px 48px; }

  /* Partnership stack – menší výška */
  .partnership-img-stack { height: 240px; }
  .pimg-back { width: 72%; height: 72%; }
  .pimg-front { width: 62%; height: 62%; }

  /* Stats – méně paddingu */
  .stats-section { padding-top: 56px; padding-bottom: 56px; }

  /* Sections obecně – méně paddingu */
  .services-section { padding: 56px 0; }
  .projects-preview { padding: 56px 0; }
  .process-section { padding: 56px 0; }
}

/* ===== TYPOGRAPHY UPGRADE ===== */
/* Bebas Neue – velká display nadpisy (hero, sekce, stats) */
h1,
.hero-title,
.qb-title,
.section-title,
.section-title-center,
.cta-title,
.stat-num,
.warum-headline,
.page-hero-content h1,
.svc-title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

/* Syne – h2/h3 mixed case, warum body, navbar, footer logo */
h2, h3, h4,
.shop-promo-title,
.process-title,
.warum-body h3,
.nav-logo,
.logo-bound,
.logo-loyalty,
.footer-brand-logo,
.partnership-list strong {
  font-family: "Syne", sans-serif;
}

/* Navbar – store odkaz jako zlaté tlačítko */
.nav-store {
  background: #c8a44e !important;
  color: #07070c !important;
  padding: 5px 14px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-family: "Syne", sans-serif !important;
  letter-spacing: 0.02em !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-store:hover {
  background: #e8d5a0 !important;
  transform: translateY(-1px) !important;
}

/* Service card – image zoom + border glow on hover */
.service-card { transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s; }
.service-card:hover { box-shadow: 0 0 0 1px rgba(200,164,78,0.35), 0 24px 48px rgba(0,0,0,0.5); }
.service-card .svc-img-wrap { overflow: hidden; }
.service-card .svc-img-wrap img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.service-card:hover .svc-img-wrap img { transform: scale(1.07); }

/* Project items – stärker hover */
.proj-item { overflow: hidden; }
.proj-item img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.proj-item:hover img { transform: scale(1.05); }

/* ===== WARUM BBL SECTION ===== */
.warum-bbl {
  padding: 100px 0 80px;
  border-top: 1px solid rgba(200,164,78,0.08);
}
.warum-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 56px;
  line-height: 1;
}
.warum-list { display: flex; flex-direction: column; }
.warum-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}
.warum-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
.warum-row:hover { border-color: rgba(200,164,78,0.2); }
.warum-row:hover .warum-num { color: #c8a44e; }
.warum-num {
  font-size: 0.78rem;
  color: rgba(200,164,78,0.4);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: color 0.3s;
  align-self: flex-start;
  padding-top: 4px;
}
.warum-body h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #f0ebe0;
}
.warum-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 520px;
}
.warum-link {
  font-size: 0.82rem;
  color: rgba(200,164,78,0.5);
  font-family: "Syne", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.2s, letter-spacing 0.2s;
}
.warum-link:hover { color: #c8a44e; letter-spacing: 0.1em; }

@media (max-width: 768px) {
  .warum-bbl { padding: 64px 0 48px; }
  .warum-headline { font-size: clamp(2.2rem, 9vw, 3.2rem); margin-bottom: 32px; }
  .warum-row { grid-template-columns: 40px 1fr; gap: 16px; padding: 24px 0; }
  .warum-link { display: none; }
  .warum-body p { font-size: 0.85rem; }
}

/* ===== MAGNETIC BTN – JS přidá třídu, styl je připraven ===== */
.btn { will-change: transform; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), background 0.25s, color 0.25s, box-shadow 0.25s; }

/* Lang switcher */
.lang-switcher .lang-active-txt {
  color: #c8a44e;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.lang-switcher .lang-current {
  color: #c8a44e !important;
  font-weight: 600;
}

/* Navbar logo – Syne weight boost */
.logo-bound { font-weight: 800; }
.logo-loyalty { font-weight: 800; }
