/* ============================================================
   ANTIQUE VILLAGE MARKET OF NC  Main Stylesheet
   Design System: Warm Americana / Curated Rustic-Modern
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/*  CSS Variables  */
:root {
  --color-bark:       #2C1F14;   /* deep tobacco brown - primary dark */
  --color-mahogany:   #5C3317;   /* rich mahogany - secondary dark */
  --color-rust:       #B85C2A;   /* warm rust - accent */
  --color-amber:      #D4882A;   /* amber gold - highlight */
  --color-cream:      #F5EDD8;   /* aged cream - light background */
  --color-linen:      #EDE3CA;   /* deeper linen - section bg */
  --color-paper:      #FAF6EE;   /* near-white paper */
  --color-charcoal:   #3A3028;   /* soft dark text */
  --color-mist:       #9B8C7A;   /* muted mid-tone */

  --font-display:     'Playfair Display', Georgia, serif;
  --font-body:        'Lora', Georgia, serif;
  --font-ui:          'Raleway', Helvetica, sans-serif;

  --max-width:        1200px;
  --section-pad:      80px 24px;
  --radius:           4px;
  --shadow-soft:      0 4px 24px rgba(44,31,20,0.10);
  --shadow-card:      0 2px 12px rgba(44,31,20,0.12);
  --transition:       0.3s ease;

  --nav-height:       72px;
}

/*  Reset & Base  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-paper);
  color: var(--color-charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/*  Texture overlay helper  */
.texture-overlay {
  position: relative;
}
.texture-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/*  Typography  */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-bark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-rust);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-mist);
  font-style: italic;
  max-width: 560px;
}

/*  Divider Ornament  */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 28px;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-amber), transparent);
  max-width: 120px;
}
.ornament span {
  font-size: 1.2rem;
  color: var(--color-amber);
  line-height: 1;
}

/*  Buttons  */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-rust);
  color: var(--color-cream);
  border-color: var(--color-rust);
}
.btn-primary:hover {
  background: var(--color-mahogany);
  border-color: var(--color-mahogany);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,92,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border-color: var(--color-cream);
}
.btn-outline:hover {
  background: var(--color-cream);
  color: var(--color-bark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-bark);
  color: var(--color-cream);
  border-color: var(--color-bark);
}
.btn-dark:hover {
  background: var(--color-mahogany);
  border-color: var(--color-mahogany);
  transform: translateY(-2px);
}

.btn-amber {
  background: var(--color-amber);
  color: var(--color-bark);
  border-color: var(--color-amber);
}
.btn-amber:hover {
  background: var(--color-rust);
  border-color: var(--color-rust);
  color: var(--color-cream);
  transform: translateY(-2px);
}

/*  Layout Helpers  */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad);
}

.section-center {
  text-align: center;
}
.section-center .section-subtitle {
  margin: 0 auto;
}
.section-center .ornament {
  justify-content: center;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/*  Cards  */
.card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.card-body { padding: 24px; }
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--color-bark);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: background var(--transition);
}

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav-logo-mark {
  width: 50px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}
.nav-logo .logo-sub {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.80);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-cream);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-amber);
  border-radius: 2px;
}

.nav-cta {
  background: var(--color-rust) !important;
  color: var(--color-cream) !important;
  padding: 8px 18px !important;
}
.nav-cta:hover {
  background: var(--color-amber) !important;
  color: var(--color-bark) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-mahogany);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cream);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav-drawer a:hover { background: rgba(255,255,255,0.1); }
.nav-drawer .drawer-cta {
  margin-top: 8px;
  background: var(--color-rust);
  text-align: center;
}

/* Page offset for fixed nav */
.page-body { padding-top: var(--nav-height); }

/* ============================================================
   PAGE HERO (inner pages - not homepage)
   ============================================================ */
.page-hero {
  background: var(--color-bark);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(184,92,42,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(92,51,23,0.25) 0%, transparent 60%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: var(--color-cream);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(245,237,216,0.75);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}
.page-hero .ornament::before,
.page-hero .ornament::after {
  background: linear-gradient(to right, transparent, rgba(212,136,42,0.6), transparent);
}
.page-hero .ornament span { color: var(--color-amber); }
.page-hero .ornament {
  justify-content: center;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(245,237,216,0.5);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--color-amber); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bark);
  color: rgba(245,237,216,0.75);
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-cream);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.footer-logo-img {
  width: 150px;
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.22));
}
.footer-brand .footer-logo-sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-amber);
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(245,237,216,0.65);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-cream);
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--color-rust); }

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(245,237,216,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-cream); }

