/* ============================================
   FOODWAY — Design System & Global Styles
   WCAG 2.0 AA Compliant
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Greens */
  --green-900: #1B5E20;
  --green-800: #2E7D32;
  --green-700: #388E3C;
  --green-600: #43A047;
  --green-500: #4CAF50;
  --green-100: #E8F5E9;
  --green-50: #F1F8E9;

  /* Warm Accents */
  --gold: #F9A825;
  --gold-dark: #F57F17;
  --orange: #EF6C00;

  /* Neutrals */
  --cream: #FAFAF5;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  --dark: #1A1A2E;

  /* Semantic */
  --text-primary: #1A1A2E;
  --text-secondary: #495057;
  --text-muted: #6C757D;
  --text-on-dark: #FFFFFF;
  --text-on-green: #FFFFFF;

  /* Focus / A11y */
  --focus-ring: #F9A825;
  --focus-ring-offset: 3px;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 4rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 900px;
  --header-height: 80px;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* 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 60px rgba(0, 0, 0, 0.15);

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

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: #f5f3ec;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23b5a97a' fill-opacity='0.15'%3E%3Cpath fill-rule='evenodd' d='M11 0l5 20H6l5-20zm42 31a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM0 72h40v-2H0v2zm0-10h20v-2H0v2zm73-18a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-2 20h2v-2h-2v2zM30 0h-2v8h2V0zM0 22h2v-2H0v2zm0 10h8v-2H0v2zm68 22h2v-2h-2v2zM8 0v2h2V0H8zm12 0v2h2V0h-2zm24 56h2v-2h-2v2zm12-2h2v-2h-2v2zm28-48v2h2v-2h-2zM8 8v2h2V8H8zm12 0v2h2V8h-2zm24 48v2h2v-2h-2zm12-2v2h2v-2h-2zm12-28v2h2v-2h-2zM20 20v2h2v-2h-2zm-6 0v2h2v-2h-2zm-2 12v2h2v-2h-2zm0 10v2h2v-2h-2zM6 0h2v2H6V0zm0 8h2v2H6V8zm0 8h2v2H6v-2zm0 8h2v2H6v-2zM18 0h2v2h-2V0zm0 8h2v2h-2V8zm0 8h2v2h-2v-2z'/%3E%3C/g%3E%3C/svg%3E");
  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: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

/* --- Skip to Content (A11y) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--green-800);
  color: var(--text-on-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

/* --- Focus Styles (A11y) --- */
:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
  border-radius: 2px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  max-width: 70ch;
  color: var(--text-secondary);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

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

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

/* --- Section Spacing --- */
.section {
  padding: var(--space-4xl) 0;
}

.section--green {
  background-color: var(--green-900);
  color: var(--text-on-dark);
}

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

.section--green p {
  color: rgba(255, 255, 255, 0.85);
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background-color: var(--green-800);
  color: var(--text-on-dark);
}

.btn--primary:hover {
  background-color: var(--green-700);
}

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

.btn--secondary:hover {
  background-color: var(--gold-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

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

.btn--outline-dark {
  background: transparent;
  border: 2px solid var(--green-800);
  color: var(--green-800);
}

.btn--outline-dark:hover {
  background: var(--green-800);
  color: var(--white);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.card__title {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.header__logo {
  height: 60px;
  width: auto;
}

.header__info {
  display: none;
  flex-direction: column;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  border-left: 2px solid var(--green-100);
  padding-left: var(--space-md);
}

.header__info a {
  color: var(--green-800);
  font-weight: 600;
}

.header__info a:hover {
  color: var(--green-600);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green-700);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav__link:hover,
.nav__link--active {
  color: var(--green-800);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 60%;
}

.nav__cta {
  margin-left: var(--space-sm);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle__bar {
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: var(--space-2xl);
}

.hero__label {
  display: inline-block;
  background: var(--green-800);
  color: var(--white);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

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

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.about__image-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--green-800);
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.about__text h2 {
  margin-bottom: var(--space-lg);
}

.about__text p {
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
}

.about__feature-icon svg {
  width: 22px;
  height: 22px;
}

.about__feature-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about__feature-text p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* ============================================
   DEPARTMENTS
   ============================================ */
.departments__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.departments__header p {
  margin: var(--space-md) auto 0;
}

.departments__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.dept-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  aspect-ratio: 4 / 3;
}

.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.dept-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.dept-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

.dept-card__title {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.dept-card__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.why__header h2 {
  color: var(--white);
}

.why__header p {
  margin: var(--space-md) auto 0;
  color: rgba(255, 255, 255, 0.8);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
}

.why-card__title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.why-card__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ============================================
   QUICK STORE INFO STRIP
   ============================================ */
.store-strip {
  background: var(--cream);
  border-top: 3px solid var(--green-700);
}

.store-strip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
}

.store-strip__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.store-strip__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--green-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-strip__icon svg {
  width: 22px;
  height: 22px;
}

.store-strip__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.store-strip__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.store-strip__value a {
  color: var(--green-800);
}

.store-strip__value a:hover {
  text-decoration: underline;
}

/* ============================================
   CIRCULAR CTA
   ============================================ */
.circular-cta {
  position: relative;
  overflow: hidden;
}

.circular-cta__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
}

.circular-cta__text {
  flex: 1;
}

.circular-cta__text h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.circular-cta__text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
}

.circular-cta__image {
  flex: 0 0 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
  transition: transform var(--transition-base);
}

.circular-cta__image:hover {
  transform: rotate(0deg);
}

.circular-cta__image img {
  width: 100%;
}

/* ============================================
   SHOP ONLINE CTA
   ============================================ */
.shop-cta {
  text-align: center;
}

.shop-cta__header {
  margin-bottom: var(--space-lg);
}

.shop-cta__header p {
  margin: var(--space-md) auto 0;
}

.shop-cta__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.shop-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.shop-card:hover {
  border-color: var(--green-700);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.shop-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-md);
  background: var(--green-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card__icon svg {
  width: 28px;
  height: 28px;
}

.shop-card__name {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.shop-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: var(--space-3xl) 0 0;
}

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

.footer__brand-logo {
  height: 55px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

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

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

.footer__social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

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

.footer__link {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: all var(--transition-fast);
  padding: 2px 0;
}

.footer__link:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--gray-600);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--gray-300);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

.reveal--delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   PAGE-SPECIFIC: STORE PAGE
   ============================================ */
.store-hero {
  position: relative;
  padding: var(--space-4xl) 0;
  margin-top: var(--header-height);
  background: var(--green-900);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.store-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/more vegetables.png') center/cover no-repeat;
  opacity: 0.2;
}

.store-hero__content {
  position: relative;
  z-index: 1;
}

.store-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.store-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* Store Details Grid */
.store-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.store-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.store-info-card__header {
  background: var(--green-800);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
}

.store-info-card__header h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}

.store-info-card__body {
  padding: var(--space-xl);
}

.store-info-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-100);
}

