*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.container {
  width: calc(100% - 64px);
  max-width: var(--container);
  margin-inline: auto;
}

.container-banner {
 /*width: calc(100% - 64px);*/
  max-width: 100%;
  /*margin-inline: auto;*/
}

.site-footer .container,
.home-ready .container {
  width: calc(100% - 88px);
  max-width: var(--container);
}

@media (max-width: 900px) {
  .container,
  .site-footer .container,
  .home-ready .container {
    width: min(100% - 40px, var(--container));
  }
}

.section {
  padding: 56px 0;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.headline {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.headline .accent {
  color: var(--blue);
}

.lead {
  margin-top: 14px;
  color: var(--gray-600);
  font-size: 15px;
  max-width: 520px;
  line-height: 1.65;
}

.skyline {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(48%, 520px);
  height: 180px;
  opacity: 0.18;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 80%, transparent 0 8px, var(--blue) 8px 9px, transparent 9px) 10% 70% / 20px 20px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 8% 100% / 12px 40px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 16% 100% / 18px 70px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 28% 100% / 14px 50px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 40% 100% / 22px 90px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 54% 100% / 16px 60px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 66% 100% / 28px 110px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 80% 100% / 14px 55px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 90% 100% / 20px 75px no-repeat;
}

.page-main {
  min-height: calc(100vh - var(--header-h));
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px auto 48px;
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  text-transform: uppercase;
}

.back-wrap {
  text-align: center;
}