/* ============================================
   MYSTIK MUSIC — Design System CSS (v2)
   Optimized: consolidated tokens, grouped
   selectors, reduced repetition.
   Drop-in replacement for styles.css
   ============================================ */

/* ============================================
   1. FONT IMPORTS
   ============================================ */
@font-face {
  font-family: 'Des Montilles';
  src: url('../fonts/DesMontilles-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretty Letters';
  src: url('../fonts/PrettyLetters-Regular.woff2') format('woff2'),
       url('../fonts/PrettyLetters-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avantime';
  src: url('../fonts/Avantime-NormalRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avantime Bold';
  src: url('../fonts/Avantime-NormalBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avantime Bold';
  src: url('../fonts/Avantime-NormalBoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'The Something Sans';
  src: url('../fonts/TheSomethingSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* ============================================
   2. DESIGN TOKENS
   ============================================ */
:root {
  /* --- Brand Colors --- */
  --color-coral: #ed7360;
  --color-burgundy: #982918;
  --color-green: #65796a;
  --color-green-80: rgba(101, 121, 106, 0.8);
  --color-dark: #4a4a4a;
  --color-cream: #fdf7f3;
  --color-pink-light: #fcefe8;
  --color-watermark: #d5a38d;
  --color-white: #ffffff;
  --color-black: #000000;

  /* --- Neutral Grays --- */
  --color-gray-100: #f8f8f8;   /* table stripe bg */
  --color-gray-200: #e8e8e8;   /* table borders */
  --color-gray-300: #dcdcdc;   /* venue info, muted text */
  --color-gray-400: #bbb;
  --color-gray-500: #999;      /* muted labels */
  --color-gray-600: #888;      /* dates, secondary text */
  --color-gray-700: #aaa;      /* close button text */

  /* --- Warm Borders --- */
  --color-border-warm: #e8e0db;
  --color-border-warm-dark: #e0d5cf;

  /* --- Font Stacks --- */
  --font-script: 'Des Montilles', 'Dancing Script', cursive;
  --font-pretty: 'Pretty Letters', 'Pacifico', cursive;
  --font-sans: 'Avantime', 'Poppins', sans-serif;
  --font-sans-bold: 'Avantime Bold', 'Poppins', sans-serif;
  --font-watermark: 'The Something Sans', 'Oswald', sans-serif;
  --font-condensed: 'Roboto Condensed', sans-serif;

  /* --- Type Scale --- */
  --fs-2xs: 8px;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 28px;
  --fs-3xl: 32px;
  --fs-4xl: 36px;
  --fs-5xl: 42px;
  --fs-6xl: 52px;
  --fs-7xl: 60px;
  --fs-8xl: 64px;
  --fs-hero: 78px;

  /* --- Shadows --- */
  --shadow-card: 0 4px 4px rgba(0, 0, 0, 0.25);
  --shadow-card-hover: 0 8px 20px rgba(0, 0, 0, 0.25);
  --shadow-navbar: 0 4px 18.2px rgba(0, 0, 0, 0.25);
  --shadow-gallery: 0 0.9px 1.8px rgba(0, 0, 0, 0.3), 0 1.8px 5.4px 1.8px rgba(0, 0, 0, 0.15);
  --shadow-gallery-featured: 0 7.2px 10.8px 5.4px rgba(0, 0, 0, 0.15), 0 3.6px 3.6px rgba(0, 0, 0, 0.3);
  --shadow-btn: 0 1px 0 1px var(--color-burgundy);
  --shadow-focus: 0 0 0 3px rgba(237, 115, 96, 0.18);

  /* --- Radii --- */
  --radius-sm: 6px;
  --radius-md: 9px;
  --radius-btn: 9.6px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 30px;
  --radius-full: 50%;

  /* --- Transitions --- */
  --transition-fast: 0.15s ease-out;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
}


/* ============================================
   3. BASE STYLES
   ============================================ */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  overflow-x: hidden;
  background: var(--color-white);
}


/* ============================================
   4. SHARED COMPONENT PATTERNS
   ============================================ */

/* --- Glare Effect (shared pseudo-element) ---
   Applied to polaroids, photos, and buttons via ::after.
   Host elements must set:
     position: relative; overflow: hidden;
     --glare-x: 50%; --glare-y: 50%; --glare-opacity: 0;
   ----------------------------------------- */
.hero-section .polaroid::after,
.hero-section .scatter-img::after,
.partners-photo::after,
.booking-polaroid::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glare-x) var(--glare-y),
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.12) 40%,
    transparent 70%
  );
  opacity: var(--glare-opacity);
  pointer-events: none;
  transition: opacity var(--transition-base);
  mix-blend-mode: overlay;
}

.btn-get-started::after,
.btn-check-avail::after,
.btn-book-now::after,
.btn-submit-booking::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glare-x) var(--glare-y),
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.15) 40%,
    transparent 70%
  );
  opacity: var(--glare-opacity);
  pointer-events: none;
  transition: opacity var(--transition-base);
}

/* --- Glare host variables (shared) --- */
.hero-section .polaroid,
.hero-section .scatter-img,
.partners-photo,
.booking-polaroid,
.btn-get-started,
.btn-check-avail,
.btn-book-now,
.btn-submit-booking {
  --glare-x: 50%;
  --glare-y: 50%;
  --glare-opacity: 0;
}

/* --- Card hover shadow (shared) --- */
.hero-section .polaroid:hover,
.hero-section .scatter-img:hover,
.partners-photo:hover,
.booking-polaroid:hover {
  box-shadow: var(--shadow-card-hover);
}

/* --- CTA Buttons (shared base) --- */
.btn-get-started,
.btn-check-avail,
.btn-book-now,
.btn-submit-booking {
  font-family: var(--font-pretty);
  border: 2.2px solid var(--color-coral);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* --- Page Headings (shared) --- */
.booking-heading,
.music-heading,
.contact-heading,
.socialbooth-heading,
.tips-heading,
.venues-heading,
.city-venues-title {
  font-family: var(--font-sans);
  font-size: var(--fs-6xl);
  color: var(--color-green);
  margin-bottom: 4px;
}

/* --- Script Subtitles (shared) --- */
.booking-script,
.music-script,
.contact-script,
.socialbooth-script,
.tips-script {
  font-family: var(--font-pretty);
  font-size: var(--fs-4xl);
  color: var(--color-coral);
  display: block;
}

/* --- Page Descriptions (shared) --- */
.booking-description,
.music-description {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--color-dark);
  line-height: 1.6;
}

