:root {
  --rock: #4A4A4A;
  --gold: #D89B1D;
  --gold-dark: #B77D12;
  --black: #111111;
  --coal: #1C1C1C;
  --ash: #2A2A2A;
  --cream: #F5F5F0;
  --white: #FFFFFF;
  --muted: #B9B9B0;
  --line: rgba(255,255,255,0.12);
  --shadow: 0 24px 70px rgba(0,0,0,0.26);
  --radius: 10px;
  --radius-lg: 18px;
  --heading: 'Montserrat', sans-serif;
  --body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { background: rgba(17,17,17,0.96); box-shadow: 0 12px 35px rgba(0,0,0,0.28); }
.topbar {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.26);
}
.topbar-inner {
  width: min(1240px, calc(100% - 32px));
  height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 700;
}
.topbar-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
}
.topbar-inner i { color: var(--gold); }
.nav {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #f0c15f);
  color: var(--black);
  border-radius: 9px;
  font: 900 0.88rem var(--heading);
  letter-spacing: 0;
}
.brand-text { font: 800 0.88rem var(--heading); line-height: 1.15; letter-spacing: 0.02em; max-width: 220px; }
.brand-text strong { color: var(--gold); display: block; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: rgba(255,255,255,0.78);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links .nav-cta {
  color: var(--black);
  background: var(--gold);
  padding: 11px 16px;
  margin-left: 6px;
}
.nav-links .nav-cta:hover { background: #efb743; color: var(--black); }
.menu-toggle { display: none; background: transparent; border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; flex: 0 0 auto; }
.menu-toggle span { width: 26px; height: 2px; background: var(--white); display: block; transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.site-header, main, section, footer { max-width: 100vw; overflow-x: clip; }
.site-header, .nav { overflow: visible; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url('img/hero-carriere.jpg') center / cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,0.94) 0%, rgba(17,17,17,0.78) 42%, rgba(17,17,17,0.30) 100%),
    linear-gradient(180deg, rgba(17,17,17,0.40), rgba(17,17,17,0.88));
}
.hero-content {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 78px;
  max-width: 860px;
  justify-self: start;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.hero h1 {
  font: 900 clamp(3rem, 8vw, 7.2rem) / 0.92 var(--heading);
  letter-spacing: 0;
  max-width: 950px;
}
.hero h1 span { display: block; }
.hero-slogan {
  color: var(--gold);
  font: 800 clamp(1.15rem, 2vw, 1.55rem) var(--heading);
  margin-top: 22px;
}
.hero-text {
  max-width: 720px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  margin: 18px 0 30px;
}
.hero-actions, .cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--black); box-shadow: 0 14px 34px rgba(216,155,29,0.24); }
.btn-primary:hover { background: #efb743; }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-dark { background: var(--black); color: var(--white); }
.hero-proof {
  position: absolute;
  right: clamp(22px, 6vw, 90px);
  bottom: clamp(26px, 8vh, 90px);
  width: 220px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-left: 5px solid var(--gold);
  background: rgba(17,17,17,0.72);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
}
.hero-proof span { font: 900 2.4rem var(--heading); color: var(--gold); display: block; line-height: 1; }
.hero-proof p { color: rgba(255,255,255,0.78); font-size: 0.82rem; margin-top: 8px; }

.trust-strip {
  min-height: 70px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 16px 24px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.trust-strip div { display: inline-flex; align-items: center; gap: 9px; }

.section { padding: 105px 0; }
.split { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 62px; align-items: center; }
.copy-block h2, .section-head h2, .capacity-intro h2, .contact-info h2 {
  font: 900 clamp(2rem, 4vw, 3.4rem) / 1.05 var(--heading);
  color: var(--black);
  letter-spacing: 0;
}
.copy-block p, .section-head p, .capacity-intro p, .contact-info p { color: #5c5c55; margin-top: 18px; }
.image-panel { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 520px; }
.image-panel img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.image-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(17,17,17,0.86);
  color: var(--white);
  border-left: 5px solid var(--gold);
  padding: 18px 20px;
  border-radius: var(--radius);
}
.image-badge strong { display: block; color: var(--gold); font: 900 2rem var(--heading); line-height: 1; }

.products, .why { background: var(--black); color: var(--white); }
.products .section-head h2, .why .section-head h2 { color: var(--white); }
.products .section-head p, .why .section-head p { color: rgba(255,255,255,0.66); }
.section-head { max-width: 780px; margin-bottom: 42px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  background: #1b1b1b;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(216,155,29,0.55); }
.product-card img { height: 205px; width: 100%; object-fit: cover; filter: saturate(0.95) contrast(1.06); }
.product-card div { padding: 24px; }
.product-card h3 { font: 800 1.15rem var(--heading); color: var(--white); margin-bottom: 10px; }
.product-card p { color: rgba(255,255,255,0.66); font-size: 0.92rem; }

.capacity { background: var(--cream); }
.capacity-layout { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 46px; align-items: start; }
.capacity-intro { position: sticky; top: 110px; }
.capacity-intro .btn { margin-top: 26px; }
.capacity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.capacity-card {
  min-height: 190px;
  background: var(--white);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}
.capacity-card.wide { grid-column: 1 / -1; min-height: 150px; }
.capacity-card span { font: 900 clamp(2.3rem, 5vw, 4.6rem) / 1 var(--heading); color: var(--gold-dark); display: block; margin-bottom: 14px; }
.capacity-card p { color: #4f4f49; font-weight: 700; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-item {
  padding: 30px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  transition: transform 0.25s ease, background 0.25s ease;
}
.why-item:hover { transform: translateY(-5px); background: rgba(216,155,29,0.12); }
.why-item i { width: 48px; height: 48px; border-radius: 8px; display: grid; place-items: center; background: var(--gold); color: var(--black); font-size: 1.25rem; margin-bottom: 22px; }
.why-item h3 { font: 800 1.05rem var(--heading); margin-bottom: 10px; }
.why-item p { color: rgba(255,255,255,0.66); font-size: 0.91rem; }

.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--black); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  padding: 10px 12px;
  background: rgba(17,17,17,0.74);
  color: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 7px;
  font-weight: 800;
  font-size: 0.88rem;
}

.contact { background: var(--black); color: var(--white); }
.contact-layout { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 48px; align-items: start; }
.contact-info h2 { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.68); }
.contact-list { display: grid; gap: 14px; margin: 28px 0; }
.contact-list div { display: flex; gap: 14px; padding: 16px; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); background: rgba(255,255,255,0.05); }
.contact-list i { color: var(--gold); width: 22px; margin-top: 3px; }
.contact-list span, .contact-list a { color: rgba(255,255,255,0.82); }
.location-box { padding: 24px; background: linear-gradient(135deg, rgba(216,155,29,0.18), rgba(255,255,255,0.05)); border: 1px solid rgba(216,155,29,0.3); border-radius: var(--radius); }
.location-box span { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.location-box strong { display: block; margin: 8px 0; font: 800 1.1rem var(--heading); }
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--cream);
  color: var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.quote-form label { display: grid; gap: 8px; font-size: 0.85rem; font-weight: 800; color: #3e3e3b; }
.quote-form label:nth-of-type(5), .quote-form button { grid-column: 1 / -1; }
.quote-form input, .quote-form textarea, .quote-form select {
  width: 100%;
  border: 1px solid rgba(17,17,17,0.14);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  outline: none;
}
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(216,155,29,0.14); }
.honeypot { display: none !important; }

