/* ═══════════════════════════════════════════
   Victory Pro Deck Builders – Production CSS
   ═══════════════════════════════════════════ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Lato', sans-serif; color: #fff; background-color: #0f1219; overflow-x: hidden; line-height: 1.6; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }

/* ── Sticky Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s ease;
  background-color: rgba(15, 18, 25, 0.45);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background-color: rgba(15, 18, 25, 0.92);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
@media (min-width: 640px) { .header-inner { height: 72px; padding: 0 32px; } }

.logo-link { display: inline-block; }
.logo-img { width: 150px; height: auto; object-fit: contain; }

/* Desktop Nav */
.desktop-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.nav-link {
  color: rgba(255,255,255,0.8); font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.3s; background: transparent; border: none;
  font-family: 'Lato', sans-serif;
}
.nav-link:hover { color: #C9A96E; }
.nav-cta {
  display: inline-block; padding: 10px 20px; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  background-color: #C9A96E; color: #1a1a1a; border-radius: 3px; border: none;
  transition: filter 0.3s; font-family: 'Lato', sans-serif;
}
.nav-cta:hover { filter: brightness(1.1); }

/* Mobile Menu */
.mobile-toggle {
  display: block; background: transparent; border: none; padding: 8px;
  color: rgba(255,255,255,0.8);
}
.mobile-toggle:hover { color: #fff; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-menu {
  display: none; padding: 0 20px 20px; flex-direction: column; gap: 16px;
  background-color: rgba(15, 18, 25, 0.95);
}
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-nav-link {
  color: rgba(255,255,255,0.8); font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.3s; background: transparent;
  border: none; text-align: left; padding: 8px 0;
}
.mobile-nav-link:hover { color: #C9A96E; }
.mobile-cta {
  display: block; width: 100%; padding: 12px 20px; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  background-color: #C9A96E; color: #1a1a1a; border-radius: 3px; border: none;
  text-align: center;
}

/* ── Hero Section ── */
.hero { position: relative; min-height: 100vh; width: 100%; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background-color: rgba(10, 15, 25, 0.55); }
.hero-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 192px;
  background: linear-gradient(to bottom, transparent, rgba(15, 18, 25, 1));
}
@media (min-width: 640px) { .hero-gradient { height: 256px; } }
.hero-content { position: relative; z-index: 10; padding-top: 96px; }
@media (min-width: 640px) { .hero-content { padding-top: 128px; } }
.hero-text { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 20px; }
@media (min-width: 640px) { .hero-text { padding: 64px 32px 32px; } }
@media (min-width: 768px) { .hero-text { padding: 80px 32px 32px; } }
.hero-title {
  color: #fff; font-size: 2.25rem; line-height: 1.1; max-width: 56rem;
  font-family: 'Playfair Display', serif; font-weight: 500;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-subtitle {
  color: rgba(255,255,255,0.9); font-size: 1.25rem; margin-top: 12px; max-width: 48rem;
  font-family: 'Playfair Display', serif; font-weight: 400; font-style: italic;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.5rem; margin-top: 16px; } }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.875rem; } }
.hero-cta {
  margin-top: 32px; padding: 16px 32px; font-size: 14px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700; font-family: 'Lato', sans-serif;
  background-color: #C9A96E; color: #1a1a1a; border-radius: 4px;
  border: 1px solid rgba(201,169,110,0.6); box-shadow: 0 4px 20px rgba(201,169,110,0.25);
  cursor: pointer;
}
@media (min-width: 640px) { .hero-cta { margin-top: 40px; padding: 20px 48px; font-size: 16px; } }
.transition-text {
  width: 100%; text-align: center; padding: 32px 20px;
}
@media (min-width: 640px) { .transition-text { padding: 48px 32px; } }
.transition-text p {
  color: rgba(255,255,255,0.85); font-size: 1.125rem; max-width: 42rem;
  margin: 0 auto; line-height: 1.7; font-family: 'Lato', sans-serif; font-weight: 300;
}
@media (min-width: 640px) { .transition-text p { font-size: 1.25rem; } }
@media (min-width: 768px) { .transition-text p { font-size: 1.5rem; } }

