/* ============================================
   jw-style.css — 加拿大2.8 冰酒品鉴平台主样式
   CSS前缀: jw-
   设计风格: 冰酒晶莹剔透风 (Crystal Icewine)
   ============================================ */

/* --- Google Fonts 本地化替代 (使用系统字体回退) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --jw-gold: #8E793E;
  --jw-frost-white: #F5F1E6;
  --jw-wine-red: #4A0E1A;
  --jw-ice-blue: #A4CFF2;
  --jw-bg: #FFFFFF;
  --jw-text: #333333;
  --jw-text-light: #757575;
  --jw-radius: 4px;
  --jw-shadow: 0 8px 30px rgba(142, 121, 62, 0.1);
  --jw-font-title: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --jw-font-body: 'Lora', 'Georgia', 'Times New Roman', serif;
  --jw-transition: 300ms ease;
}

/* --- 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 {
  font-family: var(--jw-font-body);
  color: var(--jw-text);
  background-color: var(--jw-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--jw-gold); text-decoration: none; transition: color var(--jw-transition); }
a:hover { color: var(--jw-wine-red); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--jw-font-title);
  color: var(--jw-text);
  line-height: 1.3;
  margin-bottom: 0.6em;
}

h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.9rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 500; }

p { margin-bottom: 1.2em; color: var(--jw-text); }

blockquote {
  border-left: 3px solid var(--jw-gold);
  padding: 1em 1.5em;
  margin: 1.5em 0;
  background: var(--jw-frost-white);
  border-radius: var(--jw-radius);
  font-style: italic;
  color: var(--jw-text-light);
}

/* --- Container --- */
.jw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.jw-section {
  padding: 80px 0;
}

.jw-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.jw-section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.jw-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--jw-gold), transparent);
}

.jw-section-title p {
  color: var(--jw-text-light);
  max-width: 600px;
  margin: 15px auto 0;
}

/* --- Grape Vine SVG Divider --- */
.jw-vine-divider {
  text-align: center;
  padding: 20px 0;
  opacity: 0.4;
}

.jw-vine-divider svg {
  width: 200px;
  height: 30px;
}

/* --- Header / Navigation --- */
.jw-header {
  background: var(--jw-frost-white);
  border-bottom: 1px solid rgba(142, 121, 62, 0.2);
  padding: 0;
  z-index: 1000;
  transition: background var(--jw-transition), backdrop-filter var(--jw-transition);
}

.jw-header.jw-header-scrolled {
  background: rgba(245, 241, 230, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.jw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.jw-logo {
  font-family: var(--jw-font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--jw-gold);
  letter-spacing: 1px;
}

.jw-logo span {
  color: var(--jw-wine-red);
}

.jw-nav { display: flex; align-items: center; gap: 5px; }

.jw-nav a {
  font-family: var(--jw-font-body);
  font-size: 0.9rem;
  color: var(--jw-text);
  padding: 8px 14px;
  position: relative;
  transition: color var(--jw-transition);
}

.jw-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--jw-gold);
  transition: width var(--jw-transition);
}

.jw-nav a:hover,
.jw-nav a.jw-active {
  color: var(--jw-gold);
}

.jw-nav a:hover::after,
.jw-nav a.jw-active::after {
  width: 70%;
}

.jw-nav-cta {
  background: var(--jw-gold) !important;
  color: #fff !important;
  border-radius: var(--jw-radius);
  padding: 10px 20px !important;
  font-weight: 500;
  transition: transform var(--jw-transition), box-shadow var(--jw-transition) !important;
}

.jw-nav-cta::after { display: none !important; }

.jw-nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(142, 121, 62, 0.3);
  color: #fff !important;
}

/* --- Hamburger Menu --- */
.jw-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.jw-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--jw-text);
  transition: transform var(--jw-transition), opacity var(--jw-transition);
}

.jw-hamburger.jw-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.jw-hamburger.jw-active span:nth-child(2) { opacity: 0; }
.jw-hamburger.jw-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Mobile Nav Overlay --- */
.jw-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(245, 241, 230, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: right 0.4s ease;
}

.jw-mobile-nav.jw-open { right: 0; }

.jw-mobile-nav a {
  font-family: var(--jw-font-title);
  font-size: 1.3rem;
  color: var(--jw-text);
  padding: 10px 20px;
}

