:root {
  --navy: #0d2232;
  --navy-2: #142f44;
  --gold: #d1a66d;
  --gold-soft: #f2d7a7;
  --paper: #f7f0e3;
  --ink: #102333;
  --muted: #627182;
  --line: rgba(13, 34, 50, .14);
  --white: #fff;
  --shadow: 0 34px 90px rgba(13, 34, 50, .2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(13, 34, 50, .05) 1px, transparent 1px) 0 0 / 112px 112px,
    radial-gradient(circle at 12% 0%, rgba(209, 166, 109, .22), transparent 32%),
    linear-gradient(180deg, #fbf6ec 0%, var(--paper) 54%, #f1e9db 100%);
  line-height: 1.55;
}

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

.header,
main,
.footer {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 0 22px;
}

.brand {
  display: inline-grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.brand img {
  width: 88px;
  height: 88px;
}

.brand span {
  display: grid;
  gap: 2px;
  padding-left: 18px;
  border-left: 1px solid rgba(209, 166, 109, .48);
}

.brand strong {
  color: var(--navy);
  font-size: 29px;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(209, 166, 109, .5);
}

.nav a {
  color: var(--navy);
  font-weight: 900;
}

.nav a:hover {
  color: #9b713d;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
  min-height: 690px;
  padding: 68px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(13, 34, 50, .98) 0%, rgba(13, 34, 50, .95) 52%, rgba(20, 47, 68, .9) 100%),
    url("assets/clean-lines.svg") center / cover no-repeat;
  border: 1px solid rgba(242, 215, 167, .22);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(242, 215, 167, .16);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 68px;
  right: 68px;
  bottom: 68px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 72%);
  opacity: .62;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(19px, 1.8vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid rgba(242, 215, 167, .52);
  font-weight: 900;
}

.btn.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.btn.secondary {
  color: var(--white);
  background: transparent;
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 520px;
}

.hero-art > img {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(100%, 720px);
  height: 520px;
  object-fit: cover;
  border: 1px solid rgba(242, 215, 167, .24);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
}

.brand-lockup {
  position: absolute;
  left: -34px;
  bottom: 42px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(470px, 90%);
  padding: 18px 22px;
  border-left: 5px solid var(--gold);
  background: rgba(248, 243, 232, .94);
  color: var(--navy);
  box-shadow: 0 26px 62px rgba(0, 0, 0, .26);
}

.brand-lockup img {
  width: 92px;
  height: 92px;
}

.brand-lockup strong,
.brand-lockup span {
  display: block;
}

.brand-lockup strong {
  font-size: 30px;
  line-height: 1;
}

.brand-lockup span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 900;
}

.section {
  padding: 88px 0;
}

.services-section {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
}

.section-kicker {
  color: var(--gold);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 70px minmax(220px, .7fr) minmax(0, 1fr);
  gap: 26px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-list span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .12em;
}

.service-list h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(23px, 2.25vw, 33px);
  line-height: 1.08;
  hyphens: auto;
  overflow-wrap: break-word;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.profile {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding: 72px 0;
  border-top: 1px solid rgba(209, 166, 109, .34);
  border-bottom: 1px solid rgba(209, 166, 109, .34);
}

.profile .eyebrow,
.contact .eyebrow {
  color: var(--gold);
}

.profile h2,
.contact h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.profile > p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin: 86px auto 76px;
  padding: 52px 0;
  border-top: 4px solid var(--navy);
  border-bottom: 1px solid rgba(209, 166, 109, .4);
}

.contact p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.mail {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 50px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer div:last-child {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--navy);
  font-weight: 900;
}

.legal {
  max-width: 980px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 50px 26px 86px;
  background: var(--white);
}

.legal h1 {
  margin: 8px 0 20px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.08;
}

.legal h2,
.legal h3 {
  margin-top: 34px;
  color: var(--navy);
}

.legal h3 {
  margin-top: 24px;
}

.legal p,
.legal li {
  color: #35414d;
}

.back {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 980px) {
  .header,
  main,
  .footer {
    width: min(100% - 28px, 760px);
  }

  .header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .services-section,
  .profile,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 44px;
  }

  .hero-art {
    min-height: 480px;
  }

  .brand-lockup {
    left: 22px;
  }

  .service-list article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .service-list p {
    grid-column: 2;
  }
}

@media (max-width: 580px) {
  .header,
  main,
  .footer {
    width: min(100% - 22px, 520px);
  }

  .brand {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
  }

  .brand img {
    width: 68px;
    height: 68px;
  }

  .brand span {
    padding-left: 12px;
  }

  .brand strong {
    font-size: 23px;
  }

  .nav {
    gap: 18px;
    overflow-x: auto;
    max-width: 100%;
  }

  .hero {
    padding: 30px 22px 36px;
  }

  .hero::before {
    inset: 14px;
  }

  h1 {
    font-size: 40px;
  }

  .btn,
  .mail {
    width: 100%;
  }

  .hero-art {
    min-height: 390px;
  }

  .hero-art > img {
    height: 330px;
  }

  .brand-lockup {
    left: 12px;
    bottom: 18px;
    grid-template-columns: 70px minmax(0, 1fr);
    width: calc(100% - 24px);
    padding: 14px;
  }

  .brand-lockup img {
    width: 66px;
    height: 66px;
  }

  .brand-lockup strong {
    font-size: 23px;
  }

  .section {
    padding: 62px 0;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-list p {
    grid-column: auto;
  }

  .profile,
  .contact {
    padding: 52px 0;
  }
}
