@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --forest: #1a3d36;
  --sage: #2d5a4a;
  --moss: #4a7c59;
  --terracotta: #c45c3e;
  --terracotta-hover: #d96b4a;
  --terracotta-light: #fdf0ed;
  --sand: #f5f0e8;
  --off-white: #faf8f5;
  --white: #ffffff;
  --text-dark: #1a2e28;
  --text-muted: #5a6a64;
  --border: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(26,61,54,0.06);
  --shadow-md: 0 6px 20px rgba(26,61,54,0.1);
  --shadow-lg: 0 12px 40px rgba(26,61,54,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s 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: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--forest);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

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

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

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

/* ========== HEADER (centered) ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--forest);
  border-bottom: 1px solid rgba(196,92,62,0.2);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 16px;
  gap: 16px;
}

.header-inner .logo {
  order: 1;
}

.header-inner .main-nav {
  order: 2;
}

.header-inner .burger {
  order: 3;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

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

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

.logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.2px;
}

.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: center; }

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

.main-nav a:hover,
.main-nav a.active {
  color: var(--terracotta);
  background: rgba(196,92,62,0.12);
}

.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(--terracotta);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========== HERO (fullwidth centered overlay) ========== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--forest) 0%, var(--sage) 50%, var(--moss) 100%);
  z-index: 1;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,61,54,0.6) 0%, rgba(26,61,54,0.92) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(196,92,62,0.18);
  color: var(--terracotta-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 24px;
  border: 1px solid rgba(196,92,62,0.35);
  margin-bottom: 22px;
}

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

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

.hero-text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

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

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

.btn-gold:hover {
  background: var(--terracotta-hover);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(196,92,62,0.35);
}

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

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

/* ========== CITY PILLS (Browse by City) ========== */
.city-pills {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.city-pills-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.city-pills-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.city-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--sand);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
}

.city-pill:hover,
.city-pill.active {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

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

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

.section-dark {
  background: linear-gradient(160deg, var(--forest) 0%, var(--sage) 100%);
  color: var(--white);
}

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

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

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

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

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

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

/* ========== VENUE FEATURED (large horizontal) ========== */
.venue-featured {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.venue-featured:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,92,62,0.35);
}

.venue-featured-img {
  flex: 0 0 40%;
  min-height: 280px;
  background: var(--terracotta-light);
  position: relative;
}

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

.venue-featured-img .venue-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
}

.venue-featured-body {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venue-featured-body h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.venue-featured-body .venue-location {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.venue-featured-body .venue-rating {
  margin-bottom: 16px;
}

.venue-featured-body p {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ========== VENUE HORIZONTAL (list items) ========== */
.venue-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.venue-horizontal:hover {
  border-color: rgba(196,92,62,0.35);
  box-shadow: var(--shadow-md);
}

.venue-horizontal-img {
  flex: 0 0 30%;
  min-height: 160px;
  background: var(--terracotta-light);
}

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

.venue-horizontal-body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.venue-location {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

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

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

.venue-horizontal-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex: 1;
  line-height: 1.6;
}

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

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

/* ========== VENUE SCROLL (horizontal scroll) ========== */
.venue-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.venue-scroll-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.venue-scroll-item:hover {
  border-color: rgba(196,92,62,0.35);
}

.venue-scroll-item .venue-horizontal-img {
  flex: none;
  min-height: 140px;
}

.venue-scroll-item .venue-horizontal-body {
  padding: 20px;
}

.venue-scroll-item h3 { font-size: 1.1rem; }

/* ========== STEPS TIMELINE (review process) ========== */
.steps-timeline {
  max-width: 640px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  position: relative;
}

.step-item:last-child { margin-bottom: 0; }

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 56px;
  bottom: -36px;
  width: 2px;
  background: var(--border);
}

.step-img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-alt);
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== TESTIMONIAL SINGLE ========== */
.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
}

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

.testimonial-single {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.testimonial-single blockquote {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-single .testimonial-author {
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest);
}

.testimonial-single .testimonial-role {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========== CTA SPLIT (2 columns) ========== */
.cta {
  padding: 70px 0;
}

.cta-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-split-text {
  flex: 1;
  min-width: 280px;
}

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

.cta-split-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 0;
}

.cta-split-btn {
  flex-shrink: 0;
}

/* ========== FOOTER MINIMAL ========== */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 0;
}

.footer-minimal {
  text-align: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-minimal .logo {
  justify-content: center;
  margin-bottom: 16px;
}

.footer-minimal .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  margin-bottom: 20px;
}

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

.footer-minimal .footer-links a:hover { color: var(--terracotta); }

.footer-minimal p {
  font-size: 0.84rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}

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

/* Legacy footer grid (for pages that still use it) */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

.footer-col h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

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

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

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

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sage);
  color: rgba(255,255,255,0.9);
  padding: 18px 0;
  z-index: 9999;
  border-top: 1px solid rgba(196,92,62,0.2);
  display: none;
}

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

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

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

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

