/* ============================================
   🍂 Genuss-Idee — CSS Design System
   ============================================ */

/* === 1. CUSTOM PROPERTIES (Design Tokens) === */
:root {
  /* Color Palette */
  --color-primary: #2D5016;
  --color-primary-light: #4A7C2E;
  --color-primary-dark: #1E3A0E;
  --color-secondary: #C8962E;
  --color-secondary-light: #D4A94E;
  --color-accent: #8B2E3C;
  --color-neutral-dark: #2C2418;
  --color-neutral-medium: #6B5E4F;
  --color-neutral-light: #F5F0E8;
  --color-white: #FDFCFA;
  --color-black: #1A1510;

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

  /* Font Sizes (fluid) */
  --fs-hero: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --fs-h1: clamp(2rem, 3vw + 0.5rem, 3rem);
  --fs-h2: clamp(1.5rem, 2.5vw + 0.25rem, 2.25rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body: clamp(0.95rem, 1vw + 0.25rem, 1.1rem);
  --fs-small: clamp(0.8rem, 0.9vw, 0.9rem);
  --fs-xs: 0.75rem;

  /* Spacing */
  --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: 6rem;
  --space-section: clamp(4rem, 8vw, 8rem);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-round: 50%;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 36, 24, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 36, 24, 0.1);
  --shadow-lg: 0 8px 30px rgba(44, 36, 24, 0.12);
  --shadow-xl: 0 16px 48px rgba(44, 36, 24, 0.15);
  --shadow-glow: 0 0 20px rgba(200, 150, 46, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 80px;
  --nav-height-scrolled: 64px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-neutral-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

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

/* === 3. TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

.text-accent { color: var(--color-secondary); }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-neutral-medium); }

.subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--color-neutral-medium);
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  display: block;
}

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

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

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

.section--alt {
  background-color: var(--color-neutral-light);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

.flex--center {
  align-items: center;
  justify-content: center;
}

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

/* === 5. NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-base);
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(253, 252, 250, 0.95);
  border-bottom: 1px solid rgba(44, 36, 24, 0.08);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: transform var(--transition-base);
}

.nav__logo:hover {
  transform: scale(1.02);
  color: var(--color-primary);
}

.nav__logo-icon {
  font-size: 1.5rem;
}

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

.nav__link {
  position: relative;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-neutral-dark);
  text-decoration: none;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  border-radius: var(--radius-pill);
  transition: width var(--transition-base);
}

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

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

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

.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--color-neutral-dark);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
}

.nav__toggle.open .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open .nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 8s ease;
}

.hero:hover .hero__bg img {
  transform: scale(1.03);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(26, 21, 16, 0.3) 0%,
    rgba(26, 21, 16, 0.5) 50%,
    rgba(26, 21, 16, 0.75) 100%
  );
}

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

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  padding: var(--space-sm) var(--space-lg); /* Increased vertical padding slightly */
  background: rgba(44, 36, 24, 0.7); /* Dark background overlay (`--color-neutral-dark` base) */
  backdrop-filter: blur(8px); /* Glassmorphism effect */
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 150, 46, 0.6); /* Slightly more visible border */
  border-radius: var(--radius-pill);
  animation: fadeInDown 0.8s ease both;
}

.hero__title {
  font-size: var(--fs-hero);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(253, 252, 250, 0.85);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* === 7. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

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

.btn--primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(253, 252, 250, 0.5);
}

.btn--secondary:hover {
  background: rgba(253, 252, 250, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1EB954;
  border-color: #1EB954;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

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

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

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

.btn--gold:hover {
  background: var(--color-secondary-light);
  border-color: var(--color-secondary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

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

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

.card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card__image-wrapper {
  overflow: hidden;
  position: relative;
}

.card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

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

.card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
  color: var(--color-neutral-dark);
}

.card__text {
  font-size: var(--fs-small);
  color: var(--color-neutral-medium);
  line-height: 1.6;
}

/* Product Card Variant */
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
  transform: scale(1.08);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 21, 16, 0.85) 0%,
    rgba(26, 21, 16, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  transition: background var(--transition-base);
}

.product-card:hover .product-card__overlay {
  background: linear-gradient(
    to top,
    rgba(45, 80, 22, 0.9) 0%,
    rgba(45, 80, 22, 0.3) 50%,
    transparent 100%
  );
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.product-card__desc {
  font-size: var(--fs-small);
  color: rgba(253, 252, 250, 0.8);
  line-height: 1.5;
}

/* === 9. SECTION HEADERS === */
.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

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

.section-header__divider {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: var(--radius-pill);
  margin: var(--space-md) auto;
}

.section-header__text {
  color: var(--color-neutral-medium);
  line-height: 1.7;
}

/* === 10. FEATURES / USP STRIP === */
.usp-strip {
  background: var(--color-primary);
  color: var(--color-white);
  padding-block: var(--space-xl);
}

.usp-strip__inner {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.usp-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  font-weight: 500;
}

.usp-strip__icon {
  font-size: 1.25rem;
}

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

.about-preview__image-wrapper {
  position: relative;
}

.about-preview__image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-preview__image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--color-secondary);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
}

.about-preview__content {
  max-width: 480px;
}

.about-preview__quote {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: var(--space-xl);
}

.about-preview__quote::before {
  content: '„';
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 3rem;
  color: var(--color-secondary);
  line-height: 1;
}

/* === 12. DELIVERY BANNER === */
.delivery-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.delivery-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(200, 150, 46, 0.1);
  border-radius: var(--radius-round);
}

