/* =========================================================
   CRAZY BEER — Stylesheet
   Colors: Background #FBF6EE | Text #1A0F02 | Accent #C67C2A
           Surface #FFFFFF | Muted #6B4E28 | Border #E8D9C0
           Dark BG #1A0F02 | Dark Text #F5EAD5
           Highlight #E8A838
   Fonts: Oswald (headings), Merriweather (body)
   ========================================================= */

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

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

body {
  background-color: #FBF6EE;
  color: #1A0F02;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ----- Focus Visible ----- */
:focus-visible {
  outline: 2.5px solid #C67C2A;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----- Portfolio Credit Bar ----- */
.portfolio-credit {
  background-color: #1A0F02;
  color: #6B4E28;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.5rem 1rem;
  line-height: 1.5;
}

.portfolio-credit a {
  color: #C67C2A;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.portfolio-credit a:hover {
  color: #F5EAD5;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: #C67C2A;
  color: #FBF6EE;
  border-color: #C67C2A;
}

.btn-primary:hover {
  background-color: #1A0F02;
  border-color: #1A0F02;
  color: #F5EAD5;
}

.btn-outline {
  background-color: transparent;
  color: #1A0F02;
  border-color: #C67C2A;
  font-size: 0.8rem;
  padding: 0.55rem 1.25rem;
}

.btn-outline:hover {
  background-color: #C67C2A;
  color: #FBF6EE;
}

.btn-outline-light {
  background-color: transparent;
  color: #F5EAD5;
  border-color: #C67C2A;
  font-size: 0.8rem;
  padding: 0.55rem 1.25rem;
}

.btn-outline-light:hover {
  background-color: #C67C2A;
  color: #F5EAD5;
}

/* ----- Site Header ----- */
.site-header {
  background-color: #FBF6EE;
  border-bottom: 2px solid #C67C2A;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A0F02;
  line-height: 1;
}

.brand-icon {
  flex-shrink: 0;
}

.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B4E28;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #1A0F02;
}

.site-nav .nav-cta {
  background-color: #C67C2A;
  color: #FBF6EE;
  padding: 0.4rem 1rem;
  transition: background-color 0.2s ease;
}

.site-nav .nav-cta:hover {
  background-color: #1A0F02;
  color: #F5EAD5;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  align-items: center;
}

/* Mobile Nav */
.mobile-nav {
  background-color: #1A0F02;
  padding: 1.5rem 1.25rem;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5EAD5;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: #C67C2A;
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: #FBF6EE;
}

.hero-bg-decoration {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C67C2A;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #1A0F02;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: #6B4E28;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 600px;
}

.hero-sub {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.9rem;
  color: #6B4E28;
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
  font-weight: 300;
}

/* ----- Strip Decoration ----- */
.strip-decoration {
  line-height: 0;
  overflow: hidden;
}

/* ----- Section Label ----- */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C67C2A;
  margin-bottom: 0.75rem;
}

.section-label--amber {
  color: #E8A838;
}

/* ----- Philosophy Section ----- */
.section-philosophy {
  padding: 6rem 0;
  background-color: #FFFFFF;
  border-top: 1px solid #E8D9C0;
  border-bottom: 1px solid #E8D9C0;
}

.section-philosophy h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #1A0F02;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.philosophy-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-text p {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: #1A0F02;
  max-width: 600px;
}

.philosophy-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  border-left: 3px solid #C67C2A;
  padding-left: 1.25rem;
}

.stat-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #C67C2A;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #6B4E28;
  line-height: 1.5;
}

/* ----- Lineup Section ----- */
.section-lineup {
  padding: 6rem 0;
  background-color: #FBF6EE;
}

.section-lineup h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #1A0F02;
  margin-bottom: 0.75rem;
}

.section-intro {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 300;
  font-style: italic;
  color: #6B4E28;
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}

.beer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.beer-card {
  background-color: #FFFFFF;
  border: 1px solid #E8D9C0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.beer-card:hover {
  border-color: #C67C2A;
  box-shadow: 0 4px 20px rgba(198, 124, 42, 0.1);
}

