/* ========================================
   Montanaro Pizzeria — Authentic Brand Styles
   Colours derived from original logo:
   - Ribbon red: #C41E1E
   - Brick terracotta: #CD853F / #A0522D
   - Dark warm brown: #2C1810
   - Cream white: #FAF6F1
   - Gold accent: #D4A843
   ======================================== */

:root {
  --color-primary: #8B2E1D;
  --color-primary-dark: #5C1E12;
  --color-primary-light: #A63A26;
  --color-accent: #C41E1E;
  --color-accent-hover: #9E1818;
  --color-gold: #D4A843;
  --color-gold-hover: #B8922E;
  --color-bg: #FAF6F1;
  --color-bg-alt: #F0E8DE;
  --color-surface: #FFFFFF;
  --color-text: #2C1810;
  --color-text-light: #6B4E3D;
  --color-text-muted: #9C8B7B;
  --color-border: rgba(44,24,16,0.08);
  --color-border-light: rgba(44,24,16,0.05);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(44,24,16,0.06);
  --shadow-md: 0 8px 30px rgba(44,24,16,0.10);
  --shadow-lg: 0 20px 60px rgba(44,24,16,0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(92, 30, 18, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition-normal);
}
.navbar.scrolled {
  background: rgba(92, 30, 18, 0.98);
  box-shadow: var(--shadow-md);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; color: #fff; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.5px; }
.logo img { height: 44px; width: auto; border-radius: 6px; }
.logo-text { display: none; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 8px;
  display: flex; align-items: center; gap: 6px;
  transition: all var(--transition-fast);
}
.nav-cta:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; position: relative; z-index: 1001; }
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ========================================
   HERO SECTION — Uses REAL restaurant exterior
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/pizza-oven.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(92,30,18,0.50) 0%, rgba(92,30,18,0.80) 100%),
    linear-gradient(180deg, rgba(44,24,16,0.55) 0%, rgba(44,24,16,0.15) 35%, rgba(44,24,16,0.15) 65%, rgba(44,24,16,0.70) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding-top: 90px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--color-gold);
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.5px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.hero-title .highlight { color: var(--color-gold); font-style: italic; }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.9);
  max-width: 560px; margin: 0 auto 36px;
  font-weight: 300; line-height: 1.7;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 32px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition-fast); white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent); color: #fff; border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-hover); border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 30, 0.35);
}
.btn-secondary {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.3);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-light { background: #fff; color: var(--color-primary); }
.btn-light:hover { background: var(--color-bg); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-large { padding: 16px 40px; font-size: 1.05rem; }
.hero-info { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.info-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.88); font-size: 0.9rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.info-item i { color: var(--color-gold); font-size: 1.1rem; }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.scroll-indicator a { color: rgba(255,255,255,0.5); font-size: 1.4rem; }
.scroll-indicator a:hover { color: #fff; }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section { padding: 100px 0; }
.alt-bg { background: var(--color-bg-alt); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block; color: var(--color-accent);
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; color: var(--color-primary); margin-bottom: 16px;
}
.section-line { width: 48px; height: 3px; background: var(--color-accent); margin: 0 auto; border-radius: 2px; }
.section-subtitle { color: var(--color-text-light); font-size: 1.05rem; margin-top: 16px; }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem; color: var(--color-primary);
  line-height: 1.5; margin-bottom: 24px;
  position: relative; padding-left: 20px;
  border-left: 3px solid var(--color-accent);
}
.about-quote em { color: var(--color-accent); font-style: italic; }
.about-desc { color: var(--color-text-light); font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; }
.about-features { display: flex; flex-direction: column; gap: 24px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--color-primary); color: var(--color-gold);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-sm);
}
.feature-text h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-primary); margin-bottom: 4px; }
.feature-text p { color: var(--color-text-light); font-size: 0.92rem; line-height: 1.6; }
.about-image .image-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 520px; object-fit: cover; transition: transform var(--transition-slow); }
.about-image .image-frame:hover img { transform: scale(1.03); }
.image-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--color-surface); padding: 14px 22px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-number { display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--color-accent); line-height: 1; }
.badge-text { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   HIGHLIGHTS / DISHES — use REAL photos
   ======================================== */
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.highlight-card {
  background: var(--color-surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.highlight-img { position: relative; overflow: hidden; }
.highlight-img img { width: 100%; height: 220px; object-fit: cover; transition: transform var(--transition-slow); }
.highlight-card:hover .highlight-img img { transform: scale(1.08); }
.highlight-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--color-primary); color: #fff;
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.highlight-content { padding: 24px; }
.highlight-content h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-primary); margin-bottom: 8px; }
.highlight-content p { color: var(--color-text-light); font-size: 0.9rem; line-height: 1.6; }

