/* ==========================================================================
   THE WONTHAGGI MARKET - Core Stylesheet
   Palette: Warm Country Cream, Australian Forest Green, Terracotta, Antique Umber & Brass
   Typography: Fraunces & Playfair Display (Serif) + Outfit & Plus Jakarta Sans (Sans-serif)
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-cream: #FBF8F2;
  --bg-cream-alt: #F4EFE6;
  --bg-cream-subtle: #EFE8DA;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-warm: #FAF6EF;
  
  --forest-green-dark: #122419;
  --forest-green: #1B3828;
  --forest-green-medium: #264A37;
  --forest-green-light: #3D6A52;
  --forest-green-subtle: #E7EFEA;

  --terracotta: #C45D3E;
  --terracotta-hover: #AF4D30;
  --terracotta-light: #F7ECE8;
  --terracotta-glow: rgba(196, 93, 62, 0.18);

  --umber-dark: #271E18;
  --umber-text: #372A22;
  --text-primary: #292019;
  --text-secondary: #5E5349;
  --text-muted: #887B6F;
  --text-light: #FAF6EF;
  --text-on-dark: #FBF8F2;

  --brass-gold: #C69543;
  --brass-gold-light: #F9F2E2;
  --brass-gold-border: rgba(198, 149, 67, 0.35);

  --border-subtle: rgba(74, 53, 37, 0.09);
  --border-medium: rgba(74, 53, 37, 0.16);
  --border-strong: rgba(74, 53, 37, 0.28);

  /* Shadows */
  --shadow-xs: 0 2px 4px rgba(44, 31, 22, 0.04);
  --shadow-sm: 0 4px 10px rgba(44, 31, 22, 0.06);
  --shadow-md: 0 10px 24px rgba(44, 31, 22, 0.08);
  --shadow-lg: 0 18px 40px rgba(44, 31, 22, 0.12);
  --shadow-xl: 0 26px 60px rgba(44, 31, 22, 0.16);
  --shadow-glow: 0 8px 30px rgba(196, 93, 62, 0.22);

  /* Typography */
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-display: 'Fraunces', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1240px;
  --container-wide: 1360px;
  --nav-height: 80px;
  --announcement-height: 40px;
}

/* Base Reset & Atmosphere */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-cream);
  background-image: radial-gradient(rgba(74, 53, 37, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-wide {
  max-width: var(--container-wide);
}

/* Typography & Headers */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  color: var(--umber-text);
  font-weight: 600;
  line-height: 1.2;
}

.font-heading-sans {
  font-family: var(--font-heading-sans);
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 400;
}

.lead-text {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Eyebrow & Badges */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  background: var(--terracotta-light);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  border: 1px solid rgba(196, 93, 62, 0.2);
}

.eyebrow.eyebrow-forest {
  color: var(--forest-green);
  background: var(--forest-green-subtle);
  border-color: rgba(27, 56, 40, 0.15);
}

.eyebrow.eyebrow-brass {
  color: #8E651E;
  background: var(--brass-gold-light);
  border-color: var(--brass-gold-border);
}

/* Section Header Structure */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading-sans);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-primary {
  background: var(--terracotta);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(196, 93, 62, 0.3);
}

.btn-primary:hover {
  background: var(--terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 93, 62, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background: var(--forest-green);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(27, 56, 40, 0.25);
}

.btn-secondary:hover {
  background: var(--forest-green-medium);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 56, 40, 0.35);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  color: var(--umber-text);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--bg-card);
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--forest-green);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.08rem;
}

/* 1. Announcement Bar */
.announcement-bar {
  background: var(--forest-green-dark);
  color: var(--text-light);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 101;
}

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

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #E2D9CE;
}

.announcement-item i {
  color: var(--brass-gold);
}

.announcement-item a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* 2. Sticky Navigation */
.header-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  transition: all var(--transition-normal);
}