.footer-hours p {
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  color: rgba(245,237,216,0.65);
}
.footer-hours p span:first-child { color: rgba(245,237,216,0.5); }
.footer-hours p span:last-child  { color: var(--color-cream); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(245,237,216,0.65);
}
.footer-contact-item .icon {
  color: var(--color-amber);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a:hover { color: var(--color-cream); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(245,237,216,0.35);
}
.footer-bottom a {
  color: rgba(245,237,216,0.5);
}
.footer-bottom a:hover { color: var(--color-amber); }

.footer-credit {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0 20px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(245,237,216,0.35);
}
.footer-credit a {
  color: rgba(245,237,216,0.5);
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--color-amber); }

/* ============================================================
   IMAGE PLACEHOLDERS (until real photos supplied)
   ============================================================ */
.img-placeholder {
  background: linear-gradient(135deg, var(--color-linen) 0%, var(--color-cream) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-mist);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 8px;
  border: 2px dashed var(--color-linen);
}
.img-placeholder .ph-icon {
  font-size: 2rem;
  opacity: 0.4;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mahogany);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-linen);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-rust);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center  { text-align: center; }
.text-rust    { color: var(--color-rust); }
.text-amber   { color: var(--color-amber); }
.text-cream   { color: var(--color-cream); }
.text-mist    { color: var(--color-mist); }
.text-italic  { font-style: italic; }
.bg-cream     { background: var(--color-cream); }
.bg-linen     { background: var(--color-linen); }
.bg-bark      { background: var(--color-bark); }
.bg-paper     { background: var(--color-paper); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* Fade-in animation for page loads */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.7s ease forwards;
}
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.55s; opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  :root { --section-pad: 44px 16px; }
  h1 { font-size: 1.9rem; }
}

/* ============================================================
   HOMEPAGE SPECIFIC STYLES
   ============================================================ */

/*  Hero  */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(44,31,20,0.88) 0%,
    rgba(44,31,20,0.70) 45%,
    rgba(92,51,23,0.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-text h1 {
  color: var(--color-cream);
  margin-bottom: 12px;
}
.hero-text h1 em {
  color: var(--color-amber);
  font-style: italic;
}
.hero-text .section-label {
  color: var(--color-amber);
}

.hero-sub {
  color: rgba(245,237,216,0.80);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 240px;
  transition: background var(--transition);
}
.hero-card:hover {
  background: rgba(255,255,255,0.12);
}
.hero-card-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}
.hero-card strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 4px;
}
.hero-card p {
  color: var(--color-cream);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.hero-card a {
  color: var(--color-cream);
  transition: color var(--transition);
}
.hero-card a:hover { color: var(--color-amber); }

/*  Feature Tiles  */
.feature-tile {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.feature-tile h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-bark);
}
.feature-tile p {
  font-size: 0.92rem;
  color: var(--color-mist);
  line-height: 1.7;
}

/*  Gallery Grid  */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery-item {
  border-radius: 6px;
  overflow: hidden;
}
.gallery-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

/*  Hours Strip  */
.hours-strip {
  padding: 64px 24px;
}
.hours-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hours-divider {
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,0.12);
}
.hours-list { margin-top: 12px; }
.hours-row {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
}
.hours-row span:first-child { color: rgba(245,237,216,0.55); }
.hours-row span:last-child  { color: var(--color-cream); font-weight: 600; }

/*  Vendor CTA Banner  */
.vendor-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  border-radius: 10px;
  padding: 48px 48px;
  box-shadow: var(--shadow-soft);
  border-left: 6px solid var(--color-rust);
}

/*  About Text  */
.about-text p em {
  font-size: 1.15rem;
  color: var(--color-rust);
  display: block;
  border-left: 3px solid var(--color-amber);
  padding-left: 16px;
  margin: 16px 0;
}

/*  Homepage Responsive  */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-info-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-card { min-width: 200px; flex: 1; }
}

