/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; }

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F0E0D;
  color: #D6CFC6;
  font-family: 'EB Garamond', Georgia, serif;
  padding: 1.5rem;
}

/* ── Plate Border (19th c. scientific plate frame) ── */
.plate-border {
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(181,148,98,0.3);
  padding: 1px;
}

.plate-inner {
  border: 1px solid rgba(181,148,98,0.15);
  padding: 3rem 2.5rem 2rem;
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Engraving Lines ── */
.engraving-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #B59462 20%, #B59462 80%, transparent 100%);
  margin: 1rem 0;
}

.engraving-line.thin {
  background: linear-gradient(90deg, transparent 0%, rgba(181,148,98,0.25) 20%, rgba(181,148,98,0.25) 80%, transparent 100%);
}

/* ── Header ── */
.header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: #EDE6DC;
  line-height: 1;
  margin: 0.8rem 0 0.3rem;
}

.brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: #B59462;
  text-transform: uppercase;
}

/* ── Manifesto ── */
.manifesto {
  margin-bottom: 1.5rem;
  line-height: 1.85;
  font-size: 1rem;
}

.manifesto p {
  margin-bottom: 1rem;
  color: #C4BBB0;
}

.manifesto p:last-child {
  color: #B59462;
  font-style: italic;
  margin-bottom: 0;
}

.drop-cap::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  float: left;
  font-size: 3.2rem;
  line-height: 0.8;
  padding-right: 0.4rem;
  padding-top: 0.15rem;
  color: #B59462;
  font-weight: 600;
}

/* ── Bottles ── */
.bottles {
  margin: 1.5rem 0;
}

.section-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #8A7E72;
  text-align: center;
  margin-bottom: 1.2rem;
}

.bottle-list {
  list-style: none;
}

.bottle-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(181,148,98,0.08);
  gap: 1rem;
}

.bottle-list li:last-child { border-bottom: none; }

.bottle-list li.group-break {
  border-bottom: none;
  height: 0.6rem;
  padding: 0;
}

.bottle-list li.group-break + li {
  border-top: 1px solid rgba(181,148,98,0.08);
  padding-top: 0.45rem;
}

.bottle-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #D6CFC6;
  letter-spacing: 0.02em;
}

.bottle-name .x {
  color: #B59462;
}

.bottle-desc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 300;
  color: #8A7E72;
  text-align: right;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* ── Subscribe ── */
.subscribe-section {
  text-align: center;
  margin: 1.5rem 0;
}

.subscribe-copy {
  font-style: italic;
  color: #8A7E72;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.subscribe-form { margin-bottom: 0; }

.form-group {
  display: flex;
  max-width: 320px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(181,148,98,0.3);
  transition: border-color 0.3s;
}

.form-group:focus-within {
  border-color: rgba(181,148,98,0.7);
}

.form-group input {
  flex: 1;
  padding: 0.6rem 0;
  background: transparent;
  border: none;
  outline: none;
  color: #D6CFC6;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.form-group input::placeholder { color: #5A5249; }

.form-group button {
  padding: 0.6rem 0.8rem;
  background: transparent;
  border: none;
  color: #B59462;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
  font-family: 'EB Garamond', serif;
}

.form-group button:hover { color: #EDE6DC; }
.form-group button:disabled { opacity: 0.4; cursor: not-allowed; }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  min-height: 1em;
  font-style: italic;
}

.form-status.success { color: #8fbc8f; }
.form-status.error   { color: #cd5c5c; }

/* ── Footer ── */
.footer {
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.5rem;
}

.footer p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 300;
  color: #5A5249;
  letter-spacing: 0.15em;
}

.social-links {
  margin-top: 0.5rem;
}

.social-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 300;
  color: #5A5249;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover { color: #B59462; }

/* ── Responsive ── */
@media (max-width: 500px) {
  .plate-inner { padding: 2rem 1.5rem 1.5rem; }
  .brand { font-size: 2rem; letter-spacing: 0.25em; }
  .bottle-list li { flex-direction: column; gap: 0.1rem; }
  .bottle-desc { text-align: left; }
}