.header-navbar.scrolled {
  background: rgba(251, 248, 242, 0.98);
  box-shadow: 0 6px 20px rgba(44, 31, 22, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--forest-green);
  color: var(--brass-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(27, 56, 40, 0.2);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.brand-logo:hover .brand-badge {
  transform: rotate(-6deg) scale(1.05);
}

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

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest-green);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-family: var(--font-heading-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  font-family: var(--font-heading-sans);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

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

.nav-link.active {
  color: var(--forest-green);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-hours-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--brass-gold-light);
  border: 1px solid var(--brass-gold-border);
  color: #7D5716;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-hours-btn:hover {
  background: #F4E8D0;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  padding: 8px;
  flex-shrink: 0;
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--umber-text);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* 3. Subpage Header Banner */
.page-header-banner {
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 100%);
  color: #FFFFFF;
  padding: 5rem 0 4.5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

.page-header-banner h1 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-header-banner p {
  color: #E2D9CE;
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 1.5rem auto;
  position: relative;
  z-index: 2;
  line-height: 1.65;
}

.page-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading-sans);
  font-size: 0.85rem;
  color: var(--brass-gold);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.page-breadcrumbs a {
  color: #EDE7DD;
}

.page-breadcrumbs a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.subpage-section {
  padding: 5.5rem 0;
  position: relative;
}

.subpage-section.alt-bg {
  background: var(--bg-cream-alt);
}

/* 4. Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 6.5rem 0;
  background-color: var(--forest-green-dark);
  color: #FFFFFF;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) saturate(1.15);
  transform: scale(1.03);
  animation: heroZoomSlow 20s infinite alternate ease-in-out;
}

@keyframes heroZoomSlow {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(18, 36, 25, 0.88) 0%,
    rgba(18, 36, 25, 0.65) 50%,
    rgba(44, 30, 24, 0.82) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.hero-badge-location {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #F8F4EE;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading-sans);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge-location i {
  color: var(--brass-gold);
}

.hero-headline {
  color: #FFFFFF;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-subheading {
  font-family: var(--font-heading-sans);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
  color: var(--brass-gold);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-supporting-text {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: #E6E0D6;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 3.5rem;
}

.hero-highlights-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #EDE7DD;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-highlight-item i {
  color: var(--terracotta);
  font-size: 1.1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-family: var(--font-heading-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: var(--brass-gold);
  border-radius: 2px;
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  80% { transform: translate(-50%, 10px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* 5. Introduction & Editorial Layout */
.section-intro {
  padding: 6.5rem 0;
  position: relative;
  background: var(--bg-cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.intro-visual-stack {
  position: relative;
}

.intro-image-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #FFFFFF;
}

.intro-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.intro-image-supporting {
  position: absolute;
  bottom: -2.5rem;
  right: -2rem;
  width: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid #FFFFFF;
  z-index: 2;
}

.intro-image-supporting img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.intro-stamp-badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  background: var(--forest-green);
  color: var(--brass-gold);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px dashed rgba(198, 149, 67, 0.6);
  box-shadow: var(--shadow-md);
  transform: rotate(-10deg);
  z-index: 3;
}

.intro-stamp-badge i {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.intro-content h2 {
  margin-bottom: 1.5rem;
  color: var(--forest-green);
}

.intro-content p {
  margin-bottom: 2rem;
  line-height: 1.75;
}

.intro-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-medium);
}

.intro-stat-card {
  background: var(--bg-card-warm);
  padding: 1.4rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.intro-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--terracotta-glow);
}

.intro-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.intro-stat-label {
  font-family: var(--font-heading-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* 6. Categories & Detail Blocks */
.section-categories {
  padding: 6.5rem 0;
  background: var(--bg-cream-alt);
  position: relative;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.category-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 93, 62, 0.25);
}

.category-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.category-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-image-wrap img {
  transform: scale(1.08);
}

.category-icon-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest-green);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: var(--shadow-xs);
}

.category-body {
  padding: 1.75rem 1.6rem 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-body h3 {
  font-size: 1.35rem;
  color: var(--forest-green);
  margin-bottom: 0.65rem;
}

.category-body p {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.category-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--terracotta);
}

.categories-cta-wrap {
  text-align: center;
}

