:root {
  --bg: #0b0b0d;
  --bg-alt: #151517;
  --card: #1c1c1f;
  --text: #f5f5f2;
  --text-muted: #a3a3a8;
  --yellow: #f4c400;
  --yellow-dark: #d9ac00;
  --border: #2a2a2e;
  --radius: 10px;
  --max-width: 1160px;
  --font-head: "Oswald", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 14px;
}

h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }

p { margin: 0 0 16px; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.kicker {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 8px;
  font-family: var(--font-head);
}

/* Hazard stripe divider */
.hazard-strip {
  height: 8px;
  background: repeating-linear-gradient(45deg, var(--yellow), var(--yellow) 14px, #111 14px, #111 28px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--yellow); color: #14140f; }
.btn-primary:hover { background: var(--yellow-dark); }

.btn-outline { border-color: rgba(245,245,242,0.35); color: var(--text); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.logo strong { color: var(--yellow); }
.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--yellow);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #14140f;
}
.logo-mark svg { width: 18px; height: 18px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a:not(.nav-cta) {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:not(.nav-cta):hover { color: var(--yellow); }
.nav-cta { padding: 9px 18px; font-size: 0.8rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,9,0.96) 0%, rgba(8,8,9,0.9) 42%, rgba(8,8,9,0.62) 75%, rgba(8,8,9,0.5) 100%),
    linear-gradient(0deg, rgba(8,8,9,0.92), rgba(8,8,9,0.35) 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 104px 24px 88px;
  max-width: 660px;
}

.hero .eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(245,245,242,0.85);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-strip {
  position: relative;
  z-index: 1;
  background: var(--yellow);
}
.hero-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 18px 24px;
}
.strip-item {
  display: flex;
  flex-direction: column;
  color: #14140f;
}
.strip-num {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
}
.strip-item span:last-child { font-size: 0.82rem; opacity: 0.8; }

/* Sections */
.section { padding: 76px 0; }
.section-alt { background: var(--bg-alt); }
.section-lead { max-width: 560px; font-size: 1rem; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 36px;
}

.service {
  background: var(--bg);
  padding: 28px;
  display: flex;
  gap: 18px;
}
.service svg {
  width: 30px;
  height: 30px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}
.service h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  text-transform: none;
}
.service p { margin: 0; font-size: 0.9rem; }
.services-grid .service:last-child { grid-column: 1 / -1; }

/* Brands */
.brands { margin-top: 56px; }
.brands-title {
  font-size: 1.15rem;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.brands-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0 0 12px;
}
.brand-marquee {
  overflow: hidden;
  margin-bottom: 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brand-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 46s linear infinite;
}
.brand-marquee:hover .brand-track { animation-play-state: paused; }
.brand-set {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; }
  .brand-marquee { overflow-x: auto; }
}
.brand {
  flex: 0 0 132px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 86px;
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}
.brand:hover { border-color: var(--yellow); }
.brand img {
  height: 40px;
  width: auto;
  max-width: 100%;
  opacity: 0.68;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.brand:hover img { opacity: 1; transform: scale(1.06); }
.brand-word {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.68;
  text-align: center;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}
.brand:hover .brand-word { opacity: 1; }
.brands-note {
  font-size: 0.9rem;
  margin: 0;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 190px;
  gap: 10px;
  margin-top: 36px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.about-photo { margin: 0; }
.about-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-photo figcaption {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 2px solid var(--yellow);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  padding-left: 30px;
  position: relative;
  color: var(--text);
  font-size: 0.98rem;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--yellow);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 45% 62%);
}

/* Testimonial */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
  position: relative;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.testimonial p {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 14px;
}
.testimonial footer { color: var(--text-muted); font-size: 0.85rem; }
.stars { color: var(--yellow); letter-spacing: 2px; margin-right: 6px; }

.review-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.review-cta p {
  margin: 0;
  max-width: 560px;
  font-size: 0.95rem;
}
.review-cta .btn { flex-shrink: 0; }
.review-cta .stars { margin-right: 4px; }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 16px;
}
.contact-list {
  margin: 24px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list dt {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 4px;
}
.contact-list dd {
  margin: 0;
  color: var(--text);
}
.contact-list a:hover { color: var(--yellow); }
.contact-map iframe {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 96px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #0b0b0d;
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.whatsapp-float svg { width: 20px; height: 20px; }
.whatsapp-float:hover { transform: translateY(-2px); }

/* Responsive */
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo img { max-height: 300px; }
  .contact-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.nav-cta) {
    padding: 14px 24px;
    width: 100%;
    border-top: 1px solid var(--border);
  }
  .nav-cta { margin: 14px 24px; }
  .menu-toggle { display: flex; }

  .hero-inner { padding: 90px 20px 60px; }
  .hero-strip-inner { gap: 14px 30px; padding: 16px 20px; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-feature { grid-column: span 2; grid-row: span 2; }
  .gallery-item:last-child { grid-column: span 2; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; }
}