/* --- Form Labels (shared) --- */
.booking-form .form-row label,
.booking-form .form-row .field-label,
.contact-form .form-row label {
  font-family: var(--font-condensed);
  font-size: var(--fs-sm);
  color: var(--color-burgundy);
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Form Inputs (shared) --- */
.date-input,
.booking-form .form-row input[type="text"],
.booking-form .form-row input[type="tel"],
.booking-form .form-row select,
.contact-form .form-row input[type="text"],
.contact-form .form-row input[type="tel"],
.contact-form .form-row textarea {
  font-family: var(--font-condensed);
  font-size: var(--fs-md);
  color: var(--color-dark);
  background: var(--color-white);
  border: 1.5px solid var(--color-watermark);
  border-radius: var(--radius-md);
  padding: 6px 12px;
}

.date-input,
.booking-form .form-row input[type="text"],
.booking-form .form-row input[type="tel"],
.booking-form .form-row select,
.contact-form .form-row input[type="text"],
.contact-form .form-row input[type="tel"] {
  height: 40px;
}

/* --- Focus Ring (shared) --- */
.date-input:focus,
.booking-form .form-row input:focus,
.booking-form .form-row select:focus,
.contact-form .form-row input:focus,
.contact-form .form-row textarea:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: var(--shadow-focus);
}

/* --- Select Arrow (shared) --- */
select.date-input,
.booking-form .form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
}


/* ============================================
   5. LOADING SCREEN
   ============================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-logo {
  height: 60px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.96); }
}

body.loaded #loading-screen {
  opacity: 0;
  pointer-events: none;
}


/* ============================================
   6. NAVBAR
   ============================================ */
.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0 20px;
}

.navbar-mystik {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(152, 41, 24, 0.25);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-navbar);
  padding: 6px 24px;
  max-width: 1072px;
  margin: 0 auto;
}

.navbar-mystik .navbar-brand img {
  height: 42px;
  width: auto;
}

.navbar-mystik .nav-link {
  font-family: var(--font-sans-bold);
  color: var(--color-green);
  font-size: var(--fs-lg);
  text-shadow: 0 0 6.7px white;
  padding: 8px 18px;
  font-weight: 700;
}

.navbar-mystik .nav-link:hover {
  color: var(--color-coral);
}

.navbar-mystik .navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-mystik .navbar-toggler:focus {
  box-shadow: none;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3.2px;
  background-color: var(--color-coral);
  border-radius: 10px;
  margin: 5px 0;
  transition: var(--transition-slow);
}


/* ============================================
   7. HERO SECTION
   ============================================ */
@keyframes heroPhotoIn {
  from { opacity: 0; scale: 1.15; }
  to   { opacity: 1; scale: 1; }
}

.hero-section {
  background: var(--color-white) url('../images/confetti-background-hero.webp') center top / cover no-repeat;
  text-align: center;
  z-index: 5;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 400px;
  padding-bottom: 520px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* --- Hero Polaroids & Scatter Images --- */
.hero-section .polaroid,
.hero-section .scatter-img {
  position: absolute;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  z-index: 1;
  animation: heroPhotoIn 0.6s ease-out both;
  animation-delay: calc(var(--i, 0) * 0.1s);
  animation-play-state: paused;
  will-change: transform;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border-radius: var(--radius-sm);
}

body.loaded .hero-section .polaroid,
body.loaded .hero-section .scatter-img {
  animation-play-state: running;
}

.hero-section .polaroid img,
.hero-section .scatter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top polaroid positions */
.polaroid-1 { width: 232px; height: 364px; top: 20px;  left: 15%; transform: rotate(-3deg); }
.polaroid-2 { width: 237px; height: 341px; top: 13px;  left: 33%; transform: rotate(-14deg); }
.polaroid-3 { width: 248px; height: 353px; top: 0;     left: 55%; transform: rotate(25.5deg); }
.polaroid-4 { width: 228px; height: 370px; top: 53px;  left: 77%; transform: rotate(34deg); }
.polaroid-5 { width: 242px; height: 311px; top: 84px;  left: -3%; transform: rotate(18deg); }

/* --- Hero Heading SVG / Sparkles --- */
.hero-heading-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.sparkle-dot {
  position: absolute;
  width: var(--dot-size, 6px);
  height: var(--dot-size, 6px);
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.3) 50%, transparent 70%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  animation: sparklePop var(--duration, 0.8s) ease-in-out forwards;
}

@keyframes sparklePop {
  0%   { opacity: 0; transform: scale(0.3); }
  30%  { opacity: 1; transform: scale(1); }
  70%  { opacity: 0.6; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(0.2); }
}

.hero-heading-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-heading-img {
    max-width: 1075px;
    margin-top: 40px;
  }

  .gallery-wrapper {
    overflow-x: hidden;
  }
}

/* --- Get Started Button --- */
.btn-get-started {
  font-size: 34px;
  color: var(--color-coral);
  background: var(--color-pink-light);
  box-shadow: 0 1px 0 0 var(--color-burgundy);
  padding: 0 28px 6px;
  margin-top: 24px;
  z-index: 2;
}

.btn-get-started:hover {
  background: var(--color-coral);
  color: var(--color-white);
}

/* --- Bottom scatter positions --- */
.scatter-1 { width: 291px; height: 370px; left: -2%;  bottom: 90px;  top: auto; transform: rotate(-15.7deg); }
.scatter-2 { width: 261px; height: 409px; left: 12%;  bottom: 20px;  top: auto; transform: rotate(15deg); }
.scatter-3 { width: 285px; height: 355px; left: 33%;  bottom: 40px;  top: auto; transform: rotate(-9.4deg); }
.scatter-4 { width: 282px; height: 384px; left: 52%;  bottom: -10px; top: auto; transform: rotate(10.5deg); }
.scatter-5 { width: 290px; height: 362px; left: 70%;  bottom: 20px;  top: auto; transform: rotate(-8.4deg); }
.scatter-6 { width: 286px; height: 358px; left: 85%;  bottom: 100px; top: auto; transform: rotate(3.9deg); }


/* ============================================
   8. ABOUT / PARTNER SECTION
   ============================================ */
.about-section {
  background: var(--color-cream);
  padding: 80px 0 40px;
  position: relative;
}

.about-section .about-text {
  font-family: var(--font-sans);
  font-size: var(--fs-7xl);
  color: var(--color-green);
  line-height: 1.17;
  text-align: center;
}

.about-section .about-text em {
  font-family: var(--font-sans-bold);
  font-style: italic;
}

.about-photo-combo {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .about-section .about-text {
    text-align: center;
  }

  .about-photo-combo {
    max-width: 280px;
    margin: 0;
  }
}

.about-subtext {
  font-family: var(--font-pretty);
  font-size: var(--fs-3xl);
  color: var(--color-coral);
  text-align: center;
  margin-top: 20px;
}

.about-photos {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
}

.about-photos .about-photo-sm {
  width: 154px;
  height: 192px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.about-photos .about-photo-tilt {
  width: 155px;
  height: 192px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  transform: rotate(10.4deg);
  margin-top: 0;
}

.icon-camera-deco {
  width: 47px;
  height: 58px;
}


/* ============================================
   9. VIDEO GALLERY
   ============================================ */
.video-gallery {
  background: var(--color-cream);
  padding: 20px 0 60px;
  position: relative;
  overflow: hidden;
}

.gallery-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 185px;
  height: 299px;
  border-radius: 4.5px;
  overflow: hidden;
  box-shadow: var(--shadow-gallery);
  cursor: pointer;
  transition: transform var(--transition-base);
}

