/* ============================================================
   Fair Grounds Coffee Cafe — styles.css
   ============================================================ */

/* 1. CSS Custom Properties
   ============================================================ */
:root {
  --color-espresso:    #2C1A0E;
  --color-roast:       #4A2C17;
  --color-cream:       #F5EDD8;
  --color-parchment:   #EDE0C4;
  --color-terracotta:  #C1643C;
  --color-rust:        #A04E2A;
  --color-sage:        #7D9B76;
  --color-ink:         #1C1008;
  --color-warm-gray:   #6B5B4E;
  --color-light:       #FAF6EE;

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Caveat', cursive;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 12px rgba(44, 26, 14, 0.14);
  --shadow-md: 0 6px 28px rgba(44, 26, 14, 0.22);
  --shadow-lg: 0 12px 40px rgba(44, 26, 14, 0.28);

  --container: 1160px;
  --gap:        2rem;
}

/* 2. Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* 3. Base Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--color-espresso);
}
h1 { font-size: clamp(2.4rem, 7vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { max-width: 65ch; }
strong { font-weight: 600; }

/* 4. Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-light);
}
.btn-primary:hover { background: var(--color-rust); }

.btn-ghost {
  background: transparent;
  color: var(--color-light);
  border: 2px solid rgba(250,246,238,0.6);
}
.btn-ghost:hover { background: rgba(250,246,238,0.15); border-color: var(--color-light); }

.btn-dark {
  background: var(--color-espresso);
  color: var(--color-light);
}
.btn-dark:hover { background: var(--color-roast); }

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.tag-sage  { background: rgba(125,155,118,0.18); color: #4a7044; }
.tag-terra { background: rgba(193,100,60,0.15);  color: var(--color-rust); }

/* Section labels */
.eyebrow {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-terracotta);
  margin-bottom: 0.75rem;
}

/* 5. Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
/* On non-hero pages (menu, etc.) always show dark nav */
.nav--solid,
.nav.scrolled {
  background: var(--color-espresso);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  padding: 0.875rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-light);
  line-height: 1.1;
  cursor: pointer;
  transition: opacity 0.2s;
}
a.nav__logo:hover { opacity: 0.8; }
.nav__logo span { display: block; font-size: 0.65rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; font-family: var(--font-body); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: rgba(250,246,238,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--color-light); }

.nav__cta {
  background: var(--color-terracotta);
  color: var(--color-light) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--color-rust) !important; color: var(--color-light) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-light);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-espresso);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--color-light);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.9;
}
.nav__mobile a:hover { opacity: 1; color: var(--color-terracotta); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--color-light);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
}
.nav__mobile-close:hover { opacity: 1; }

/* 6. Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #2C1A0E;
  background-image: url('../images/Image Jun 4, 2026, 06_19_01 PM.png');
  background-size: cover;
  background-position: center 55%;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(20,10,4,0.80) 0%,
    rgba(36,20,8,0.65) 45%,
    rgba(60,30,12,0.45) 100%);
  pointer-events: none;
}

/* Decorative coffee-ring accents */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 640px; height: 640px;
  border: 3px solid rgba(193,100,60,0.55);
  border-radius: 50%;
  outline: 2px solid rgba(193,100,60,0.30);
  outline-offset: 36px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-terracotta);
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-terracotta);
}

.hero__headline {
  color: var(--color-light);
  margin-bottom: 1.25rem;
  max-width: 14ch;
  font-style: italic;
}

/* Rubber stamp badge */
.hero__stamp {
  position: absolute;
  top: 26%; right: 12%;
  width: 140px; height: 140px;
  border: 3px dashed rgba(193,100,60,0.80);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(14deg);
  color: rgba(193,100,60,0.90);
  font-family: var(--font-accent);
  line-height: 1.2;
  z-index: 2;
  pointer-events: none;
}
.hero__stamp::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(193,100,60,0.35);
  border-radius: 50%;
}
.hero__stamp-top  { font-size: 0.8rem; letter-spacing: 0.08em; opacity: 0.85; }
.hero__stamp-year { font-size: 2rem; font-weight: 600; line-height: 1; }
.hero__stamp-sub  { font-size: 0.68rem; letter-spacing: 0.06em; opacity: 0.85; text-align: center; }
@media (max-width: 600px) { .hero__stamp { display: none; } }