.store-info-row:last-child {
  border-bottom: none;
}

.store-info-row__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-info-row__icon svg {
  width: 20px;
  height: 20px;
}

.store-info-row__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.store-info-row__value {
  font-weight: 600;
  color: var(--text-primary);
}

.store-info-row__value a {
  color: var(--green-800);
}

.store-info-row__value a:hover {
  text-decoration: underline;
}

/* Map */
.store-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.store-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Services Grid */
.services__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.service-item:hover {
  border-color: var(--green-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-item__icon {
  width: 50px;
  height: 50px;
  margin-bottom: var(--space-md);
}

.service-item__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   PAGE-SPECIFIC: CIRCULAR PAGE
   ============================================ */
.circular-hero {
  position: relative;
  padding: var(--space-4xl) 0;
  margin-top: var(--header-height);
  text-align: center;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
}

.circular-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.circular-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.circular-display {
  text-align: center;
}

.circular-display__image {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.circular-display__image img {
  width: 100%;
}

.circular-display__note {
  margin-top: var(--space-xl);
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   STORE SERVICES
   ============================================ */
.services__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.service-item__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--green-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item__icon svg {
  width: 24px;
  height: 24px;
}

.service-item__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   PAGE-SPECIFIC: HOLIDAY MENU
   ============================================ */
.holiday-hero {
  position: relative;
  padding: var(--space-4xl) 0;
  margin-top: var(--header-height);
  text-align: center;
  overflow: hidden;
}

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

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

.holiday-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.9), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.holiday-hero__content {
  position: relative;
  z-index: 2;
}

.holiday-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.holiday-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.holiday-flyers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.holiday-flyer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.holiday-flyer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.holiday-flyer img {
  width: 100%;
}

/* ============================================
   PLACEHOLDER PAGES (VIP, About)
   ============================================ */
.placeholder-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-height);
  background: var(--cream);
}

.placeholder-page__content {
  max-width: 500px;
}

.placeholder-page__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--green-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
}

.placeholder-page__icon svg {
  width: 36px;
  height: 36px;
}

.placeholder-page h1 {
  margin-bottom: var(--space-md);
}

.placeholder-page p {
  margin: 0 auto var(--space-xl);
  font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 1024px) {
  .header__info {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 999;
    overflow-y: auto;
  }

  .nav--open {
    right: 0;
  }

  .nav__link {
    font-size: 1rem;
    padding: var(--space-md) 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-md);
  }

  .menu-toggle {
    display: flex;
  }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .nav-overlay--visible {
    display: block;
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 2.5rem;
    --space-3xl: 2rem;
    --space-2xl: 1.5rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .why__header {
    margin-bottom: var(--space-lg);
  }

  .departments__header {
    margin-bottom: var(--space-lg);
  }

  .shop-cta__header {
    margin-bottom: var(--space-lg);
  }

  .shop-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .store-details {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .circular-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .circular-cta__image {
    flex: unset;
    max-width: 300px;
    transform: none;
  }

  .store-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .why-card {
    padding: var(--space-lg) var(--space-md);
  }

  .why-card__icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  :root {
    --space-4xl: 2rem;
    --space-3xl: 1.5rem;
    --space-2xl: 1.25rem;
  }

  .hero {
    min-height: 65vh;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .store-strip__inner {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .shop-cta__cards {
    grid-template-columns: 1fr;
  }

  .holiday-flyers {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   REDUCED MOTION (A11y)
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__scroll-indicator {
    animation: none;
  }
}