.gallery-thumb:hover {
  transform: scale(1.04);
}

.gallery-thumb img,
.gallery-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-featured {
  flex-shrink: 0;
  width: 259px;
  height: 418px;
  border-radius: 4.5px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-gallery-featured);
  cursor: pointer;
}

.gallery-featured img,
.gallery-featured video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-featured .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 20px 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-featured .overlay .couple-name {
  font-family: var(--font-pretty);
  font-size: 28.8px;
  color: var(--color-white);
  text-shadow: 0 3.6px 3.6px rgba(0, 0, 0, 0.25);
}

.gallery-featured .overlay .venue-info {
  font-family: var(--font-sans);
  font-size: 12.8px;
  color: var(--color-gray-300);
  text-shadow: 0 3.6px 3.6px rgba(0, 0, 0, 0.25);
}

.gallery-featured .mute-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-nav button {
  background: none;
  border: none;
  font-size: var(--fs-3xl);
  color: var(--color-dark);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}


/* ============================================
   10. MOBILE REELS OVERLAY
   ============================================ */
#reels-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-black);
  display: none;
  flex-direction: column;
}

#reels-overlay.active {
  display: flex;
}

.reels-back-btn {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 22px;
  cursor: pointer;
}

.reels-container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

.reels-slide {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  position: relative;
  background: var(--color-black);
  flex-shrink: 0;
}

.reels-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reels-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--color-white);
  border-radius: var(--radius-full);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.2s ease;
}

.reels-spinner.active {
  opacity: 1;
  animation: reelsSpin 0.8s linear infinite;
}

@keyframes reelsSpin {
  to { transform: rotate(360deg); }
}

.reels-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.reels-mute-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--fs-md);
  cursor: pointer;
}

/* Landscape / tablet: constrain video to 9:16 */
@media (orientation: landscape), (min-width: 768px) {
  .reels-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .reels-slide video {
    width: auto;
    height: 100%;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    border-radius: var(--radius-lg);
  }

  .reels-info {
    width: calc(100dvh * 9 / 16);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .reels-back-btn {
    left: max(16px, calc(50% - (100dvh * 9 / 16) / 2 + 12px));
  }

  .reels-mute-btn {
    right: max(16px, calc(50% - (100dvh * 9 / 16) / 2 + 12px));
  }
}

.reels-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.reels-pfp {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-white);
}

.reels-username {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, 'Roboto', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.reels-couple {
  font-family: var(--font-pretty);
  font-size: var(--fs-2xl);
  color: var(--color-white);
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.reels-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.reels-meta span {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--color-gray-300);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- Reels End Slide (CTA) --- */
.reels-end-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
}

.reels-end-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 24px;
  text-align: center;
}

.reels-end-logo {
  width: 180px;
  height: auto;
  margin-bottom: 8px;
}

.reels-end-text {
  font-family: var(--font-pretty);
  font-size: var(--fs-3xl);
  color: var(--color-white);
  margin: 0;
}

.reels-end-book-btn {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-coral);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 48px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-base);
}

.reels-end-book-btn:hover {
  background: var(--color-green);
  color: var(--color-white);
}

.reels-end-close-btn {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--color-gray-700);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 24px;
  text-decoration: underline;
  transition: color var(--transition-base);
}

.reels-end-close-btn:hover {
  color: var(--color-white);
}


/* ============================================
   11. SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--color-cream);
  padding: 40px 0 80px;
  position: relative;
}

.services-section .section-title {
  font-family: var(--font-sans);
  font-size: var(--fs-7xl);
  color: var(--color-green);
}

.services-section .subsection-title {
  font-family: var(--font-sans);
  font-size: var(--fs-4xl);
  color: var(--color-green);
  margin-top: 30px;
  margin-bottom: 16px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  height: 100%;
}

.service-card-title {
  font-family: var(--font-sans);
  font-size: var(--fs-4xl);
  color: var(--color-coral);
  margin-bottom: 16px;
}

.service-card-title-lg {
  font-size: var(--fs-6xl);
}

.service-card-link {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--color-coral);
  text-decoration: underline;
  vertical-align: middle;
  margin-left: 10px;
}

.service-card-link:hover {
  color: var(--color-burgundy);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-family: var(--font-pretty);
  font-size: var(--fs-3xl);
  color: var(--color-green);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-warm);
}



.services-cta {
  margin-top: 32px;
}

.services-cta a {
  margin: 0 8px;
}

/* --- Learn More (secondary) Button --- */
.btn-learn-more {
  font-family: var(--font-pretty);
  font-size: 26px;
  color: var(--color-coral);
  background: transparent;
  border: 2.2px solid var(--color-coral);
  border-radius: var(--radius-btn);
  padding: 0 24px 6px;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base);
}

.btn-learn-more:hover {
  background: var(--color-coral);
  color: var(--color-white);
}

.services-columns .subsection-title {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .services-columns .subsection-title {
    margin-top: 0;
  }
}

.service-pill {
  display: inline-block;
  font-family: var(--font-pretty);
  color: var(--color-white);
  background: var(--color-green-80);
  border-radius: var(--radius-pill);
  padding: 0 24px 8px;
  margin: 5px 4px;
  white-space: nowrap;
}

.service-pill-lg {
  font-size: var(--fs-3xl);
  padding: 0 28px 10px;
  border-radius: 32px;
}

.service-pill-md {
  font-size: 28.8px;
  padding: 0 22px 8px;
  border-radius: var(--fs-xl);
}

.service-pill-sm {
  font-size: var(--fs-3xl);
  padding: 0 20px 8px;
  border-radius: 26px;
}

.confetti-deco {
  position: absolute;
  right: 40px;
  top: 10px;
  width: 96px;
  height: 78px;
}


/* ============================================
   12. BIG DAY / DATE PICKER SECTION
   ============================================ */
.bigday-section {
  background: var(--color-white);
  background-image: url('../images/save-the-date-calendar.webp');
  background-repeat: no-repeat;
  background-position: right -40px top 50%;
  background-size: 520px auto;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.bigday-content {
  max-width: 55%;
}

.bigday-title {
  font-family: var(--font-sans);
  font-size: var(--fs-8xl);
  color: var(--color-green);
}

.bigday-script {
  font-family: var(--font-pretty);
  font-size: var(--fs-hero);
  color: var(--color-coral);
  transform: rotate(-4.3deg);
  display: inline-block;
}

.bigday-description {
  font-family: var(--font-sans);
  font-size: var(--fs-xl);
  color: var(--color-dark);
  line-height: 1.5;
}

.date-label {
  font-family: var(--font-condensed);
  font-size: var(--fs-sm);
  color: var(--color-burgundy);
  display: block;
  margin-bottom: 4px;
}

.date-input {
  text-align: center;
}

/* --- Check Availability Button --- */
.btn-check-avail {
  font-size: 26px;
  color: var(--color-white);
  background: var(--color-coral);
  padding: 0 24px 6px;
}

.btn-check-avail:hover {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: white;
}

.login-hint {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--color-dark);
  margin-top: 20px;
}