.hero__sub {
  color: rgba(250,246,238,0.8);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 50ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__hours-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250,246,238,0.1);
  border: 1px solid rgba(250,246,238,0.2);
  border-radius: 99px;
  padding: 0.5rem 1rem;
  color: var(--color-light);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.hero__hours-strip .dot {
  width: 8px; height: 8px;
  background: #6fcf5d;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(250,246,238,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: rgba(250,246,238,0.3);
}

/* 7. Hours & Address
   ============================================================ */
.hours {
  background: var(--color-parchment);
  padding: 4rem 0;
}

.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hours__table-wrap h3,
.hours__contact h3 {
  margin-bottom: 1.25rem;
  color: var(--color-espresso);
}

.hours__table {
  width: 100%;
  border-collapse: collapse;
}
.hours__table td {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(44,26,14,0.08);
}
.hours__table td:first-child { color: var(--color-warm-gray); width: 40%; }
.hours__table td:last-child { font-weight: 500; }
.hours__table tr.today td { color: var(--color-terracotta); font-weight: 700; }
.hours__table tr.today td:first-child::after { content: ' ←'; font-size: 0.8em; }

.hours__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hours__contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--color-terracotta); }
.hours__contact-item a { color: var(--color-ink); transition: color 0.2s; }
.hours__contact-item a:hover { color: var(--color-terracotta); }
.hours__contact-item p { font-size: 0.95rem; line-height: 1.5; }

.hours__contact .btn { margin-top: 1rem; }

/* 8. About / Story
   ============================================================ */
/* Photo strip */
.about__photos {
  display: grid;
  grid-template-columns: 1.6fr 1.6fr 1fr;
  gap: 0.875rem;
  margin-bottom: 3rem;
}
.about__photos img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 6px 10px 28px rgba(44,26,14,0.35), 0 0 0 10px #fff, 0 0 0 11px rgba(44,26,14,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.about__photos img:last-child { object-position: center center; }
.about__photos img:nth-child(1) { transform: rotate(3.5deg); }
.about__photos img:nth-child(2) { transform: rotate(-5deg); position: relative; z-index: 2; }
.about__photos img:nth-child(1):hover { transform: rotate(0deg) scale(1.03); z-index: 3; }
.about__photos img:nth-child(2):hover { transform: rotate(0deg) scale(1.03); z-index: 3; }


.about {
  background: var(--color-cream);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  bottom: 8%; left: -90px;
  width: 380px; height: 380px;
  border: 2.5px solid rgba(193,100,60,0.38);
  border-radius: 50%;
  pointer-events: none;
}

.about__top {
  max-width: 680px;
  margin-bottom: 3.5rem;
}
.about__top h2 { margin-bottom: 1rem; }
.about__top p { color: var(--color-warm-gray); font-size: 1.05rem; line-height: 1.8; }

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

.about__card {
  padding: 2rem;
  background: var(--color-parchment);
  border-radius: 4px 18px 4px 18px;
  border: 1px solid rgba(44,26,14,0.06);
  border-left: 3px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.about__card:nth-child(2) { border-radius: 18px 4px 18px 4px; }
.about__card:hover { box-shadow: var(--shadow-md); border-left-color: var(--color-terracotta); transform: translateY(-2px); }
.about__card h4 { margin: 0.75rem 0 0.5rem; color: var(--color-espresso); }
.about__card p { font-size: 0.9rem; color: var(--color-warm-gray); max-width: none; }

/* Est. badge */
.est-badge {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-espresso);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  line-height: 1.1;
  flex-shrink: 0;
}
.est-badge { transform: rotate(-8deg); box-shadow: 0 0 0 3px rgba(250,246,238,0.15); }
.est-badge .est-label { font-family: var(--font-accent); font-size: 0.8rem; letter-spacing: 0.04em; text-transform: none; opacity: 0.8; }
.est-badge .est-year { font-family: var(--font-accent); font-size: 1.35rem; font-weight: 600; }

/* 9. Menu Preview
   ============================================================ */
.menu-preview {
  background: var(--color-espresso);
  padding: 5.5rem 0;
}
.menu-preview h2,
.menu-preview .eyebrow { color: var(--color-light); }
.menu-preview .eyebrow { color: var(--color-terracotta); }

.menu-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.menu-preview__head h2 { color: var(--color-light); }

.menu-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: rgba(250,246,238,0.06);
  border: 1px solid rgba(250,246,238,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background 0.2s, transform 0.2s;
}
.menu-card:hover { background: rgba(250,246,238,0.1); transform: translateY(-2px); }

.menu-card__photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.menu-card__body { padding: 1.5rem; }

.menu-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(193,100,60,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.875rem;
  color: var(--color-terracotta);
}

