
:root {
  --cream: #f4efe2;
  --cream-2: #ebe1cc;
  --charcoal: #11110f;
  --charcoal-soft: #272720;
  --gold: #a58743;
  --olive: #5e6745;
  --muted: #746f63;
  --border: rgba(17, 17, 15, 0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top, rgba(165, 135, 67, 0.13), transparent 34rem),
    linear-gradient(135deg, var(--cream), var(--cream-2));
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(17, 17, 15, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}
.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 28px;
  position: relative;
}
.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 0 56px;
}
.hero-logo {
  width: min(860px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 6px;
  filter: drop-shadow(0 20px 70px rgba(17, 17, 15, 0.05));
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  font-weight: 700;
  color: var(--olive);
}
.intro {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  color: var(--muted);
}
.cta-card {
  width: min(640px, 100%);
  margin: 36px auto 0;
  padding: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  box-shadow: 0 24px 80px rgba(17, 17, 15, 0.08);
}
.cta-card h2,
.collection-preview h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1;
  letter-spacing: -0.035em;
}
.cta-card p {
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.5;
}
.signup-form {
  display: flex;
  gap: 10px;
  margin: 18px 0 10px;
}
.signup-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 15px 18px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--charcoal);
  outline: none;
}
.signup-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(165, 135, 67, 0.14);
}
.signup-form button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  background: var(--charcoal);
  color: var(--cream);
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.signup-form button:hover {
  transform: translateY(-1px);
  background: #000;
}
.form-note { font-size: 13px; }
.collection-preview {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(17, 17, 15, 0.045);
}
.collection-preview > div > p {
  color: var(--muted);
  line-height: 1.6;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.product-grid article {
  min-height: 178px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.30);
}
.product-type {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
}
.product-grid h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1;
}
.product-grid p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.story {
  margin: 28px 0;
  padding: 38px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.22);
  border-radius: 0 26px 26px 0;
}
.story p:last-child {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.26;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px 2px 18px;
}
footer p { margin: 0; font-weight: 700; }
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 700;
}
footer a:hover { color: var(--gold); }
@media (max-width: 860px) {
  .collection-preview { grid-template-columns: 1fr; }
  .hero-logo { width: min(100%, 700px); }
}
@media (max-width: 640px) {
  .page-shell { width: min(100% - 20px, 1120px); }
  .hero { padding-top: 30px; }
  .hero-logo { width: 100%; }
  .intro { font-size: 17px; }
  .cta-card, .collection-preview, .story { padding: 22px; }
  .signup-form { flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 26px;
  }
}
