/* ── SIGNATURE DRINK PAGES ────────────────────────────────────────── */
/* Owns: .signature-hero, .sig-section, .sig-ingredient-list,         */
/*       .sig-pairs-list, .sig-nav-links, .sig-cta.                  */
/* Does NOT own: global nav (.sig-nav), footer, or theme variables.   */

.sig-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

/* ── SHARED HERO ── */
.signature-hero {
  background: var(--mahogany);
  padding: 120px 40px 96px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow — warm, intimate */
.signature-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(184,150,12,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 30% 10%, rgba(196,149,106,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Brass bottom rule — consistent with story hero */
.signature-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--brass) 0px,
    var(--brass) 40px,
    transparent 40px,
    transparent 56px
  );
  opacity: 0.25;
}

.sig-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.sig-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 20px;
  display: block;
}

.sig-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.sig-tagline {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(245,239,230,0.65);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
}

/* ── SECTIONS ── */
.sig-section {
  padding: 72px 40px;
}

.sig-section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sig-section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 16px;
  display: block;
}

.sig-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--mahogany);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.sig-body-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.85;
  font-weight: 300;
}

.sig-body-text + .sig-body-text {
  margin-top: 16px;
}

/* ── WHY SECTION (cream-deep, centered) ── */
.sig-why-section {
  background: var(--cream-deep);
  border-top: 1px solid rgba(92,61,46,0.06);
  border-bottom: 1px solid rgba(92,61,46,0.06);
}

/* ── PAIRS SECTION ── */
.sig-pairs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sig-pair-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(92,61,46,0.1);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sig-pair-item:hover {
  border-color: rgba(184,150,12,0.35);
  box-shadow: 0 2px 12px rgba(92,61,46,0.08);
}

.sig-pair-arrow {
  font-size: 16px;
  color: var(--brass);
  flex-shrink: 0;
  line-height: 1;
}

.sig-pair-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--mahogany);
  line-height: 1.3;
}

.sig-pair-desc {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.5;
  margin-top: 2px;
}

/* ── CROSS-NAVIGATION ── */
.sig-nav-section {
  padding: 64px 40px;
  background: var(--mahogany);
}

.sig-nav-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sig-nav-header {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.4);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 28px;
  display: block;
  text-align: center;
}

.sig-nav-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.sig-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  background: rgba(245,239,230,0.06);
  border: 1px solid rgba(245,239,230,0.12);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  min-width: 160px;
}

.sig-nav-link:hover {
  background: rgba(245,239,230,0.1);
  border-color: rgba(184,150,12,0.35);
}

.sig-nav-drink-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  line-height: 1.3;
}

.sig-nav-drink-tagline {
  font-size: 12px;
  color: rgba(245,239,230,0.45);
  font-weight: 300;
  text-align: center;
}

.sig-back-link {
  display: inline-block;
  font-size: 12px;
  color: rgba(245,239,230,0.4);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  margin-top: 28px;
}

.sig-back-link:hover {
  color: var(--brass);
}

.sig-back-link::before {
  content: '← ';
}

/* ── CTA SECTION ── */
.sig-cta-section {
  background: var(--cream-deep);
  text-align: center;
  padding: 72px 40px;
}

.sig-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.sig-cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  color: var(--mahogany);
  margin-bottom: 12px;
  line-height: 1.2;
}

.sig-cta-sub {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  font-weight: 300;
  margin-bottom: 40px;
}

.sig-cta-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}

.sig-cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--mahogany);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}

.sig-cta-btn:hover {
  background: var(--mahogany-light);
}

.sig-cta-link {
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 400;
  border-bottom: 1px solid rgba(92,61,46,0.3);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.sig-cta-link:hover {
  color: var(--mahogany);
}

/* ── TODO BLOCK ── */
.sig-todo {
  background: #FFF8E6;
  border: 1px dashed rgba(184,150,12,0.4);
  border-radius: 6px;
  padding: 20px 24px;
  margin-top: 24px;
}

.sig-todo-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8960C;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  display: block;
  margin-bottom: 8px;
}

.sig-todo-body {
  font-size: 13px;
  color: #5C3D2E;
  line-height: 1.7;
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .signature-hero { padding: 80px 24px 72px; }
  .sig-section { padding: 56px 24px; }
  .sig-nav-section { padding: 56px 24px; }
  .sig-cta-section { padding: 56px 24px; }

  .sig-nav-links {
    flex-direction: column;
    align-items: center;
  }

  .sig-nav-link {
    width: 100%;
    max-width: 300px;
  }

  .sig-cta-actions {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .sig-hero-title { font-size: 36px; }
  .sig-cta-headline { font-size: 28px; }
}

/* Fix text overflow in inline ingredient lists on signature pages */
@media (max-width: 480px) {
  .sig-section-inner ul li {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .sig-section-inner ul li span:first-child {
    min-width: auto !important;
    font-size: 14px;
  }
}