:root {
  --orange: #E8611A;
  --orange-light: #f07030;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --white: #f5f0eb;
  --gray: #888888;
  --gray-light: #cccccc;
  --card-bg: #161616;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,97,26,0.15);
  transition: padding 0.3s;
}
nav.scrolled { padding: 12px 5%; }

.nav-logo {
  display: flex; flex-direction: column; align-items: center; line-height: 1;
  text-decoration: none;
}
.nav-logo .logo-jac {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 4px; color: var(--white);
}
.nav-logo .logo-sub {
  font-size: 0.55rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--orange); margin-top: -2px;
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--gray-light);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 55%, rgba(10,10,10,0.3) 100%),
    url('cover2.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(232,97,26,0.12) 0%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%; padding-top: 120px; max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px; font-weight: 500;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: 0.92; color: var(--white);
  margin-bottom: 6px;
}
.hero-title span { color: var(--orange); }

.hero-desc {
  font-size: 0.95rem; line-height: 1.75; color: rgba(245,240,235,0.7);
  margin: 24px 0 36px; max-width: 440px;
}
.hero-desc strong { color: var(--orange); font-weight: 600; }

.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: var(--orange); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

/* ── DEMO NOTICE ──────────────────────────────── */
.demo-notice {
  background: var(--dark-2); padding: 10px 5%; text-align: center;
  font-size: 0.78rem; color: var(--gray); border-top: 1px solid #222;
}
.demo-notice a { color: var(--orange); }

/* ── SERVICES ─────────────────────────────────── */
.services {
  background: var(--dark);
  padding: 60px 5% 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  padding: 28px 24px 32px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 16px;
}

.service-list { list-style: none; }
.service-list li {
  font-size: 0.82rem; color: rgba(245,240,235,0.7);
  padding: 6px 0; border-bottom: 1px solid #2a2a2a;
  display: flex; align-items: center; gap: 10px;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓'; color: var(--orange);
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}

/* ── ABOUT ────────────────────────────────────── */
.about {
  background: var(--dark-2);
  padding: 90px 5%;
}

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.25; color: var(--orange);
  margin-bottom: 28px; font-style: italic;
}

.about-text p {
  font-size: 0.9rem; line-height: 1.8;
  color: rgba(245,240,235,0.7); margin-bottom: 16px;
}
.about-text p strong { color: var(--white); font-weight: 600; }

.about-image {
  position: relative;
}
.about-image img {
  width: 100%; display: block;
  border: 2px solid var(--orange);
  filter: grayscale(20%);
  transition: filter 0.4s;
}
.about-image:hover img { filter: grayscale(0%); }
.about-image::before {
  content: ''; position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(232,97,26,0.3); z-index: -1;
}

/* ── GALLERY ──────────────────────────────────── */
.gallery {
  background: var(--dark);
  padding: 80px 5%;
}

.section-header {
  text-align: center; margin-bottom: 50px;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 6px; color: var(--white);
}
.section-header .line {
  width: 60px; height: 2px; background: var(--orange);
  margin: 12px auto 0;
}

.gallery-strip {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px; max-width: 1200px; margin: 0 auto;
  scrollbar-width: thin; scrollbar-color: var(--orange) var(--dark-3);
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--dark-3); }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--orange); }

.gallery-item {
  flex: 0 0 220px; scroll-snap-align: start;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 280px; object-fit: cover;
  display: block;
  transition: transform 0.5s;
  filter: grayscale(30%);
}
.gallery-item:hover img { transform: scale(1.07); filter: grayscale(0%); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(232,97,26,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
}

.gallery-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 24px;
}
.gallery-dots .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #333; cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.gallery-dots .dot.active { background: var(--orange); transform: scale(1.4); }

