:root {
  --cream: #F5EFE6;
  --cream-light: #FAF5EC;
  --ink: #2A1E17;
  --ink-soft: #4A3B32;
  --muted: #8A7B70;
  --coffee: #6B4A38;
  --coffee-dark: #4A3227;
  --brown-section: #4E3529;
  --accent: #C88A5A;
  --card: #FFFFFF;
  --border: rgba(42, 30, 23, 0.08);
  --shadow-sm: 0 2px 8px rgba(42, 30, 23, 0.04);
  --shadow-md: 0 8px 24px rgba(42, 30, 23, 0.06);
  --shadow-lg: 0 20px 40px rgba(42, 30, 23, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* HEADER */
.header { position: sticky; top: 0; background: var(--cream); z-index: 100; border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--coffee); display: grid; place-items: center;
  color: var(--cream); font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 20px; font-style: italic;
}
.logo-text .name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; line-height: 1.1; }
.logo-text .tagline { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--coffee); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.icon-btn { background: none; border: none; cursor: pointer; color: var(--ink); padding: 8px; display: grid; place-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 100px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: all 0.25s ease;
}
.btn-primary { background: var(--coffee); color: var(--cream); }
.btn-primary:hover { background: var(--coffee-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); }

/* HERO */
.hero { padding: 60px 0 100px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.eyebrow { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 24px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 28px; color: var(--ink);
}
.hero h1 .accent { font-style: italic; color: var(--coffee); font-weight: 500; }
.hero p.lead { font-size: 17px; color: var(--ink-soft); max-width: 480px; margin-bottom: 36px; line-height: 1.65; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: grid; place-items: center; width: 100%; }
.hero-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #f4ecdf 0%, #efe4d6 100%);
  border: 1px solid rgba(107, 74, 56, 0.10);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img,
.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 20px;
  background: transparent;
}
.hero-dot { position: absolute; border-radius: 50%; z-index: 1; }
.hero-dot.a { width: 60px; height: 60px; background: var(--accent); top: 20%; right: 10%; opacity: 0.85; }
.hero-dot.b { width: 100px; height: 100px; background: rgba(200, 138, 90, 0.25); bottom: 15%; left: 5%; }
.hero-dot.c { width: 30px; height: 30px; background: var(--coffee); top: 15%; left: 15%; opacity: 0.4; }
.scroll-hint { text-align: center; color: var(--muted); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-top: 60px; }
.scroll-hint .arrow { display: block; margin: 8px auto 0; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* SECTIONS */
section { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500; color: var(--ink);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.section-head p { color: var(--muted); font-size: 16px; }

/* MENU */
.menu-section { background: var(--cream); }
.menu-category { margin-bottom: 56px; }
.menu-category h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.menu-category .subtitle { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.menu-card {
  background: var(--card); border-radius: 20px;
  padding: 16px; display: flex; gap: 16px; align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-thumb { width: 68px; height: 68px; border-radius: 14px; overflow: hidden; flex-shrink: 0; background: var(--cream); }
.menu-thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-info { flex: 1; min-width: 0; }
.menu-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.menu-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--ink); }
.menu-price { font-weight: 600; color: var(--coffee); font-size: 15px; }
.menu-desc { color: var(--muted); font-size: 13px; margin-top: 4px; line-height: 1.4; }
.tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.tag {
  font-size: 10px; padding: 3px 8px; border-radius: 100px;
  background: rgba(200, 138, 90, 0.15); color: var(--coffee);
  font-weight: 500; letter-spacing: 0.3px; text-transform: uppercase;
}
.tag.popular { background: var(--accent); color: white; }
.menu-cta { text-align: center; margin-top: 20px; }

/* STORY */
.story-section { background: var(--cream); padding-top: 40px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-visual { position: relative; }
.story-image { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.stats-card {
  position: absolute; bottom: -30px; right: -30px;
  background: var(--card); border-radius: 18px;
  padding: 24px 28px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: var(--coffee); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.story-content .est { font-family: 'Playfair Display', serif; font-style: italic; color: var(--muted); font-size: 15px; margin-bottom: 8px; }
.story-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 46px); font-weight: 500; line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.01em; }
.story-content p { color: var(--ink-soft); font-size: 16px; margin-bottom: 18px; line-height: 1.7; }
.story-content .btn { margin-top: 12px; }

/* EVENTS */
.events-section {
  background: var(--cream-light);
  padding: 72px 0;
}
.events-card {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: 52px 60px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.events-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -90px;
  bottom: -110px;
  background: rgba(200, 138, 90, 0.10);
  pointer-events: none;
}
.events-decoration {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 24px;
  background: rgba(200, 138, 90, 0.12);
  color: var(--coffee);
}
.events-content { position: relative; z-index: 1; max-width: 720px; }
.events-content .eyebrow { margin-bottom: 12px; }
.events-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.events-content h2 span { color: var(--coffee); font-style: italic; }
.events-content p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.events-content .btn { margin-top: 14px; }
.event-contact-block { position: relative; }
.event-contact-block h3 { color: var(--coffee-dark); }

/* PROCESS */
.process-section { background: var(--cream); }
.timeline { max-width: 900px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 20px; bottom: 20px; width: 1px; background: var(--border); transform: translateX(-0.5px); }
.timeline-step { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center; margin-bottom: 60px; position: relative; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  display: grid; place-items: center; margin: 0 auto;
  position: relative; z-index: 2; color: var(--coffee);
}
.timeline-content h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; margin-bottom: 6px; }
.timeline-content .step-num { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.timeline-content p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.timeline-step.left .timeline-content { grid-column: 1; text-align: right; padding-right: 20px; }
.timeline-step.left .timeline-icon { grid-column: 2; }
.timeline-step.right .timeline-content { grid-column: 3; text-align: left; padding-left: 20px; }
.timeline-step.right .timeline-icon { grid-column: 2; }


/* Apparition progressive des étapes au défilement */
.process-section.process-animate-ready .timeline-step {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.process-section.process-animate-ready .timeline-step.left { transform: translate3d(-34px, 18px, 0); }
.process-section.process-animate-ready .timeline-step.right { transform: translate3d(34px, 18px, 0); }
.process-section.process-animate-ready .timeline-step.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.process-section.process-animate-ready .timeline-step .timeline-icon {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.65s ease;
  transform: scale(0.84);
}
.process-section.process-animate-ready .timeline-step.is-visible .timeline-icon {
  transform: scale(1);
  box-shadow: var(--shadow-sm);
}

/* SHOP */
.shop-section { background: var(--brown-section); color: var(--cream); }
.shop-section .section-head h2 { color: var(--cream); }
.shop-section .section-head p { color: rgba(245, 239, 230, 0.7); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.product-card { background: var(--cream-light); color: var(--ink); border-radius: 20px; overflow: hidden; transition: transform 0.25s ease; }
.product-card:hover { transform: translateY(-4px); }
.product-image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.bestseller {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: white;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; font-weight: 600;
}
.product-body { padding: 22px; }
.product-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.product-body .product-desc { color: var(--muted); font-size: 13px; margin-bottom: 18px; line-height: 1.5; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--ink); }
.product-price .unit { font-size: 12px; color: var(--muted); font-weight: 400; font-family: 'Inter', sans-serif; margin-left: 4px; }
.add-btn {
  background: var(--ink); color: var(--cream);
  padding: 8px 16px; border-radius: 100px; border: none;
  font-family: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.add-btn:hover { background: var(--coffee); }
.shop-cta { text-align: center; }
.shop-cta .btn-ghost { border-color: var(--cream); color: var(--cream); }
.shop-cta .btn-ghost:hover { background: var(--cream); color: var(--ink); }

/* TESTIMONIALS */
.testimonials-section { background: var(--cream); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--cream-light); border-radius: 20px; padding: 32px; }
.stars { color: var(--accent); margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-card blockquote { font-family: 'Playfair Display', serif; font-size: 17px; font-style: italic; color: var(--ink); line-height: 1.5; margin-bottom: 24px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--coffee); color: var(--cream);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-weight: 600; font-size: 16px;
}
.person-name { font-weight: 600; font-size: 15px; }
.person-title { font-size: 12px; color: var(--muted); }

/* PROMO GALLERY — 3 colonnes centrées, hauteurs fixes */
.promo-section { background: var(--cream-light); }
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.promo-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promo-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream);
}
.promo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.promo-item:hover img { transform: scale(1.02); }

.promo-item.video-item {
  aspect-ratio: unset;
  background: transparent;
}
.promo-item.video-item video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.promo-item.video-item:hover video { transform: scale(1.02); }

.promo-video { position: relative; }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(42, 30, 23, 0.65);
  color: var(--cream);
  border: 2px solid rgba(245, 239, 230, 0.4);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.play-btn:hover {
  background: var(--coffee);
  border-color: var(--coffee);
  transform: translate(-50%, -50%) scale(1.1);
}

/* FOOTER */
.footer { background: var(--ink); color: var(--cream); padding: 50px 0 30px; }
.footer-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
}
.footer-brand { }
.footer-brand .logo { margin-bottom: 0; }
.footer-brand .logo-text .name { color: var(--cream); }
.footer-brand .logo-text .tagline { color: rgba(245, 239, 230, 0.6); }
.footer-brand p { color: rgba(245, 239, 230, 0.6); font-size: 14px; margin: 20px 0; max-width: 320px; line-height: 1.6; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(245, 239, 230, 0.08);
  display: grid; place-items: center; color: var(--cream);
  transition: background 0.2s; text-decoration: none;
}
.social-links a:hover { background: var(--coffee); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; margin-bottom: 20px; color: var(--cream); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(245, 239, 230, 0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

/* Hours block */
.hours-block { padding: 32px 0; border-top: 1px solid rgba(245, 239, 230, 0.1); border-bottom: 1px solid rgba(245, 239, 230, 0.1); }
.hours-title { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 24px; color: var(--cream); text-align: center; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.hours-day { text-align: center; }
.hours-day .day-name { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--accent); margin-bottom: 12px; font-weight: 600; letter-spacing: 0.5px; }
.hours-day .service { font-size: 13px; color: rgba(245, 239, 230, 0.85); line-height: 1.6; }
.hours-day .service strong { color: var(--cream); font-weight: 500; display: block; margin-top: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.hours-day .service strong:first-child { margin-top: 0; }
.hours-day .closed { font-family: 'Playfair Display', serif; font-style: italic; color: rgba(245, 239, 230, 0.5); font-size: 14px; }
.hours-note { text-align: center; margin-top: 20px; font-size: 12px; color: rgba(245, 239, 230, 0.5); font-style: italic; }

.footer-info-col { padding-top: 6px; }
.footer-info-col .info-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(245, 239, 230, 0.5); margin-bottom: 8px;
}
.footer-info-col .info-value {
  font-size: 14px; color: var(--cream); line-height: 1.5;
}
.footer-info-col .info-value a {
  color: var(--cream); text-decoration: none; transition: color 0.2s;
}
.footer-info-col .info-value a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12px; color: rgba(245, 239, 230, 0.5); }
.footer-bottom a { color: rgba(245, 239, 230, 0.5); text-decoration: none; margin-left: 20px; }
.footer-bottom a:hover { color: var(--accent); }

/* UNIVERS — 3 cartes condensées */
.univers-section { background: var(--cream); }
.univers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.univers-card {
  background: var(--card);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.univers-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.univers-card--featured {
  background: var(--coffee);
  color: var(--cream);
}
.univers-card--featured p { color: rgba(245, 239, 230, 0.85); }
.univers-card--featured .univers-detail span { color: rgba(245, 239, 230, 0.6); }
.univers-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream-light);
  display: grid;
  place-items: center;
  color: var(--coffee);
  margin-bottom: 20px;
}
.univers-card--featured .univers-icon {
  background: rgba(245, 239, 230, 0.15);
  color: var(--cream);
}
.univers-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}
.univers-card--featured h3 { color: var(--cream); }
.univers-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.univers-detail {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.univers-card--featured .univers-detail { border-color: rgba(245, 239, 230, 0.2); }
.univers-detail span {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ================= NOTRE CAFÉ (partenariat Jolicoeur) ================= */
.cafe-section { background: var(--brown-section); color: var(--cream); }
.cafe-section .section-head h2 { color: var(--cream); }
.cafe-section .section-head p { color: rgba(245, 239, 230, 0.75); }
.cafe-section .section-head .eyebrow {
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
}

.cafe-content {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cafe-text p {
  color: rgba(245, 239, 230, 0.85);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.cafe-text p:last-child { margin-bottom: 0; }
.cafe-text strong { color: var(--cream); font-weight: 600; }
.cafe-text em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.cafe-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cafe-card {
  background: var(--cream-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.cafe-card:hover { transform: translateY(-4px); }
.cafe-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.cafe-caption {
  padding: 14px 16px 16px;
  color: var(--ink);
}
.cafe-caption strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cafe-caption span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* Menu notes (below the menu, subtle) */
.menu-notes {
  margin-top: 20px;
  padding: 20px 28px;
  background: var(--card);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.menu-notes .note-item .note-label {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.menu-notes .note-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.menu-notes .note-item p .price {
  color: var(--coffee);
  font-weight: 600;
}

/* ================= CONTACT PAGE ================= */
.page-header {
  padding: 60px 0 40px;
  text-align: center;
}
.page-header .eyebrow { text-align: center; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.page-header h1 .accent { font-style: italic; color: var(--coffee); }
.page-header .lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-section { padding: 40px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: stretch;
}
.contact-card {
  background: var(--card);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-block { }
.contact-block .label {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-block p, .contact-block a {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-block a:hover { color: var(--coffee); }
.contact-block .big-link {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--ink);
  font-weight: 600;
  display: inline-block;
  margin-top: 2px;
}
.contact-block .big-link:hover { color: var(--coffee); }
.contact-block .directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--coffee);
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
}
.contact-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--card);
  min-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.map-wrap iframe {
  border: 0;
  width: 100%;
  flex: 1;
  min-height: 460px;
}
.map-footer {
  padding: 14px 20px;
  background: var(--cream-light);
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.map-footer a {
  color: var(--coffee);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.map-footer a:hover { color: var(--coffee-dark); }

/* Hours-on-page (light theme, distinct from footer version) */
.page-hours-section { background: var(--cream-light); padding: 80px 0; }
.page-hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.page-hours-day {
  background: var(--card);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.page-hours-day .day-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--coffee);
  margin-bottom: 16px;
  font-weight: 600;
}
.page-hours-day .service { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.page-hours-day .service strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-top: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-hours-day .service strong:first-child { margin-top: 0; }
.page-hours-day .closed {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 16px;
}
.page-hours-note { text-align: center; margin-top: 32px; font-size: 14px; color: var(--muted); font-style: italic; }

/* Delivery zones */
.delivery-section { background: var(--cream); padding: 80px 0; }
.delivery-content { max-width: 780px; margin: 0 auto; text-align: center; }
.delivery-content p { color: var(--ink-soft); font-size: 16px; margin-bottom: 32px; }
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.zone-list li {
  padding: 10px 22px;
  background: var(--card);
  border-radius: 100px;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .process-section.process-animate-ready .timeline-step.left,
  .process-section.process-animate-ready .timeline-step.right { transform: translate3d(0, 24px, 0); }
  .process-section.process-animate-ready .timeline-step.is-visible { transform: translate3d(0, 0, 0); }
  .nav-links, .nav-actions .btn { display: none; }
  .mobile-toggle { display: block; }
  .hero-grid, .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 60px; }
  .story-content { order: 2; }
  .stats-card { position: static; margin-top: 20px; }
  .menu-grid, .shop-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; gap: 28px; }
  .footer-info, .hours-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .timeline::before { left: 24px; }
  .timeline-step { grid-template-columns: 48px 1fr; gap: 20px; }
  .timeline-step.left .timeline-content, .timeline-step.right .timeline-content { grid-column: 2; text-align: left; padding: 0; }
  .timeline-step.left .timeline-icon, .timeline-step.right .timeline-icon { grid-column: 1; }
  section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .univers-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 28px; }
  .page-hours-grid { grid-template-columns: 1fr; }
  .cafe-content { grid-template-columns: 1fr; gap: 32px; }
  .cafe-gallery { max-width: 500px; margin: 0 auto; }
  .menu-notes { grid-template-columns: 1fr; padding: 20px; }
}

/* THREE-PAGE STRUCTURE */
.menu-page-section { padding-top: 40px; }

@media (max-width: 900px) {
  .nav { position: relative; }
  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 1px);
    left: -20px;
    right: -20px;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open a { display: block; padding: 10px 0; }
  .menu-page-section { padding-top: 20px; }
}

/* ==========================================================
   RESPONSIVE ENHANCEMENTS — tablets, phones and small screens
   ========================================================== */
html { overflow-x: clip; }
body { min-width: 320px; }
img, video, iframe { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button, .btn, .social-links a, .mobile-toggle { touch-action: manipulation; }

:focus-visible {
  outline: 3px solid rgba(200, 138, 90, 0.55);
  outline-offset: 3px;
}

.mobile-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-toggle:hover,
.mobile-toggle[aria-expanded="true"] { background: rgba(107, 74, 56, 0.1); }
.menu-price { white-space: nowrap; }

/* Compact desktop / landscape tablet */
@media (max-width: 1120px) and (min-width: 901px) {
  .container { padding-inline: 28px; }
  .nav-links { gap: 24px; }
  .nav-actions { gap: 10px; }
  .nav-actions .btn { padding: 11px 18px; }
  .hero-grid, .story-grid { gap: 48px; }
  .hero { padding-bottom: 80px; }
  .stats-card { right: -10px; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-row { grid-template-columns: 2fr repeat(3, minmax(120px, 1fr)); gap: 28px; }
}

/* Tablets */
@media (max-width: 900px) {
  .container { padding-inline: 24px; }
  .nav { padding: 14px 0; }
  .logo-mark { width: 40px; height: 40px; font-size: 18px; }
  .logo-text .name { font-size: 18px; }
  .logo-text .tagline { font-size: 10px; }
  .mobile-toggle { display: inline-flex; flex-shrink: 0; }

  .nav-links.is-open {
    left: -24px;
    right: -24px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px 24px 18px;
  }
  .nav-links.is-open li { width: 100%; }
  .nav-links.is-open a {
    min-height: 48px;
    padding: 13px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
  }
  .nav-links.is-open a.active { background: rgba(107, 74, 56, 0.09); }
  body.menu-open { overflow: hidden; }

  section { padding: 72px 0; }
  .events-section { padding: 60px 0; }
  .events-card { padding: 42px 40px; border-radius: 24px; }
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: clamp(34px, 6vw, 48px); }

  .hero { padding: 46px 0 72px; }
  .hero-grid { gap: 44px; }
  .hero-content { max-width: 680px; }
  .hero p.lead { max-width: 620px; }
  .hero-visual { width: min(100%, 500px); margin: 0 auto; }
  .scroll-hint { margin-top: 40px; }

  .story-grid { gap: 36px; }
  .story-visual { width: min(100%, 600px); margin: 0 auto; }
  .story-image { aspect-ratio: 5/4; }
  .story-content { max-width: 680px; }
  .stats-card {
    width: min(100%, 520px);
    margin: 20px auto 0;
    padding: 22px 24px;
  }

  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-card { align-items: flex-start; }
  .menu-category { margin-bottom: 48px; }

  .univers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .univers-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

  .promo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .promo-column { gap: 12px; }

  .footer-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 560px; }
  .footer-info-col { padding-top: 0; }

  .contact-section { padding: 28px 0 72px; }
  .contact-grid { gap: 24px; }
  .map-wrap { min-height: 440px; }
  .map-wrap iframe { min-height: 390px; }

  .page-hours-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .page-hours-day { padding: 24px 16px; }

  .cafe-content { max-width: 680px; }
  .cafe-text { order: 1; }
  .cafe-gallery { order: 2; width: min(100%, 560px); }
}

/* Phones */
@media (max-width: 640px) {
  .container { padding-inline: 18px; }
  .nav { padding: 11px 0; }
  .nav-links.is-open { left: -18px; right: -18px; padding-inline: 18px; }

  section { padding: 54px 0; }
  .events-section { padding: 44px 0; }
  .events-card { padding: 32px 24px; border-radius: 20px; }
  .events-decoration { width: 50px; height: 50px; margin-bottom: 20px; }
  .events-content h2 { font-size: clamp(30px, 9.5vw, 40px); margin-bottom: 18px; }
  .events-content p { font-size: 15px; line-height: 1.65; }
  .events-content .btn { width: 100%; justify-content: center; min-height: 48px; }
  .section-head { margin-bottom: 34px; }
  .section-head h2 { font-size: clamp(31px, 10vw, 42px); line-height: 1.12; }
  .section-head p { font-size: 15px; line-height: 1.55; }
  .eyebrow { margin-bottom: 16px; font-size: 11px; letter-spacing: 1.6px; }

  .hero { padding: 36px 0 54px; }
  .hero-grid { gap: 34px; }
  .hero h1 { font-size: clamp(40px, 13vw, 56px); margin-bottom: 20px; }
  .hero p.lead { font-size: 16px; margin-bottom: 28px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; min-height: 48px; }
  .hero-visual { width: min(100%, 400px); }
  .hero-dot.a { width: 46px; height: 46px; right: 2%; }
  .hero-dot.b { width: 76px; height: 76px; left: 0; }
  .hero-dot.c { width: 24px; height: 24px; left: 8%; }
  .hero-image {
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    padding: 16px;
  }
  .hero-image img,
  .hero-image video { border-radius: 14px; }
  .scroll-hint { display: none; }

  .page-header { padding: 38px 0 22px; }
  .page-header h1 { font-size: clamp(38px, 12vw, 50px); margin-bottom: 12px; }
  .page-header .lead { font-size: 15.5px; line-height: 1.6; }

  .story-section { padding-top: 20px; }
  .story-grid { gap: 30px; }
  .story-image { aspect-ratio: 4/4.6; border-radius: 18px; }
  .stats-card { gap: 18px 20px; padding: 20px; }
  .stat-num { font-size: 25px; }
  .story-content h2 { font-size: clamp(31px, 10vw, 42px); margin-bottom: 18px; }
  .story-content p { font-size: 15px; line-height: 1.65; }

  .timeline::before { left: 21px; }
  .timeline-step { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; margin-bottom: 42px; align-items: start; }
  .timeline-icon { width: 42px; height: 42px; }
  .timeline-content h3 { font-size: 21px; }
  .timeline-content p { font-size: 14.5px; }

  .menu-grid,
  .univers-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .univers-card:last-child:nth-child(odd),
  .testimonial-card:last-child:nth-child(odd) { grid-column: auto; }
  .menu-category { margin-bottom: 42px; }
  .menu-category h3 { font-size: 24px; line-height: 1.2; }
  .menu-category .subtitle { margin-bottom: 18px; }
  .menu-card { padding: 14px; gap: 13px; border-radius: 17px; }
  .menu-thumb { width: 62px; height: 62px; border-radius: 12px; }
  .menu-name { font-size: 16px; }
  .menu-desc { font-size: 12.5px; }
  .menu-notes { padding: 18px; gap: 18px; }

  .univers-card { padding: 28px 24px; }
  .testimonial-card { padding: 26px 22px; }

  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .promo-column { gap: 10px; }
  .promo-item { border-radius: 12px; }

  .cafe-content { gap: 28px; }
  .cafe-text p { font-size: 15px; line-height: 1.68; }
  .cafe-gallery { gap: 10px; }
  .cafe-card { border-radius: 14px; }
  .cafe-caption { padding: 12px; }

  .contact-section { padding: 20px 0 54px; }
  .contact-card { padding: 24px 20px; gap: 20px; border-radius: 18px; }
  .contact-block .big-link { font-size: 22px; }
  .map-wrap { min-height: 380px; border-radius: 18px; }
  .map-wrap iframe { min-height: 330px; }
  .map-footer { padding: 13px 16px; }

  .page-hours-section,
  .delivery-section { padding: 54px 0; }
  .page-hours-grid { grid-template-columns: 1fr; gap: 14px; }
  .page-hours-day { padding: 22px 20px; }
  .page-hours-note { margin-top: 24px; }
  .delivery-content p { font-size: 15px; margin-bottom: 24px; }
  .zone-list { gap: 9px; }
  .zone-list li { padding: 9px 17px; font-size: 14px; }

  .footer { padding: 44px 0 24px; }
  .footer-row { grid-template-columns: 1fr; gap: 26px; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { margin: 16px 0 18px; }
  .footer-bottom { align-items: center; }
  .footer-bottom > div:last-child { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
  .footer-bottom a { margin-left: 0; }
}

/* Very small phones */
@media (max-width: 380px) {
  .logo-text .tagline { display: none; }
  .logo { gap: 9px; }
  .hero h1 { font-size: 39px; }
  .hero-visual { width: 100%; }
  .hero-image { padding: 14px; border-radius: 20px; }
  .hero-image img,
  .hero-image video { border-radius: 12px; }
  .stats-card { grid-template-columns: 1fr 1fr; padding: 18px; }
  .menu-card { gap: 11px; }
  .menu-thumb { width: 56px; height: 56px; }
  .menu-top { align-items: flex-start; }
  .promo-grid, .cafe-gallery { grid-template-columns: 1fr; }
  .map-footer { align-items: flex-start; flex-direction: column; }
  .zone-list li { flex: 1 1 calc(50% - 9px); text-align: center; }
}

/* Touch devices: avoid hover-only motion */
@media (hover: none) {
  .btn:hover,
  .menu-card:hover,
  .univers-card:hover,
  .product-card:hover,
  .cafe-card:hover { transform: none; }
  .promo-item:hover img,
  .promo-item.video-item:hover video,
  .product-card:hover .product-image img { transform: none; }
}

/* Accessibility and mobile battery savings */
@media (prefers-reduced-motion: reduce) {
  .process-section.process-animate-ready .timeline-step,
  .process-section.process-animate-ready .timeline-step.left,
  .process-section.process-animate-ready .timeline-step.right {
    opacity: 1;
    transform: none;
  }
  .process-section.process-animate-ready .timeline-step .timeline-icon { transform: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Large displays / televisions — preserve readability on ultra-wide and 4K viewports */
@media (min-width: 2200px) {
  .container { max-width: 2100px; padding-inline: 72px; }

  .nav { padding: 28px 0; }
  .logo { gap: 16px; }
  .logo-mark { width: 60px; height: 60px; font-size: 27px; }
  .logo-text .name { font-size: 27px; }
  .logo-text .tagline { font-size: 14px; }
  .nav-links { gap: 56px; }
  .nav-links a { font-size: 20px; }
  .nav-actions .btn { font-size: 18px; padding: 16px 32px; }

  .hero { padding: 110px 0 150px; }
  .hero-grid { gap: 150px; }
  .eyebrow { font-size: 17px; letter-spacing: 2.5px; margin-bottom: 30px; }
  .hero h1 { font-size: 112px; margin-bottom: 36px; }
  .hero p.lead { max-width: 760px; font-size: 23px; line-height: 1.7; margin-bottom: 44px; }
  .hero-cta { gap: 18px; }
  .hero-cta .btn { font-size: 18px; padding: 16px 30px; }
  .hero-image { max-width: 780px; padding: 30px; border-radius: 40px; }
  .hero-image img, .hero-image video { border-radius: 24px; }
  .hero-dot.a { width: 82px; height: 82px; }
  .hero-dot.b { width: 130px; height: 130px; }
  .hero-dot.c { width: 42px; height: 42px; }
  .scroll-hint { font-size: 14px; margin-top: 80px; }

  section { padding: 145px 0; }
  .section-head { margin-bottom: 78px; }
  .section-head h2 { font-size: 72px; }
  .section-head p { font-size: 21px; }

  .story-section { padding-top: 70px; }
  .story-grid { gap: 130px; }
  .story-image { border-radius: 28px; }
  .story-content .est { font-size: 19px; }
  .story-content h2 { font-size: 68px; margin-bottom: 30px; }
  .story-content p { font-size: 20px; line-height: 1.75; margin-bottom: 22px; }
  .stats-card { padding: 32px 38px; gap: 26px 40px; border-radius: 24px; }
  .stat-num { font-size: 38px; }
  .stat-label { font-size: 15px; }

  .events-section { padding: 100px 0; }
  .events-card { max-width: 1420px; padding: 72px 84px; border-radius: 34px; }
  .events-decoration { width: 72px; height: 72px; }
  .events-content { max-width: 1000px; }
  .events-content h2 { font-size: 68px; }
  .events-content p { max-width: 940px; font-size: 20px; }

  .timeline { max-width: 1320px; }
  .timeline-step { grid-template-columns: 1fr 80px 1fr; margin-bottom: 78px; }
  .timeline-icon { width: 60px; height: 60px; }
  .timeline-content h3 { font-size: 31px; }
  .timeline-content .step-num { font-size: 14px; }
  .timeline-content p { font-size: 19px; }

  .testimonial-grid, .univers-grid { gap: 32px; }
  .testimonial-card { padding: 42px; border-radius: 26px; }
  .testimonial-card blockquote { font-size: 22px; }
  .person-name { font-size: 18px; }
  .person-title { font-size: 15px; }
  .promo-grid, .promo-column { gap: 22px; }
  .promo-item { border-radius: 22px; }

  .page-header { padding: 90px 0 60px; }
  .page-header h1 { font-size: 90px; margin-bottom: 22px; }
  .page-header .lead { max-width: 880px; font-size: 23px; }
  .menu-page-section { padding-top: 60px; }
  .menu-category { margin-bottom: 76px; }
  .menu-category h3 { font-size: 36px; }
  .menu-category .subtitle { font-size: 18px; margin-bottom: 30px; }
  .menu-grid { gap: 28px; }
  .menu-card { padding: 22px; gap: 20px; border-radius: 26px; }
  .menu-thumb { width: 92px; height: 92px; border-radius: 18px; }
  .menu-name { font-size: 22px; }
  .menu-price { font-size: 19px; }
  .menu-desc { font-size: 17px; }
  .tag { font-size: 12px; padding: 5px 10px; }
  .menu-notes { max-width: 1300px; padding: 28px 36px; gap: 34px; }
  .menu-notes .note-item .note-label { font-size: 15px; }
  .menu-notes .note-item p { font-size: 18px; }

  .cafe-content { max-width: 1650px; gap: 72px; }
  .cafe-text p { font-size: 20px; }
  .cafe-gallery { gap: 22px; }
  .cafe-card { border-radius: 24px; }
  .cafe-caption { padding: 18px 20px 20px; }
  .cafe-caption strong { font-size: 19px; }
  .cafe-caption span { font-size: 15px; }

  .contact-section { padding: 60px 0 140px; }
  .contact-grid { gap: 48px; }
  .contact-card { padding: 54px; gap: 30px; border-radius: 28px; }
  .contact-block .label { font-size: 15px; }
  .contact-block h3 { font-size: 27px; }
  .contact-block p, .contact-block a { font-size: 19px; }
  .contact-block .big-link { font-size: 32px; }
  .contact-block .directions { font-size: 17px; }
  .map-wrap { border-radius: 28px; min-height: 680px; }
  .map-wrap iframe { min-height: 620px; }
  .map-footer { padding: 20px 26px; font-size: 17px; }
  .page-hours-grid { max-width: 1500px; gap: 28px; }
  .page-hours-day { padding: 34px 28px; border-radius: 24px; }
  .page-hours-day .day-name { font-size: 21px; }
  .page-hours-day .service, .page-hours-day .closed { font-size: 18px; }
  .page-hours-note, .delivery-content p { font-size: 18px; }
  .zone-list { gap: 14px; }
  .zone-list li { padding: 13px 26px; font-size: 18px; }

  .footer { padding: 72px 0 42px; }
  .footer-row { gap: 56px; padding-bottom: 44px; }
  .footer-brand p { max-width: 460px; font-size: 18px; }
  .social-links a { width: 46px; height: 46px; }
  .footer-info-col .info-label { font-size: 14px; }
  .footer-info-col .info-value { font-size: 18px; }
  .footer-bottom { padding-top: 32px; font-size: 15px; }
}
