/* RESET & BASE ------------------------------------------------------------ */

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

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui,
    -system-ui, sans-serif;
  background: radial-gradient(circle at top, #fff7ea 0%, #f6d9aa 60%, #f1c48a 100%);
  color: #5b3921; /* warm brown, no pure black */
  line-height: 1.6;
}

/* LAYOUT ------------------------------------------------------------------ */

main {
  max-width: 1120px;
  margin: 0 auto 80px;
  padding: 110px 16px 32px;
}

/* HEADER ------------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(255, 247, 234, 0.98),
    rgba(246, 217, 170, 0.92)
  );
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(101, 67, 33, 0.22);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Logo */

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, #fff8e6 0%, #f5d38c 35%, #d58b1b 78%);
  box-shadow: 0 4px 12px rgba(101, 67, 33, 0.4);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f3d888; /* gold text */
  font-weight: 800;
}

.logo-text-tagline {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a06633;
}

/* Nav */

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav a {
  text-decoration: none;
  color: #6a3f23;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  opacity: 0.9;
  font-weight: 600;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease,
    text-shadow 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
  border-color: #f3d888;
  transform: translateY(-1px);
  text-shadow: 0 0 6px rgba(243, 216, 136, 0.7);
}

/* HERO -------------------------------------------------------------------- */

.hero-section {
  margin-top: 26px;
  margin-bottom: 32px;
}

.hero-card {
  background: radial-gradient(circle at top left, #fffdf8 0%, #f9e2b8 46%, #f2c98b 100%);
  border-radius: 30px;
  padding: 30px 24px 26px;
  box-shadow: 0 20px 45px rgba(101, 67, 33, 0.28);
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a5672b;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 26px;
  font-weight: 800;
  color: #3c2414;
  margin-bottom: 10px;
}

.hero-copy {
  font-size: 14px;
  color: #6a4224;
  max-width: 640px;
  margin-bottom: 18px;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
}

.hero-lineup-image {
  width: 100%;
  max-width: 880px;
  border-radius: 26px;
  box-shadow: 0 20px 46px rgba(101, 67, 33, 0.38);
}

/* SECTION CARDS ----------------------------------------------------------- */

.section-card {
  background: linear-gradient(to bottom, #ffe8c7 0%, #f6cf8a 100%);
  border-radius: 28px;
  padding: 24px 20px 26px;
  margin-bottom: 24px;
  box-shadow: 0 18px 38px rgba(101, 67, 33, 0.26);
}

.section-title {
  font-size: 21px;
  color: #3c2414;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 14px;
  color: #7b4b26;
  margin-bottom: 12px;
}

.section-copy {
  font-size: 14px;
  color: #6b4324;
  margin-bottom: 8px;
}

.section-copy.small {
  font-size: 12px;
  opacity: 0.9;
}

.section-bullets {
  margin: 8px 0 10px 20px;
  font-size: 14px;
  color: #6b4324;
}

.section-bullets li {
  margin-bottom: 4px;
}

/* FLAVOR GRID ------------------------------------------------------------- */

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.flavor-item {
  background: rgba(255, 248, 232, 0.96);
  border-radius: 20px;
  padding: 14px 10px 16px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(101, 67, 33, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  border: 1px solid rgba(243, 216, 136, 0.0);
}

.flavor-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 30px rgba(101, 67, 33, 0.28);
  border-color: rgba(243, 216, 136, 0.9);
}

.flavor-item h3 {
  font-size: 15px;
  color: #3c2414;
  margin: 10px 0 4px;
}

.flavor-item p {
  font-size: 13px;
  color: #6f4522;
}

.flavor-image {
  width: 110px;
  height: auto;
  margin-bottom: 6px;
}

/* CLUB TRIO --------------------------------------------------------------- */

.club-trio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.club-card {
  background: rgba(255, 248, 232, 0.96);
  border-radius: 20px;
  padding: 14px 12px 16px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(101, 67, 33, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  border: 1px solid rgba(243, 216, 136, 0.0);
}

.club-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 30px rgba(101, 67, 33, 0.28);
  border-color: rgba(243, 216, 136, 0.9);
}

.club-card h3 {
  font-size: 15px;
  margin: 10px 0 4px;
  color: #3c2414;
}

.club-card p {
  font-size: 13px;
  color: #6f4522;
}

.club-image {
  width: 120px;
  height: auto;
  margin-bottom: 6px;
}

/* TRIO IMAGE -------------------------------------------------------------- */

.trio-image-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.trio-image {
  width: 100%;
  max-width: 760px;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(101, 67, 33, 0.32);
}

/* CHIPS ------------------------------------------------------------------- */

.chip-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.98);
  color: #7a4a26;
  font-size: 12px;
  box-shadow: 0 7px 16px rgba(101, 67, 33, 0.26);
  border: 1px solid rgba(243, 216, 136, 0.6);
  text-transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.chip:hover {
  transform: translateY(-2px);
  background: #fff7e4;
  box-shadow: 0 10px 22px rgba(101, 67, 33, 0.32);
}

/* CONTACT ----------------------------------------------------------------- */

.contact-card {
  margin-bottom: 40px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-label {
  width: 90px;
  font-weight: 600;
  color: #4a2b17;
}

.contact-value a {
  color: #7b4b26;
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 90, 42, 0.35);
}

.contact-value a:hover {
  border-color: #f3d888;
}

/* Divider & Legal --------------------------------------------------------- */

.divider {
  border: none;
  border-top: 1px solid rgba(139, 90, 42, 0.25);
  margin: 12px 0 10px;
}

.legal-line {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  color: #4a2b17;
}

/* FOOTER GOLD BAR --------------------------------------------------------- */

.site-footer {
  background: linear-gradient(to right, #f0bf6a, #f6d895, #f0bf6a);
  padding: 10px 12px 12px;
  box-shadow: 0 -6px 20px rgba(101, 67, 33, 0.32);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5b3921;
}

/* ANIMATIONS -------------------------------------------------------------- */

.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE -------------------------------------------------------------- */

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-card {
    padding: 24px 16px 20px;
  }

  .section-card {
    padding: 20px 14px 22px;
  }
}