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

:root {
  /* Brand Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #fbfbf9;
  --bg-tertiary: #f5f3ee;
  
  --text-dark: #121212;
  --text-medium: #4a4a4a;
  --text-light: #767676;
  --text-muted: #a0a0a0;
  
  /* Warm Gold Accent */
  --gold: #c49a2a;
  --gold-light: #dcb342;
  --gold-dark: #9e791b;
  --gold-pale: #f8f4e7;
  --gold-wash: #fdfaf2;
  --gold-border: rgba(196, 154, 42, 0.2);
  --gold-border-strong: rgba(196, 154, 42, 0.5);
  
  /* Rich Dark Tones */
  --dark-100: #111111;
  --dark-200: #1a1a1a;
  --dark-300: #262626;
  --dark-border: rgba(255, 255, 255, 0.08);

  /* Glassmorphism Styles */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(196, 154, 42, 0.15);
  --glass-blur: blur(12px);
  
  --glass-dark-bg: rgba(26, 26, 26, 0.8);
  --glass-dark-border: rgba(255, 255, 255, 0.08);
  
  /* Layout */
  --max-width: 1280px;
  --border-radius: 8px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-primary);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* --- Typography --- */
h1, h2, h3, h4, .font-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

.t-h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  letter-spacing: -0.02em;
}
.t-h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}
.t-h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
.t-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}
.t-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-gold {
  background: var(--gold);
  color: #ffffff;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 154, 42, 0.25);
}

.btn-dark {
  background: var(--dark-100);
  color: #ffffff;
}
.btn-dark:hover {
  background: var(--dark-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: #ffffff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border-strong);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.header-scrolled {
  padding-block: 0.4rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  background: rgba(255, 255, 255, 0.9);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-logo {
  height: clamp(28px, 4vw, 42px);
  width: auto;
}

.brand-subtitle {
  font-size: 0.45rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-item a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-medium);
  padding: 0.4rem 0;
  position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-fast);
}

.nav-item a:hover {
  color: var(--text-dark);
}

.nav-item a:hover::after, .nav-item.active a::after {
  width: 100%;
}

.nav-cta-btn {
  display: inline-block;
}

/* Mobile Nav Elements */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  margin-bottom: 5px;
  transition: var(--transition-fast);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* Drawer Menu (Mobile First) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  z-index: 1005;
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--text-dark);
}

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

.backdrop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.backdrop-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- Hero Section --- */
.hero-slider {
  position: relative;
  height: 100dvh;
  min-height: 560px;
  overflow: hidden;
  background: var(--dark-100);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 0.55;
  transform: scale(1);
}

.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.4) 50%, rgba(17,17,17,0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 8vh;
  z-index: 3;
  color: #ffffff;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-title {
  margin-block: 1rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* --- Filters (Venues listing) --- */
.filter-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--bg-tertiary);
  border-bottom: 1px solid var(--bg-tertiary);
  padding: 1.8rem 1.5rem;
  margin-top: 0;
}

.filter-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.filters-group {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--gold-border);
  padding: 0.45rem 1.2rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--dark-100);
  border-color: var(--dark-100);
  color: #ffffff;
}

.search-input-wrapper {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  border: 1px solid var(--gold-border);
  outline: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--gold);
}

/* --- Grids & Cards --- */
.section-padding {
  padding: 7rem 1.5rem;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 600px;
}

.section-header .t-h2 {
  margin-top: 0.8rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.2rem;
}

/* Luxury Card */
.venue-card {
  background: #ffffff;
  border: 1px solid var(--gold-border);
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(196, 154, 42, 0.08);
  border-color: var(--gold-border-strong);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.9);
}

.venue-card:hover .card-img {
  transform: scale(1.06);
}

.city-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--dark-100);
  color: #ffffff;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.card-capacity {
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.card-capacity::before {
  content: '👥';
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  margin-top: auto;
}

.card-tag {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--bg-tertiary);
  padding: 0.2rem 0.6rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.card-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-link::after {
  content: '→';
  transition: transform 0.25s ease;
}

.venue-card:hover .card-link::after {
  transform: translateX(5px);
}