.jw-mobile-nav a:hover { color: var(--jw-gold); }

/* --- Hero Section --- */
.jw-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.jw-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.jw-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.jw-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.jw-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.jw-hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.jw-hero-content h3 {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 35px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* --- Buttons --- */
.jw-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--jw-radius);
  font-family: var(--jw-font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--jw-transition);
  border: none;
  text-align: center;
}

.jw-btn-primary {
  background: var(--jw-gold);
  color: #fff;
}

.jw-btn-primary:hover {
  background: #7a6935;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--jw-shadow);
}

.jw-btn-outline {
  background: transparent;
  color: var(--jw-gold);
  border: 2px solid var(--jw-gold);
}

.jw-btn-outline:hover {
  background: var(--jw-gold);
  color: #fff;
}

.jw-btn-white {
  background: #fff;
  color: var(--jw-gold);
}

.jw-btn-white:hover {
  background: var(--jw-frost-white);
  color: var(--jw-wine-red);
  transform: translateY(-2px);
}

/* --- Wine Cards --- */
.jw-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.jw-wine-card {
  background: #fff;
  border-radius: var(--jw-radius);
  box-shadow: var(--jw-shadow);
  overflow: hidden;
  transition: transform var(--jw-transition), box-shadow var(--jw-transition);
  border: 1px solid rgba(142, 121, 62, 0.08);
}

.jw-wine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(142, 121, 62, 0.18);
}

.jw-wine-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.jw-wine-card-body {
  padding: 25px;
}

.jw-wine-card-body h4 {
  margin-bottom: 10px;
}

.jw-badge {
  display: inline-block;
  background: var(--jw-wine-red);
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.jw-badge-gold {
  background: var(--jw-gold);
}

/* --- Flavor Wheel --- */
.jw-flavor-wheel-section {
  background: var(--jw-frost-white);
}

.jw-flavor-wheel-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}

.jw-flavor-wheel {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.jw-flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jw-flavor-tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--jw-gold);
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--jw-gold);
  cursor: pointer;
  transition: all var(--jw-transition);
  background: #fff;
}

.jw-flavor-tag:hover,
.jw-flavor-tag.jw-active {
  background: var(--jw-gold);
  color: #fff;
}

.jw-flavor-results {
  margin-top: 30px;
}

/* --- Video Module --- */
.jw-video-section {
  background: #1a1a1a;
  color: #fff;
}

.jw-video-section h2 { color: #fff; }
.jw-video-section p { color: rgba(255,255,255,0.7); }

.jw-video-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--jw-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.jw-video-wrap video {
  width: 100%;
  display: block;
}

/* --- Map Section --- */
.jw-map-section {
  background: var(--jw-frost-white);
}

.jw-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.jw-map-svg {
  width: 100%;
  max-width: 500px;
}

.jw-map-dot {
  cursor: pointer;
  transition: all var(--jw-transition);
}

.jw-map-dot:hover { transform: scale(1.3); }

.jw-winery-card {
  background: #fff;
  padding: 25px;
  border-radius: var(--jw-radius);
  box-shadow: var(--jw-shadow);
  display: none;
}

.jw-winery-card.jw-visible { display: block; }

/* --- Tasting Notes Showcase --- */
.jw-notes-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.jw-notes-scroll::-webkit-scrollbar { height: 6px; }
.jw-notes-scroll::-webkit-scrollbar-track { background: var(--jw-frost-white); border-radius: 3px; }
.jw-notes-scroll::-webkit-scrollbar-thumb { background: var(--jw-gold); border-radius: 3px; }

.jw-note-card {
  min-width: 300px;
  background: #fff;
  border-radius: var(--jw-radius);
  padding: 25px;
  box-shadow: var(--jw-shadow);
  scroll-snap-align: start;
  border: 1px solid rgba(142, 121, 62, 0.08);
}

.jw-note-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.jw-note-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--jw-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.jw-note-stars {
  color: var(--jw-gold);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* --- Expert Column --- */
.jw-expert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.jw-expert-card {
  background: #fff;
  border-radius: var(--jw-radius);
  overflow: hidden;
  box-shadow: var(--jw-shadow);
  transition: transform var(--jw-transition);
}

.jw-expert-card:hover { transform: translateY(-3px); }

.jw-expert-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.jw-expert-card-body {
  padding: 25px;
}

.jw-expert-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.jw-expert-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.jw-expert-name {
  font-size: 0.85rem;
  color: var(--jw-text-light);
}

/* --- CTA Section --- */
.jw-cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
}

.jw-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 14, 26, 0.8);
}