@media (max-width: 768px) {
  .hero { min-height: 100vh; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery-large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .hours-inner { flex-direction: column; gap: 32px; }
  .hours-divider { width: 80px; height: 1px; }

  .vendor-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .hero-info-cards { flex-direction: column; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { height: 200px; }
  .gallery-large { grid-column: 1; grid-row: auto; }
}

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */

/*  About Page  */
.about-quote {
  border-left: 4px solid var(--color-amber);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--color-linen);
  border-radius: 0 6px 6px 0;
}
.about-quote span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-bark);
  display: block;
  margin-bottom: 8px;
}
.about-quote cite {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-rust);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.stat-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-bark);
  margin-bottom: 8px;
}
.stat-card p { font-size: 0.88rem; color: var(--color-mist); }

/*  Shop Page  */
.category-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.category-img {
  width: 100%;
}
.category-card .card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.category-card .card-body p {
  font-size: 0.9rem;
  color: var(--color-mist);
}

.shop-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.sg-item { border-radius: 6px; overflow: hidden; }
.sg-large { grid-column: 1 / 2; grid-row: 1 / 3; }

/*  Rent-a-Booth Page  */
.perk-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.perk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.perk-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.perk-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.perk-card p  { font-size: 0.9rem; color: var(--color-mist); }

.booth-tier {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.booth-tier-featured {
  box-shadow: 0 8px 32px rgba(184,92,42,0.20);
  transform: translateY(-8px);
  border: 2px solid var(--color-rust);
}
.booth-tier-header {
  background: var(--color-linen);
  padding: 28px 28px 20px;
  position: relative;
}
.booth-tier-featured .booth-tier-header {
  background: var(--color-bark);
}
.booth-tier-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-rust);
  display: block;
  margin-bottom: 4px;
}
.booth-tier-featured .booth-tier-label { color: var(--color-amber); }
.booth-tier-header h3 { font-size: 1.3rem; }
.booth-tier-featured .booth-tier-header h3 { color: var(--color-cream); }
.booth-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--color-rust);
  color: var(--color-cream);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.booth-tier-body {
  padding: 24px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.booth-tier-body p {
  font-size: 0.92rem;
  color: var(--color-mist);
  margin-bottom: 20px;
}
.booth-includes {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.booth-includes li {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  color: var(--color-charcoal);
  padding: 6px 0;
  border-bottom: 1px solid var(--color-linen);
}
.booth-includes li:last-child { border-bottom: none; }

.btn-outline-dark {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--color-bark);
  color: var(--color-bark);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  width: 100%;
}
.btn-outline-dark:hover {
  background: var(--color-bark);
  color: var(--color-cream);
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.who-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: background var(--transition);
}
.who-item:hover { background: rgba(255,255,255,0.14); }

.form-section-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.form-intro h2 { margin-bottom: 12px; }
.form-contact-list {
  margin-top: 24px;
  padding: 20px;
  background: var(--color-linen);
  border-radius: 6px;
}
.form-contact-list p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.form-contact-list a { color: var(--color-rust); }
.form-contact-list a:hover { text-decoration: underline; }

/*  Visit Page  */
.visit-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.visit-info-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.vic-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.visit-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-linen);
}
.visit-info-card address p {
  margin-bottom: 6px;
}

.visit-hours-list { margin-top: 4px; }
.visit-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-linen);
  font-size: 0.9rem;
}
.visit-hours-row span:first-child { color: var(--color-mist); }
.visit-hours-row span:last-child  { font-weight: 600; color: var(--color-bark); }
.visit-hours-sunday { background: rgba(212,136,42,0.08); padding: 8px 6px; margin-top: 4px; border-radius: 4px; border-bottom: none !important; }

.visit-contact-list p {
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.visit-contact-list a { color: var(--color-rust); }
.visit-contact-list a:hover { text-decoration: underline; }

.map-section { line-height: 0; }
.map-wrapper { width: 100%; }

.visit-tips { }
.tip-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-linen);
}
.tip-item:last-child { border-bottom: none; }
.tip-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.tip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-bark);
  margin-bottom: 4px;
}
.tip-item p { font-size: 0.9rem; color: var(--color-mist); margin: 0; }

/*  Contact Page  */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.contact-sidebar-card {
  background: var(--color-linen);
  border-radius: 8px;
  padding: 28px;
}
.contact-sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(44,31,20,0.1);
}
.cs-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.cs-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.cs-item strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-rust);
  margin-bottom: 4px;
}
.cs-item p, .cs-item a {
  font-size: 0.92rem;
  color: var(--color-charcoal);
}
.cs-item a:hover { color: var(--color-rust); }