.delivery-banner__content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.delivery-banner__title {
  font-size: var(--fs-h2);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.delivery-banner__text {
  font-size: var(--fs-body);
  color: rgba(253, 252, 250, 0.85);
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.delivery-banner__icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

/* === 13. OPENING HOURS WIDGET === */
.hours-widget {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.hours-widget__status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.hours-widget__status--open {
  background: rgba(45, 80, 22, 0.1);
  color: var(--color-primary);
}

.hours-widget__status--closed {
  background: rgba(139, 46, 60, 0.1);
  color: var(--color-accent);
}

.hours-widget__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-round);
  animation: pulse 2s ease-in-out infinite;
}

.hours-widget__status--open .hours-widget__dot {
  background: var(--color-primary);
}

.hours-widget__status--closed .hours-widget__dot {
  background: var(--color-accent);
}

.hours-widget__table {
  width: 100%;
  border-collapse: collapse;
}

.hours-widget__table tr {
  border-bottom: 1px solid rgba(44, 36, 24, 0.06);
}

.hours-widget__table tr:last-child {
  border-bottom: none;
}

.hours-widget__table td {
  padding: var(--space-sm) 0;
  font-size: var(--fs-small);
}

.hours-widget__table td:first-child {
  font-weight: 600;
  color: var(--color-neutral-dark);
}

.hours-widget__table td:last-child {
  text-align: right;
  color: var(--color-neutral-medium);
}

.hours-widget__table tr.today {
  background: rgba(200, 150, 46, 0.08);
  border-radius: var(--radius-sm);
}

.hours-widget__table tr.today td {
  color: var(--color-primary);
  font-weight: 600;
}

/* === 13.5 GALLERY === */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover .gallery__image {
  transform: scale(1.08);
}

/* === 14. FOOTER === */
.footer {
  background: var(--color-neutral-dark);
  color: rgba(253, 252, 250, 0.7);
  padding-top: var(--space-4xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(253, 252, 250, 0.1);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__logo img {
  background: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
}

.footer__desc {
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: var(--fs-small);
  color: rgba(253, 252, 250, 0.6);
  padding-block: var(--space-xs);
  transition: all var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

.footer__contact-icon {
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-xl);
  font-size: var(--fs-xs);
}

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

.footer__legal-links a {
  color: rgba(253, 252, 250, 0.5);
  font-size: var(--fs-xs);
}

.footer__legal-links a:hover {
  color: var(--color-secondary);
}

/* === 15. WHATSAPP FAB === */
.whatsapp-fab {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  text-decoration: none;
  animation: fabPulse 2s ease-in-out 3;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-fab__tooltip {
  position: absolute;
  right: calc(100% + var(--space-md));
  background: var(--color-white);
  color: var(--color-neutral-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-fab:hover .whatsapp-fab__tooltip {
  opacity: 1;
}

/* === 16. ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

/* Scroll-triggered animations - disabled for better reading flow */
.animate-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

.animate-on-scroll.delay-1 { transition-delay: 0s; }
.animate-on-scroll.delay-2 { transition-delay: 0s; }
.animate-on-scroll.delay-3 { transition-delay: 0s; }
.animate-on-scroll.delay-4 { transition-delay: 0s; }

/* === 17. PAGE HEADER (for inner pages) === */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(200, 150, 46, 0.05);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.page-header__title {
  font-size: var(--fs-h1);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  position: relative;
}

.page-header__subtitle {
  color: rgba(253, 252, 250, 0.75);
  font-size: var(--fs-body);
  position: relative;
}

/* === 18. CONTACT FORM === */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem var(--space-md);
  border: 2px solid rgba(44, 36, 24, 0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-neutral-dark);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

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

/* === 19. LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 21, 16, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  background: rgba(253, 252, 250, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(253, 252, 250, 0.2);
}

/* === 20. RESPONSIVE === */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .about-preview { gap: var(--space-xl); }
  .delivery-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    gap: var(--space-xs);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    font-size: var(--fs-body);
    padding: var(--space-sm) 0;
    width: 100%;
  }

  .nav__toggle {
    display: flex;
  }

  .grid--2,
  .grid--3 { grid-template-columns: 1fr; }

  .about-preview {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-preview__content {
    max-width: 100%;
  }

  .about-preview__quote {
    padding-left: 0;
    text-align: center;
  }

  .about-preview__quote::before {
    position: static;
    display: block;
    margin-bottom: var(--space-sm);
  }

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

  .footer__brand {
    margin: 0 auto;
  }

  .footer__logo {
    justify-content: center;
  }

  .footer .footer__contact-item {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .footer .footer__contact-icon {
    margin-top: 0;
    margin-bottom: 2px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__legal-links {
    justify-content: center;
  }

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

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  .usp-strip__inner {
    gap: var(--space-lg);
  }

  .whatsapp-fab {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 52px;
    height: 52px;
  }

  .delivery-banner {
    padding: var(--space-2xl);
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--space-md);
  }

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

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

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 80, 22, 0);
  transition: background var(--transition-base);
}

.gallery__item:hover::after {
  background: rgba(45, 80, 22, 0.15);
}

/* === 22. MAP === */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

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

/* === 23. UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* Mobile overlay behind nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 16, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