.jw-cta-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.jw-cta-content h2 { color: #fff; font-size: 2.2rem; }
.jw-cta-content p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 30px; }

/* --- Food Pairing --- */
.jw-pairing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.jw-pairing-card {
  background: #fff;
  border-radius: var(--jw-radius);
  overflow: hidden;
  box-shadow: var(--jw-shadow);
  transition: transform var(--jw-transition);
}

.jw-pairing-card:hover { transform: translateY(-3px); }

.jw-pairing-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.jw-pairing-card-body {
  padding: 20px;
}

/* --- Community Topics --- */
.jw-topic-list {
  max-width: 800px;
  margin: 0 auto;
}

.jw-topic-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: #fff;
  border-radius: var(--jw-radius);
  margin-bottom: 12px;
  box-shadow: var(--jw-shadow);
  transition: transform var(--jw-transition);
  border-left: 3px solid var(--jw-gold);
}

.jw-topic-item:hover { transform: translateX(5px); }

.jw-topic-title {
  font-weight: 600;
  color: var(--jw-text);
}

.jw-topic-meta {
  font-size: 0.85rem;
  color: var(--jw-text-light);
}

/* --- Trust / Honors --- */
.jw-trust-section {
  background: var(--jw-frost-white);
  text-align: center;
}

.jw-trust-badges {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.jw-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.jw-trust-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--jw-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.jw-trust-badge h5 {
  color: var(--jw-text);
}

.jw-trust-badge p {
  font-size: 0.85rem;
  color: var(--jw-text-light);
  max-width: 250px;
}

/* --- Footer --- */
.jw-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.jw-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.jw-footer-brand .jw-logo {
  margin-bottom: 15px;
  display: block;
}

.jw-footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.jw-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.jw-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all var(--jw-transition);
}

.jw-footer-social a:hover {
  background: var(--jw-gold);
  border-color: var(--jw-gold);
  color: #fff;
}

.jw-footer h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
}

.jw-footer-links {
  list-style: none;
}

.jw-footer-links li { margin-bottom: 10px; }

.jw-footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--jw-transition);
}

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

.jw-footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.jw-footer-honors {
  text-align: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
}

.jw-footer-honors p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.jw-footer-bottom {
  text-align: center;
  padding: 25px 0;
}

.jw-footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.jw-footer-seo {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  max-width: 800px;
  margin: 10px auto 0;
  line-height: 1.6;
}

/* --- Breadcrumb --- */
.jw-breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--jw-text-light);
}

.jw-breadcrumb a {
  color: var(--jw-text-light);
}

.jw-breadcrumb a:hover { color: var(--jw-gold); }
.jw-breadcrumb span { margin: 0 8px; }

/* --- Page Hero (Inner Pages) --- */
.jw-page-hero {
  position: relative;
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.jw-page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jw-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

.jw-page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}

.jw-page-hero-content h1 { color: #fff; }

/* --- Content Area --- */
.jw-content {
  padding: 60px 0;
}

.jw-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.jw-content-main p {
  margin-bottom: 1.5em;
  line-height: 1.9;
}

.jw-content-main h2 {
  margin-top: 2em;
  margin-bottom: 0.8em;
}

.jw-content-main h3 {
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}

.jw-sidebar {
  position: sticky;
  top: 20px;
}

.jw-sidebar-widget {
  background: var(--jw-frost-white);
  border-radius: var(--jw-radius);
  padding: 25px;
  margin-bottom: 25px;
}

.jw-sidebar-widget h5 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(142, 121, 62, 0.15);
}

/* --- Tasting Notes Form --- */
.jw-form-group {
  margin-bottom: 20px;
}

.jw-form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.jw-form-input,
.jw-form-select,
.jw-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(142, 121, 62, 0.2);
  border-radius: var(--jw-radius);
  font-family: var(--jw-font-body);
  font-size: 0.95rem;
  transition: border-color var(--jw-transition);
  background: #fff;
}

