/* ============================================================
   CHICAGO Q — Design System
   Authentic Southern Barbecue in Chicago
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  /* Color palette */
  --color-primary: #a74f25;
  --color-primary-light: #c4683a;
  --color-primary-dark: #8e431f;
  --color-primary-rgb: 167, 79, 37;
  --color-secondary: #2c1810;
  --color-accent: #cf3221;
  --color-warm: #d4a574;
  --color-gold: #c9a96e;
  --color-cream: #fff2e6;
  --color-cream-dark: #f5e6d3;
  --color-bg: #fff2e6;
  --color-bg-alt: #fae8d4;
  --color-surface: #ffffff;
  --color-surface-warm: #fdf6ef;
  --color-text: #42454a;
  --color-text-muted: #6b6e73;
  --color-text-light: #8a8d92;
  --color-text-inverse: #fff2e6;
  --color-border: #e2e5ea;
  --color-border-warm: #d4c4b0;
  --color-success: #2d7a4f;
  --color-error: #cc0000;

  /* Typography — system font stacks matching original feel */
  --font-heading: 'Georgia', 'Times New Roman', 'Palatino', serif;
  --font-highlight: 'Georgia', 'Palatino Linotype', 'Book Antiqua', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;
  --border-radius: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
  --shadow-warm: 0 4px 20px rgba(167, 79, 37, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Header */
  --header-height: 80px;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

ul, ol {
  list-style: none;
}

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

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-secondary);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
  max-width: 70ch;
}

p:last-child {
  margin-bottom: 0;
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--border-radius);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-4);
  color: var(--color-text-inverse);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

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

.section {
  padding: var(--space-20) 0;
}

.section--lg {
  padding: var(--space-24) 0;
}

.section--sm {
  padding: var(--space-12) 0;
}

.section--dark {
  background: var(--color-secondary);
  color: var(--color-text-inverse);
}

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

.section--warm {
  background: var(--color-bg-alt);
}

.section--surface {
  background: var(--color-surface-warm);
}

/* === HEADER & NAVIGATION === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44, 24, 16, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: var(--header-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header--scrolled {
  background: rgba(44, 24, 16, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo:hover {
  color: var(--color-warm);
}

.header__logo svg {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  color: var(--color-cream);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-warm);
  background: rgba(255, 242, 230, 0.08);
}

.nav__link--active {
  color: var(--color-warm);
  background: rgba(255, 242, 230, 0.1);
}

.nav__cta {
  background: var(--color-primary);
  color: var(--color-text-inverse) !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--border-radius);
  margin-left: var(--space-2);
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav__cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  transition: transform var(--transition-base), opacity var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 400px);
    height: 100vh;
    height: 100dvh;
    background: var(--color-secondary);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-height) + var(--space-8)) var(--space-8) var(--space-8);
    gap: 0;
    transition: right var(--transition-slow);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }

  .nav.active {
    right: 0;
  }

  .nav__link {
    font-size: var(--text-base);
    padding: var(--space-4) var(--space-4);
    border-bottom: 1px solid rgba(255,242,230,0.08);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-4);
    text-align: center;
    padding: var(--space-4);
  }
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-inverse);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a0e08 0%,
    #2c1810 20%,
    #4a2818 40%,
    #3d1f10 60%,
    #2c1810 80%,
    #1a0e08 100%
  );
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(167, 79, 37, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(207, 50, 33, 0.1) 0%, transparent 40%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--space-8);
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-6);
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 100px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, var(--text-7xl));
  color: var(--color-cream);
  margin-bottom: var(--space-6);
  font-weight: 400;
  line-height: 1.1;
}

.hero__subtitle {
  font-family: var(--font-highlight);
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
  color: rgba(255, 242, 230, 0.85);
  margin-bottom: var(--space-10);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Decorative smoke effect */
.hero__smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: 1;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-text-inverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.btn--outline {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(255, 242, 230, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 242, 230, 0.1);
  border-color: var(--color-cream);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--color-secondary);
  color: var(--color-cream);
  border-color: var(--color-secondary);
}

