:root {
  --cream: #f7f1e8;
  --paper: #fffaf4;
  --ink: #2c2824;
  --muted: #756b62;
  --line: rgba(80, 64, 50, 0.16);
  --brown: #59463a;
  --gold: #b99a70;
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Inter", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
}

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

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

.hub {
  min-height: 100vh;
  padding: clamp(28px, 5vw, 72px);
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.brand span {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
}

h1 {
  max-width: 540px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

p {
  margin: 16px 0 0;
  color: var(--muted);
}

.lead {
  max-width: 620px;
  font-size: clamp(17px, 1.5vw, 20px);
}

.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.option-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.preview {
  height: clamp(250px, 30vw, 360px);
  object-fit: cover;
}

.card-body {
  padding: clamp(24px, 3vw, 38px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  min-height: 46px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  padding: 11px 20px;
  background: var(--brown);
  color: #fffaf4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note {
  max-width: 760px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 15px;
}

@media (max-width: 820px) {
  .intro,
  .options {
    grid-template-columns: 1fr;
  }

  .brand {
    margin-bottom: 54px;
  }

  h1 {
    font-size: clamp(30px, 10vw, 42px);
  }
}