/* ============================================
   13. CREATIVE PARTNERS SECTION
   ============================================ */
.partners-section {
  background: var(--color-cream);
  padding: 80px 0;
  position: relative;
}

.partners-title {
  font-family: var(--font-sans);
  font-size: var(--fs-7xl);
  color: var(--color-green);
}

.partners-title .sparkle-icon {
  width: 34px;
  height: 41px;
  display: inline;
  vertical-align: super;
  margin-left: 4px;
}

.partners-photo {
  transform: rotate(-6.7deg);
  border-radius: 0;
  overflow: hidden;
  max-width: 398px;
  box-shadow: var(--shadow-card);
  will-change: transform;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.partners-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.john-melissa-name {
  font-family: var(--font-pretty);
  font-size: 35px;
  color: var(--color-coral);
  transform: rotate(-7.3deg);
  display: inline-block;
  margin-top: -20px;
}

.partners-description {
  font-family: var(--font-sans);
  font-size: var(--fs-xl);
  color: var(--color-dark);
  line-height: 1.5;
}


/* ============================================
   14. TESTIMONIALS
   ============================================ */
.testimonials {
  margin-top: 50px;
}

.testimonial-track {
  display: flex;
  gap: 20px;
}

.testimonial-item {
  flex: 1;
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-item .quote {
  font-family: var(--font-pretty);
  font-size: 28.8px;
  color: var(--color-dark);
  line-height: 1.4;
}

.testimonial-item .author {
  font-family: var(--font-pretty);
  font-size: 28.8px;
  color: var(--color-coral);
  margin-top: 4px;
}

.testimonial-dots {
  display: none;
}

.stars-deco {
  width: 301px;
  height: 55px;
  display: block;
  margin: 20px auto 0;
}

.review-links {
  text-align: center;
  margin-top: 30px;
}

.review-links span {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--color-dark);
}

.review-links a {
  font-family: var(--font-pretty);
  font-size: var(--fs-xl);
  color: var(--color-dark);
  text-decoration: underline;
  margin-left: 8px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.review-links a:hover {
  color: var(--color-coral);
  opacity: 0.85;
}


/* ============================================
   15. READY TO BOOK + INSPIRATION
   ============================================ */
.book-section {
  background: var(--color-white);
  padding: 80px 0;
  position: relative;
}

.book-title {
  font-family: var(--font-sans);
  font-size: var(--fs-7xl);
  color: var(--color-green);
}

.book-subtitle {
  font-family: var(--font-sans);
  font-size: var(--fs-xl);
  color: var(--color-dark);
  margin-bottom: 20px;
}

.btn-book-now {
  font-size: 34px;
  color: var(--color-white);
  background: var(--color-coral);
  padding: 0 32px 8px;
}

.btn-book-now:hover {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: white;
}

.inspiration-title {
  font-family: var(--font-sans);
  font-size: var(--fs-4xl);
  color: var(--color-green);
}

.inspiration-text {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--color-dark);
  line-height: 1.6;
}

.inspiration-links a {
  font-family: var(--font-pretty);
  font-size: var(--fs-xl);
  color: var(--color-dark);
  text-decoration: underline;
  display: block;
  margin-bottom: 8px;
}

.inspiration-links a:hover {
  color: var(--color-coral);
}

.paper-airplane-deco {
  position: absolute;
  width: 112px;
  height: 59px;
  transform: rotate(45deg);
}


/* ============================================
   16. FOOTER
   ============================================ */
.footer-section {
  background: var(--color-pink-light);
  padding: 60px 0 40px;
  text-align: center;
}

.footer-logo {
  width: 196px;
  height: 98px;
  margin-bottom: 24px;
}

.footer-nav {
  margin-bottom: 16px;
}

.footer-nav-col {
  display: inline-block;
  vertical-align: top;
  margin: 0 40px;
  text-align: center;
}

.footer-nav-col a {
  font-family: var(--font-sans-bold);
  font-size: 14px;
  color: var(--color-burgundy);
  text-decoration: underline;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  align-items: center;
}

.footer-social img {
  width: 46px;
  height: 46px;
}

.footer-location {
  font-family: var(--font-pretty);
  font-size: var(--fs-xl);
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 12px;
}

.footer-heart {
  width: 33px;
  height: 11px;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--color-black);
  margin-bottom: 6px;
}

.footer-legal {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-black);
}

.footer-legal a {
  color: var(--color-black);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}


/* ============================================
   17. RESPONSIVE — TABLET (< 992px)
   ============================================ */