.btn--dark:hover {
  background: #1a0e08;
  border-color: #1a0e08;
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  min-height: 40px;
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-lg);
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section--dark .section-header__label {
  color: var(--color-warm);
}

.section-header__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  margin-bottom: var(--space-6);
}

.section-header__divider {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto var(--space-6);
  border-radius: 2px;
}

.section-header__subtitle {
  font-family: var(--font-highlight);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--dark .section-header__subtitle {
  color: rgba(255, 242, 230, 0.7);
}

/* === CARDS === */
.card {
  background: var(--color-surface);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-highlight);
  font-size: var(--text-lg);
  color: rgba(255, 242, 230, 0.8);
}

.card__body {
  padding: var(--space-6);
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.card__text {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* === IMAGE PLACEHOLDERS === */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4);
  color: rgba(255,242,230,0.7);
  font-family: var(--font-highlight);
  font-style: italic;
  position: relative;
  overflow: hidden;
}

.img-placeholder--bbq {
  background: linear-gradient(135deg, #2c1810 0%, #4a2818 50%, #3d1f10 100%);
}

.img-placeholder--dining {
  background: linear-gradient(135deg, #1a0e08 0%, #2c1810 50%, #4a2818 100%);
}

.img-placeholder--drinks {
  background: linear-gradient(135deg, #3d1f10 0%, #a74f25 50%, #c9a96e 100%);
}

.img-placeholder--event {
  background: linear-gradient(135deg, #2c1810 0%, #1a0e08 50%, #3d1f10 100%);
}

.img-placeholder--chef {
  background: linear-gradient(135deg, #4a2818 0%, #2c1810 50%, #1a0e08 100%);
}

/* === GRID LAYOUTS === */
.grid {
  display: grid;
  gap: var(--space-8);
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid--4 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
}

/* === FEATURE BLOCKS (split content) === */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.feature--reverse {
  direction: rtl;
}

.feature--reverse > * {
  direction: ltr;
}

.feature__content {
  padding: var(--space-4) 0;
}

.feature__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .feature,
  .feature--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    direction: ltr;
  }
}

/* === REVIEWS/TESTIMONIALS === */
.review-card {
  background: var(--color-surface);
  border-radius: var(--border-radius-md);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
}

.review-card__text {
  font-family: var(--font-highlight);
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
}

.review-card__stars {
  color: var(--color-gold);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  letter-spacing: 2px;
}

.review-card__author {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* === FORMS === */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(167, 79, 37, 0.15);
  outline: none;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* === MENU TABLE === */
.menu-section {
  margin-bottom: var(--space-12);
}

.menu-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-primary);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-4);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__info {
  flex: 1;
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-1);
}

.menu-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 50ch;
}

.menu-item__price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-primary);
  white-space: nowrap;
  font-weight: 400;
}

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-base);
}

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

.gallery-item:nth-child(3n+1) {
  aspect-ratio: 4/3;
}

/* === FOOTER === */
.footer {
  background: var(--color-secondary);
  color: rgba(255, 242, 230, 0.8);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-cream);
  margin-bottom: var(--space-4);
  display: block;
  text-decoration: none;
}

.footer__logo:hover {
  color: var(--color-warm);
}

.footer__desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: var(--space-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  color: rgba(255, 242, 230, 0.65);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-warm);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--color-warm);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 242, 230, 0.08);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--color-cream);
}

.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 242, 230, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255, 242, 230, 0.4);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* === NOTIFICATION === */
.notification {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  background: var(--color-success);
  color: white;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  transition: transform var(--transition-slow);
  z-index: 9999;
  max-width: 400px;
  font-weight: 500;
}

.notification.show {
  transform: translateY(0);
}

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumbs__sep {
  margin: 0 var(--space-2);
  opacity: 0.5;
}

