/* Global Wine&Spirits Awards — Design Tokens */
:root {
  --gwa-ink:       #14100E;
  --gwa-ink-800:   #2C2420;
  --gwa-ink-700:   #4A3E38;
  --gwa-wine:      #6B1524;
  --gwa-wine-700:  #8A2030;
  --gwa-gold:      #B08D57;
  --gwa-gold-400:  #C9A86A;
  --gwa-gold-200:  #E5D6B8;
  --gwa-paper:     #FBFAF8;
  --gwa-paper-200: #F2EFEA;
  --gwa-paper-300: #E8E3DC;
  --gwa-paper-400: #D8D1C9;
  --gwa-cream:     #FFFBF5;
  --gwa-red:       #A62B2B;
  --gwa-green:     #3A6B3A;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(20,16,14,0.05);
  --shadow-md: 0 8px 24px rgba(20,16,14,0.08);
  --shadow-lg: 0 18px 48px rgba(20,16,14,0.12);

  --max-width: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gwa-ink);
  background: var(--gwa-paper);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

.container {
  width: 92%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.serif { font-family: var(--font-display); }
.sans  { font-family: var(--font-body); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gwa-gold);
  color: var(--gwa-ink);
  border-color: var(--gwa-gold);
}
.btn-primary:hover { background: var(--gwa-gold-400); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--gwa-gold);
  border-color: var(--gwa-gold);
}
.btn-outline:hover { background: var(--gwa-gold); color: var(--gwa-ink); }

.btn-dark {
  background: var(--gwa-ink);
  color: var(--gwa-cream);
  border-color: var(--gwa-ink);
}
.btn-dark:hover { background: var(--gwa-ink-800); }

/* Utility */
.text-gold { color: var(--gwa-gold); }
.text-muted { color: var(--gwa-ink-700); }
.text-center { text-align: center; }
.upper { text-transform: uppercase; letter-spacing: 0.12em; }
.small { font-size: 0.85rem; }
.label-tag {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gwa-paper-200);
  color: var(--gwa-ink-700);
}
.label-tag.gold { background: rgba(176,141,87,0.14); color: #7D5D2E; }
.label-tag.wine { background: rgba(107,21,36,0.10); color: var(--gwa-wine); }

/* Score badge */
.score-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  background: var(--gwa-ink);
  color: var(--gwa-gold);
  padding: 0.35rem 0.8rem 0.45rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  line-height: 1;
}
.score-pill .num { font-size: 1.4rem; font-weight: 600; }
.score-pill .den { font-size: 0.75rem; opacity: 0.85; }
.score-pill.large { padding: 0.75rem 1.2rem; }
.score-pill.large .num { font-size: 3rem; }
.score-pill.large .den { font-size: 1.15rem; }

.section-head {
  margin-bottom: 2.2rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--gwa-ink);
}
.section-head p {
  margin-top: 0.5rem;
  color: var(--gwa-ink-700);
  max-width: 640px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center p { margin-left: auto; margin-right: auto; }

@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { width: 94%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
