:root {
  --ink: #17202a;
  --muted: #65717d;
  --paper: #f7f4ee;
  --white: #fff;
  --accent: #ef6f3c;
  --accent-dark: #c84c22;
  --line: rgba(23, 32, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 28px;
}

nav a,
footer a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

nav a:hover,
footer a:hover {
  color: var(--accent-dark);
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.12;
}

.lead,
.section > p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.button {
  display: inline-block;
  margin-top: 16px;
  padding: 13px 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
}

.hero-visual {
  position: relative;
  min-height: 370px;
  display: grid;
  place-items: center;
}

.globe {
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 30px 70px rgba(200, 76, 34, 0.25);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23, 32, 42, 0.24);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.orbit-one {
  width: 290px;
  height: 160px;
}

.orbit-two {
  width: 370px;
  height: 220px;
  transform: rotate(30deg);
}

.section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.cards article {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.cards span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.cards h3 {
  margin: 48px 0 10px;
  font-size: 20px;
}

.cards p {
  color: var(--muted);
}

.contact-section {
  margin-bottom: 60px;
  padding: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: var(--ink);
}

.contact-section h2 {
  margin-bottom: 0;
}

.contact-section .eyebrow {
  color: #ff9a72;
}

.contact-section > a {
  color: var(--white);
  font-size: clamp(18px, 2vw, 25px);
}

footer {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.policy {
  max-width: 820px;
  padding: 90px 0 110px;
}

.policy h1 {
  margin-bottom: 10px;
}

.policy .updated {
  margin-bottom: 48px;
  color: var(--muted);
}

.policy h2 {
  margin: 40px 0 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
}

.policy p {
  color: #46515c;
}

.policy a {
  color: var(--accent-dark);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
  }

  nav {
    gap: 15px;
  }

  nav a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 90px 0 70px;
  }

  .hero-visual {
    min-height: 280px;
    overflow: hidden;
  }

  .orbit-two {
    width: 320px;
  }

  .section {
    padding: 72px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cards article {
    min-height: 190px;
  }

  .contact-section {
    margin-bottom: 35px;
    padding: 42px 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    gap: 20px;
  }

  .policy {
    padding: 65px 0 80px;
  }
}
