* {
  box-sizing: border-box;
}

:root {
  --navy: #14213a;
  --taupe: #9e9188;
  --cream: #f7f4f1;
  --white: #ffffff;
  --text: #253047;
  --muted: #6c7280;
  --line: #ded8d2;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

header {
  min-height: 88px;
  padding: 12px clamp(20px, 6vw, 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.97);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand img {
  width: 150px;
  height: 62px;
  object-fit: cover;
  object-position: center 58%;
}

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  border: 1px solid var(--navy);
  cursor: pointer;
}

.header-button:hover,
.button:hover {
  background: #293958;
}

.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(45px, 8vw, 100px);
  align-items: center;
  padding: clamp(70px, 10vw, 125px) clamp(20px, 7vw, 105px);
  background: linear-gradient(135deg, #fff 0%, #faf8f6 100%);
}

.hero-copy {
  max-width: 770px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--taupe);
}

.light {
  color: #c9bdb4;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  color: var(--navy);
}

h1 {
  font-size: clamp(3rem, 6.4vw, 6rem);
  letter-spacing: -.03em;
}

h2 {
  font-size: clamp(2.2rem, 4.3vw, 4.1rem);
  letter-spacing: -.02em;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.lead {
  max-width: 660px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.logo-panel {
  min-height: 390px;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: white;
  text-align: center;
  box-shadow: 0 24px 70px rgba(20,33,58,.08);
}

.logo-panel img {
  width: min(100%, 360px);
  margin: 0 auto 25px;
}

.logo-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: clamp(80px, 10vw, 125px) clamp(20px, 7vw, 105px);
}

.section > h2 {
  max-width: 820px;
}

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

.cards article {
  padding: 32px;
  background: var(--cream);
  border-top: 3px solid var(--navy);
}

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

.how {
  padding: clamp(80px, 10vw, 125px) clamp(20px, 7vw, 105px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(45px, 9vw, 110px);
  background: var(--navy);
  color: white;
}

.how h2,
.how h3 {
  color: white;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.step:first-child {
  padding-top: 0;
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: rgba(255,255,255,.7);
}

.order {
  padding: clamp(80px, 10vw, 125px) clamp(20px, 7vw, 105px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(45px, 9vw, 110px);
  background: var(--cream);
}

.order-text {
  color: var(--muted);
  max-width: 520px;
}

form {
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
}

label {
  display: block;
  margin-bottom: 18px;
  font-size: .88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #cbc4be;
  border-radius: 5px;
  font: inherit;
  color: var(--text);
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(158,145,136,.35);
  border-color: var(--taupe);
}

.full {
  width: 100%;
}

.small {
  margin: 12px 0 0;
  font-size: .78rem;
  text-align: center;
  color: var(--muted);
}

footer {
  padding: 40px clamp(20px, 7vw, 105px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .84rem;
}

footer img {
  width: 110px;
  height: 52px;
  object-fit: cover;
  object-position: center 58%;
}

@media (max-width: 850px) {
  .hero,
  .how,
  .order {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 520px) {
  header {
    padding-inline: 15px;
  }

  .brand img {
    width: 110px;
    height: 50px;
  }

  .header-button {
    min-height: 43px;
    padding: 0 13px;
    font-size: .78rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero,
  .section,
  .how,
  .order {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-panel,
  form,
  .cards article {
    padding: 24px;
  }
}