/* Category Detail Blocks (for explore.html) */
.category-section-block {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.category-section-block:nth-child(even) {
  background: var(--bg-cream-alt);
}

.category-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.category-detail-grid.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.category-detail-grid.reverse .category-detail-media {
  order: 2;
}

.category-detail-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #FFFFFF;
  height: 380px;
}

.category-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-detail-content h2 {
  color: var(--forest-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem 0;
}

.category-item-tag {
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* 7. Treasure Hunt Section */
.section-treasure-hunt {
  padding: 7rem 0;
  background: var(--forest-green-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hunt-bg-flourish {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 93, 62, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-treasure-hunt .section-header h2 {
  color: #FFFFFF;
}

.section-treasure-hunt .section-header p {
  color: #D2C8BC;
}

.hunt-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  position: relative;
}

.hunt-step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.hunt-step-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(196, 93, 62, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.hunt-step-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hunt-step-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--brass-gold);
  line-height: 1;
}

.hunt-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196, 93, 62, 0.2);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hunt-step-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 160px;
  margin-bottom: 1.5rem;
}

.hunt-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hunt-step-card h3 {
  color: #FFFFFF;
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}

.hunt-step-card p {
  color: #D2C8BC;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* 8. Café Section */
.section-cafe {
  padding: 6.5rem 0;
  background: var(--bg-cream);
  position: relative;
}

.cafe-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.cafe-visual-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
  position: relative;
}

.cafe-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #FFFFFF;
  height: 420px;
}

.cafe-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cafe-photo-secondary {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cafe-photo-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #FFFFFF;
  height: 198px;
}

.cafe-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cafe-content h2 {
  color: var(--forest-green);
  margin-bottom: 1.25rem;
}

.cafe-content p.cafe-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cafe-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.2rem;
}

.cafe-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card-warm);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-heading-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--umber-text);
  box-shadow: var(--shadow-xs);
}

.cafe-pill-icon {
  font-size: 1.25rem;
}

.cafe-quote-card {
  background: var(--brass-gold-light);
  border-left: 4px solid var(--brass-gold);
  padding: 1.35rem 1.6rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2.2rem;
}

.cafe-quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #5D4314;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.cafe-quote-card span {
  font-family: var(--font-heading-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: #8E651E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Blackboard Card */
.chalkboard-card {
  background: #202621;
  color: #F4EFE6;
  border: 12px solid #5C4033;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.chalkboard-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed rgba(198, 149, 67, 0.5);
  margin-bottom: 1.5rem;
}

.chalkboard-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #FAF6EF;
}

.chalkboard-sub {
  font-family: var(--font-heading-sans);
  font-size: 0.88rem;
  color: var(--brass-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.chalkboard-menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.chalkboard-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.75rem;
}

.chalkboard-item-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
}

.chalkboard-item-sub {
  font-size: 0.88rem;
  color: #B8AFA6;
}

.chalkboard-item-badge {
  background: rgba(196, 93, 62, 0.25);
  color: #EFA691;
  border: 1px solid rgba(196, 93, 62, 0.4);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* 9. Why Visit */
.section-why-visit {
  padding: 6.5rem 0;
  background: var(--bg-cream-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.feature-box {
  background: var(--bg-white);
  padding: 2.2rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27, 56, 40, 0.2);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--forest-green-subtle);
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.4rem auto;
  transition: transform var(--transition-fast);
}

.feature-box:hover .feature-icon-wrapper {
  transform: scale(1.1);
  background: var(--terracotta-light);
  color: var(--terracotta);
}

.feature-box h3 {
  font-size: 1.25rem;
  color: var(--forest-green);
  margin-bottom: 0.65rem;
}

.feature-box p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 10. Reviews */
.section-reviews {
  padding: 7rem 0;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.reviews-carousel-wrapper {
  position: relative;
  margin-top: 2rem;
}

.reviews-track-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1rem 0;
}

.reviews-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.45s ease-out;
  cursor: grab;
}

.reviews-track:active {
  cursor: grabbing;
}