.footer { background: #080808; color: rgba(255,255,255,0.72); padding-top: 54px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.8fr; gap: 34px; }
.footer h3 { color: var(--white); font: 800 1rem var(--heading); margin-bottom: 12px; }
.footer a, .footer span { display: block; color: rgba(255,255,255,0.70); margin-bottom: 8px; }
.footer a:hover { color: var(--gold); }
.footer p { max-width: 480px; margin-top: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 38px; padding: 18px 20px; text-align: center; font-size: 0.84rem; }

.float-whatsapp, .float-email, .back-to-top {
  position: fixed;
  right: 22px;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0,0,0,0.24);
}
.float-whatsapp { bottom: 88px; background: #25D366; color: var(--white); font-size: 1.65rem; animation: pulse 2.2s infinite; }
.float-email { bottom: 24px; background: var(--gold); color: var(--black); font-size: 1.35rem; }
.float-email:hover, .float-whatsapp:hover { transform: translateY(-2px); }
.back-to-top { bottom: 152px; background: var(--gold); color: var(--black); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 0.2s ease, transform 0.2s ease; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.14s; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45), 0 12px 35px rgba(0,0,0,0.24); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0), 0 12px 35px rgba(0,0,0,0.24); }
}

@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 112px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(17,17,17,0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-links .nav-cta { margin-left: 0; text-align: center; }
  .split, .capacity-layout, .contact-layout { grid-template-columns: 1fr; }
  .capacity-intro { position: static; }
  .product-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container, .hero-content { width: calc(100% - 28px); max-width: calc(100% - 28px); }
  .topbar-inner {
    width: calc(100vw - 24px);
    height: auto;
    min-height: 48px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 0;
    font-size: 0.66rem;
    line-height: 1.25;
    text-align: center;
  }
  .topbar-inner a {
    max-width: 100%;
    justify-content: center;
  }
  .nav { width: calc(100% - 24px); max-width: calc(100% - 24px); height: 72px; position: relative; padding-right: 54px; }
  .brand { min-width: 0; gap: 10px; }
  .brand-text { font-size: 0.72rem; max-width: 142px; overflow-wrap: anywhere; padding-right: 4px; }
  .brand-mark { width: 42px; height: 42px; }
  .menu-toggle { display: flex !important; position: fixed; right: 12px; top: 63px; margin-left: 0; background: var(--gold); border-color: var(--gold); z-index: 1200; opacity: 1; visibility: visible; }
  .menu-toggle span { display: none; }
  .menu-toggle::before { content: "\f0c9"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--black); font-size: 1.08rem; line-height: 1; }
  .menu-toggle.open::before { content: "\f00d"; }
  .nav-links { top: 114px; left: 12px; right: 12px; }
  .hero { min-height: 92svh; }
  .hero-content { padding-top: 86px; }
  .eyebrow { flex-wrap: wrap; max-width: 100%; line-height: 1.5; }
  .hero h1 { font-size: clamp(2.1rem, 10.8vw, 2.82rem); max-width: 100%; overflow-wrap: break-word; line-height: 1.04; }
  .hero-text { width: 100%; max-width: 100%; font-size: 0.98rem; overflow-wrap: anywhere; }
  .hero-actions { max-width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 100%; }
  .hero-proof { position: relative; right: auto; bottom: auto; margin: -100px 14px 26px auto; width: calc(100% - 28px); }
  .section { padding: 74px 0; }
  .product-grid, .why-grid, .capacity-grid, .quote-form, .footer-grid { grid-template-columns: 1fr; }
  .quote-form label:nth-of-type(5), .quote-form button { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .gallery-item.large, .gallery-item.wide { grid-column: auto; grid-row: auto; }
  .image-panel, .image-panel img { min-height: 360px; }
  .trust-strip div { max-width: 100%; white-space: normal; text-align: center; justify-content: center; }
}
