:root {
  --preto: #0b0b0c;
  --preto-2: #141416;
  --dourado: #c7a049;
  --dourado-claro: #e6cf9c;
  --marfim: #f4f1ea;
  --cinza: #9a958c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  background: radial-gradient(120% 120% at 50% 0%, var(--preto-2) 0%, var(--preto) 60%);
  color: var(--marfim);
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100%;
}

.wrap {
  margin: auto;
  width: min(680px, 90vw);
  padding: 64px 0;
  text-align: center;
}

.brand { margin-bottom: 56px; }

.brand__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--marfim);
}

.brand__sub {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  letter-spacing: 0.65em;
  text-indent: 0.65em;
  color: var(--dourado);
  margin-top: 6px;
}

.lead h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 4.6vw, 2.5rem);
  line-height: 1.35;
  color: var(--marfim);
}

.lead__note {
  margin-top: 28px;
  color: var(--dourado-claro);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.lead__meta {
  margin-top: 8px;
  color: var(--cinza);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid var(--dourado);
  color: var(--dourado);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn:hover { background: var(--dourado); color: var(--preto); }

.link {
  color: var(--cinza);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.link:hover { color: var(--marfim); }

.foot {
  margin-top: 72px;
  color: #6d6a63;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 2;
}

.foot a { color: var(--dourado); text-decoration: none; }
.foot a:hover { color: var(--dourado-claro); }
