@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@700&family=Lato:wght@300;400;700;900&display=swap");

:root {
  --gold: #e0b669;
  --gold-dark: #b8904e;
  --ink: #034488;
  --muted: #034488;
  --line: #dddddd;
  --soft: #f7f7f7;
  --white: #ffffff;
  --max: 1160px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
}

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

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

button {
  font: inherit;
}

.site-banner {
  position: relative;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 52px;
  font-size: 14px;
}

.banner-close {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.banner-close:hover {
  background: rgba(255, 255, 255, 0.45);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 96px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 116px;
  height: auto;
}

.brand-title {
  font-family: "Cabin", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  text-transform: none;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #222222;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  max-width: 920px;
  margin: 0 auto;
  padding: 90px 24px 80px;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.hero-kicker {
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-family: "Cabin", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 22px 0 0;
  font-size: clamp(20px, 2.5vw, 31px);
  font-weight: 700;
}

.hero-note {
  margin-top: 10px;
  font-size: clamp(16px, 2vw, 22px);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  opacity: 0.8;
  cursor: pointer;
}

.hero-dot.active {
  background: var(--white);
}

.section {
  padding: 58px 24px;
}

.section.alt {
  background: var(--soft);
}

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

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2,
.section-heading h1 {
  margin: 0;
  font-family: "Cabin", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  text-transform: none;
}

.section-heading .rule {
  width: 92px;
  height: 1px;
  margin: 22px auto 0;
  background: var(--ink);
}

.intro-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.feature-card {
  text-align: center;
}

.feature-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.feature-card h3 {
  margin: 22px 0 10px;
  font-family: "Cabin", Arial, sans-serif;
  font-size: 21px;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-box {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 22px;
  align-items: center;
  background: var(--white);
}

.service-box img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-box h3 {
  margin: 0 0 10px;
  font-family: "Cabin", Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.service-box p {
  margin: 0;
  color: var(--muted);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.logo-grid.single-logo {
  display: flex;
  justify-content: center;
}

.logo-grid.single-logo .logo-tile {
  width: min(340px, 100%);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.logo-tile {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid #ececec;
}

.logo-tile img {
  max-height: 78px;
  width: auto;
  margin: 0 auto;
}

.section-title-small {
  text-align: center;
  font-family: "Cabin", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  margin: 50px 0 26px;
}

.contact-band {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  padding: 42px 24px;
}

.contact-band h2 {
  margin: 0;
  font-family: "Cabin", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
}

.contact-panel {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.contact-panel h3 {
  margin: 0 0 8px;
  font-family: "Cabin", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 21px;
}

.contact-panel p {
  margin: 12px 0;
  color: var(--muted);
  font-size: 18px;
}

.whatsapp-btn,
.direction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  margin: 18px 0;
  color: #ffffff;
  background: #1fae4b;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.direction-btn {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hours {
  display: inline-table;
  margin: 6px auto;
  border-spacing: 10px 2px;
  color: var(--muted);
}

.map-banner {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #d9d9d9;
}

.map-banner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%);
}

.map-banner .direction-btn {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  margin: 0;
}

.footer {
  padding: 38px 24px 28px;
  text-align: center;
  background: var(--white);
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.linkedin-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #2867b2;
  font-weight: 900;
  font-size: 22px;
}

.footer-copy {
  font-weight: 700;
  margin: 0 0 22px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
}

.footer-rule {
  max-width: 760px;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px auto 0;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.16);
  padding: 18px 24px;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-copy {
  flex: 1;
}

.cookie-copy h4 {
  margin: 0 0 4px;
  font-family: "Cabin", Arial, sans-serif;
  font-size: 18px;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-accept {
  min-width: 104px;
  border: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-banner.hidden,
.site-banner.hidden {
  display: none;
}

.page-hero {
  min-height: 300px;
}

.page-hero .hero-content {
  min-height: 300px;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
}

@media (max-width: 900px) {
  .nav-wrap {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    margin-top: 14px;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0 0;
  }

  .site-header.menu-open .nav-wrap {
    flex-wrap: wrap;
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .intro-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-banner {
    font-size: 12px;
    padding-left: 18px;
    padding-right: 44px;
  }

  .nav-wrap {
    min-height: 76px;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand img {
    width: 86px;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-subtitle {
    font-size: 12px;
  }

  .hero,
  .hero-content {
    min-height: 500px;
  }

  .section {
    padding: 44px 18px;
  }

  .network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-inner {
    align-items: stretch;
    flex-direction: column;
  }
}
