/*
Theme Name: Peckish (Ollie edit)
Theme URI: https://peckishfareham.co.uk
Author: Peckish Fareham
Author URI: https://peckishfareham.co.uk
Description: A warm, family-run sandwich shop theme for Peckish Fareham. Features olive brand colours, custom menu pages with SEO optimization, blog, catering page, Google reviews integration, and Instagram feed.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: peckish
Tags: food-and-drink, blog, custom-menu, custom-logo, featured-images, one-column, two-columns

Peckish Sandwich Shop WordPress Theme
*/

/* ============================================
   CSS CUSTOM PROPERTIES (Brand Colours)
   ============================================ */
:root {
  /* Brand Colors */
  --color-primary: #04492c;
  --color-primary-foreground: #ffffff;
  --color-secondary: #c4d7b2;
  --color-secondary-foreground: #04492c;
  --color-accent: #c4d7b2;
  --color-accent-foreground: #04492c;
  
  /* Neutral Colors */
  --color-background: #faf9f7;
  --color-foreground: #04492c;
  --color-card: #ffffff;
  --color-card-foreground: #04492c;
  --color-muted: #ffffff;
  --color-muted-foreground: #5a5a58;
  --color-border: #e5e3df;
  
  /* Typography */
  --font-sans: 'Nadira', 'Playfair Display', Georgia, serif;
  --font-serif: 'Nadira', 'Playfair Display', Georgia, serif;
  --font-brand: 'Nadira', 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  font-size: 19.2px;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-foreground);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.5rem; }
}

p {
  margin-bottom: 1rem;
  color: var(--color-muted-foreground);
}

.font-brand {
  font-family: var(--font-brand);
}

.font-serif {
  font-family: var(--font-serif);
}

.text-accent {
  color: var(--color-accent-foreground);
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  padding: 6rem 0;
}

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

.section--secondary {
  background-color: rgba(196, 215, 178, 0.3);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo__image {
  height: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .site-logo__image {
    height: 5rem;
  }
}

.site-logo__icon span {
  color: var(--color-primary-foreground);
  font-family: var(--font-brand);
  font-size: 1.5rem;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
}

.site-logo__name {
  font-family: var(--font-brand);
  font-size: 1.875rem;
  color: var(--color-foreground);
  line-height: 1;
}

.site-logo__tagline {
  font-size: 0.9rem;
  color: var(--color-muted-foreground);
  letter-spacing: 0.05em;
}

.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.main-nav a {
  color: var(--color-muted-foreground);
  font-weight: 500;
  font-size: 1.5rem;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.current-menu-item {
  color: var(--color-primary);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
    padding: 1.3rem 2.6rem;
    font-size: 1.65rem;
  }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem;
  cursor: pointer;
  width: 2.75rem;
  height: 2.75rem;
}

.mobile-menu-toggle svg {
  stroke: var(--color-primary-foreground);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  margin-top: 1rem;
}

.mobile-nav.is-active {
  display: block;
}

.mobile-nav a:not(.btn) {
  display: block;
  padding: 0.875rem 0;
  color: var(--color-muted-foreground);
  font-weight: 500;
  font-size: 1.2rem;
}

.mobile-nav a.btn {
  color: var(--color-primary-foreground);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}

.btn--primary:hover {
  opacity: 0.9;
}

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

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}

.btn--outline-white {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn--outline-white:hover {
  background-color: white;
  color: var(--color-foreground);
}

.btn--large {
  padding: 1.125rem 2.25rem;
  font-size: 1.2rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: 16rem;
  padding-bottom: 3rem;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.hero__greeting {
  color: var(--color-accent);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

.hero__description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.44rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
  }
}

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

@media (min-width: 640px) {
  .hero__badges {
    flex-direction: row;
    gap: 1rem;
  }
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 0.7rem 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  white-space: nowrap;
}

.hero__badge svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about__subtitle {
  font-family: var(--font-serif);
  color: var(--color-accent-foreground);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about__title {
    font-size: 3rem;
  }
}

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

.about__stat {
  text-align: center;
  padding: 1.25rem;
  background-color: var(--color-card);
  border-radius: var(--radius);
  border: 2px dashed var(--color-border);
}

.about__stat-value {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-primary);
}

.about__stat-label {
  font-size: 1rem;
  color: var(--color-muted-foreground);
}

.about__images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__image {
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 16rem;
}

.about__image:nth-child(2),
.about__image:nth-child(4) {
  margin-top: 2rem;
}

.about__image:nth-child(1) { transform: rotate(-2deg); }
.about__image:nth-child(2) { transform: rotate(1deg); }
.about__image:nth-child(3) { transform: rotate(2deg); }
.about__image:nth-child(4) { transform: rotate(-1deg); }

.about__image {
  position: relative;
}

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

