/* ===== RESET & TOKENS ===== */
:root {
  --yellow: #F4C430;
  --yellow-dark: #c99d0a;
  --black: #111111;
  --off-black: #1a1a1a;
  --dark: #1e1e1e;
  --charcoal: #2a2a2a;
  --mid: #3d3d3d;
  --light-bg: #f5f2ed;
  --sand: #ece8e0;
  --white: #ffffff;
  --text-dark: #111111;
  --text-mid: #555555;
  --text-light: rgba(255,255,255,0.72);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .hero-title { font-family: "Bebas Neue", sans-serif; letter-spacing: 0.02em; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { border-color: white; }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--charcoal); }

.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--yellow-dark);
  margin-bottom: 0.8rem;
}
.kicker--light { color: var(--yellow); }
.light-h2 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; }
.light-p { color: var(--text-light); line-height: 1.7; }


/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  background: var(--black);
  border-bottom: 2px solid var(--yellow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.nav-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav-name {
  font-family: "Black Han Sans", sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-name span { color: var(--yellow); }

/* ===== LOGO IMAGE ===== */
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}
.nav-logo-img--footer {
  height: 130px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.15s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--yellow-dark) !important; transform: translateY(-1px); color: var(--black) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.2s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.35) 100%);
}
.hero-stripe { display: none; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2.5rem 3rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
  flex-shrink: 0;
}
.dot--green { background: #4ade80; }

.hero-title {
  font-size: clamp(5rem, 13vw, 10rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 36rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

.stat strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  color: var(--yellow);
  line-height: 1;
}
.stat span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}


/* ===== BAND ===== */
.band {
  background: var(--yellow);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 3px solid var(--off-black);
  border-bottom: 3px solid var(--off-black);
}
.band-inner {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  white-space: nowrap;
  animation: marquee 16s linear infinite;
  width: max-content;
}
.band-inner span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--black);
}
.band-inner svg { width: 10px; height: 10px; color: var(--off-black); }

@keyframes marquee {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}


/* ===== ABOUT ===== */
.about {
  background: var(--light-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  gap: 4rem;
  align-items: start;
}

.about-img-col {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.about-img-wrap {
  grid-column: 1 / -1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  background: var(--yellow);
  color: var(--black);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.about-img-badge .big {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}
.about-img-badge .small {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-img-secondary {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.about-copy p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.8rem 0 2rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.1rem;
}
.about-list span { font-size: 0.9rem; color: var(--text-mid); }


/* ===== SERVICES / IMAGE ROLLER ===== */
.services {
  background: var(--black);
  padding: 5rem 0;
  overflow: hidden;
}

.gallery-rail {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: image-roll 38s linear infinite;
  will-change: transform;
}

.gallery-set {
  display: flex;
  gap: 1rem;
  padding: 1rem 1rem 1rem 0;
}

.gallery-set img {
  width: min(62vw, 520px);
  height: clamp(260px, 34vw, 420px);
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

@keyframes image-roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ===== PROCESS ===== */
.process {
  position: relative;
  padding: 7rem 2.5rem;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
}
.process-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
}
.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.88);
}

.process-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.process-inner h2 { margin-bottom: 3.5rem; }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), rgba(244,196,48,0.2));
  margin-top: 2.2rem;
  flex-shrink: 0;
}

.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.step h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.step p { color: var(--text-light); line-height: 1.65; font-size: 0.95rem; max-width: 26ch; }


/* ===== WHY ===== */
.why {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 6rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.why-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.why-copy p { color: var(--text-mid); line-height: 1.75; margin-bottom: 1.8rem; }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.09);
}

.why-icon {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}
.why-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.why-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; }


/* ===== CONTACT ===== */
.contact {
  background: var(--off-black);
  padding: 6rem 2.5rem;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-width: 0;
}

.contact-copy h2 { margin-bottom: 1rem; }
.contact-copy .light-p { margin-bottom: 1.8rem; }
.contact-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.contact-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  word-break: break-word;
}

.contact-map {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 4/3;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  border-radius: var(--radius-lg);
}
.contact-pill {
  position: absolute;
  bottom: 1.2rem; right: 1.2rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255,255,255,0.12);
}


/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 3px solid var(--yellow);
  padding: 2.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}
.footer-logo { margin-bottom: 0.3rem; }
.footer-tag {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.footer-small { font-size: 0.8rem; color: rgba(255,255,255,0.3); }


/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }


/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav { padding: 0 1.5rem; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 2px solid var(--yellow);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }

  .about { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .services { padding: 4rem 0; }
  .gallery-set img {
    width: min(78vw, 440px);
    height: clamp(220px, 50vw, 340px);
  }
  .process { padding: 5rem 1.5rem; }
  .steps { grid-template-columns: 1fr; grid-template-rows: auto; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--yellow), rgba(244,196,48,0.1)); margin: 0 0 0 1.5rem; }

  .why { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .contact { padding: 4rem 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .hero-inner { padding: 4rem 1.5rem 2rem; }
  .hero-stats { padding: 0 1.5rem 3rem; }
}

@media (max-width: 600px) {
  .nav { padding: 0 1rem; }
  .nav-icon { width: 32px; height: 32px; }
  .nav-name { font-size: 1.05rem; }
  .hero-title { font-size: clamp(4rem, 20vw, 6rem); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .hero-stats { gap: 1.5rem; }
  .stat strong { font-size: 2.2rem; }
  .why-cards { grid-template-columns: 1fr; }
  .contact-btns .btn { width: 100%; }
  .contact-map { min-height: 300px; }
  .contact-map iframe { min-height: 300px; }
  .about-img-col { grid-template-columns: 1fr; }
  .about-img-wrap { grid-column: 1; }
  .about-img-secondary { grid-column: 1; }
  .steps { gap: 1.5rem; }
  .step-connector { display: none; }
  .gallery-set {
    gap: 0.75rem;
    padding: 0.75rem 0.75rem 0.75rem 0;
  }
  .gallery-set img {
    width: 82vw;
    height: 240px;
  }
}
