:root {
  --orange: #f04a00;
  --orange-dark: #c63d00;
  --ink: #17191b;
  --charcoal: #252628;
  --paper: #f6f5f2;
  --white: #ffffff;
  --muted: #6e7072;
  --line: rgba(23, 25, 27, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body, a, button { -webkit-tap-highlight-color: transparent; }

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
section[id] { scroll-margin-top: 96px; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  border-radius: 8px;
}

.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  background: rgba(19, 20, 22, 0.84);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}

.header-inner { min-height: 82px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo, .footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.brand-copy { display: grid; gap: 3px; }
.brand-copy strong { font-size: 16px; letter-spacing: .015em; }
.brand-copy small { font-size: 11px; color: rgba(255,255,255,.67); letter-spacing: .06em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 25px; margin-left: auto; }
.desktop-nav a { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.top-action {
  min-height: 50px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 0 17px;
  border-radius: 5px;
  transition: transform .2s ease, filter .2s ease;
}
.top-action:hover { transform: translateY(-2px); filter: brightness(.96); }
.top-action small { font-size: 9px; line-height: 1; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.top-action strong { font-size: 13px; line-height: 1.1; white-space: nowrap; }
.top-call { min-width: 156px; color: var(--white); background: var(--orange); }
.top-whatsapp { min-width: 130px; color: #092b16; background: #25d366; }

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: stretch;
  color: var(--white);
  background: var(--ink) url("images/4.jpeg") center / cover no-repeat;
  overflow: hidden;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,14,15,.96) 0%, rgba(13,14,15,.85) 39%, rgba(13,14,15,.25) 72%, rgba(13,14,15,.14) 100%),
    linear-gradient(0deg, rgba(13,14,15,.62), transparent 40%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -260px;
  bottom: -270px;
  border: 100px solid rgba(240,74,0,.13);
  border-radius: 50%;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 170px;
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
  gap: 80px;
  align-items: end;
}
.hero-copy { max-width: 720px; }
.eyebrow, .section-kicker {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); }
.eyebrow span { width: 34px; height: 3px; background: var(--orange); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 94px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 900;
}
h1 em { color: var(--orange); font-style: normal; }
.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.75);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions, .contact-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 23px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--white); }
.button-primary:hover { background: var(--orange-dark); }
.button-secondary { border: 1px solid rgba(255,255,255,.35); color: var(--white); background: rgba(255,255,255,.04); }
.button-secondary:hover { background: var(--white); color: var(--ink); }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px 30px; padding: 0; margin: 32px 0 0; list-style: none; }
.hero-points li { color: rgba(255,255,255,.66); font-size: 12px; font-weight: 700; }
.hero-points span { color: var(--orange); margin-right: 6px; }

.hero-card {
  align-self: end;
  margin-bottom: 28px;
  padding: 30px;
  background: rgba(21,22,23,.84);
  border: 1px solid rgba(255,255,255,.16);
  border-top: 4px solid var(--orange);
  backdrop-filter: blur(12px);
}
.hero-card p { margin-bottom: 12px; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-card > strong { display: block; margin-bottom: 26px; font-size: 26px; line-height: 1.24; }
.hero-card a { display: block; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.13); color: var(--orange); font-size: 23px; font-weight: 900; }
.hero-card > span { display: block; margin-top: 18px; color: rgba(255,255,255,.55); font-size: 12px; }

.service-strip { position: absolute; inset: auto 0 0; z-index: 3; overflow: hidden; background: var(--orange); }
.ticker-track { width: max-content; display: flex; animation: ticker-scroll 30s linear infinite; }
.ticker-group { min-height: 62px; display: flex; align-items: center; flex: none; }
.ticker-group span { position: relative; padding: 0 34px; color: var(--white); white-space: nowrap; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.ticker-group span + span::before { content: ""; position: absolute; left: 0; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.68); transform: translate(-50%, -50%); }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