/* ========================================
   MENU / SPEISEKARTE - DIGITAL
   ======================================== */
.menu-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 22px; border-radius: 100px; border: 1px solid var(--color-border);
  background: var(--color-surface); color: var(--color-text-light);
  font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: all var(--transition-fast); font-family: var(--font-body);
}
.tab-btn:hover { border-color: var(--color-primary-light); color: var(--color-primary); }
.tab-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* White content card */
.menu-content-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
}
.menu-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), var(--color-accent));
}

/* Tab content visibility */
.menu-tab-content { display: none; padding: 40px 48px; }
.menu-tab-content.active { display: block; }
@media (max-width: 768px) {
  .menu-tab-content { padding: 24px 20px; }
}

/* Category headers inside card */
.menu-category { margin-bottom: 36px; }
.menu-category:last-child { margin-bottom: 0; }
.menu-category-header {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-light);
}
.menu-category-header h3 {
  font-family: var(--font-heading); font-size: 1.6rem;
  color: var(--color-primary); font-weight: 600; margin: 0;
}
.menu-category-header .cat-sub {
  font-size: 0.95rem; color: var(--color-text-light); font-style: italic;
}
.menu-category-header .cat-icon { font-size: 1.2rem; margin-left: 4px; }
.menu-category-note {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: -12px 0 22px;
}

/* Sub-categories */
.menu-category-header.sub-cat { margin-top: 28px; }
.menu-category-header.sub-cat h4 {
  font-family: var(--font-heading); font-size: 1.2rem;
  color: var(--color-text); font-weight: 600; margin: 0;
}
.menu-category-header.sub-cat h4 span {
  font-size: 0.85rem; color: var(--color-text-light);
  font-style: italic; font-weight: 400; margin-left: 6px;
}