@media (max-width: 991.98px) {
  /* Navbar */
  .navbar-mystik {
    max-width: 352px;
    padding: 6px 16px;
  }

  .navbar-mystik .nav-link {
    font-size: var(--fs-base);
    padding: 8px 12px;
  }

  /* Hero */
  .hero-inner {
    padding-top: 170px;
    padding-bottom: 240px;
  }

  .polaroid-1 { width: 100px; height: 157px; left: 18%; top: 10px; }
  .polaroid-2 { width: 102px; height: 147px; left: 36%; top: 5px; }
  .polaroid-3 { width: 107px; height: 152px; left: 58%; top: 0; }
  .polaroid-4 { width: 98px;  height: 159px; left: 82%; top: 18px; }
  .polaroid-5 { width: 104px; height: 134px; left: 2%;  top: 36px; }

  .btn-get-started {
    font-size: var(--fs-lg);
    padding: 2px 18px;
    border-width: 1.3px;
    border-radius: 5.6px;
    margin-top: 10px;
  }

  .scatter-1 { width: 126px; height: 160px; left: -3%; bottom: 50px; }
  .scatter-2 { width: 113px; height: 177px; left: 11%; bottom: 10px; }
  .scatter-3 { width: 123px; height: 153px; left: 30%; bottom: 25px; }
  .scatter-4 { width: 122px; height: 166px; left: 50%; bottom: -5px; }
  .scatter-5 { width: 125px; height: 156px; left: 68%; bottom: 15px; }
  .scatter-6 { width: 123px; height: 154px; left: 83%; bottom: 55px; }

  /* About */
  .about-section .about-text {
    font-size: 37px;
  }

  .about-subtext {
    font-size: 25px;
  }

  .about-photos .about-photo-sm,
  .about-photos .about-photo-tilt {
    width: 64px;
    height: 80px;
  }

  .icon-camera-deco {
    width: 20px;
    height: 24px;
  }

  /* Video Gallery */
  .gallery-wrapper {
    overflow-x: clip;
  }

  .gallery-thumb {
    width: 112px;
    height: 181px;
  }

  .gallery-featured {
    width: 156px;
    height: 252px;
  }

  .gallery-featured .overlay .couple-name {
    font-size: var(--fs-lg);
  }

  .gallery-featured .overlay .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 2px !important;
  }

  .gallery-featured .overlay .venue-info {
    font-size: 10px;
  }

  .gallery-featured .mute-btn {
    width: 19px;
    height: 19px;
    font-size: 10px;
  }

  /* Services */
  .services-section .section-title {
    font-size: 43px;
  }

  .services-section .subsection-title {
    font-size: var(--fs-xl);
  }

  .service-card {
    padding: 28px 28px;
  }

  .service-card-title {
    font-size: var(--fs-2xl);
  }

  .service-card-title-lg {
    font-size: var(--fs-5xl);
  }

  .service-list li {
    font-size: var(--fs-xl);
  }

  .btn-learn-more {
    font-size: 22px;
  }

  .confetti-deco {
    width: 48px;
    height: 39px;
    right: 10px;
    top: 5px;
  }

  /* Big Day */
  .bigday-title {
    font-size: var(--fs-5xl);
  }

  .bigday-script {
    font-size: var(--fs-6xl);
  }

  .bigday-description {
    font-size: var(--fs-base);
  }

  .date-input {
    font-size: var(--fs-base);
    height: 32px;
    padding: 4px 8px;
  }

  .date-label {
    font-size: 9px;
  }

  .btn-check-avail {
    font-size: 22.5px;
    padding: 3px 22px;
  }

  .login-hint {
    font-size: var(--fs-base);
  }

  .bigday-section {
    background-size: 380px auto;
    background-position: right -30px bottom 10%;
  }

  .bigday-content {
    max-width: 55%;
  }

  /* Partners */
  .partners-section {
    overflow-x: clip;
  }

  .partners-photo-row {
    display: flex;
    align-items: center;
  }

  .partners-photo {
    margin-left: -40px !important;
    margin-right: 0 !important;
    flex-shrink: 0;
  }

  .partners-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding-bottom: 10px;
  }

  .partners-title {
    font-size: 45.7px;
  }

  .partners-description {
    font-size: var(--fs-xl);
  }

  .john-melissa-name {
    font-size: var(--fs-xl);
    margin-top: 0;
  }

  /* Testimonials – carousel */
  .testimonial-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-item {
    flex: 0 0 calc(100% - 24px);
    min-width: 0;
    scroll-snap-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 12px 10px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .testimonial-item .quote {
    font-size: 22px;
  }

  .testimonial-item .author {
    font-size: 22px;
  }

  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
  }

  .testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--color-dark);
    opacity: 0.25;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity var(--transition-slow);
  }

  .testimonial-dots .dot.active {
    opacity: 1;
  }

  .review-links span {
    font-size: 11px;
  }

  .review-links a {
    font-size: 16.4px;
  }

  /* Book */
  .book-title {
    font-size: 45px;
  }

  .book-subtitle {
    font-size: 17px;
  }

  /* Footer */
  .footer-nav-col {
    margin: 0 10px;
  }

  .footer-nav-col a {
    font-size: var(--fs-lg);
  }
}

@media (max-width: 855px) {
  .bigday-section {
    background-image: url('../images/save-the-date-calendar-mobile.webp');
    background-size: 280px auto;
    background-position: right -20px bottom -20px;
  }
}