.beer-card--dark {
  background-color: #1A0F02;
  border-color: #C67C2A;
}

.beer-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.beer-icon {
  width: 48px;
  height: 48px;
}

.beer-abv {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #C67C2A;
  text-align: right;
  line-height: 1;
  padding-top: 0.25rem;
}

.beer-abv--light {
  color: #E8A838;
}

.beer-body {
  flex: 1;
}

.beer-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1A0F02;
  margin-bottom: 0.25rem;
  line-height: 1.15;
}

.beer-card--dark h3 {
  color: #F5EAD5;
}

.beer-style {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C67C2A;
  margin-bottom: 0.75rem;
}

.beer-style--light {
  color: #E8A838;
}

.beer-desc {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: #6B4E28;
}

.beer-desc--light {
  color: #F5EAD5;
  opacity: 0.8;
}

.beer-footer {
  padding-top: 0.25rem;
}

/* ----- Find Us Section (dark) ----- */
.section-find-us {
  background-color: #1A0F02;
  color: #F5EAD5;
  padding: 6rem 0;
}

.section-find-us h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #F5EAD5;
  margin-bottom: 1.25rem;
}

.find-us-intro {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: #F5EAD5;
  opacity: 0.75;
  max-width: 640px;
  margin-bottom: 3rem;
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.channel {
  border-top: 1px solid rgba(232, 217, 192, 0.2);
  padding-top: 1.75rem;
}

.channel-icon {
  margin-bottom: 1.1rem;
}

.channel h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #E8A838;
  margin-bottom: 0.6rem;
}

.channel p {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: #F5EAD5;
  opacity: 0.75;
}

/* ----- Testimonials Section ----- */
.section-testimonials {
  padding: 6rem 0;
  background-color: #FBF6EE;
  border-top: 1px solid #E8D9C0;
}

.section-testimonials h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #1A0F02;
  margin-bottom: 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial {
  background-color: #FFFFFF;
  border: 1px solid #E8D9C0;
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.2s ease;
}

.testimonial:hover {
  border-color: #C67C2A;
}

.testimonial-quote-mark {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #C67C2A;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

.testimonial p {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: #1A0F02;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C67C2A;
  font-style: normal;
}

/* ----- CTA Section ----- */
.section-cta {
  padding: 6rem 0;
  background-color: #1A0F02;
  text-align: center;
}

.cta-inner {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-hop-decoration {
  margin-bottom: 0.5rem;
}

.section-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #F5EAD5;
}

.cta-body {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #F5EAD5;
  opacity: 0.7;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* ----- Site Footer ----- */
.site-footer {
  background-color: #1A0F02;
  border-top: 1px solid rgba(232, 217, 192, 0.15);
  color: #F5EAD5;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F5EAD5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: #6B4E28;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #C67C2A;
}

.footer-divider {
  border-top: 1px solid rgba(198, 124, 42, 0.15);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: #6B4E28;
}

.footer-credit {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: #6B4E28;
}

.footer-credit a {
  color: #C67C2A;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: #F5EAD5;
}

/* =========================================================
   RESPONSIVE — Tablet 640px+
   ========================================================= */
@media (min-width: 640px) {

  .beer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .philosophy-stats {
    flex-direction: row;
    gap: 2rem;
  }

  .stat {
    flex: 1;
  }

  .channels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
  }

}

/* =========================================================
   RESPONSIVE — Desktop 768px+
   ========================================================= */
@media (min-width: 768px) {

  .site-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero {
    padding: 8rem 0 9rem;
  }

  .hero-bg-decoration {
    opacity: 1;
  }

  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .philosophy-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat {
    flex: none;
  }
}

/* =========================================================
   RESPONSIVE — Large Desktop 1024px+
   ========================================================= */
@media (min-width: 1024px) {

  .beer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .beer-card {
    min-height: 360px;
  }
}

/* Mobile nav fix — hide secondary links, keep the CTA on phones */
@media (max-width: 639px) {
  .nav-links { gap: 0.75rem; }
  .nav-links li:not(:has(.nav-cta)) { display: none; }
}