.jw-form-input:focus,
.jw-form-select:focus,
.jw-form-textarea:focus {
  outline: none;
  border-color: var(--jw-gold);
  box-shadow: 0 0 0 3px rgba(142, 121, 62, 0.1);
}

.jw-form-textarea { min-height: 150px; resize: vertical; }

.jw-slider-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.jw-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(142, 121, 62, 0.15);
  outline: none;
}

.jw-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--jw-gold);
  cursor: pointer;
}

.jw-slider-value {
  min-width: 35px;
  text-align: center;
  font-weight: 600;
  color: var(--jw-gold);
}

.jw-tag-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jw-tag-option {
  padding: 6px 14px;
  border: 1px solid rgba(142, 121, 62, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--jw-transition);
}

.jw-tag-option:hover,
.jw-tag-option.jw-selected {
  background: var(--jw-gold);
  color: #fff;
  border-color: var(--jw-gold);
}

.jw-color-options {
  display: flex;
  gap: 10px;
}

.jw-color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color var(--jw-transition);
}

.jw-color-swatch:hover,
.jw-color-swatch.jw-selected {
  border-color: var(--jw-gold);
}

/* --- Glassmorphism Card --- */
.jw-glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(142, 121, 62, 0.15);
  border-radius: var(--jw-radius);
  padding: 30px;
  box-shadow: var(--jw-shadow);
}

/* --- FAQ Section --- */
.jw-faq-item {
  border: 1px solid rgba(142, 121, 62, 0.1);
  border-radius: var(--jw-radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.jw-faq-question {
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--jw-frost-white);
  transition: background var(--jw-transition);
}

.jw-faq-question:hover { background: #ede8d8; }

.jw-faq-arrow {
  transition: transform var(--jw-transition);
  font-size: 0.8rem;
}

.jw-faq-item.jw-open .jw-faq-arrow { transform: rotate(180deg); }

.jw-faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.jw-faq-item.jw-open .jw-faq-answer {
  padding: 20px 25px;
  max-height: 500px;
}

/* --- Two Column Layout --- */
.jw-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.jw-two-col-img {
  width: 100%;
  border-radius: var(--jw-radius);
  box-shadow: var(--jw-shadow);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .jw-card-grid,
  .jw-expert-grid { grid-template-columns: repeat(2, 1fr); }
  .jw-pairing-grid { grid-template-columns: repeat(2, 1fr); }
  .jw-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .jw-content-grid { grid-template-columns: 1fr; }
  .jw-map-grid { grid-template-columns: 1fr; }
  .jw-two-col { grid-template-columns: 1fr; }
  .jw-flavor-wheel-wrap { flex-direction: column; }
  .jw-flavor-wheel { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .jw-nav { display: none; }
  .jw-hamburger { display: flex; }
  .jw-mobile-nav { display: flex; }
  .jw-section { padding: 50px 0; }
  .jw-hero-content h1 { font-size: 2.2rem; }
  .jw-hero-content h3 { font-size: 1.1rem; }
  .jw-card-grid,
  .jw-expert-grid { grid-template-columns: 1fr; }
  .jw-pairing-grid { grid-template-columns: 1fr 1fr; }
  .jw-footer-grid { grid-template-columns: 1fr; }
  .jw-trust-badges { gap: 30px; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .jw-hero { min-height: 500px; }
  .jw-hero-content h1 { font-size: 1.8rem; }
  .jw-pairing-grid { grid-template-columns: 1fr; }
  .jw-container { padding: 0 15px; }
}

/* --- Utility --- */
.jw-text-center { text-align: center; }
.jw-text-gold { color: var(--jw-gold); }
.jw-text-wine { color: var(--jw-wine-red); }
.jw-mt-1 { margin-top: 10px; }
.jw-mt-2 { margin-top: 20px; }
.jw-mt-3 { margin-top: 30px; }
.jw-mb-1 { margin-bottom: 10px; }
.jw-mb-2 { margin-bottom: 20px; }
.jw-mb-3 { margin-bottom: 30px; }
.jw-bg-frost { background: var(--jw-frost-white); }