.cs-hours p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.cs-hours p span:first-child { color: var(--color-mist); }
.cs-hours p span:last-child  { font-weight: 600; color: var(--color-bark); }

.vendor-sidebar-cta p { font-size: 0.88rem; color: var(--color-mist); }

/*  Inner Page Responsive  */
@media (max-width: 960px) {
  .about-mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit-quick-grid { grid-template-columns: 1fr; }
  .form-section-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { order: 2; }
  .contact-form-wrap { order: 1; }
  .booth-tier-featured { transform: none; }
  .shop-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .sg-large { grid-column: 1 / 3; grid-row: auto; height: 240px; }
}

@media (max-width: 768px) {
  .mission-stats { grid-template-columns: 1fr; }
  .shop-gallery { grid-template-columns: 1fr; }
  .sg-item { height: 200px; }
  .sg-large { grid-column: 1; height: 220px; }
}


/* ============================================================
   RESPONSIVE VISUAL AUDIT PATCH  Fred's Web
   Fixes image cropping, mobile alignment, gallery grids, and nav tap target.
   ============================================================ */

/* Reliable photo behavior across every replacement image */
.site-photo-box,
.hero-photo-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-linen);
  box-shadow: var(--shadow-card);
}

.site-photo-picture,
.site-photo-picture picture {
  display: block;
  width: 100%;
  height: 100%;
}

.site-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-photo-box,
.hero-photo-box .site-photo-picture,
.hero-photo-box .site-photo {
  height: 100%;
  min-height: 100%;
}

/* The image pack uses direct .site-photo-box items, so make grids obey the design even without extra wrapper classes. */
.gallery-grid > .site-photo-box {
  border-radius: 6px;
}
.gallery-grid > .site-photo-box:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.gallery-grid > .site-photo-box:hover .site-photo,
.shop-gallery > .site-photo-box:hover .site-photo,
.shop-gallery .sg-item:hover .site-photo {
  transform: scale(1.04);
}
.gallery-grid .site-photo,
.shop-gallery .site-photo {
  transition: transform 0.5s ease;
}

.shop-gallery > .site-photo-box,
.shop-gallery > .sg-item {
  border-radius: 6px;
  overflow: hidden;
  min-height: 0;
}
.shop-gallery > .site-photo-box:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.shop-gallery > .sg-item .site-photo-box {
  height: 100%;
  box-shadow: none;
}

/* Stronger, cleaner navigation on small screens */
.nav-hamburger {
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 42px;
  flex-direction: row;
  gap: 9px;
  border: 1px solid rgba(245,237,216,0.28);
  border-radius: 999px;
  color: var(--color-cream);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none !important;
}
.nav-hamburger .menu-text {
  display: inline-block;
  width: auto;
  height: auto;
  background: transparent;
  line-height: 1;
  text-transform: none !important;
}
.nav-hamburger .menu-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
  height: 16px;
  background: transparent;
  flex-shrink: 0;
}
.nav-hamburger .menu-bars span {
  width: 20px;
  height: 2px;
  background: var(--color-cream);
  transform: none !important;
  opacity: 1 !important;
}

/* Desktop polish */
.card-body { padding: 24px; }
.category-card { height: 100%; }
.category-card .card-body { min-height: 170px; }
.hero-text { max-width: 660px; }
.hero-buttons .btn { text-align: center; }
.visit-info-card,
.contact-sidebar-card,
.perk-card,
.feature-tile,
.stat-card,
.booth-tier {
  height: 100%;
}
.map-wrapper iframe {
  width: 100%;
  min-height: 420px;
  display: block;
}

/* Tablet refinement */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 18px; }
  .nav-logo-mark { width: 46px; }
  .nav-logo .logo-main { font-size: 1.08rem; }
  .nav-links a { padding: 8px 9px; font-size: 0.70rem; letter-spacing: 0.07em; }
  .nav-cta { padding: 8px 12px !important; }
  .hero { min-height: 760px; }
  .hero-content { gap: 32px; }
  .category-card .card-body { min-height: auto; }
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 960px) {
  .shop-gallery > .site-photo-box:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 260px;
  }
  .shop-gallery > .site-photo-box,
  .shop-gallery > .sg-item { height: 220px; }
}