.gallery-cta { text-align: center; margin-top: 36px; }
.btn-outline {
  display: inline-block; padding: 12px 36px;
  border: 1px solid var(--orange); color: var(--orange);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials {
  background: var(--dark-2);
  padding: 80px 5%;
}

.testimonials-track-wrap {
  position: relative; max-width: 900px; margin: 0 auto; overflow: hidden;
}
.testimonials-track {
  display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  flex: 0 0 100%; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}

.t-card {
  background: var(--card-bg); border: 1px solid #2a2a2a;
  padding: 30px 28px; position: relative;
}
.t-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 6rem; line-height: 0;
  position: absolute; top: 36px; left: 20px;
  color: rgba(232,97,26,0.15); z-index: 0;
}

.t-label {
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px; font-weight: 600;
}
.t-stars { color: var(--orange); margin-bottom: 14px; font-size: 1rem; }
.t-text {
  font-size: 0.88rem; line-height: 1.75;
  color: rgba(245,240,235,0.7); margin-bottom: 24px;
  position: relative; z-index: 1;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
}
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
  overflow: hidden;
}
.t-avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.t-name { font-size: 0.88rem; font-weight: 600; }
.t-role { font-size: 0.75rem; color: var(--gray); }

.t-nav {
  display: flex; justify-content: center; gap: 16px; margin-top: 32px;
}
.t-btn {
  width: 36px; height: 36px; border: 1px solid #333;
  background: none; color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: border-color 0.2s, color 0.2s;
}
.t-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ── DEALS ────────────────────────────────────── */
.deals {
  background: var(--white);
  padding: 90px 5%;
}

.deals-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto;
}

.deals-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1; color: var(--dark);
  margin-bottom: 24px;
}
.deals-text h2 span { color: var(--orange); }

.deal-badge {
  display: inline-block;
  background: var(--dark); color: var(--white);
  padding: 8px 20px; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}

.deals-text h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--dark);
  margin-bottom: 12px;
}

.deals-text p {
  font-size: 0.9rem; line-height: 1.75; color: #444;
  margin-bottom: 12px;
}
.deals-text p strong { color: var(--dark); }

.deals-text .claim {
  font-size: 0.85rem; color: #555; margin-bottom: 28px;
}
.deals-text .claim strong { color: var(--orange); }

.btn-dark {
  display: inline-block; padding: 14px 36px;
  background: var(--dark); color: var(--white);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--orange); }

.deals-image img {
  width: 100%; display: block; max-height: 480px; object-fit: cover;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--dark-2);
  border-top: 1px solid #1e1e1e;
  padding: 60px 5% 30px;
}

.footer-top {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 28px;
}
.footer-logo .logo-jac {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; letter-spacing: 6px; line-height: 1;
}
.footer-logo .logo-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1rem;
  letter-spacing: 4px; color: var(--gray);
}

.footer-contact {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin-bottom: 28px;
}
.footer-contact a {
  text-decoration: none; color: var(--gray-light);
  font-size: 0.85rem; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--orange); }
.footer-contact .icon { color: var(--orange); font-size: 0.9rem; }

.footer-socials {
  display: flex; gap: 16px;
}
.footer-socials a {
  width: 38px; height: 38px; border: 1px solid #333;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--gray-light); font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: var(--orange); color: var(--orange); }

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--gray);
  flex-wrap: wrap; gap: 12px;
}

/* ── LIGHTBOX ─────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border: 1px solid #333;
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 2rem; color: var(--white); cursor: pointer;
  background: none; border: none;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--orange); }

/* ── MOBILE NAV OVERLAY ───────────────────────── */
.nav-mobile {
  position: fixed; inset: 0; z-index: 999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 4px;
  text-decoration: none; color: var(--white);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--orange); }

/* ── SCROLL REVEAL ────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 480px; }
  .deals-inner { grid-template-columns: 1fr; }
  .deals-image { max-width: 480px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 180px; }
  .gallery-item img { height: 230px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 150px; }
  .gallery-item img { height: 190px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content { padding-top: 100px; }
}