/* === PAGE HERO (shorter hero for inner pages) === */
.page-hero {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero--dark {
  background: linear-gradient(135deg, #1a0e08 0%, #2c1810 50%, #3d1f10 100%);
  color: var(--color-text-inverse);
}

.page-hero--dark h1 {
  color: var(--color-cream);
}

.page-hero--dark p {
  color: rgba(255, 242, 230, 0.8);
}

.page-hero__title {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  margin-bottom: var(--space-4);
}

.page-hero__subtitle {
  font-family: var(--font-highlight);
  font-size: var(--text-xl);
  max-width: 600px;
  margin: 0 auto;
}

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* === UTILITY === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === INFO CARDS (Visit Us, Contact) === */
.info-card {
  background: var(--color-surface);
  border-radius: var(--border-radius-md);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.info-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 79, 37, 0.1);
  border-radius: 50%;
}

.info-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

.info-card__title {
  font-size: var(--text-lg);
  font-family: var(--font-heading);
  margin-bottom: var(--space-2);
}

.info-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.info-card__text a {
  color: var(--color-primary);
  font-weight: 500;
}

/* === MAP PLACEHOLDER === */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e8ddd0, #d4c4b0, #c9b89e);
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  color: var(--color-text-muted);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  fill: var(--color-primary);
  opacity: 0.6;
}

/* === RESPONSIVE HELPERS === */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: var(--space-12) 0;
  }

  .section--lg {
    padding: var(--space-16) 0;
  }

  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }

  .container {
    padding: 0 var(--space-4);
  }

  .feature {
    gap: var(--space-6);
  }
}

/* === MENU PAGE TABS === */
.menu-tabs {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.menu-tab {
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.menu-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.menu-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

/* === EVENTS PAGE === */
.event-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.event-feature {
  text-align: center;
  padding: var(--space-6);
}

.event-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 79, 37, 0.1);
  border-radius: 50%;
}

.event-feature__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
}

.event-feature__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.event-feature__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* === GIFT CARD STYLES === */
.gift-card-display {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2c1810 0%, #4a2818 40%, #a74f25 100%);
  border-radius: var(--border-radius-lg);
  padding: var(--space-10) var(--space-8);
  color: var(--color-cream);
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.gift-card-display::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
}

.gift-card-display__logo {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
  position: relative;
}

.gift-card-display__subtitle {
  font-family: var(--font-highlight);
  font-size: var(--text-sm);
  color: var(--color-warm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

/* === DISCLAIMER === */
.disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  text-align: center;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-8);
}

/* === HOVER EFFECTS === */
@media (hover: hover) {
  .card:hover .card__image .img-placeholder {
    transform: scale(1.05);
    transition: transform var(--transition-slow);
  }

  .gallery-item {
    position: relative;
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0);
    transition: background var(--transition-base);
    border-radius: var(--border-radius-md);
  }

  .gallery-item:hover::after {
    background: rgba(44, 24, 16, 0.2);
  }

  .info-card {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .review-card {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}

/* === DECORATIVE ELEMENTS === */
.hero__bg::before {
  animation: shimmer 15s ease-in-out infinite alternate;
}

@keyframes shimmer {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Decorative divider for section transitions */
.section + .section--dark::before,
.section--dark + .section:not(.section--dark)::before {
  content: '';
  display: block;
  height: 0;
}

/* Better touch targets on mobile */
@media (max-width: 768px) {
  .nav__link {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .footer__link {
    display: inline-block;
    padding: var(--space-1) 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* === DARK MODE SUPPORT === */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #1a0e08;
    --color-bg-alt: #2c1810;
    --color-surface: #2c1810;
    --color-surface-warm: #3d1f10;
    --color-text: #e8ddd0;
    --color-text-muted: #b0a599;
    --color-text-light: #8a7e72;
    --color-border: #4a3828;
    --color-border-warm: #5a4030;
  }

  .card, .info-card, .review-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
  }

  .form-input, .form-textarea, .form-select {
    background: var(--color-surface);
    border-color: var(--color-border);
    color: var(--color-text);
  }

  .map-placeholder {
    background: linear-gradient(135deg, #2c1810, #3d1f10, #4a2818);
    color: var(--color-text-muted);
  }

  h1, h2, h3, h4, h5, h6 {
    color: var(--color-cream);
  }
}

/* === PRINT === */
@media print {
  .header, .footer, .nav-toggle, .nav-overlay, .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