.section-heading h2, .story-copy h2, .regions-copy h2, .contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.heading-row { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.heading-row > p, .gallery-heading > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: var(--white); }
.service-card { min-height: 355px; padding: 34px 32px 30px; display: flex; flex-direction: column; transition: background .25s ease, color .25s ease; }
.service-card + .service-card { border-left: 1px solid var(--line); }
.service-card:hover { background: var(--ink); color: var(--white); }
.service-number { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 52px; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); font-size: 12px; font-weight: 900; }
.service-card:hover .service-number { border-color: rgba(255,255,255,.18); }
.service-card h3 { margin-bottom: 16px; font-size: 24px; letter-spacing: -.025em; }
.service-card p { margin-bottom: 26px; color: var(--muted); line-height: 1.7; font-size: 14px; }
.service-card:hover p { color: rgba(255,255,255,.63); }
.service-card a { margin-top: auto; color: var(--orange); font-size: 13px; font-weight: 900; }

.story { padding-top: 0; }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 590px; background: var(--white); }
.story-photo { position: relative; min-height: 500px; overflow: hidden; }
.story-photo > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-badge { position: absolute; right: 0; bottom: 0; width: 190px; height: 160px; display: grid; align-content: center; padding: 28px; color: var(--white); background: var(--orange); }
.story-badge b { font-size: 36px; line-height: 1; }
.story-badge span { margin-top: 7px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.story-copy { align-self: center; padding: 60px clamp(40px, 6vw, 82px); }
.story-copy h2 { margin-bottom: 26px; font-size: clamp(38px, 4vw, 56px); }
.story-copy > p:not(.section-kicker) { color: var(--muted); line-height: 1.85; }
.story-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.story-facts div { display: grid; gap: 5px; }
.story-facts strong { font-size: 20px; }
.story-facts span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.regions { color: var(--white); background: var(--ink); }
.regions-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 10vw, 140px); align-items: center; }
.section-kicker.light { color: var(--orange); }
.regions-copy h2 { margin-bottom: 26px; }
.regions-copy > p:not(.section-kicker) { margin-bottom: 34px; color: rgba(255,255,255,.58); line-height: 1.8; }
.region-list { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.region-list li { display: flex; align-items: center; gap: 18px; min-height: 84px; border-bottom: 1px solid rgba(255,255,255,.14); }
.region-list li:nth-child(odd) { padding-right: 30px; }
.region-list li:nth-child(even) { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.14); }
.region-list span { color: var(--orange); font-size: 11px; font-weight: 900; }
.region-list strong { font-size: 19px; }

.gallery-section { background: var(--white); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.gallery-heading > p { max-width: 420px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 285px; gap: 14px; }
.gallery-grid figure { position: relative; grid-column: span 4; margin: 0; overflow: hidden; background: var(--ink); }
.gallery-grid figure.gallery-wide { grid-column: span 8; }
.gallery-grid figure.gallery-tall { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease, opacity .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); opacity: .83; }
.gallery-grid figcaption { position: absolute; inset: auto 0 0; padding: 50px 22px 20px; color: var(--white); font-size: 13px; font-weight: 800; background: linear-gradient(transparent, rgba(0,0,0,.76)); }

