@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --midnight: #0d1321;
  --navy: #1d2d44;
  --slate: #3e5c76;
  --gold: #c9a84c;
  --gold-hover: #dbb95e;
  --gold-light: #f5ecd7;
  --cream: #f8f5f0;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e0d8;
  --shadow-sm: 0 1px 3px rgba(13,19,33,0.08);
  --shadow-md: 0 4px 16px rgba(13,19,33,0.1);
  --shadow-lg: 0 8px 32px rgba(13,19,33,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--midnight);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--midnight);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 6px;
}

.logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }

.main-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 60%, var(--slate) 100%);
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--midnight);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
}

/* ========== STATS ========== */
.stats {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 100%);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-dark .section-sub { color: rgba(255,255,255,0.6); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 { margin-bottom: 12px; }

/* ========== VENUE CARDS ========== */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.venue-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}

.venue-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gold-light);
}

.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.venue-card-img .venue-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--midnight);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.venue-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.venue-card-body h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.venue-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.venue-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}

.venue-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.rating-num {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.venue-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.venue-card-link:hover { gap: 10px; }

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-md);
}

.feature-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 2px solid var(--gold-light);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold-light);
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========== CTA ========== */
.cta {
  text-align: center;
  padding: 80px 0;
}

.cta h2 { margin-bottom: 14px; }

.cta p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 16px 0;
  z-index: 9999;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.85rem;
  flex: 1;
}

.cookie-inner p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-btn {
  background: var(--gold);
  color: var(--midnight);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}

.cookie-btn:hover { background: var(--gold-hover); }

/* ========== AGE GATE ========== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13,19,33,0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.age-gate.show { display: flex; }

.age-gate-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}

.age-gate-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.age-gate-box h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.age-gate-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-buttons .btn {
  min-width: 120px;
  justify-content: center;
}

.btn-deny {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}

.btn-deny:hover {
  border-color: var(--text-muted);
  color: var(--text-dark);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 100%);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}

.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ========== ABOUT / CONTENT SECTIONS ========== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gold-light);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.content-text h2 { margin-bottom: 16px; }

.content-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.content-text ul {
  list-style: none;
  margin: 16px 0;
}

.content-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.content-text ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ========== GUIDE SECTIONS ========== */
.guide-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

.guide-block h3 { margin-bottom: 14px; }

.guide-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.guide-block ul {
  list-style: none;
  margin: 14px 0;
}

.guide-block ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.guide-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.guide-sidebar {
  position: sticky;
  top: 80px;
}

.guide-nav {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}

.guide-nav h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.guide-nav ul {
  list-style: none;
}

.guide-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.guide-nav ul li a:hover {
  background: var(--gold-light);
  color: var(--gold);
}

.guide-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info h3 { margin-bottom: 14px; }

.contact-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========== FAQ ========== */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question .icon {
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--gold);
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

/* ========== VENUES PAGE GRID ========== */
.venues-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-light);
}

/* ========== PLACEHOLDER IMAGE ========== */
.placeholder-img {
  background: linear-gradient(135deg, var(--gold-light) 0%, #e8dcc6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
}

@media (max-width: 768px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .stats { margin-top: -30px; }
  .venues-grid,
  .venues-page-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 30px; }
  .content-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--midnight);
    flex-direction: column;
    padding: 16px 24px;
    border-top: 1px solid rgba(201,168,76,0.1);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    width: 100%;
    padding: 12px 16px;
  }

  .burger { display: flex; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .review-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .review-sidebar { position: static; }
  .review-layout { grid-template-columns: 1fr; }
  .review-scores-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}

/* ========== REVIEW PAGE ========== */
.review-hero {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 60%, var(--slate) 100%);
  padding: 50px 0 60px;
}

.review-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.review-hero-content .breadcrumb { justify-content: flex-start; margin-bottom: 16px; }

.review-hero-content h1 { color: var(--white); margin-bottom: 8px; font-size: clamp(2rem, 4vw, 3rem); }

.review-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.review-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.review-score-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 20px;
}

.review-score-big .score-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.review-score-big .score-info { display: flex; flex-direction: column; }
.review-score-big .stars { font-size: 1rem; letter-spacing: 2px; }
.review-score-big .score-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.review-hero-summary {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  max-width: 520px;
}

.review-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gold-light);
  box-shadow: var(--shadow-lg);
}

.review-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

/* Review Layout */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

.review-sidebar { position: sticky; top: 80px; align-self: start; }

.review-info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.review-info-box h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.88rem;
}

.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--text-muted); font-weight: 500; }
.info-row .value { color: var(--text-dark); font-weight: 600; text-align: right; max-width: 60%; }

/* Review Content Blocks */
.review-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.review-block h2 { font-size: 1.6rem; margin-bottom: 16px; }
.review-block h3 { font-size: 1.25rem; margin-bottom: 12px; margin-top: 24px; }
.review-block h3:first-of-type { margin-top: 0; }

.review-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.review-block-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 20px 0;
  background: var(--gold-light);
  aspect-ratio: 16/9;
}

.review-block-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

/* Scores Grid */
.review-scores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.score-item {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
}

.score-item .score-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.score-item .score-cat {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.pros-list, .cons-list {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 22px;
}

.pros-list h4, .cons-list h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.pros-list h4 { color: #2d8a4e; }
.cons-list h4 { color: #c0392b; }

.pros-list ul, .cons-list ul { list-style: none; }

.pros-list ul li, .cons-list ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pros-list ul li::before { content: '✓'; position: absolute; left: 0; color: #2d8a4e; font-weight: 700; }
.cons-list ul li::before { content: '✗'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.info-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.info-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 24px;
}

.back-link:hover { gap: 10px; }