.cookie-btn {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background var(--transition);
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}

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

/* ========== AGE GATE ========== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,61,54,0.94);
  backdrop-filter: blur(18px);
  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: 50px 42px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--sage) 100%);
  padding: 65px 0;
  text-align: center;
}

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

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

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

.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ========== 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(--terracotta-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.guide-nav h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

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

.guide-nav ul li a {
  display: block;
  padding: 10px 16px;
  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(--terracotta-light);
  color: var(--terracotta);
}

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

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

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--sand);
  transition: border-color var(--transition);
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.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 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ========== VENUES PAGE (sidebar layout) ========== */
.venues-sidebar-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.venues-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}

.venues-sidebar h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.venues-sidebar .filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
}

.venues-page-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-bar {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  appearance: none;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

/* ========== GUIDES TABS ========== */
.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.guide-tab {
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.guide-tab:hover,
.guide-tab.active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.guide-tab-content {
  display: none;
}

.guide-tab-content.active {
  display: block;
}

/* ========== CONTACT STACK ========== */
.contact-stack {
  max-width: 560px;
  margin: 0 auto;
}

.contact-stack .contact-form {
  margin-bottom: 48px;
}

.contact-stack .contact-info {
  margin-bottom: 48px;
}

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

/* ========== REVIEW PAGE ========== */
.review-hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--sage) 60%, var(--moss) 100%);
  padding: 55px 0 65px;
}

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

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

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

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

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

.review-score-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(196,92,62,0.18);
  border: 1px solid rgba(196,92,62,0.35);
  border-radius: var(--radius);
  padding: 18px 28px;
  margin-bottom: 22px;
}

.review-score-big .score-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}

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

.review-hero-summary {
  color: rgba(255,255,255,0.7);
  font-size: 0.96rem;
  max-width: 540px;
}

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

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

.review-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
}

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

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

.review-info-box h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  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: 62%; }

.review-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 26px;
  border: 1px solid var(--border);
}

.review-block h2 { font-size: 1.65rem; margin-bottom: 18px; }
.review-block h3 { font-size: 1.28rem; margin-bottom: 14px; margin-top: 28px; }
.review-block h3:first-of-type { margin-top: 0; }

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

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

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

.review-scores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.score-item {
  text-align: center;
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 20px 14px;
}

.score-item .score-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}

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

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}

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

.pros-list h4, .cons-list h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.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: 24px;
  margin-bottom: 10px;
  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; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-top: 28px;
}

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

/* ========== ABOUT TIMELINE ========== */
.about-timeline {
  max-width: 640px;
  margin: 0 auto;
}

.about-timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.about-timeline-item:last-child { margin-bottom: 0; }

.about-timeline-date {
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--terracotta);
}

.about-timeline-content h3 { margin-bottom: 12px; }

.about-timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-timeline-content .content-image {
  margin-top: 20px;
  max-width: 400px;
}

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

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .venues-sidebar-layout { grid-template-columns: 1fr; }
  .venues-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 10px; }
  .venues-sidebar h4 { width: 100%; }
  .venues-sidebar .filter-btn { width: auto; display: inline-block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
  .venue-featured { flex-direction: column; }
  .venue-featured-img { min-height: 220px; }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 50px 14px 24px;
    position: relative;
  }

  .header-inner .logo { order: 1; margin-right: auto; }
  .header-inner .main-nav { order: 3; width: 100%; }
  .header-inner .burger {
    order: 2;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero { min-height: 60vh; padding: 60px 0; }
  .hero-text { font-size: 0.98rem; }
  .city-pills-inner { flex-direction: column; align-items: stretch; }
  .city-pills-label { margin-right: 0; margin-bottom: 8px; }
  .venue-horizontal { flex-direction: column; }
  .venue-horizontal-img { min-height: 180px; }
  .venue-scroll-item { flex: 0 0 280px; }
  .steps-timeline { padding: 0 16px; }
  .step-item { gap: 16px; }
  .step-img { width: 56px; height: 56px; }
  .step-num { width: 40px; height: 40px; font-size: 1rem; }
  .step-item:not(:last-child)::after { left: 19px; top: 48px; }
  .testimonial-single { padding: 36px 24px; }
  .testimonial-single blockquote { font-size: 1.15rem; }
  .cta-split { flex-direction: column; text-align: center; }
  .cta-split-btn { width: 100%; justify-content: center; }
  .section { padding: 55px 0; }

  .main-nav {
    display: none;
    flex-direction: column;
    padding: 18px 0;
    border-top: 1px solid rgba(196,92,62,0.15);
    margin-top: 10px;
  }

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

  .main-nav a {
    width: 100%;
    padding: 14px 18px;
    text-align: center;
  }

  .burger { display: flex; }

  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .review-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .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; }
}