/* --- Small Mobile (< 576px) --- */
@media (max-width: 575.98px) {
  .partners-photo {
    margin-left: -90px !important;
    max-width: 300px;
  }

  .navbar-wrapper {
    top: 12px;
    padding: 0 12px;
  }

  .hero-inner {
    padding-top: 160px;
    padding-bottom: 180px;
  }

  .hero-heading-img {
    margin-top: 20px;
  }

  .polaroid-1 { width: 90px;  height: 141px; left: 18%; top: 10px; }
  .polaroid-2 { width: 92px;  height: 132px; left: 36%; top: 5px; }
  .polaroid-3 { width: 96px;  height: 137px; left: 58%; top: 0; }
  .polaroid-4 { width: 88px;  height: 143px; left: 80%; top: 15px; }
  .polaroid-5 { width: 94px;  height: 121px; left: -2%; top: 28px; }

  .scatter-1 { width: 107px; height: 136px; left: -4%; bottom: 30px; }
  .scatter-2 { width: 96px;  height: 150px; left: 10%; bottom: 2px; }
  .scatter-3 { width: 105px; height: 131px; left: 30%; bottom: 12px; }
  .scatter-4 { width: 104px; height: 141px; left: 52%; bottom: -4px; }
  .scatter-5 { width: 106px; height: 132px; left: 70%; bottom: 5px; }
  .scatter-6 { width: 105px; height: 131px; left: 84%; bottom: 35px; }

  .about-section .about-text {
    font-size: 35px;
  }

  .about-subtext {
    font-size: 25px;
  }

  .gallery-wrapper {
    gap: 12px;
    padding: 10px 0;
    overflow-x: clip;
  }

  .gallery-thumb {
    width: 112px;
    height: 181px;
  }

  .gallery-featured {
    width: 156px;
    height: 252px;
  }

  .services-section .section-title {
    font-size: var(--fs-4xl);
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-card-title {
    font-size: var(--fs-xl);
  }

  .service-card-title-lg {
    font-size: var(--fs-4xl);
  }

  .service-list li {
    font-size: var(--fs-lg);
  }

  .services-cta a {
    display: block;
    margin: 10px auto;
    max-width: 220px;
  }

  .btn-learn-more {
    font-size: var(--fs-lg);
  }

  .bigday-section {
    padding: 50px 0;
    text-align: center;
    padding-bottom: 260px;
  }

  .bigday-content {
    max-width: 100%;
  }

  .bigday-title {
    font-size: 34px;
  }

  .bigday-script {
    font-size: var(--fs-5xl);
  }

  .bigday-description {
    font-size: 14px;
    text-align: center;
  }

  .date-input {
    font-size: 14px;
    height: 30px;
    padding: 2px 6px;
  }

  .date-label {
    font-size: var(--fs-2xs);
  }

  .btn-check-avail {
    font-size: var(--fs-lg);
    padding: 2px 16px;
  }

  .d-flex.gap-2.align-items-end {
    justify-content: center;
  }

  .partners-title {
    font-size: 40px;
  }

  .partners-description {
    font-size: var(--fs-lg);
  }

  .book-title {
    font-size: var(--fs-4xl);
  }

  .inspiration-title {
    font-size: var(--fs-2xl);
  }

  .footer-nav-col {
    display: block;
    margin: 10px auto;
  }
}


/* ============================================
   18. UTILITY CLASSES
   ============================================ */
.text-coral     { color: var(--color-coral) !important; }
.text-green     { color: var(--color-green) !important; }
.text-burgundy  { color: var(--color-burgundy) !important; }
.bg-cream       { background-color: var(--color-cream) !important; }
.bg-pink-light  { background-color: var(--color-pink-light) !important; }
.font-script    { font-family: var(--font-script) !important; }
.font-pretty    { font-family: var(--font-pretty) !important; }
.font-sans      { font-family: var(--font-sans) !important; }


/* ============================================
   19. BOOKING PAGE
   ============================================ */
.booking-section {
  background: var(--color-white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.booking-hero {
  background: var(--color-cream);
  padding: 120px 0 40px;
}

.booking-form-wrap {
  padding: 40px 0 80px;
}

.booking-polaroid-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.booking-polaroid {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 280 / 370;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: rotate(8deg);
  will-change: transform;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

/* heading & script use shared styles from section 4 */
.booking-script {
  margin-bottom: 30px;
}

.booking-description {
  margin-bottom: 32px;
}

.booking-form .form-row {
  margin-bottom: 20px;
}

.booking-form .form-row input[type="text"],
.booking-form .form-row input[type="tel"],
.booking-form .form-row select {
  width: 100%;
  max-width: 400px;
}

.booking-form .venue-select {
  max-width: 100%;
}

.booking-form .manual-venue {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
}

.booking-form .manual-venue .form-row {
  margin-bottom: 14px;
}

.booking-form .manual-venue .form-row:last-child {
  margin-bottom: 0;
}

.booking-form .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.booking-form .checkbox-group label {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--color-dark);
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px 0;
  width: 50%;
}

.booking-form .checkbox-group input[type="checkbox"] {
  accent-color: var(--color-coral);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.btn-submit-booking {
  font-size: 30px;
  color: var(--color-white);
  background: var(--color-coral);
  padding: 2px 36px 8px;
  margin-top: 10px;
}

.btn-submit-booking:hover {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: white;
}

.booking-form .section-divider {
  border: none;
  border-top: 1px solid rgba(152, 41, 24, 0.15);
  margin: 28px 0;
}

.booking-form .section-label {
  font-family: var(--font-pretty);
  font-size: var(--fs-xl);
  color: var(--color-coral);
  margin-bottom: 16px;
}

.booking-login-hint {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--color-dark);
  margin-top: 24px;
}

.booking-login-hint a {
  color: var(--color-coral);
  text-decoration: underline;
}

/* Booking — tablet */
@media (max-width: 991.98px) {
  .booking-heading {
    font-size: 40px;
  }

  .booking-script {
    font-size: var(--fs-2xl);
  }

  .booking-description {
    font-size: var(--fs-base);
  }

  .booking-polaroid-col {
    justify-content: flex-end;
    margin-right: -30px;
  }

  .booking-polaroid {
    max-width: 200px;
  }

  .booking-form .checkbox-group label {
    width: 100%;
  }
}

/* Booking — mobile */
@media (max-width: 575.98px) {
  .booking-section {
    padding: 100px 0 60px;
  }

  .booking-heading {
    font-size: var(--fs-3xl);
  }

  .booking-script {
    font-size: var(--fs-xl);
  }

  .booking-description {
    font-size: 14px;
  }

  .booking-polaroid-col {
    justify-content: flex-end;
    margin-right: -50px;
  }

  .booking-polaroid {
    max-width: 160px;
  }

  .booking-form .d-flex.gap-2.align-items-end {
    justify-content: flex-start;
  }

  .booking-form .form-row input[type="text"],
  .booking-form .form-row input[type="tel"],
  .booking-form .form-row select {
    font-size: var(--fs-base);
    max-width: 100%;
  }

  .btn-submit-booking {
    font-size: var(--fs-xl);
    padding: 2px 24px 6px;
  }
}


/* ============================================
   20. MUSIC PAGE
   ============================================ */
.music-section {
  background: var(--color-white);
  padding: 120px 0 80px;
}

/* heading & script use shared styles from section 4 */
.music-script {
  margin-bottom: 30px;
}

.music-description {
  margin-bottom: 48px;
}

.music-list-title {
  font-family: var(--font-sans-bold);
  font-size: var(--fs-xl);
  color: var(--color-green);
  text-align: center;
  margin: 48px 0 8px;
}

.music-list-title:first-of-type {
  margin-top: 0;
}

.music-list-explanation {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  text-align: center;
  margin-bottom: 16px;
}

.music-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  line-height: 1.4;
}

.music-table th {
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-condensed);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-align: left;
  padding: 8px 10px;
  text-transform: uppercase;
}

.music-table th:first-child {
  border-radius: 5px 0 0 0;
  text-align: center;
  width: 9%;
}

.music-table th:last-child {
  border-radius: 0 5px 0 0;
}

.music-table td {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 7px 10px;
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-dark);
}

.music-table tr:nth-child(even) td {
  background: var(--color-gray-100);
}

.music-table td:first-child {
  text-align: center;
  font-family: var(--font-sans-bold);
  font-size: 14px;
}

.music-table .artist {
  font-family: var(--font-sans-bold);
}

.music-table .title {
  color: var(--color-gray-600);
}

.music-copyright-notice {
  font-family: var(--font-condensed);
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
  text-align: center;
  margin: 48px auto 0;
  max-width: 650px;
  line-height: 1.6;
}

.music-copyright-notice a {
  color: var(--color-coral);
}

@media (max-width: 767px) {
  .music-heading {
    font-size: var(--fs-3xl);
  }
  .music-script {
    font-size: var(--fs-xl);
  }
  .music-description {
    font-size: var(--fs-base);
  }
  .music-list-title {
    font-size: var(--fs-lg);
  }
  .music-table td,
  .music-table th {
    font-size: var(--fs-xs);
    padding: 5px 6px;
  }
}


/* ============================================
   21. PRICING PAGE
   ============================================ */
.pricing-section {
  background: var(--color-white);
  padding: 120px 0 80px;
}

.pricing-heading {
  font-family: var(--font-sans);
  font-size: var(--fs-7xl);
  color: var(--color-green);
  margin-bottom: 4px;
}

.pricing-heading-sub {
  font-size: var(--fs-5xl);
}

.pricing-script {
  font-family: var(--font-pretty);
  font-size: var(--fs-5xl);
  color: var(--color-coral);
  margin-bottom: 30px;
  display: block;
}

.pricing-intro {
  font-family: var(--font-sans);
  font-size: 21px;
  color: var(--color-dark);
  line-height: 1.8;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 32px;
}

.pricing-card-title {
  font-family: var(--font-sans-bold);
  font-size: 30px;
  color: var(--color-green);
  margin-bottom: 6px;
}

.pricing-card-subtitle {
  font-family: var(--font-pretty);
  font-size: 26px;
  color: var(--color-coral);
  margin-bottom: 16px;
  display: block;
}

.pricing-card p {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

.pricing-start {
  text-align: center;
  margin: 48px 0;
}

.pricing-start-label {
  font-family: var(--font-condensed);
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gray-500);
  margin-bottom: 4px;
}

.pricing-start-amount {
  font-family: var(--font-sans-bold);
  font-size: var(--fs-8xl);
  color: var(--color-green);
  line-height: 1.1;
}

.pricing-start-note {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--color-gray-500);
  margin-top: 4px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--color-border-warm);
  margin: 48px 0;
}

.pricing-addons-heading {
  font-family: var(--font-sans-bold);
  font-size: var(--fs-2xl);
  color: var(--color-green);
  text-align: center;
  margin-bottom: 24px;
}

.pricing-addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 540px;
  margin: 0 auto 48px;
}