/* --- Events Grid --- */
.events-strip {
  border: 1px solid var(--bg-tertiary);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.event-box {
  border: 1px solid var(--bg-tertiary);
  padding: 2.2rem 1.8rem;
  transition: var(--transition-smooth);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-box:hover {
  background: var(--gold-wash);
}

.event-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
}

.event-box:hover::after {
  width: 100%;
}

.event-num {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.event-title {
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.event-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Contact & Enquiry Form --- */
.enquiry-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.enquiry-info-column {
  position: sticky;
  top: 100px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  font-size: 0.85rem;
}

.contact-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.contact-value a:hover {
  color: var(--gold);
}

/* Enquiry Form Styling - World Class Inputs */
.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.luxury-input {
  background: #ffffff;
  border: 1px solid var(--text-muted);
  color: var(--text-dark);
  padding: 0.85rem 1.2rem;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-fast);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.luxury-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 42, 0.08);
}

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

.form-message {
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
  font-size: 0.85rem;
  display: none;
}

.form-message.success {
  background: #e6f4ea;
  color: #137333;
  border: 1px solid #137333;
  display: block;
}

.form-message.error {
  background: #fce8e6;
  color: #c5221f;
  border: 1px solid #c5221f;
  display: block;
}

/* --- Venue Detail Page --- */
.venue-hero-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  height: 550px;
  margin-top: 70px;
  gap: 4px;
  background: var(--bg-tertiary);
}

.gallery-large {
  background-size: cover;
  background-position: center;
  height: 100%;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 100%;
}

.gallery-thumb {
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-thumb:hover {
  filter: brightness(1.1);
}

.venue-meta-strip {
  background: var(--dark-100);
  color: #ffffff;
  padding: 1.8rem 1.5rem;
  border-bottom: 2px solid var(--gold);
}

.meta-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}

.meta-item-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.meta-item-value {
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
}

.venue-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  padding-block: 5rem;
}

.venue-text-content h2 {
  margin-bottom: 1.5rem;
}

.venue-text-content p {
  color: var(--text-medium);
  margin-bottom: 1.8rem;
  font-size: 0.92rem;
  line-height: 1.8;
}

.amenities-section {
  margin-top: 3.5rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.amenity-card {
  border: 1px solid var(--bg-tertiary);
  background: var(--bg-secondary);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
}

.amenity-card::before {
  content: '✦';
  color: var(--gold);
}

/* FAQ Accordion */
.faq-section {
  margin-top: 5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--bg-tertiary);
  background: #ffffff;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.2rem;
  font-weight: 500;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: var(--gold-border-strong);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-inline: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark-100);
  color: #ffffff;
  padding: 5rem 1.5rem 2rem;
  border-top: 1px solid var(--dark-border);
}

.footer-top-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
  margin-bottom: 4rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--dark-border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  align-self: start;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-col h5 {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(196, 154, 42, 0.15);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
}

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

/* --- Blog Section --- */
.blog-card {
  background: #ffffff;
  border: 1px solid var(--gold-border);
  padding: 2rem;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  border-color: var(--gold-border-strong);
}

.blog-meta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.blog-card-title {
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Blog Detail Layout */
.blog-detail-container {
  max-width: 760px;
  margin: 100px auto 0;
  padding: 5rem 1.5rem;
}

.blog-header {
  margin-bottom: 3.5rem;
}

.blog-header .t-h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-block: 0.6rem;
}

.blog-author-strip {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bg-tertiary);
}

.blog-content-body {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text-medium);
}

.blog-content-body p {
  margin-bottom: 1.8rem;
}

.blog-content-body h2 {
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.blog-content-body blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.8rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-block: 2.2rem;
}

.blog-back-btn {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* --- Media Queries (Mobile First Implementation) --- */
@media (max-width: 991px) {
  .nav-menu, .nav-cta-btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .enquiry-split, .venue-details-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .venue-hero-gallery {
    grid-template-columns: 1fr;
    height: 380px;
  }
  .gallery-thumbs {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 567px) {
  html {
    font-size: 15px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .meta-container {
    flex-direction: column;
    gap: 1rem;
  }
  .section-padding {
    padding-block: 4.5rem;
  }
  .venue-meta-strip {
    text-align: left;
  }
}