.contact-section { padding: 104px 0; color: var(--white); background: var(--orange); }
.contact-card { display: grid; grid-template-columns: 1.28fr .72fr; gap: 80px; align-items: stretch; }
.contact-copy { padding: 26px 0; }
.contact-copy .section-kicker { color: rgba(255,255,255,.65); }
.contact-copy h2 { margin-bottom: 20px; font-size: clamp(52px, 7vw, 84px); }
.contact-copy > p:not(.section-kicker) { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.78); line-height: 1.75; }
.contact-phone { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; color: var(--orange-dark); background: var(--white); border-radius: 5px; font-size: clamp(20px, 2.2vw, 29px); font-weight: 900; letter-spacing: -.02em; }
.button-whatsapp { background: #25d366; color: #092b16; }
.address-card { padding: 40px; color: var(--ink); background: var(--white); }
.address-card > span { color: var(--orange); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.address-card h3 { margin: 32px 0 17px; font-size: 27px; }
.address-card address { color: var(--muted); font-style: normal; line-height: 1.8; }
.address-card a { display: inline-block; margin-top: 34px; padding-bottom: 6px; color: var(--orange-dark); border-bottom: 1px solid var(--orange-dark); font-size: 13px; font-weight: 900; }
.map-frame { width: 100%; height: 220px; display: block; margin-top: 26px; border: 0; filter: grayscale(1) contrast(.92); }

.site-footer { padding: 34px 0; color: var(--white); background: #101112; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand img { width: 44px; height: 44px; }
.site-footer p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }
.footer-inner > a:last-child { color: var(--orange); font-weight: 900; }

.floating-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 58px; height: 58px; display: grid; place-items: center; color: #082813; background: #25d366; border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 12px 35px rgba(0,0,0,.28); }
.floating-whatsapp span { font-size: 12px; font-weight: 1000; letter-spacing: -.04em; }
.mobile-contact-bar { display: none; }

:focus-visible { outline: 3px solid #ff8b59; outline-offset: 4px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 20px; padding-top: 160px; padding-bottom: 120px; }
  .hero-card { display: none; }
  .hero-shade { background: linear-gradient(90deg, rgba(13,14,15,.94), rgba(13,14,15,.55)); }
  .heading-row, .story-grid, .regions-grid, .contact-card { grid-template-columns: 1fr; }
  .heading-row { gap: 24px; }
  .story-photo { min-height: 520px; }
  .regions-grid { gap: 60px; }
  .contact-card { gap: 40px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 74px 0; }
  .site-header { position: absolute; }
  .header-inner { min-height: 76px; gap: 12px; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { display: none; }
  .header-actions { gap: 6px; }
  .top-action { min-width: 0; min-height: 42px; padding: 0 11px; }
  .top-action strong { display: none; }
  .top-action small { font-size: 9px; letter-spacing: .05em; }
  .top-whatsapp { min-width: 82px; }
  .hero { min-height: 760px; background-position: 72% center; }
  .hero-inner { padding-top: 132px; padding-bottom: 122px; align-items: center; }
  .hero-shade { background: linear-gradient(90deg, rgba(13,14,15,.94), rgba(13,14,15,.64)); }
  h1 { font-size: clamp(49px, 15vw, 70px); }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 10px; }
  .ticker-group { min-height: 58px; }
  .ticker-group span { padding: 0 24px; font-size: 10px; }
  .ticker-track { animation-duration: 23s; }
  .section-heading h2, .story-copy h2, .regions-copy h2 { font-size: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-card + .service-card { border-left: 0; border-top: 1px solid var(--line); }
  .service-number { margin-bottom: 34px; }
  .story-grid { width: 100%; }
  .story-photo { min-height: 390px; }
  .story-copy { padding: 48px 24px; }
  .story-facts { gap: 8px; }
  .story-facts strong { font-size: 16px; }
  .region-list { grid-template-columns: 1fr; }
  .region-list li:nth-child(odd), .region-list li:nth-child(even) { padding: 0; border-left: 0; }
  .gallery-heading { display: grid; gap: 18px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .gallery-grid figure, .gallery-grid figure.gallery-wide { grid-column: 1; }
  .gallery-grid figure.gallery-tall { grid-row: auto; }
  .contact-copy h2 { font-size: 58px; }
  .contact-actions { align-items: stretch; }
  .contact-phone, .contact-actions .button { width: 100%; }
  .contact-phone { font-size: 25px; }
  .address-card { padding: 32px 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  body { padding-bottom: 74px; }
  .floating-whatsapp { display: none; }
  .mobile-contact-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 30px rgba(0,0,0,.14);
    backdrop-filter: blur(12px);
  }
  .mobile-contact-bar a {
    min-height: 56px;
    display: grid;
    place-content: center;
    gap: 3px;
    color: #092b16;
    background: #25d366;
    border-radius: 5px;
    text-align: center;
  }
  .mobile-contact-bar .mobile-call { color: var(--white); background: var(--orange); }
  .mobile-contact-bar small { font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
  .mobile-contact-bar strong { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .ticker-track { width: 100%; animation: none !important; }
  .ticker-group { width: 100%; overflow: hidden; }
  .ticker-group[aria-hidden="true"] { display: none; }
}

@media (max-width: 520px) {
  .site-header .brand-copy { display: none; }
  .site-header .brand-logo { width: 44px; height: 44px; }
}