.pricing-addon-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: var(--color-cream);
  border-radius: 8px;
  padding: 16px 20px;
}

.pricing-addon-name {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--color-dark);
}

.pricing-addon-price {
  font-family: var(--font-sans-bold);
  font-size: 17px;
  color: var(--color-green);
  white-space: nowrap;
  margin-left: 12px;
}

.pricing-addon-link {
  font-family: var(--font-condensed);
  font-size: var(--fs-sm);
  color: var(--color-coral);
  text-decoration: none;
  margin-left: 0;
  white-space: nowrap;
}

.pricing-addon-link:hover {
  color: var(--color-burgundy);
  text-decoration: underline;
}

.pricing-retainer {
  background: var(--color-pink-light);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 48px;
}

.pricing-retainer-title {
  font-family: var(--font-sans-bold);
  font-size: var(--fs-xl);
  color: var(--color-green);
  margin-bottom: 12px;
}

.pricing-retainer p {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

.pricing-cta {
  text-align: center;
  margin-top: 48px;
}

.pricing-cta p {
  font-family: var(--font-sans);
  font-size: 21px;
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .pricing-heading {
    font-size: 38px;
  }
  .pricing-heading-sub {
    font-size: var(--fs-3xl);
  }
  .pricing-script {
    font-size: var(--fs-2xl);
  }
  .pricing-intro {
    font-size: var(--fs-md);
  }
  .pricing-card {
    padding: 28px 24px;
  }
  .pricing-card-title {
    font-size: var(--fs-xl);
  }
  .pricing-start-amount {
    font-size: 48px;
  }
  .pricing-addons-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   22. CONTACT PAGE
   ============================================ */
.contact-section {
  background: var(--color-white);
  padding: 120px 0 40px;
}

/* heading & script use shared styles from section 4 */

/* --- Check Availability Card --- */
.contact-availability {
  background: var(--color-white);
  padding: 20px 0 40px;
}

.contact-avail-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}

.contact-avail-title {
  font-family: var(--font-sans);
  font-size: 30px;
  color: var(--color-green);
  margin-bottom: 8px;
}

.contact-avail-text {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--color-dark);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto;
}

.contact-avail-card .d-flex {
  justify-content: center;
}

.contact-avail-card .login-hint {
  font-family: var(--font-condensed);
  font-size: 14px;
  color: var(--color-dark);
  margin-top: 10px;
}

/* --- General Inquiries Form --- */
.contact-form-section {
  background: var(--color-white);
  padding: 40px 0 80px;
}

.contact-form-title {
  font-family: var(--font-sans);
  font-size: 30px;
  color: var(--color-green);
  margin-bottom: 8px;
}

.contact-form-text {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-form .form-row {
  margin-bottom: 20px;
}

.contact-form .form-row input[type="text"],
.contact-form .form-row input[type="tel"] {
  width: 100%;
  max-width: 400px;
}

.contact-form .form-row textarea {
  padding: 8px 12px;
  width: 100%;
  max-width: 400px;
  resize: vertical;
}

@media (max-width: 767px) {
  .contact-section {
    padding: 100px 0 30px;
  }
  .contact-heading {
    font-size: 38px;
  }
  .contact-script {
    font-size: var(--fs-2xl);
  }
  .contact-avail-card {
    padding: 28px 20px;
  }
  .contact-avail-title {
    font-size: var(--fs-xl);
  }
  .contact-form .form-row input[type="text"],
  .contact-form .form-row input[type="tel"],
  .contact-form .form-row textarea {
    max-width: 100%;
  }
}


/* ============================================
   23. SOCIAL BOOTH PAGE
   ============================================ */
.socialbooth-hero {
  background: var(--color-white);
  padding: 120px 0 40px;
}

/* heading & script use shared styles from section 4 */
.socialbooth-script {
  margin-bottom: 20px;
}

.socialbooth-intro {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--color-dark);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Video Embed --- */
.socialbooth-video {
  background: var(--color-white);
  padding: 20px 0 40px;
}

.socialbooth-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.socialbooth-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Detail Cards --- */
.socialbooth-details {
  background: var(--color-white);
  padding: 20px 0 80px;
}

.socialbooth-detail-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin-bottom: 24px;
}

.socialbooth-detail-title {
  font-family: var(--font-sans);
  font-size: 26px;
  color: var(--color-green);
  margin-bottom: 8px;
}

.socialbooth-detail-text {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .socialbooth-hero {
    padding: 100px 0 30px;
  }
  .socialbooth-heading {
    font-size: 34px;
  }
  .socialbooth-script {
    font-size: var(--fs-2xl);
  }
  .socialbooth-detail-card {
    padding: 28px 20px;
  }
  .socialbooth-detail-title {
    font-size: 22px;
  }
}


/* ============================================
   24. WEDDING TIPS — INDEX PAGE
   ============================================ */
.tips-hero {
  background: var(--color-white);
  padding: 120px 0 40px;
}

/* heading & script use shared styles from section 4 */
.tips-script {
  margin-bottom: 16px;
}

.tips-intro {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--color-dark);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Tip Card Grid --- */
.tips-grid-section {
  background: var(--color-white);
  padding: 20px 0 80px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tip-card {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  color: inherit;
}

.tip-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tip-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tip-card:hover .tip-card-thumb img {
  transform: scale(1.04);
}

.tip-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-watermark);
  font-size: 48px;
}

.tip-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tip-card-title {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  color: var(--color-green);
  margin-bottom: 8px;
}

.tip-card-date {
  display: block;
  font-family: var(--font-condensed);
  font-size: var(--fs-sm);
  color: var(--color-gray-600);
  margin-bottom: 8px;
}

.tip-card-excerpt {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-dark);
  line-height: 1.5;
  flex: 1;
}

.tip-card-read {
  font-family: var(--font-condensed);
  font-size: 14px;
  color: var(--color-coral);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.tip-card:hover .tip-card-read {
  color: var(--color-burgundy);
}


/* ============================================
   25. WEDDING TIPS — ARTICLE PAGE
   ============================================ */
.tip-article {
  background: var(--color-white);
  padding: 120px 0 80px;
}

.tip-back-link {
  font-family: var(--font-condensed);
  font-size: 14px;
  color: var(--color-coral);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
}

.tip-back-link:hover {
  color: var(--color-burgundy);
}

.tip-article-title {
  font-family: var(--font-sans);
  font-size: 44px;
  color: var(--color-green);
  margin-bottom: 24px;
  line-height: 1.15;
}

.tip-article-date {
  display: block;
  font-family: var(--font-condensed);
  font-size: 15px;
  color: var(--color-gray-600);
  margin-bottom: 24px;
}

.tip-article-featured {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 36px;
}

.tip-article-featured img {
  width: 100%;
  height: auto;
  display: block;
}

.tip-article-featured-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-pink-light);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-watermark);
  font-size: 48px;
  margin-bottom: 36px;
}

.tip-article-featured-placeholder span {
  font-family: var(--font-condensed);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.tip-article-body {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--color-dark);
  line-height: 1.7;
}

