:root {
  --bg: #f5efe7;
  --surface: #fff8f3;
  --surface-alt: #eadccf;
  --surface-soft: #fff1ea;
  --text: #2f241c;
  --muted: #5d4b3e;
  --line: #dbc8b8;
  --accent: #8a4f58;
  --accent-deep: #6d3745;
  --accent-soft: #9a6e57;
  --gold: #c79d5b;
  --shadow: 0 14px 34px rgba(71, 45, 28, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.4), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-shell { min-height: 100vh; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.container.narrow { width: min(760px, calc(100% - 2rem)); }
.centered { text-align: center; }

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  max-width: 11ch;
}
h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  max-width: 14ch;
}
h3 { font-size: 2rem; }

.hero, .section { padding: 4.75rem 0; }
.surface-light { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.surface-alt { background: var(--surface-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.highlights { padding: 0 0 3rem; }
.hero-grid, .split-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.hero-text, .section-text, .section-intro, .about-copy p, .tour-banner-text {
  color: var(--muted);
  font-size: 1.06rem;
}
.hero-text { max-width: 40rem; margin: 1.5rem 0 0; }
.section-intro { max-width: 48rem; margin: 1rem 0 0; }
.about-copy p + p { margin-top: 1rem; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff8f1;
  border: 1px solid var(--accent);
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.15s ease;
}
.button:hover { transform: translateY(-1px); background: var(--accent-deep); }
.button-secondary {
  background: transparent;
  color: var(--accent);
}
.button-secondary:hover { background: rgba(138,79,88,0.06); }
.button.disabled {
  background: #c8b6ab;
  border-color: #c8b6ab;
  color: #fff;
  box-shadow: none;
  cursor: default;
}

.announcement-pill {
  margin-top: 1.4rem;
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(199,157,91,0.14);
  border: 1px solid rgba(199,157,91,0.38);
  color: var(--accent-deep);
  font-size: 0.95rem;
}

.tour-banner {
  background: var(--surface-soft);
  border-bottom: 1px solid #d9a089;
  padding: 1rem 0;
  text-align: center;
}

.hero-card,
.highlight-card,
.collection-card,
.product-card,
.signup-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  box-shadow: var(--shadow);
}
.hero-card { padding: 1rem; }
.hero-photo-card { background: linear-gradient(180deg, #fff8f3, #f6ecdf); }
.hero-brand-image,
.card-image {
  border-radius: 1.3rem;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(138,79,88,0.12);
  background: linear-gradient(135deg, #f9efe5, #ead7c3);
}

.hero-brand-image {
  aspect-ratio: 5 / 4;
}

.product-image {
  aspect-ratio: 1 / 1;
}
.highlight-card,
.collection-card,
.product-card,
.signup-card { padding: 1.5rem; }
.highlight-card p {
  margin: 0;
  font-size: 1.05rem;
}
.collection-card h3,
.product-card h3 {
  margin-top: 1rem;
}
.collection-card p,
.product-card p,
.signup-card p { color: var(--muted); }
.product-header {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
}
.price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.product-card .button { margin-top: 1rem; width: 100%; }

.signup-card form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.signup-card label {
  display: grid;
  gap: 0.4rem;
  font-weight: 500;
}
input {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fffdf9;
  font: inherit;
}
.hidden-field { display: none; }

.footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}
.footer-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-title { font-weight: 700; }
.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid, .split-grid, .two-up, .three-up {
    grid-template-columns: 1fr;
  }
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