/* Typeform Container */
.typeform-wrapper {
  width: 100%; display: flex; justify-content: center; padding: 0 16px 64px;
}
@media (min-width: 640px) { .typeform-wrapper { padding: 0 24px 96px; } }
.typeform-box {
  width: 100%; max-width: 672px; border-radius: 8px; overflow: hidden;
  background-color: rgba(245, 243, 240, 0.97); min-height: 480px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 2px 12px rgba(0,0,0,0.15);
}
.typeform-embed { width: 100%; height: 100%; min-height: 480px; }

/* ── Featured Services ── */
.services-section {
  position: relative; width: 100%; padding: 80px 0;
  background: linear-gradient(180deg, #0f1219 0%, #141820 40%, #181c24 100%);
}
@media (min-width: 640px) { .services-section { padding: 112px 0; } }
.services-header { margin-bottom: 48px; }
@media (min-width: 640px) { .services-header { margin-bottom: 64px; } }
.services-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.services-label-line { display: block; width: 32px; height: 1px; background-color: #C9A96E; }
.services-label-text {
  color: #C9A96E; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  font-family: 'Lato', sans-serif; font-weight: 400;
}
.services-title {
  color: #fff; font-size: 1.75rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; font-family: 'Playfair Display', serif;
}
@media (min-width: 640px) { .services-title { font-size: 2.125rem; } }
@media (min-width: 768px) { .services-title { font-size: 2.5rem; } }
.services-underline { width: 56px; height: 2px; background-color: #C9A96E; margin-top: 16px; }

/* Service Cards Grid */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.service-card { cursor: pointer; }
.service-card:hover .service-img { transform: scale(1.1); }
.service-img-wrapper {
  position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4 / 3;
}
.service-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease-out;
}
.service-text { padding-top: 20px; }
.service-text h3 {
  color: #fff; font-size: 1.25rem; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 8px; font-family: 'Playfair Display', serif;
}
@media (min-width: 640px) { .service-text h3 { font-size: 1.375rem; } }
.service-text p {
  color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.7;
  font-family: 'Lato', sans-serif; font-weight: 300;
}
@media (min-width: 640px) { .service-text p { font-size: 14px; } }
.learn-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  color: #C9A96E; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'Lato', sans-serif; font-weight: 600; transition: gap 0.3s;
}
@media (min-width: 640px) { .learn-more { font-size: 14px; } }
.learn-more:hover { gap: 12px; }

/* ── Gradient Transition ── */
.gradient-divider-1 {
  width: 100%; height: 64px;
  background: linear-gradient(180deg, #181c24 0%, #1a1e28 100%);
}
@media (min-width: 640px) { .gradient-divider-1 { height: 80px; } }
@media (min-width: 1024px) { .gradient-divider-1 { height: 96px; } }

/* ── Signature Projects ── */
.projects-section {
  position: relative; width: 100%; padding: 32px 0 80px;
  background: linear-gradient(180deg, #1a1e28 0%, #1a1e28 50%, #1c2029 100%);
}
@media (min-width: 640px) { .projects-section { padding: 48px 0 112px; } }
@media (min-width: 1024px) { .projects-section { padding: 56px 0 128px; } }

/* Section Label */
.section-label { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; }
.section-label-line { display: block; width: 48px; height: 1px; background-color: #C9A96E; }
.section-label-text {
  color: #C9A96E; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  font-family: 'Lato', sans-serif; font-weight: 400;
}
@media (min-width: 640px) { .section-label-text { font-size: 14px; } }
.projects-title {
  color: #fff; font-size: 1.875rem; text-align: center; margin-bottom: 56px;
  font-family: 'Playfair Display', serif; font-weight: 500;
}
@media (min-width: 640px) { .projects-title { font-size: 2.25rem; margin-bottom: 80px; } }
@media (min-width: 768px) { .projects-title { font-size: 3rem; } }

/* Projects Grid */
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; } }

/* Testimonial Card */
.testimonial-card {
  border-radius: 8px; padding: 32px; display: flex; flex-direction: column;
  justify-content: center; height: 100%; background-color: rgba(25, 29, 38, 0.8);
}
@media (min-width: 640px) { .testimonial-card { padding: 40px; } }
.stars { display: flex; gap: 4px; margin-bottom: 24px; }
.quote-mark {
  color: rgba(201,169,110,0.3); font-size: 3.75rem; line-height: 1;
  margin-bottom: 8px; font-family: 'Playfair Display', serif;
}
@media (min-width: 640px) { .quote-mark { font-size: 4.5rem; } }
.quote-text {
  color: rgba(255,255,255,0.9); font-size: 1.125rem; line-height: 1.7; margin-bottom: 32px;
  font-family: 'Playfair Display', serif; font-weight: 400; font-style: italic;
}
@media (min-width: 640px) { .quote-text { font-size: 1.25rem; } }
@media (min-width: 768px) { .quote-text { font-size: 1.375rem; } }
.client-info { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.client-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.client-name { color: #fff; font-size: 14px; font-weight: 600; font-family: 'Lato', sans-serif; }
.client-location {
  color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; font-family: 'Lato', sans-serif;
}
.accent-line { width: 64px; height: 3px; background-color: #C9A96E; border-radius: 9999px; }

/* Video Card */
.video-card {
  position: relative; overflow: hidden; min-height: 400px; border-radius: 16px; height: 650px;
}
@media (min-width: 1024px) { .video-card { min-height: 0; } }
.video-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.video-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; }
@media (min-width: 640px) { .video-text { padding: 40px; } }
.video-label {
  color: #C9A96E; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  display: block; margin-bottom: 8px; font-family: 'Lato', sans-serif;
}
.video-title {
  color: #fff; font-size: 1.5rem; font-family: 'Playfair Display', serif; font-weight: 500;
}
@media (min-width: 640px) { .video-title { font-size: 1.875rem; } }
@media (min-width: 768px) { .video-title { font-size: 2.25rem; } }

/* ── Our Approach ── */
.approach-section {
  width: 100%; padding: 80px 0;
  background: linear-gradient(180deg, #1c2029 0%, #1c2029 100%);
}
@media (min-width: 640px) { .approach-section { padding: 96px 0; } }
@media (min-width: 1024px) { .approach-section { padding: 112px 0; } }
.approach-header { margin-bottom: 64px; }
.approach-label {
  display: block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 20px; color: #c9a84c; font-family: 'Lato', sans-serif;
}
.approach-title {
  color: #fff; font-size: 1.875rem; line-height: 1.2; margin-bottom: 24px;
  font-family: 'Playfair Display', serif; font-weight: 400;
}
@media (min-width: 640px) { .approach-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .approach-title { font-size: 2.625rem; } }
.approach-desc {
  font-size: 15px; line-height: 1.8; max-width: 520px;
  color: #6b7a90; font-family: 'Lato', sans-serif;
}
.features-grid { display: grid; grid-template-columns: 1fr; gap: 48px 80px; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-line { width: 32px; height: 1px; background-color: #c9a84c; margin-bottom: 20px; }
.feature-title {
  color: #fff; font-size: 1.125rem; margin-bottom: 12px;
  font-family: 'Playfair Display', serif; font-weight: 400;
}
.feature-desc { font-size: 14px; line-height: 1.8; color: #6b7a90; font-family: 'Lato', sans-serif; }

/* ── Gold Gradient Divider ── */
.gradient-divider-gold {
  width: 100%; height: 200px;
  background: linear-gradient(to bottom, #1c2029 0%, #1a1408 50%, #c9a84c 100%);
}

/* ── Final CTA ── */
.final-cta {
  position: relative; width: 100%; padding: 80px 0; overflow: hidden;
  background: linear-gradient(135deg, #C9A96E 0%, #b8944f 30%, #a88540 60%, #C9A96E 100%);
}
@media (min-width: 640px) { .final-cta { padding: 112px 0; } }
@media (min-width: 1024px) { .final-cta { padding: 144px 0; } }
.cta-pattern {
  position: absolute; inset: 0; opacity: 0.08;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.15) 10px, rgba(0,0,0,0.15) 11px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,0.15) 10px, rgba(0,0,0,0.15) 11px);
}
.cta-content { position: relative; max-width: 800px; margin: 0 auto; padding: 0 20px; text-align: center; }
@media (min-width: 640px) { .cta-content { padding: 0 32px; } }
.cta-title {
  font-size: 1.875rem; line-height: 1.15; margin-bottom: 24px; color: #1a1a1a;
  font-family: 'Playfair Display', serif; font-weight: 600; font-style: italic;
}
@media (min-width: 640px) { .cta-title { font-size: 2.25rem; margin-bottom: 32px; } }
@media (min-width: 768px) { .cta-title { font-size: 3rem; } }
@media (min-width: 1024px) { .cta-title { font-size: 3.5rem; } }
.cta-desc {
  font-size: 1rem; line-height: 1.7; margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto;
  color: rgba(30, 30, 30, 0.8); font-family: 'Lato', sans-serif; font-weight: 400;
}
@media (min-width: 640px) { .cta-desc { font-size: 1.125rem; margin-bottom: 48px; } }
@media (min-width: 768px) { .cta-desc { font-size: 1.25rem; } }
.cta-typeform-box {
  width: 100%; max-width: 700px; margin: 0 auto 40px; background-color: #fff;
  border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 12px rgba(0,0,0,0.06);
  padding: 8px; min-height: 500px;
}
@media (min-width: 640px) { .cta-typeform-box { margin-bottom: 56px; } }
.cta-typeform-embed { width: 100%; min-height: 480px; }

/* ── Footer ── */
.site-footer { width: 100%; background-color: #0f1219; }
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 64px 24px 40px;
}
@media (min-width: 640px) { .footer-inner { padding: 80px 40px 56px; } }
@media (min-width: 1024px) { .footer-inner { padding: 80px 64px 56px; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
@media (min-width: 1024px) { .footer-grid { gap: 64px; } }
.footer-logo { width: 250px; height: auto; object-fit: contain; margin-bottom: 24px; }
.footer-desc {
  color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7;
  margin-bottom: 32px; max-width: 360px; font-family: 'Lato', sans-serif;
}
.social-icons { display: flex; align-items: center; gap: 20px; }
.social-icons a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.social-icons a:hover { color: #C9A96E; }
.footer-nav { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 768px) { .footer-nav-col { display: flex; flex-direction: column; align-items: center; } }
.footer-nav-link {
  color: rgba(255,255,255,0.7); font-size: 14px; letter-spacing: 0.04em;
  transition: color 0.3s; background: transparent; border: none; text-align: left;
  cursor: pointer; font-family: 'Lato', sans-serif;
}
@media (min-width: 768px) { .footer-nav-link { text-align: center; } }
.footer-nav-link:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 768px) { .footer-contact-col { display: flex; flex-direction: column; align-items: flex-end; } }
@media (min-width: 768px) { .footer-contact { text-align: right; } }
.footer-contact a, .footer-contact span {
  color: rgba(255,255,255,0.7); font-size: 14px; letter-spacing: 0.04em;
  transition: color 0.3s; font-family: 'Lato', sans-serif;
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
@media (min-width: 640px) { .footer-bottom { padding: 0 40px; } }
@media (min-width: 1024px) { .footer-bottom { padding: 0 64px; } }
.footer-divider { width: 100%; height: 1px; background-color: rgba(201,169,110,0.2); margin-bottom: 24px; }
.footer-copyright {
  color: rgba(255,255,255,0.35); font-size: 12px; letter-spacing: 0.06em;
  text-align: center; padding-bottom: 32px; font-family: 'Lato', sans-serif;
}