.tip-article-body h2 {
  font-family: var(--font-sans);
  font-size: var(--fs-2xl);
  color: var(--color-green);
  margin-top: 36px;
  margin-bottom: 12px;
}

.tip-article-body h3 {
  font-family: var(--font-sans);
  font-size: 21px;
  color: var(--color-green);
  margin-top: 24px;
  margin-bottom: 8px;
}

.tip-article-body p {
  margin-bottom: 18px;
}

.tip-article-body a {
  color: var(--color-coral);
  text-decoration: none;
}

.tip-article-body a:hover {
  color: var(--color-burgundy);
  text-decoration: underline;
}

.tip-numbered-list {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--color-dark);
  padding-left: 24px;
  margin-bottom: 24px;
}

.tip-numbered-list li {
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .tips-hero {
    padding: 100px 0 30px;
  }
  .tips-heading {
    font-size: 38px;
  }
  .tips-script {
    font-size: var(--fs-2xl);
  }
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .tip-article {
    padding: 100px 0 60px;
  }
  .tip-article-title {
    font-size: var(--fs-3xl);
  }
  .tip-article-body h2 {
    font-size: var(--fs-xl);
  }
  .tip-article-body h3 {
    font-size: 19px;
  }
}


/* ============================================
   26. VENUES — INDEX PAGE
   ============================================ */
.venues-hero {
  padding: 140px 0 40px;
  text-align: center;
}

/* heading uses shared styles from section 4 */

.venues-script {
  display: block;
  font-family: var(--font-script);
  font-size: var(--fs-2xl);
  color: var(--color-coral);
  margin-bottom: 24px;
}

.venues-intro {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 8px;
}

.venues-intro-link a {
  color: var(--color-coral);
  text-decoration: underline;
  font-family: var(--font-sans-bold);
}

.venues-intro-link a:hover {
  color: var(--color-burgundy);
}

/* Section title */
.venues-section-title {
  font-family: var(--font-sans);
  font-size: var(--fs-3xl);
  color: var(--color-green);
  margin-bottom: 32px;
}

/* Featured venues — 3-col grid */
.venues-featured {
  padding: 20px 0 60px;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

/* Polaroid card */
.venue-polaroid {
  text-align: center;
  position: relative;
}

/* Random tilts — featured venues only */
.venues-featured .venue-polaroid:nth-child(1)  { transform: rotate(-3deg); }
.venues-featured .venue-polaroid:nth-child(2)  { transform: rotate(2deg); }
.venues-featured .venue-polaroid:nth-child(3)  { transform: rotate(-1.5deg); }
.venues-featured .venue-polaroid:nth-child(4)  { transform: rotate(3.5deg); }
.venues-featured .venue-polaroid:nth-child(5)  { transform: rotate(-2deg); }
.venues-featured .venue-polaroid:nth-child(6)  { transform: rotate(1deg); }
.venues-featured .venue-polaroid:nth-child(7)  { transform: rotate(-4deg); }
.venues-featured .venue-polaroid:nth-child(8)  { transform: rotate(2.5deg); }
.venues-featured .venue-polaroid:nth-child(9)  { transform: rotate(-1deg); }
.venues-featured .venue-polaroid:nth-child(10) { transform: rotate(3deg); }
.venues-featured .venue-polaroid:nth-child(11) { transform: rotate(-2.5deg); }
.venues-featured .venue-polaroid:nth-child(12) { transform: rotate(1.5deg); }
.venues-featured .venue-polaroid:nth-child(13) { transform: rotate(-3.5deg); }

.venue-polaroid-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.venue-polaroid-img img {
  width: 100%;
  display: block;
}

.venue-polaroid-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: var(--font-pretty);
  font-size: 30px;
  color: var(--color-black);
  padding: 40px 12px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* Venues by city */
.venues-by-city {
  padding: 40px 0 60px;
  background-color: var(--color-pink-light);
}

.venues-by-city .venues-section-title {
  margin-bottom: 28px;
}

.venues-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}

.venue-city-card {
  text-align: center;
  text-decoration: none;
  position: relative;
}

.venue-city-card:hover .venue-city-name {
  color: var(--color-coral);
  text-decoration: underline;
}

.venue-city-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow var(--transition-base);
}

.venue-city-card:hover .venue-city-img {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.venue-city-img img {
  width: 100%;
  display: block;
}

.venue-city-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: var(--font-pretty);
  font-size: 22px;
  color: var(--color-black);
  padding: 32px 10px 10px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: color var(--transition-base);
}

/* Checking in CTA */
.venues-cta {
  padding: 80px 0 70px;
}

.venues-cta-heading {
  font-family: var(--font-script);
  font-size: var(--fs-5xl);
  color: var(--color-coral);
  margin-bottom: 16px;
}

.venues-cta-text {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Venues responsive */
@media (max-width: 991px) {
  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .venues-city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .venues-heading {
    font-size: var(--fs-5xl);
  }
}

@media (max-width: 767px) {
  .venues-hero {
    padding: 120px 0 30px;
  }
  .venues-heading {
    font-size: 34px;
  }
  .venues-script {
    font-size: 22px;
  }
  .venues-intro {
    font-size: 17px;
  }
  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .venues-city-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  .venues-section-title {
    font-size: 26px;
  }
  .venue-polaroid-name {
    font-size: var(--fs-md);
  }
  .venue-city-name {
    font-size: var(--fs-base);
  }
  .venues-cta-heading {
    font-size: 34px;
  }
  .venues-cta-text {
    font-size: 17px;
  }
}


/* ============================================
   27. VENUES — CITY PAGES
   ============================================ */
.city-venues-page {
  padding: 140px 0 40px;
}

.city-venues-breadcrumb {
  font-family: var(--font-condensed);
  font-size: 14px;
  color: var(--color-coral);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
}

.city-venues-breadcrumb:hover {
  color: var(--color-burgundy);
}

.city-venues-title {
  font-family: var(--font-sans);
  font-size: var(--fs-6xl);
  color: var(--color-green);
  margin-bottom: 8px;
}

.city-venues-desc {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* City venue grid — reuses polaroid styles from index */
.city-venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-bottom: 60px;
}

.city-venues-grid .venue-polaroid-name {
  position: static;
  display: block;
  padding: 10px 0 0;
}

/* Prev / Next navigation */
.city-venues-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 0;
  border-top: 1px solid var(--color-border-warm-dark);
}

.city-nav-link {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--color-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-base);
}

.city-nav-link:hover {
  color: var(--color-coral);
}

.city-nav-link--next {
  margin-left: auto;
}

/* City page responsive */
@media (max-width: 991px) {
  .city-venues-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .city-venues-title {
    font-size: var(--fs-5xl);
  }
}

@media (max-width: 767px) {
  .city-venues-page {
    padding: 120px 0 30px;
  }
  .city-venues-title {
    font-size: 34px;
  }
  .city-venues-desc {
    font-size: 17px;
  }
  .city-venues-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .city-nav-link {
    font-size: var(--fs-base);
  }
}