.menu-card h4 { color: var(--color-light); margin-bottom: 0.75rem; }

.menu-card__items {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.menu-card__items li {
  font-size: 0.875rem;
  color: rgba(250,246,238,0.65);
}
.menu-card__items li::before { content: '— '; opacity: 0.5; }

/* 10. Events / Community
   ============================================================ */
.events {
  background: var(--color-roast);
  padding: 5.5rem 0;
}

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

.events__text .eyebrow { color: var(--color-terracotta); }
.events__text h2 { color: var(--color-light); margin-bottom: 1rem; }
.events__text p { color: rgba(250,246,238,0.75); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; max-width: none; }

.events__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(250,246,238,0.25);
  border-radius: var(--radius-md);
  color: rgba(250,246,238,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-btn:hover { background: rgba(250,246,238,0.1); border-color: rgba(250,246,238,0.5); color: var(--color-light); }
.social-btn svg { flex-shrink: 0; }

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

.event-card {
  background: rgba(250,246,238,0.06);
  border: 1px solid rgba(250,246,238,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card:hover { transform: translateX(5px); box-shadow: 0 6px 24px rgba(0,0,0,0.22); }
.event-card__date {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(193,100,60,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  font-weight: 700;
  line-height: 1.1;
}
.event-card__date .month { font-family: var(--font-accent); font-size: 0.9rem; text-transform: none; letter-spacing: 0.02em; }
.event-card__date .day { font-size: 1.6rem; font-family: var(--font-accent); }
.event-card__info h4 { color: var(--color-light); font-size: 1rem; margin-bottom: 0.2rem; }
.event-card__info p { font-size: 0.825rem; color: rgba(250,246,238,0.55); max-width: none; }

/* 11. Values
   ============================================================ */
.values {
  background: var(--color-cream);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.values::before {
  content: '';
  position: absolute;
  top: -60px; right: 8%;
  width: 320px; height: 320px;
  border: 2.5px solid rgba(193,100,60,0.40);
  border-radius: 50%;
  pointer-events: none;
}
.values::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 5%;
  width: 200px; height: 200px;
  border: 2px solid rgba(125,155,118,0.42);
  border-radius: 50%;
  pointer-events: none;
}

.values__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.values__head h2 { margin-bottom: 0.5rem; }
.values__head p { color: var(--color-warm-gray); margin: 0 auto; }

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

.value-item {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-parchment);
  border: 1px solid rgba(44,26,14,0.06);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.value-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-item__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(125,155,118,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-sage);
}
.value-item h4 { margin-bottom: 0.5rem; color: var(--color-espresso); }
.value-item p { font-size: 0.9rem; color: var(--color-warm-gray); margin: 0 auto; max-width: 28ch; }

/* 12. Find Us
   ============================================================ */
.find-us {
  background: var(--color-parchment);
  padding: 5.5rem 0;
}

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

.find-us__text h2 { margin-bottom: 1.25rem; }
.find-us__text > p { color: var(--color-warm-gray); margin-bottom: 2rem; }

.find-us__details { margin-bottom: 2rem; }
.find-us__detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(44,26,14,0.08);
}
.find-us__detail:last-child { border-bottom: none; }
.find-us__detail svg { flex-shrink: 0; margin-top: 2px; color: var(--color-terracotta); }
.find-us__detail div { font-size: 0.9rem; line-height: 1.6; }
.find-us__detail a { color: var(--color-ink); transition: color 0.2s; }
.find-us__detail a:hover { color: var(--color-terracotta); }

.find-us__building {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  display: block;
}

.find-us__map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* 13. Footer
   ============================================================ */
.footer {
  background: var(--color-espresso);
  color: rgba(250,246,238,0.7);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,246,238,0.1);
}

.footer__brand .nav__logo { font-size: 1.4rem; margin-bottom: 0.75rem; }
.footer__brand p { font-size: 0.875rem; line-height: 1.7; max-width: 36ch; }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: rgba(250,246,238,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,246,238,0.6);
  transition: background 0.2s, color 0.2s;
}
.footer__social a:hover { background: var(--color-terracotta); color: var(--color-light); }

.footer__nav h5 { color: var(--color-light); font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a { font-size: 0.875rem; color: rgba(250,246,238,0.65); transition: color 0.2s; }
.footer__nav a:hover { color: var(--color-light); }

.footer__info h5 { color: var(--color-light); font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__info p { font-size: 0.875rem; line-height: 1.7; max-width: none; }
.footer__info a { color: rgba(250,246,238,0.65); transition: color 0.2s; }
.footer__info a:hover { color: var(--color-light); }

.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(250,246,238,0.4); max-width: none; }
.footer__bottom a { color: rgba(250,246,238,0.5); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--color-light); }

/* ============================================================
   14. Mobile — 768px and below
   ============================================================ */
@media (max-width: 768px) {
  :root { --gap: 1.25rem; }

  /* Tighten global section padding */
  .section-pad { padding: 3.5rem 0; }

  /* Nav */
  .nav { padding: 1rem 0; }
  .nav__links { display: none; }
  .nav__hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
  }

  /* Hero */
  .hero__inner { padding: 7rem 0 3.5rem; }
  .hero__sub { font-size: 1rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero__ctas .btn { width: 100%; justify-content: center; padding: 1rem; }

  /* Hours */
  .hours { padding: 3rem 0; }
  .hours__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hours__table td { font-size: 0.9rem; padding: 0.55rem 0; }
  .hours__contact .btn { width: 100%; justify-content: center; }

  /* About */
  .about { padding: 3.5rem 0; }
  .about__top { margin-bottom: 2rem; }
  .about__top p { font-size: 1rem; }
  .about__photos { grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
  /* Reset polaroid effect to lighter version on small 2-col photos */
  .about__photos img {
    height: 160px;
    border-radius: var(--radius-md);
    box-shadow: 2px 4px 10px rgba(44,26,14,0.2), 0 0 0 4px #fff, 0 0 0 5px rgba(44,26,14,0.08);
    transform: none !important;
  }
  .about__photos img:last-child { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 1rem; }
  .about__card { padding: 1.25rem; }

  /* Menu preview */
  .menu-preview { padding: 3.5rem 0; }
  .menu-preview__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .menu-preview__head .btn { width: 100%; text-align: center; justify-content: center; }
  .menu-preview__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .menu-card__photo { height: 130px; }
  .menu-card__body { padding: 1rem; }
  .menu-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
  .menu-card__items { gap: 0.2rem; margin-bottom: 0.75rem; }
  .menu-card__items li { font-size: 0.8rem; }

  /* Events */
  .events { padding: 3.5rem 0; }
  .events__inner { grid-template-columns: 1fr; gap: 2rem; }
  .events__social { flex-direction: column; }
  .social-btn { justify-content: center; padding: 0.875rem 1rem; min-height: 44px; }

  /* Values */
  .values { padding: 3.5rem 0; }
  .values__grid { grid-template-columns: 1fr; gap: 1rem; }
  .value-item { padding: 1.5rem 1.25rem; }
  .value-item p { max-width: none; }

  /* Find Us */
  .find-us { padding: 3.5rem 0; }
  .find-us__grid { grid-template-columns: 1fr; gap: 2rem; }
  .find-us__building { height: 180px; }
  .find-us__map iframe { height: 260px; }
  .find-us__text .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 2.5rem 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; padding-bottom: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 0.35rem; }
}

/* ============================================================
   Small phones — 480px and below
   ============================================================ */
@media (max-width: 480px) {
  /* Container tighter padding */
  .container { padding: 0 1rem; }

  /* Hero */
  .hero__hours-strip { font-size: 0.8rem; padding: 0.4rem 0.875rem; }

  /* About photos — single column on tiny screens, keep light polaroid, reduce tilt */
  .about__photos { grid-template-columns: 1fr; }
  .about__photos img { height: 200px; display: block !important; transform: none !important; }
  .about__photos img:last-child { display: none !important; }

  /* Print button full-width on mobile */
  .menu-print-btn { justify-content: stretch; }
  .menu-print-btn .btn { width: 100%; justify-content: center; }

  /* Menu cards — single column */
  .menu-preview__grid { grid-template-columns: 1fr; }
  .menu-card__photo { height: 180px; }

  /* Scroll indicator hidden */
  .hero__scroll { display: none; }

  /* Menu page */
  .menu-page__header { padding: 6rem 0 2rem; }
  .menu-categories { padding-bottom: 3rem; }
  .menu-category { margin-bottom: 2rem; }
}

/* ============================================================
   15. Menu page
   ============================================================ */
.menu-page {
  background: var(--color-cream);
  min-height: 100vh;
}

.menu-page__header {
  background-color: var(--color-espresso);
  background-image: url('../images/menu bar_ordering.JPG');
  background-size: cover;
  background-position: center 40%;
  padding: 8rem 0 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.menu-page__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,10,4,0.88) 0%, rgba(44,26,14,0.78) 100%);
  pointer-events: none;
}
.menu-page__header .container { position: relative; z-index: 1; }
.menu-page__header .eyebrow { color: var(--color-terracotta); }
.menu-page__header h1 { color: var(--color-light); font-size: clamp(2rem, 5vw, 3.5rem); }
.menu-page__header p { color: rgba(250,246,238,0.7); margin-top: 0.75rem; }

