/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9962A;
  --gold-light: #E8B84B;
  --dark: #1A1208;
  --dark-mid: #2D2010;
  --mid: #4A3520;
  --text: #2C1F0E;
  --text-muted: #6B5744;
  --bg: #FEFAF4;
  --bg-alt: #F5EDD8;
  --white: #FFFFFF;
  --border: #E8D9C0;
  --green: #3A6B35;
  --red: #8B2020;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(42, 26, 8, 0.10);
  --shadow-lg: 0 8px 40px rgba(42, 26, 8, 0.15);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 18, 8, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 150, 42, 0.2);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(10,8,4,0.82) 0%, rgba(26,18,8,0.72) 50%, rgba(20,40,15,0.55) 100%),
    url('https://images.unsplash.com/photo-Med8BHIsmRU?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat,
    linear-gradient(135deg, #1a1208 0%, #3d2c0e 50%, #2d3d1a 100%);
  overflow: hidden;
  padding: 80px 24px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,150,42,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  text-align: right;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.4;
}

.hero-badge strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,150,42,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* ===== FACTS BAR ===== */
.facts-bar {
  background: var(--dark);
  padding: 28px 24px;
  border-bottom: 1px solid rgba(201,150,42,0.15);
}

.facts-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.fact {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fact-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
}

.fact-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== BEER CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.beer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.beer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.beer-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff 70%, #FFF8EC 100%);
}

.beer-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.beer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.beer-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.beer-style {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.beer-card p:not(.beer-style) {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.beer-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.beer-tags li {
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ===== BREWERIES ===== */
.brewery-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.brewery-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.brewery-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.brewery-location {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.brewery-card p:not(.brewery-location) {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.brewery-card p:last-child { margin-bottom: 0; }

.brewery-card.emerging { border-color: #3A6B35; }

.emerging-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== LOCATION GRID ===== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.location-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.location-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== TRAVEL TIPS ===== */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.travel-tip {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.travel-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.travel-tip h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.travel-tip p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.travel-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.travel-link:hover { color: var(--gold-light); }

/* ===== AFFILIATE BOX ===== */
.affiliate-box {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(201,150,42,0.25);
}

.affiliate-box h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.affiliate-box > p:first-of-type {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 28px;
}

.affiliate-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.affiliate-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.affiliate-btn:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-1px);
}

.affiliate-btn-secondary {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(201,150,42,0.5);
}

.affiliate-btn-secondary:hover {
  background: rgba(201,150,42,0.1);
  color: var(--gold-light);
}

.affiliate-disclaimer {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--gold); }

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
}

.newsletter-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-box > p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(201,150,42,0.3);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-note {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  margin-top: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: #110C05;
  border-top: 1px solid rgba(201,150,42,0.15);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h4, .footer-links h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-about p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

.footer-disclaimer {
  max-width: 400px;
}

/* ===== BEER CARD IMAGES ===== */
.beer-img {
  width: calc(100% + 48px);
  margin: -28px -24px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 400 / 260;
  background: var(--bg-alt);
}

.beer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.beer-card:hover .beer-img img {
  transform: scale(1.03);
}

/* ===== PHOTO CREDIT ===== */
.photo-credit {
  text-align: center;
  padding: 10px 0 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

.photo-credit a {
  color: rgba(255,255,255,0.35);
}

.photo-credit a:hover {
  color: rgba(255,255,255,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(26,18,8,0.98);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(201,150,42,0.2);
  }

  .hero-badge { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section { padding: 56px 0; }

  .affiliate-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .facts-inner { gap: 24px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: unset; width: 100%; }
}
