:root {
  --ink: #081b33;
  --accent: #ff4a3d;
  --page-margin: 68px;
  --content-width: 1534px;
  --serif: Georgia, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f7fbfa;
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: #f7fbfa;
}

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

.site {
  max-width: none;
  margin: 0 auto;
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 253px;
  margin: 0 auto;
  padding: 0 235px;
  background: #fbfbfb;
}

.site-title {
  color: var(--ink);
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  position: absolute;
  top: 126px;
  right: 238px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: lowercase;
}

.site-nav a {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 602px;
  overflow: hidden;
  background: #08182d;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 48%;
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 602px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 24px 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
}

.hero-copy h1 {
  max-width: 1050px;
  margin: 0 0 27px;
  color: var(--accent);
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-shadow: none;
}

.hero-copy p {
  margin: 0;
}

.hero-main {
  font-family: var(--serif);
  font-size: clamp(62px, 4.55vw, 112px);
  font-weight: 400;
  letter-spacing: .018em;
  line-height: .98;
}

.hero-plus {
  display: inline-block;
  font-family: "Cambria Math", "Times New Roman", Times, serif;
  font-size: .82em;
  line-height: 0;
  position: relative;
  top: -.04em;
}

.hero-rule {
  margin: 76px 0 66px;
  font-family: var(--serif);
  font-size: clamp(38px, 2.72vw, 66px);
  font-weight: 400;
  letter-spacing: .11em;
  line-height: .2;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(650px, 1fr);
  gap: 194px;
  width: min(calc(100% - (var(--page-margin) * 2)), var(--content-width));
  margin: 134px auto 58px;
}

.intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(36px, 3.08vw, 58px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.18;
}

.contact {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 240px;
  column-gap: 32px;
  row-gap: 0;
  justify-items: stretch;
  align-content: start;
  color: var(--ink);
  text-align: right;
}

.phone {
  grid-column: 1 / -1;
  justify-self: end;
  max-width: none;
  margin: 6px 0 28px;
  color: var(--accent);
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-image {
  grid-column: 2;
  grid-row: 2;
  display: block;
  width: 240px;
  height: 237px;
  margin: 0;
  border: 3px solid #07192e;
  object-fit: cover;
  object-position: 50% 50%;
}

address {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  font-family: var(--serif);
  font-size: clamp(27px, 1.58vw, 34px);
  font-style: normal;
  line-height: 1.3;
}

address a {
  color: var(--ink);
}

.rule {
  width: min(calc(100% - (var(--page-margin) * 2)), var(--content-width));
  margin: 82px auto 68px;
  border: 0;
  border-top: 1px solid #d9d9d9;
}

@media (max-width: 1180px) {
  .content {
    grid-template-columns: 1fr;
    gap: 58px;
    width: min(calc(100% - (var(--page-margin) * 2)), 760px);
    margin: 88px auto 48px;
  }

  .intro h2 {
    font-size: clamp(36px, 6vw, 54px);
  }

  .contact {
    grid-template-columns: minmax(300px, 1fr) 220px;
    column-gap: 28px;
  }

  .contact-image {
    width: 220px;
    height: 217px;
  }

  .rule {
    width: min(calc(100% - (var(--page-margin) * 2)), 760px);
    margin-top: 58px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-margin: 22px;
  }

  .site-header {
    flex-direction: column;
    height: 112px;
    margin: 0 auto;
    gap: 12px;
    padding: 0 var(--page-margin);
  }

  .site-title {
    font-size: clamp(23px, 7vw, 29px);
    text-align: center;
  }

  .site-nav {
    position: static;
    font-size: 12px;
  }

  .hero,
  .hero-copy {
    min-height: 440px;
  }

  .hero-copy {
    padding: 22px 18px 30px;
    justify-content: center;
  }

  .hero-copy > br {
    display: none;
  }

  .hero-copy h1 {
    margin-bottom: 24px;
    max-width: 290px;
    font-size: clamp(12px, 3.25vw, 14px);
    letter-spacing: .1em;
    overflow-wrap: anywhere;
  }

  .hero-main {
    font-size: clamp(36px, 11vw, 52px);
    letter-spacing: .012em;
    line-height: 1.05;
  }

  .hero-plus {
    top: .02em;
  }

  .hero-rule {
    margin: 30px 0 28px;
    font-size: clamp(22px, 6.5vw, 32px);
    letter-spacing: .08em;
  }

  .content {
    grid-template-columns: 1fr;
    gap: 38px;
    width: calc(100% - (var(--page-margin) * 2));
    margin: 48px auto 36px;
  }

  .intro h2 {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.18;
  }

  .contact {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .phone,
  .contact-image,
  address {
    grid-column: auto;
    grid-row: auto;
  }

  .phone {
    justify-self: center;
    max-width: 310px;
    margin: 0 0 24px;
    font-size: 12px;
    letter-spacing: .035em;
    white-space: normal;
  }

  .contact-image {
    width: min(220px, 72vw);
    height: auto;
    aspect-ratio: 240 / 237;
    margin-bottom: 22px;
  }

  address {
    max-width: 320px;
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.28;
  }

  .rule {
    width: calc(100% - (var(--page-margin) * 2));
    margin: 46px auto 46px;
  }
}

@media (max-width: 420px) {
  .hero,
  .hero-copy {
    min-height: 410px;
  }

  .hero-main {
    font-size: clamp(33px, 10.5vw, 42px);
  }

  .hero-rule {
    margin: 24px 0 22px;
  }

  .intro h2 {
    font-size: clamp(28px, 8.3vw, 34px);
  }

  address {
    font-size: clamp(24px, 7.3vw, 29px);
  }
}