.menu-categories {
  padding-bottom: 5rem;
}

.menu-category { margin-bottom: 3rem; }
.menu-category h2 {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-espresso);
  padding-bottom: 0.75rem;
  border-bottom: none;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.menu-category h2::after {
  content: '';
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-terracotta) 0, var(--color-terracotta) 6px,
    transparent 6px, transparent 14px
  );
  opacity: 0.35;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(44,26,14,0.06);
}
.menu-item:nth-child(odd)  { padding-right: 2rem; }
.menu-item:nth-child(even) { padding-left: 2rem; border-left: 1px solid rgba(44,26,14,0.06); }

.menu-item__name { font-weight: 500; font-size: 0.95rem; }
.menu-item__desc { font-size: 0.8rem; color: var(--color-warm-gray); display: block; font-weight: 400; }
.menu-item__price { font-weight: 600; color: var(--color-terracotta); white-space: nowrap; font-size: 0.95rem; }
.menu-item__tags { display: flex; gap: 0.35rem; margin-top: 0.2rem; flex-wrap: wrap; }

.menu-note {
  background: rgba(125,155,118,0.12);
  border: 1px solid rgba(125,155,118,0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #3d6039;
  margin-top: 1.5rem;
}

.menu-print-btn {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .menu-items { grid-template-columns: 1fr; }
  .menu-item { padding-right: 0 !important; padding-left: 0 !important; border-left: none !important; }
}

/* 16. Wave Dividers
   ============================================================ */
.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin-top: -2px; /* prevent hairline gap */
}
.wave-divider svg {
  width: 100%;
  height: 90px;
  display: block;
}
@media (max-width: 768px) {
  .wave-divider svg { height: 50px; }
}

