:root {
  --black: #080808;
  --panel: #111111;
  --panel-2: #181818;
  --gold: #f5a400;
  --gold-light: #ffc340;
  --white: #f7f7f2;
  --muted: #b8b8b1;
  --line: #2b2b28;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(20px, 5vw, 76px);
  background: rgba(8,8,8,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand img { width: 185px; height: 70px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: 14px; }
nav a:not(.nav-contact):hover { color: var(--gold); }
.nav-contact { padding: 11px 18px; color: #0b0b0b; background: var(--gold); border-radius: 5px; }

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  padding: clamp(54px, 7vw, 100px) clamp(20px, 7vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 45%, rgba(245,164,0,.18), transparent 30%),
    linear-gradient(115deg, #080808 52%, #151007 100%);
}
.hero-copy { max-width: 940px; }
.hero-visual { position: relative; width: min(100%, 620px); justify-self: end; padding: 12px 12px 0 0; }
.hero-visual::before { content: ""; position: absolute; inset: 0 0 26px 26px; border: 1px solid var(--gold); border-radius: 9px; }
.hero-visual img { position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 7px; box-shadow: 0 28px 80px rgba(0,0,0,.55); }
.hero-visual-label { position: relative; width: max-content; margin: -24px 0 0 30px; padding: 12px 17px; color: #0b0b0b; background: var(--gold); border-radius: 4px; font-family: "Barlow Condensed", sans-serif; font-size: 18px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual-label span { margin-right: 9px; padding-right: 9px; border-right: 1px solid rgba(0,0,0,.35); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Barlow Condensed", Impact, sans-serif; text-transform: uppercase; line-height: .95; margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(64px, 9vw, 132px); letter-spacing: -.035em; }
h1 span { color: var(--gold); }
.hero-text { max-width: 640px; margin: 0 0 32px; color: #d0d0ca; font-size: clamp(17px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: #0a0a0a; background: var(--gold); }
.button.primary:hover { background: var(--gold-light); }
.button.secondary { background: transparent; }
.button svg { width: 21px; fill: currentColor; }
.quick-facts { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: var(--muted); font-size: 13px; font-weight: 700; text-transform: uppercase; }
.quick-facts span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; background: var(--gold); transform: rotate(45deg); }

.services { padding: clamp(70px, 7vw, 108px) clamp(20px, 7vw, 110px); background: #0d0d0d; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-items: start;
  width: 100%;
  max-width: 820px;
  margin: 0 0 42px;
  text-align: left;
}
.section-heading .eyebrow { margin: 0 0 14px; }
.section-heading h2 { width: 100%; margin: 0 0 16px; }
h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(44px, 6vw, 80px); }
.service-strip { margin: 0; color: var(--muted); font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.service-card { position: relative; min-width: 0; overflow: hidden; background: linear-gradient(180deg, #18140d, #0b0b0b); border: 1px solid rgba(245,164,0,.72); border-radius: 8px; box-shadow: 0 16px 36px rgba(0,0,0,.28); transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: var(--gold-light); box-shadow: 0 22px 48px rgba(0,0,0,.42); }
.service-card > img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; object-position: center; border-bottom: 1px solid rgba(245,164,0,.55); filter: saturate(.94) contrast(1.08); }
.service-card-copy { min-height: 210px; display: flex; flex-direction: column; align-items: center; padding: 21px 16px 18px; text-align: center; }
.service-number { color: var(--gold); font-family: "Barlow Condensed", sans-serif; font-size: 14px; font-weight: 800; letter-spacing: .16em; }
.service-grid h3 { margin: 4px 0 18px; color: var(--gold); font-size: clamp(28px, 2.2vw, 38px); }
.service-grid p { margin: 0; color: var(--white); font-size: 14px; font-weight: 700; line-height: 1.45; text-transform: uppercase; }
.service-grid strong { margin-top: auto; padding-top: 17px; color: var(--muted); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }

.trust { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 120px); padding: clamp(74px, 9vw, 130px) clamp(20px, 7vw, 110px); background: var(--gold); color: #0b0b0b; }
.trust .eyebrow { color: #0b0b0b; }
.trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(0,0,0,.23); }
.trust-list div { padding: 27px; background: var(--gold); }
.trust-list strong { font-family: "Barlow Condensed", sans-serif; font-size: 25px; text-transform: uppercase; }
.trust-list p { margin: 5px 0 0; }

.contact { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 50px; padding: clamp(72px, 9vw, 120px) clamp(20px, 7vw, 110px); background: linear-gradient(135deg, #131313, #090909); }
.contact > div:first-child > p:last-child { max-width: 650px; color: var(--muted); font-size: 18px; }
.contact-actions { justify-self: end; text-align: right; }
.contact-actions p { margin-top: 24px; color: var(--muted); }
.contact-actions p a { color: var(--white); font-weight: 800; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 25px clamp(20px, 7vw, 110px); color: #888; border-top: 1px solid var(--line); font-size: 12px; text-transform: uppercase; }
footer img { width: 150px; }
footer > div { max-width: 720px; text-align: center; }
footer p { margin: 4px 0; }
.photo-credits { font-size: 10px; line-height: 1.45; text-transform: none; }
.photo-credits a { text-decoration: underline; text-underline-offset: 2px; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 30; width: 58px; height: 58px; display: grid; place-items: center; background: #25d366; border-radius: 50%; box-shadow: 0 12px 35px rgba(0,0,0,.4); transition: transform .2s ease; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 31px; fill: white; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr .8fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .site-header { min-height: 72px; padding: 8px 18px; }
  .brand img { width: 140px; height: 54px; }
  nav > a:not(.nav-contact) { display: none; }
  .nav-contact { padding: 9px 13px; font-size: 12px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 55px; }
  .hero-copy { text-align: left; }
  .hero-visual { width: min(100%, 640px); justify-self: start; margin-top: 12px; }
  h1 { font-size: clamp(59px, 20vw, 86px); }
  .quick-facts { gap: 10px 18px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .trust, .contact { grid-template-columns: 1fr; }
  .contact-actions { justify-self: start; text-align: left; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .service-card > img { height: 100%; aspect-ratio: auto; border-right: 1px solid rgba(245,164,0,.55); border-bottom: 0; }
  .service-card-copy { min-height: 220px; }
  .trust-list { grid-template-columns: 1fr; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