.about__image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.about__annotation {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transform: rotate(3deg);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu__header {
  text-align: center;
  margin-bottom: 4rem;
}

.menu__subtitle {
  font-family: var(--font-serif);
  color: var(--color-accent-foreground);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.menu__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--color-card);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(4, 73, 44, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card__image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.card__content {
  padding: 1.5rem;
}

.card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.card:hover .card__title {
  color: var(--color-primary);
}

.card__price {
  font-weight: 400;
  color: var(--color-primary);
  white-space: nowrap;
}

.card__description {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
  border-radius: 9999px;
  border: 1px solid;
}

.tag--vegetarian {
  background-color: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.3);
}

.tag--vegan {
  background-color: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.3);
}

.tag--gluten-free {
  background-color: rgba(245, 158, 11, 0.1);
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.3);
}

/* ============================================
   MENU ITEM (Category card on homepage)
   ============================================ */
.menu-category {
  padding: 2rem;
}

.menu-category__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-foreground);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item__name {
  font-weight: 600;
  color: var(--color-foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-item__fave {
  font-size: 0.85rem;
  background-color: rgba(196, 215, 178, 0.2);
  color: var(--color-accent-foreground);
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  font-weight: 400;
}

.menu-item__description {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  margin: 0;
}

.menu-item__price {
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

/* ============================================
   GOOGLE REVIEWS
   ============================================ */
.reviews__header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.reviews__stars {
  display: flex;
  gap: 0.25rem;
}

.reviews__stars svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #fbbf24;
  color: #fbbf24;
}

.reviews__score {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-foreground);
}

.reviews__source {
  color: var(--color-muted-foreground);
}

.reviews__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.review {
  padding: 1.75rem;
}

.review__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.review__stars svg {
  width: 1.125rem;
  height: 1.125rem;
}

.review__text {
  font-size: 1rem;
  color: var(--color-foreground);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.review__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.review__author {
  font-weight: 500;
  color: var(--color-foreground);
}

.review__date {
  color: var(--color-muted-foreground);
}

.reviews__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-preview__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .blog-preview__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.blog-preview__label {
  color: var(--color-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.blog-preview__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 1.5rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card__category {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  background-color: rgba(4, 73, 44, 0.1);
  padding: 0.3rem 0.625rem;
  border-radius: 0.25rem;
}

.blog-card__date {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card__title {
  color: var(--color-primary);
}

.blog-card__excerpt {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instagram__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.instagram__handle {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
  .instagram__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}

.instagram__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram__item:hover img {
  transform: scale(1.1);
}

.instagram__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(4, 73, 44, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.instagram__item:hover .instagram__overlay {
  background-color: rgba(4, 73, 44, 0.6);
}

.instagram__overlay svg {
  width: 2rem;
  height: 2rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram__item:hover .instagram__overlay svg {
  opacity: 1;
}

.instagram__cta {
  text-align: center;
  margin-top: 2rem;
}

.instagram__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact__grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__label {
  color: var(--color-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact__icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(4, 73, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
}

.contact__item-title {
  font-weight: 500;
  color: var(--color-foreground);
  margin-bottom: 0.375rem;
  font-size: 1.1rem;
}

.contact__item-text {
  color: var(--color-muted-foreground);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-foreground);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1.125rem;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(4, 73, 44, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 8rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--color-foreground);
  color: white;
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__brand-icon span {
  color: var(--color-primary-foreground);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.footer__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: white;
}

.footer__hours {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

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

.footer__social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.footer__legal a:hover {
  color: white;
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-header {
  padding-top: 15rem;
  padding-bottom: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24rem;
}

.page-header--hero {
  background-color: rgba(196, 215, 178, 0.3);
}

.page-header__subtitle {
  font-family: var(--font-serif);
  color: var(--color-primary);
  font-size: 1.62rem;
  margin-bottom: 0.75rem;
}

.page-header__title {
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: 3.6rem;
  }
}

.page-header__description {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 1.38rem;
  line-height: 1.7;
}

/* ============================================
   FIND US PAGE
   ============================================ */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 4px dashed var(--color-border);
  height: 400px;
}

@media (min-width: 768px) {
  .map-container {
    height: 500px;
  }
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.info-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .info-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  text-align: center;
  padding: 2rem;
}

.info-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.info-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
}

.info-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.info-card__text {
  color: var(--color-muted-foreground);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.info-card__text a {
  transition: color 0.2s ease;
}

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

.getting-here {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .getting-here {
    grid-template-columns: repeat(3, 1fr);
  }
}

.getting-here__item-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.getting-here__item-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary-foreground);
}

.getting-here__item-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.getting-here__item-text {
  color: var(--color-muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   CATERING PAGE
   ============================================ */
.catering-options {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .catering-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.catering-option {
  padding: 2rem;
}

.catering-option__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.catering-option__icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.catering-option__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
}

.catering-option__title {
  font-weight: 400;
  color: var(--color-foreground);
  font-size: 1.2rem;
  margin-bottom: 0.625rem;
}

.catering-option__description {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.catering-option__min {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 500;
}

.catering-image {
  position: relative;
  height: 16rem;
}

@media (min-width: 768px) {
  .catering-image {
    height: 20rem;
  }
}

.catering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catering-image__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(4, 73, 44, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.catering-image__quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: white;
  text-align: center;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .catering-image__quote {
    font-size: 1.875rem;
  }
}

.why-us {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .why-us {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-us {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-us__item {
  text-align: center;
}

.why-us__item-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(4, 73, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.why-us__item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
}

.why-us__item-title {
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.why-us__item-text {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  line-height: 1.75;
}

/* ============================================
   BLOG ARCHIVE & SINGLE
   ============================================ */
.blog-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.blog-single__header {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 15rem;
  padding-bottom: 2rem;
}

.blog-single__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.blog-single__featured {
  max-width: 64rem;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-single__featured img {
  width: 100%;
  height: auto;
}

.blog-single__content {
  max-width: 48rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.blog-single__content p {
  font-size: 1.125rem;
  line-height: 1.875;
  margin-bottom: 1.5rem;
}

.blog-single__content h2,
.blog-single__content h3 {
  margin-top: 2rem;
}

/* ============================================
   MENU SINGLE PAGE (Individual menu item)
   ============================================ */
.menu-single {
  padding-top: 15rem;
  padding-bottom: 4rem;
}

.menu-single__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .menu-single__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.menu-single__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-single__category {
  color: var(--color-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.menu-single__title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.menu-single__price {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.menu-single__description {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.menu-single__details {
  display: grid;
  gap: 1.5rem;
}

.menu-single__detail-title {
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.menu-single__detail-list {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--color-muted-foreground);
}

.menu-single__detail-list li {
  margin-bottom: 0.25rem;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image {
  margin-bottom: 1.5rem;
}

.wp-block-image img {
  border-radius: var(--radius);
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: var(--radius);
  font-weight: 500;
}

.pagination a {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  color: var(--color-foreground);
  transition: all 0.2s ease;
}

.pagination a:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-primary-foreground);
}

.pagination .current {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}

/* Comments */
.comments-area {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--color-border);
}

.comments-title {
  margin-bottom: 2rem;
}

.comment-list {
  list-style: none;
}

.comment {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.comment-author {
  font-weight: 600;
  color: var(--color-foreground);
}

.comment-meta {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.75rem;
}

.comment-content p {
  margin-bottom: 0;
}

/* Comment form */
.comment-respond {
  margin-top: 3rem;
}

.comment-reply-title {
  margin-bottom: 1.5rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
}

/* ============================================
   MOBILE RESPONSIVENESS FIXES
   ============================================ */

/* Prevent horizontal overflow globally */
html, body {
  overflow-x: hidden;
}

/* Mobile-specific fixes (up to 768px) */
@media (max-width: 767px) {

  /* Reduce container padding on mobile */
  .container {
    padding: 0 1.25rem;
  }

  /* Reduce section padding on mobile */
  .section {
    padding: 3rem 0;
  }

  /* Mobile nav CTA button */
  .mobile-nav .btn {
    display: inline-block;
    text-align: center;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    margin-top: 0.75rem;
  }

  /* Hero section mobile fixes */
  .hero {
    padding-top: 8rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero__buttons {
    margin-bottom: 2rem;
  }

  .hero__buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero__badges {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero__badge {
    font-size: 0.85rem;
    white-space: normal;
  }

  /* About section mobile fixes */
  .about__grid {
    gap: 2rem;
  }

  .about__title {
    font-size: 2rem;
  }

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

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

  .about__image {
    height: 10rem;
  }

  .about__image:nth-child(2),
  .about__image:nth-child(4) {
    margin-top: 1rem;
  }

  .about__annotation {
    bottom: -0.5rem;
    right: 0;
    font-size: 1rem;
  }

  /* Contact section mobile fixes */
  .contact__grid {
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-row--2col {
    grid-template-columns: 1fr;
  }

  /* Reviews mobile */
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .review {
    padding: 1.25rem;
  }

  /* Footer mobile fixes */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    text-align: center;
  }

  /* Page header mobile */
  .page-header {
    padding-top: 10rem;
    padding-bottom: 2rem;
    min-height: auto;
  }

  .page-header__title {
    font-size: 2rem;
  }

  .page-header__description {
    font-size: 1rem;
  }

  /* Info cards mobile (Find Us page) */
  .info-cards {
    grid-template-columns: 1fr;
  }

  /* Catering options mobile */
  .catering-options {
    grid-template-columns: 1fr;
  }

  .catering-option__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .catering-image {
    height: 12rem;
  }

  .catering-image__quote {
    font-size: 1.125rem;
    padding: 1rem;
  }

  /* Why us grid mobile */
  .why-us {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Map container mobile */
  .map-container {
    height: 300px;
    border-width: 2px;
  }

  /* Menu single page mobile */
  .menu-single {
    padding-top: 10rem;
  }

  .menu-single__title {
    font-size: 2rem;
  }

  /* Blog single mobile */
  .blog-single__header {
    padding-top: 10rem;
  }

  /* Instagram grid mobile */
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
  }

  /* Fix images not overflowing */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Fix tables overflowing on mobile */
  table {
    display: block;
    overflow-x: auto;
  }
}