/* 18. Animations
   ============================================================ */

/* Keyframes */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stampIn {
  from { opacity: 0; transform: rotate(14deg) scale(0.4); }
  80%  { transform: rotate(14deg) scale(1.06); opacity: 1; }
  to   { opacity: 1; transform: rotate(14deg) scale(1); }
}

/* Hero — staggered entrance (all devices) */
.hero__eyebrow    { animation: fadeSlideLeft 0.5s 0.20s ease-out both; }
.hero__headline   { animation: fadeSlideUp  0.6s 0.40s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.hero__sub        { animation: fadeSlideUp  0.6s 0.60s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.hero__hours-strip{ animation: fadeSlideUp  0.5s 0.78s ease-out both; }
.hero__ctas       { animation: fadeSlideUp  0.5s 0.92s ease-out both; }
.hero__stamp      { animation: stampIn      0.5s 1.20s cubic-bezier(0.34,1.56,0.64,1) both; }

/* Scroll-reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* Touch active states — fire on tap, not hover */
@media (hover: none) {
  .about__card:active {
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-terracotta);
    transform: translateY(-3px);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .value-item:active {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .event-card:active {
    transform: translateX(5px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .menu-card:active {
    background: rgba(250,246,238,0.12);
    transform: translateY(-2px);
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .btn:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
  }
}

/* 19. Eclectic accents — wavy underlines, paper texture
   ============================================================ */

/* Wavy underlines on key headings */
.about__top h2,
.events__text h2,
.values__head h2 {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: rgba(193,100,60,0.50);
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

/* Paper/linen diagonal texture on light sections */
.hours,
.find-us {
  background-color: var(--color-parchment);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(44,26,14,0.028) 18px,
    rgba(44,26,14,0.028) 19px
  );
}
.about,
.values {
  background-color: var(--color-cream);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 22px,
    rgba(44,26,14,0.022) 22px,
    rgba(44,26,14,0.022) 23px
  );
}

/* 17. Print
   ============================================================ */
@media print {
  .nav, .hero__scroll, .menu-print-btn, .footer { display: none !important; }
  .menu-page { padding-top: 0; }
  .menu-page__header { background: none; color: black; padding: 1rem 0; }
  .menu-page__header h1, .menu-page__header .eyebrow, .menu-page__header p { color: black; }
  body { background: white; }
  .menu-item { break-inside: avoid; }
}