.review-slide-card {
  flex: 0 0 calc(33.333% - 1.2rem);
  min-width: 300px;
  background: var(--bg-white);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.review-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 93, 62, 0.2);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #E29924;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.review-quote-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--umber-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest-green-subtle);
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-sans);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-family: var(--font-heading-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest-green);
}

.review-verified-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review-verified-tag i {
  color: #2D9D53;
  font-size: 0.7rem;
}

.reviews-nav-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.reviews-dots {
  display: flex;
  gap: 0.5rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.reviews-dot.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--terracotta);
}

.reviews-arrows {
  display: flex;
  gap: 0.75rem;
}

.reviews-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  color: var(--umber-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

/* 11. Bernie & Monique */
.section-owners {
  padding: 6.5rem 0;
  background: var(--forest-green-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.owners-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.owners-photo-frame {
  position: relative;
}

.owners-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  border: 6px solid rgba(255, 255, 255, 0.12);
  height: 460px;
}

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

.owners-badge-overlay {
  position: absolute;
  bottom: -1.5rem;
  left: 2rem;
  background: var(--terracotta);
  color: #FFFFFF;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading-sans);
  font-weight: 600;
  font-size: 0.95rem;
}

.owners-badge-overlay i {
  font-size: 1.25rem;
  color: var(--brass-gold);
}

.owners-content h2 {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.owners-content p {
  color: #E2D9CE;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.owners-quote-box {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--brass-gold);
  padding: 1.4rem 1.6rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2.2rem;
}

.owners-quote-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #FAF6EF;
  margin-bottom: 0.4rem;
  line-height: 1.55;
}

.owners-quote-box span {
  font-family: var(--font-heading-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brass-gold);
}

/* 12. Gallery */
.section-gallery {
  padding: 6.5rem 0;
  background: var(--bg-cream);
}

.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-heading-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card-warm);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--forest-green);
  color: #FFFFFF;
  border-color: var(--forest-green);
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item.row-2 {
  grid-row: span 2;
  height: 535px;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 36, 25, 0.85) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-serif);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.gallery-item-tag {
  font-family: var(--font-heading-sans);
  color: var(--brass-gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}

/* 13. Visit Section & FAQs */
.section-visit {
  padding: 6.5rem 0;
  background: var(--bg-cream-alt);
  position: relative;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.visit-info-card {
  background: var(--bg-white);
  padding: 2.8rem 2.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.visit-info-card h2 {
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.visit-tagline {
  font-family: var(--font-heading-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 2rem;
}

.visit-detail-group {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}

.visit-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--forest-green-subtle);
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.visit-detail-text h4 {
  font-family: var(--font-heading-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.visit-detail-text p,
.visit-detail-text a {
  font-size: 1.05rem;
  color: var(--umber-text);
  font-weight: 600;
  line-height: 1.45;
}

.visit-landmark-badge {
  display: inline-block;
  background: var(--brass-gold-light);
  color: #7A5515;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-top: 0.35rem;
  border: 1px solid var(--brass-gold-border);
}

.visit-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.visit-hours-placeholder {
  background: var(--bg-card-warm);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.visit-hours-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.visit-hours-info i {
  color: var(--terracotta);
  font-size: 1.25rem;
}

.visit-hours-info span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.map-card-wrapper {
  background: var(--bg-white);
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.map-embed-container {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.faq-card h4 {
  font-size: 1.2rem;
  color: var(--forest-green);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.faq-card h4 i {
  color: var(--terracotta);
}

.faq-card p {
  font-size: 0.96rem;
  line-height: 1.65;
}

/* 14. Final CTA */
.section-final-cta {
  padding: 6.5rem 0;
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-final-cta h2 {
  color: #FFFFFF;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 1.25rem;
}

.section-final-cta p {
  color: #E2D9CE;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

/* 15. Footer */
.site-footer {
  background: #141B16;
  color: #FAF6EF;
  padding: 5.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-title {
  color: #FFFFFF;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass-gold);
  font-size: 1.05rem;
  margin: 1rem 0 1.25rem 0;
}

.footer-desc {
  color: #B5ABA0;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-family: var(--font-heading-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--terracotta);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #B5ABA0;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brass-gold);
  transform: translateX(3px);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #B5ABA0;
  font-size: 0.92rem;
}

.footer-contact-item i {
  color: var(--terracotta);
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #8D8378;
}

/* ==========================================================================
   16. Comprehensive Mobile Responsiveness & Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .intro-grid,
  .cafe-layout,
  .owners-container,
  .visit-grid,
  .category-detail-grid,
  .category-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .category-detail-grid.reverse .category-detail-media {
    order: 1;
  }

  .categories-grid,
  .reviews-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hunt-steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.row-2 {
    grid-row: span 1;
    height: 260px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .announcement-bar {
    display: none;
  }

  .nav-menu,
  .nav-hours-btn,
  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-intro,
  .section-categories,
  .section-treasure-hunt,
  .section-cafe,
  .section-why-visit,
  .section-reviews,
  .section-owners,
  .section-gallery,
  .section-visit,
  .section-final-cta,
  .subpage-section,
  .category-section-block {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .page-header-banner {
    padding: 3.5rem 0 3rem 0;
  }

  .page-header-banner h1 {
    font-size: 2rem;
  }

  .page-header-banner p {
    font-size: 1.02rem;
  }

  .hero-section {
    min-height: auto;
    padding: 4.5rem 0 5rem 0;
  }

  .hero-headline {
    font-size: clamp(2rem, 7vw, 2.75rem);
    margin-bottom: 1rem;
  }

  .hero-subheading {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  .hero-supporting-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-highlights-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .intro-image-main img {
    height: 320px;
  }

  .intro-image-supporting {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .intro-image-supporting img {
    height: 160px;
  }

  .intro-stamp-badge {
    width: 80px;
    height: 80px;
    font-size: 0.65rem;
    top: -10px;
    left: -10px;
  }

  .intro-stats-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .intro-stat-card {
    padding: 1rem;
  }

  .intro-stat-num {
    font-size: 1.85rem;
  }

  .categories-grid,
  .reviews-full-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-detail-media {
    height: 240px;
  }

  .category-section-block {
    padding: 3.5rem 0;
  }

  .cafe-visual-mosaic {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cafe-photo-main {
    height: 260px;
  }

  .cafe-photo-secondary {
    flex-direction: row;
    gap: 0.75rem;
  }

  .cafe-photo-thumb {
    flex: 1;
    height: 120px;
  }

  .cafe-highlights-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .chalkboard-card {
    padding: 1.6rem 1.25rem;
    border-width: 8px;
  }

  .chalkboard-title {
    font-size: 1.5rem;
  }

  .chalkboard-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .review-slide-card,
  .review-full-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 1.6rem 1.35rem;
  }

  .gallery-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-btn,
  .review-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 0.5rem 1.15rem;
  }

  .gallery-masonry-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item {
    height: 240px;
  }

  .gallery-item.span-2 {
    grid-column: span 1;
  }

  .owners-img-wrap {
    height: 280px;
  }

  .owners-badge-overlay {
    position: static;
    margin-top: 1rem;
    width: fit-content;
    padding: 0.65rem 1.15rem;
    font-size: 0.85rem;
  }

  .owners-quote-box {
    padding: 1.15rem 1.25rem;
    margin-bottom: 1.75rem;
  }

  .visit-info-card {
    padding: 1.75rem 1.35rem;
    border-radius: var(--radius-lg);
  }

  .visit-actions-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .visit-actions-row .btn {
    width: 100%;
  }

  .visit-hours-placeholder {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
    padding: 1.15rem 1rem;
  }

  .map-card-wrapper {
    min-height: 320px;
    padding: 0.5rem;
  }

  .map-embed-container iframe {
    min-height: 310px;
  }

  .final-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-badge {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .hero-highlights-strip {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 0.8rem 1.4rem;
    font-size: 0.94rem;
  }

  .btn-lg {
    padding: 0.95rem 1.75rem;
    font-size: 1rem;
  }
}