/* Menu items grid - 2 columns */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
}
@media (max-width: 768px) {
  .menu-items-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Single menu item */
.menu-item {
  display: flex; flex-direction: column;
  gap: 4px;
}
.menu-item-header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
}
.menu-item-name {
  font-family: var(--font-heading); font-size: 1.05rem;
  font-weight: 600; color: var(--color-text);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.menu-item-number {
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 600;
}
.menu-item-title { color: inherit; }
.veg-leaf { font-size: 0.85rem; filter: saturate(1.5); }
.spicy-icon { font-size: 0.85rem; }
.menu-item-desc {
  font-size: 0.88rem; color: var(--color-text-light);
  line-height: 1.5; margin: 0;
}

/* Menu card footer legend */
.menu-card-legend {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 16px 48px 24px;
  font-size: 0.85rem; color: var(--color-text-light);
  border-top: 1px solid var(--color-border-light);
  margin-top: 8px;
}
@media (max-width: 768px) {
  .menu-card-legend { flex-direction: column; gap: 8px; padding: 16px 20px 20px; }
}

.menu-download { text-align: center; margin-top: 48px; }
.menu-download p { color: var(--color-text-light); margin-bottom: 16px; }

/* ========================================
   REVIEWS
   ======================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: var(--color-surface); padding: 36px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border); transition: all var(--transition-normal);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { color: var(--color-gold); font-size: 0.9rem; margin-bottom: 18px; letter-spacing: 2px; }
.review-text { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--color-primary); color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem;
}
.author-name { display: block; font-weight: 600; color: var(--color-primary); font-size: 0.95rem; }
.author-date { display: block; font-size: 0.8rem; color: var(--color-text-muted); }
.reviews-cta { text-align: center; margin-top: 48px; }

/* ========================================
   CONTACT
   ======================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.info-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px; background: var(--color-surface);
  border-radius: var(--radius-md); margin-bottom: 16px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}
.info-card:hover { box-shadow: var(--shadow-md); }
.info-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(139, 46, 29, 0.08); color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.info-details h4 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-primary); margin-bottom: 6px; }
.info-details p, .info-details a { color: var(--color-text-light); font-size: 0.92rem; line-height: 1.6; }
.info-details a:hover { color: var(--color-accent); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--color-accent) !important; font-weight: 500; font-size: 0.9rem; margin-top: 6px;
}
.link-arrow i { font-size: 0.75rem; transition: transform var(--transition-fast); }
.link-arrow:hover i { transform: translateX(3px); }
.info-note { display: block; font-size: 0.82rem; color: var(--color-text-muted); margin-top: 4px; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; color: var(--color-text-light); }
.hours-row:last-child { border-bottom: none; }
.hours-row.highlight { color: var(--color-primary); font-weight: 600; }
.contact-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; min-height: 520px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 520px; border: 0; border-radius: var(--radius-lg); }
.map-link {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--color-surface); padding: 10px 18px;
  border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500;
  color: var(--color-primary); box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.map-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--color-primary); padding: 80px 0; text-align: center; color: #fff;
}
.cta-content h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 500px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-primary-dark); color: rgba(255,255,255,0.7); padding: 72px 0 0;
  margin-top: auto;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo { margin-bottom: 16px; font-size: 1.5rem; }
.footer-brand .logo img { height: 50px; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--color-accent); color: #fff; transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 { color: #fff; font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all var(--transition-fast); }
.footer-links a:hover { color: var(--color-gold); padding-left: 4px; }
.footer-contact p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 10px; color: rgba(255,255,255,0.6); }
.footer-contact i { color: var(--color-gold); width: 20px; margin-right: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; background: var(--color-primary);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-accent); transform: translateY(-3px); }

/* ========================================
   ANIMATIONS (Scroll reveal)
   ======================================== */
/*
   Scroll-reveal — FIXED.
   The <html> element gets a `js` class via an inline <head> script (progressive
   enhancement). With JS enabled, .fade-in* elements start hidden and reveal when
   the IntersectionObserver (main.js) adds `.visible`. Without JS, everything
   stays visible — no content is ever locked out.
*/
html.js .fade-in,
html.js .fade-in-up,
html.js .fade-in-left,
html.js .fade-in-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
html.js .fade-in,
html.js .fade-in-up { transform: translateY(28px); }
html.js .fade-in-left { transform: translateX(-32px); }
html.js .fade-in-right { transform: translateX(32px); }

html.js .fade-in.visible,
html.js .fade-in-up.visible,
html.js .fade-in-left.visible,
html.js .fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
html.js .delay-1 { transition-delay: 0.10s; }
html.js .delay-2 { transition-delay: 0.20s; }
html.js .delay-3 { transition-delay: 0.30s; }
html.js .delay-4 { transition-delay: 0.40s; }

/* Hero animations - always play on load (independent of scroll-reveal) */
.hero .fade-in-up, .hero .delay-1, .hero .delay-2, .hero .delay-3, .hero .delay-4 {
  opacity: 0;
  animation: heroFadeInUp 1s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero .fade-in-up { animation-delay: 0.2s; }
.hero .delay-1 { animation-delay: 0.4s; }
.hero .delay-2 { animation-delay: 0.6s; }
.hero .delay-3 { animation-delay: 0.8s; }
.hero .delay-4 { animation-delay: 1.0s; }

@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 78%; max-width: 320px; height: 100vh;
    background: var(--color-primary);
    flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px; gap: 8px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-menu.open { right: 0; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 1.05rem; }
  .nav-cta { margin-left: 0; margin-top: 10px; width: 100%; justify-content: center; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-logo-img { width: 160px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 380px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 350px; }
  .contact-map iframe { min-height: 350px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-info { flex-direction: column; gap: 12px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .tab-btn { padding: 8px 16px; font-size: 0.82rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ========================================
   SVG ICONS — Local, no external fonts
   ======================================== */
.icon {
  width: 1em; height: 1em;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  flex-shrink: 0;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -10px 40px rgba(44,24,16,0.12);
  padding: 20px 0;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-text h4 {
  font-family: var(--font-heading); font-size: 1.1rem;
  color: var(--color-primary); margin-bottom: 6px;
}
.cookie-banner-text p {
  font-size: 0.85rem; color: var(--color-text-light); line-height: 1.5; margin: 0;
}
.cookie-banner-text a {
  color: var(--color-accent); text-decoration: underline;
}
.cookie-banner-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: var(--color-primary); color: #fff;
}
.cookie-btn-accept:hover { background: var(--color-accent); }
.cookie-btn-decline {
  background: transparent; color: var(--color-text);
  border-color: var(--color-border);
}
.cookie-btn-decline:hover { background: var(--color-bg-alt); border-color: var(--color-primary); }

/* ========================================
   MAP PRIVACY WRAPPER (2-click solution)
   ======================================== */
.map-privacy-wrapper {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
  border: 1px solid var(--color-border);
}
.map-privacy-overlay {
  max-width: 400px;
}
.map-privacy-overlay i {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: block;
}
.map-privacy-overlay h4 {
  font-family: var(--font-heading); font-size: 1.3rem;
  color: var(--color-primary); margin-bottom: 8px;
}
.map-privacy-overlay p {
  color: var(--color-text-light); font-size: 0.9rem;
  margin-bottom: 20px; line-height: 1.5;
}
.map-privacy-note {
  font-size: 0.75rem; color: var(--color-text-muted);
  margin-top: 8px;
}
.map-privacy-note a {
  color: var(--color-accent); text-decoration: underline;
}