/* Mobile refinement */
@media (max-width: 768px) {
  .site-nav { height: 68px; }
  :root { --nav-height: 68px; }
  .nav-logo-mark { width: 44px; }
  .nav-logo .logo-main { font-size: 1rem; }
  .nav-logo .logo-sub { font-size: 0.52rem; letter-spacing: 0.16em; }

  .page-hero { padding: 48px 20px 42px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 1rem; }

  .hero { min-height: auto; padding: 58px 0 42px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(44,31,20,0.88) 0%, rgba(44,31,20,0.76) 58%, rgba(44,31,20,0.86) 100%);
  }
  .hero-content { padding-top: 28px; padding-bottom: 18px; gap: 28px; }
  .hero-content.container { padding-left: 18px; padding-right: 18px; }
  .hero-text h1 { font-size: clamp(2.05rem, 10vw, 2.75rem); }
  .hero-sub { font-size: 1rem; max-width: 100%; }
  .hero-buttons { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .hero-buttons .btn { width: 100%; }
  .hero-card { width: 100%; min-width: 0; }

  .section { padding-left: 18px; padding-right: 18px; }
  .container { padding-left: 0; padding-right: 0; }
  .grid-2[style], .grid-3[style], .grid-4[style] { gap: 24px !important; }

  .about-img .site-photo-box,
  .grid-2 .site-photo-box[style*="420px"],
  .grid-2 .site-photo-box[style*="480px"],
  .grid-2 .site-photo-box[style*="400px"] {
    height: 280px !important;
  }

  .category-img.site-photo-box { height: 190px !important; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 190px);
    gap: 10px;
  }
  .gallery-grid > .site-photo-box:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .shop-gallery { grid-template-columns: 1fr; grid-template-rows: none; gap: 10px; }
  .shop-gallery > .site-photo-box:first-child,
  .shop-gallery > .site-photo-box,
  .shop-gallery > .sg-item {
    grid-column: 1;
    grid-row: auto;
    height: 205px;
  }

  .vendor-cta-inner { padding: 32px 22px; }
  .hours-row,
  .visit-hours-row,
  .cs-hours p { flex-direction: column; gap: 0; }
  .map-wrapper iframe { min-height: 360px; }
  .footer-inner {
    padding-bottom: 34px;
    text-align: center;
  }
  .footer-logo-img { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-col h4 { margin-bottom: 14px; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-hours {
    max-width: 260px;
    margin: 0 auto;
  }
  .footer-hours p {
    align-items: center;
    text-align: center;
  }
  .footer-contact-item {
    justify-content: center;
    align-items: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .footer-contact-item .icon { margin-top: 0; }
  .footer-contact-item a,
  .footer-contact-item span:last-child {
    overflow-wrap: anywhere;
  }
  .footer-bottom {
    justify-content: center;
    padding-top: 22px;
  }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 12px; }
  .nav-logo { gap: 8px; }
  .nav-logo-mark { width: 38px; }
  .nav-logo .logo-main { font-size: 0.92rem; }
  .nav-logo .logo-sub { display: none; }
  .nav-hamburger { min-width: 84px; min-height: 38px; font-size: 0.78rem; }

  .hero { padding-top: 44px; }
  .hero-content.container { padding-left: 16px; padding-right: 16px; }
  .hero-card { padding: 14px 16px; }
  .btn { width: 100%; padding: 13px 18px; font-size: 0.78rem; }
  .ornament { margin: 12px 0 22px; }
  .page-hero .ornament { margin-left: auto; margin-right: auto; }

  .feature-tile, .perk-card, .visit-info-card, .contact-sidebar-card { padding: 24px 20px; }
  .card-body { padding: 20px; }
  .mission-stats { gap: 14px; }
  .booth-tier-header, .booth-tier-body { padding-left: 20px; padding-right: 20px; }
  .booth-badge { position: static; display: inline-block; margin-top: 10px; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-grid > .site-photo-box:first-child,
  .gallery-grid > .site-photo-box { grid-column: 1; grid-row: auto; height: 210px; }

  .about-img .site-photo-box,
  .grid-2 .site-photo-box[style*="420px"],
  .grid-2 .site-photo-box[style*="480px"],
  .grid-2 .site-photo-box[style*="400px"] {
    height: 240px !important;
  }
  .map-wrapper iframe { min-height: 330px; }
}
