/* TILL page-specific CSS (keeps existing HTML structure) */
/* Uses design tokens and shared components from styles.css */

main { padding-top: 2.0rem; } /* account for fixed navbar */

.hero { padding: 2.5rem 0 3.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 2.8rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3.6vw, 3.1rem);
  line-height: 1.05;
}
.hero-title span { color: var(--accent); }

.hero-subtitle {
  margin-top: 1.05rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 36rem;
}

/* Bottle card (same look as index hero card) */
.bottle-card {
  position: relative;
  border-radius: 1.4rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: radial-gradient(circle at top, #ffffff, #f2f2f2);
  padding: 1.2rem 1.2rem 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.bottle-image-wrapper {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bottle-glow {
  position: absolute;
  bottom: 12%;
  width: 85%;
  height: 65%;
  background: radial-gradient(circle, rgba(138,107,47,0.22), transparent 65%);
  opacity: 0.75;
  filter: blur(12px);
}

.bottle-image {
  height: 320px;
  position: relative;
  z-index: 2;
}

section { padding: 3rem 0; border-top: 1px solid rgba(0,0,0,0.06); }

h2.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: .4rem;
}

h2.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

p { font-size: 1rem; line-height: 1.85; color: #2c2c2c; margin-bottom: 1rem; }

.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.2rem; }

.fact-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1.1rem;
  padding: 1.4rem;
  background: radial-gradient(circle at top, #fff, #f4f4f4);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

ul { margin-left: 1.2rem; }
li { margin-bottom: .35rem; font-size: 1rem; line-height: 1.7; }

@media (max-width: 900px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .bottle-image { height: 360px; }
}
