:root {
  --black: #171717;
  --white: #ffffff;
  --paper: #f8faf7;
  --ink: #202020;
  --muted: #5f6368;
  --line: rgba(23, 23, 23, 0.12);
  --yellow: #ffd51e;
  --green: #96ca47;
  --teal: #58b3a5;
  --orange: #f5822d;
  --red: #ef3038;
  --blue: #285ea8;
  --purple: #aa329b;
  --shadow: 0 22px 60px rgba(23, 23, 23, 0.13);
  --radius: 8px;
  --font-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: calc(16px * var(--font-scale));
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.high-contrast {
  --paper: #ffffff;
  --ink: #000000;
  --muted: #1d1d1d;
  --line: #000000;
  --shadow: none;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--black);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(23, 23, 23, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--black);
  background: rgba(150, 202, 71, 0.16);
  outline: none;
}

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

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
  border-radius: 99px;
}

.section-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 213, 30, 0.24), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(88, 179, 165, 0.22), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8faf7 100%);
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-decoration {
  position: absolute;
  inset: auto -12% -28% auto;
  width: min(640px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(
      from 18deg,
      var(--yellow),
      var(--green),
      var(--red),
      var(--blue),
      var(--purple),
      var(--orange),
      var(--teal),
      var(--yellow)
    );
  opacity: 0.18;
  filter: blur(2px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(32px, 5vw, 68px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  color: var(--black);
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 26px rgba(255, 213, 30, 0.28);
}

.button.secondary {
  color: var(--white);
  background: var(--green);
}

.button.ghost {
  color: var(--black);
  background: var(--white);
  border-color: var(--line);
}

.hero-logo {
  position: relative;
  padding: clamp(18px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-logo::after {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 50%;
  background:
    linear-gradient(90deg, var(--teal), var(--yellow), var(--green), var(--red), var(--blue), var(--purple), var(--orange));
  opacity: 0.22;
}

.hero-logo img {
  width: min(460px, 78vw);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 50%;
}

.access-tools {
  background: var(--black);
  color: var(--white);
}

.tools-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.tools-row span {
  font-weight: 900;
}

.tool-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-btn {
  min-height: 40px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  cursor: pointer;
}

.tool-btn:hover,
.tool-btn:focus {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.section-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.centered {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.centered p {
  margin-left: auto;
  margin-right: auto;
}

.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.details-list {
  margin: 0;
}

.details-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.details-list div:last-child {
  border-bottom: 0;
}

.details-list dt {
  color: var(--muted);
  font-weight: 900;
}

.details-list dd {
  margin: 0;
  font-weight: 800;
}

.details-list a {
  color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.services-section {
  background:
    linear-gradient(135deg, rgba(88, 179, 165, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(245, 130, 45, 0.13), transparent 32%),
    var(--white);
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 36px);
  color: var(--black);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--yellow), var(--green), var(--teal), var(--blue), var(--purple), var(--orange), var(--yellow));
}

.service-icon span {
  width: 34px;
  height: 34px;
  border: 8px solid var(--white);
  border-radius: 50%;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.image-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.image-frame {
  margin: 0;
  padding: clamp(18px, 4vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: var(--white);
}

.image-frame figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.contact-section {
  background: var(--black);
  color: var(--white);
}

.contact-section .eyebrow,
.contact-section .section-heading h2,
.contact-section .section-heading p {
  color: var(--white);
}

.contact-section .section-heading p {
  opacity: 0.8;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: block;
  padding: 22px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-card:nth-child(2) {
  border-left-color: var(--green);
}

.contact-card:nth-child(3) {
  border-left-color: var(--teal);
}

.contact-card:nth-child(4) {
  border-left-color: var(--red);
}

.contact-card:hover,
.contact-card:focus {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.13);
  outline: none;
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  opacity: 0.72;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.contact-card strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.site-footer {
  color: var(--white);
  background: #0d0d0d;
}

.footer-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.footer-row p {
  margin: 0;
  font-weight: 900;
}

.footer-row a {
  color: var(--white);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  display: grid;
  justify-items: end;
  gap: 8px;
}

.floating-button {
  min-height: 50px;
  padding: 12px 18px;
  color: var(--black);
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.22);
  cursor: pointer;
  font-weight: 900;
}

.floating-panel {
  display: none;
  min-width: 190px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-contact.is-open .floating-panel {
  display: block;
}

.floating-panel a {
  display: block;
  padding: 14px 16px;
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.floating-panel a:last-child {
  border-bottom: 0;
}

.floating-panel a:hover,
.floating-panel a:focus {
  background: rgba(150, 202, 71, 0.16);
  outline: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible,
.reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 880px) {
  .js .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .js .nav-links {
    display: none;
  }

  .js .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    color: var(--black);
  }

  .hero {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .hero-grid,
  .split,
  .image-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    max-width: 420px;
    margin: 0 auto;
  }

  .tools-row,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .navbar {
    min-height: 70px;
  }

  .brand span {
    max-width: 150px;
    line-height: 1.1;
  }

  .nav-links {
    top: 70px;
  }

  .hero-actions,
  .tool-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .tool-btn {
    width: 100%;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }
}
