/* =========================================================
   O'FIRST VITRINE — Design system éditorial premium
   Palette : ink, parchment, signature orange
   Typo    : Fraunces (display) + Inter (text)
========================================================= */

:root {
  --ink: #100D0A;
  --ink-soft: #2A2520;
  --muted: #6B635B;
  --parchment: #F6F0E6;
  --parchment-deep: #ECE3D2;
  --canvas: #FFFFFF;
  --orange: #FF6A13;
  --orange-deep: #E04C00;
  --whatsapp: #25D366;
  --hair: rgba(16, 13, 10, 0.08);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-pill: 999px;

  --shadow-soft: 0 1px 2px rgba(16,13,10,0.04), 0 8px 24px rgba(16,13,10,0.06);
  --shadow-card: 0 1px 2px rgba(16,13,10,0.05), 0 20px 40px -12px rgba(16,13,10,0.18);

  --font-display: "Fraunces", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --font-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-text);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ===== Typo helpers ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-text);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.7); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "opsz" 90;
  color: var(--ink);
}
h2 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 500;
}
h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin-top: 16px;
}

/* ===== Buttons ===== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--canvas);
}
.btn-primary:hover { background: var(--orange); transform: translateY(-1px); }
.wa-icon {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
}

.btn-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-cta.inline { display: inline-flex; flex-direction: row; gap: 8px; }
.btn-cta.primary {
  background: var(--ink);
  color: var(--canvas);
  box-shadow: var(--shadow-card);
}
.btn-cta.primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.btn-cta.ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hair);
  padding: 16px 28px;
}
.btn-cta.ghost:hover {
  border-color: var(--ink);
  background: var(--parchment);
}
.cta-meta {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.65;
  letter-spacing: 0.04em;
}

/* ===== Brand ===== */
.brand { display: inline-flex; align-items: baseline; gap: 0; }
.brand-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}
.brand-mark.big, .brand-name.big { font-size: 42px; }

/* ===== Top Bar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--hair);
}
.topnav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.topnav a {
  color: var(--ink-soft);
  position: relative;
  transition: color 0.15s;
}
.topnav a:hover { color: var(--orange); }
.topnav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.topnav a:hover::after { transform: scaleX(1); }
@media (max-width: 760px) {
  .topnav { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  padding: clamp(56px, 9vw, 120px) clamp(20px, 5vw, 80px) clamp(48px, 8vw, 96px);
  max-width: 1480px;
  margin: 0 auto;
  align-items: center;
  background:
    radial-gradient(80% 60% at 90% 0%, rgba(255, 106, 19, 0.07), transparent 60%),
    var(--canvas);
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/></svg>");
  mix-blend-mode: multiply;
  z-index: 0;
}
.hero-content, .hero-media { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--parchment);
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: inline-block;
}
.dot.pulse {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 144px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-variation-settings: "opsz" 144;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.hero-lede {
  margin-top: 28px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 480px;
}

.hero-ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 13px;
  color: var(--muted);
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust strong {
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 16px;
}
.hero-trust em {
  font-style: normal;
}
.hero-trust span[aria-hidden="true"] {
  color: var(--orange);
  letter-spacing: -1px;
}

.hero-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.hero:hover .hero-media img { transform: scale(1.03); }
.hero-tag {
  position: absolute;
  left: 24px; bottom: 24px;
  right: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  color: var(--ink);
}
.tag-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--orange);
}
.tag-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { aspect-ratio: 16 / 11; }
}

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--canvas);
  border-top: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  padding: 22px 0;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "opsz" 80;
  letter-spacing: -0.02em;
}
.marquee-track span {
  padding: 0 24px;
  flex-shrink: 0;
}
.marquee-track span:nth-child(even) {
  color: var(--orange);
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Concept ===== */
.concept {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 80px);
  max-width: var(--container);
  margin: 0 auto;
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.concept-card {
  padding: 36px 28px 32px;
  background: var(--parchment);
  border-radius: var(--r-md);
  transition: transform 0.25s ease, background 0.25s ease;
}
.concept-card:hover {
  transform: translateY(-4px);
  background: var(--parchment-deep);
}
.concept-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.concept-card h3 { margin-bottom: 10px; }
.concept-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .concept-grid { grid-template-columns: 1fr; }
}

/* ===== WhatsApp pitch ===== */
.whatsapp-pitch {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: clamp(80px, 11vw, 144px) clamp(20px, 5vw, 80px);
  background: var(--ink);
  color: var(--canvas);
  overflow: hidden;
}
.whatsapp-pitch::before {
  content: "";
  position: absolute;
  right: -5%; top: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 106, 19, 0.2), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.wp-text { position: relative; max-width: 560px; }
.wp-text h2 { color: var(--canvas); }
.wp-text h2 em { color: var(--orange); }
.wp-text p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}
.wp-steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}
.wp-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}
.wp-steps b {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  width: 28px;
}
.wp-text .btn-cta.primary {
  background: var(--orange);
  color: var(--canvas);
  margin-top: 36px;
}
.wp-text .btn-cta.primary:hover { background: var(--orange-deep); }

/* Phone mockup */
.wp-phone {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 300px;
  height: 580px;
  background: #1c1815;
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6),
              inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  height: 100%;
  background: linear-gradient(180deg, #efeae3 0%, #e8e1d5 100%);
  border-radius: 32px;
  padding: 56px 16px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat {
  max-width: 80%;
  padding: 9px 13px;
  font-size: 13.5px;
  line-height: 1.4;
  border-radius: 14px;
  animation: fadeUp 0.5s ease backwards;
}
.chat:nth-child(2) { animation-delay: 0.6s; }
.chat:nth-child(3) { animation-delay: 1.2s; }
.chat:nth-child(4) { animation-delay: 1.8s; }
.chat:nth-child(5) { animation-delay: 2.4s; }
.chat:nth-child(6) { animation-delay: 3.0s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-them {
  align-self: flex-start;
  background: #ffffff;
  color: #1a1a1a;
  border-bottom-left-radius: 4px;
}
.chat-me {
  align-self: flex-end;
  background: #DCF8C6;
  color: #1a1a1a;
  border-bottom-right-radius: 4px;
}
.chat b { color: var(--orange); }
.chat-typing {
  align-self: flex-start;
  background: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: #999;
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 880px) {
  .whatsapp-pitch { grid-template-columns: 1fr; gap: 48px; }
  .wp-steps { grid-template-columns: 1fr 1fr; }
  .phone-frame { transform: scale(0.85); }
}

/* ===== Carte ===== */
.carte {
  padding: clamp(80px, 11vw, 144px) clamp(20px, 5vw, 80px);
  max-width: var(--container);
  margin: 0 auto;
}
.carte-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.dish {
  grid-column: span 4;
  background: var(--canvas);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.dish:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.dish-feature { grid-column: span 8; }
.dish-feature .dish-img { min-height: 320px; }
.dish-feature .dish-body { padding: 32px; }
.dish-feature h3 { font-size: 28px; }
.dish-img {
  width: 100%;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--parchment);
}
.dish-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.dish-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.dish p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.dish-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-top: 6px;
}

@media (max-width: 1080px) {
  .dish { grid-column: span 6; }
  .dish-feature { grid-column: span 12; }
}
@media (max-width: 640px) {
  .dish { grid-column: span 12; }
}

.carte-cta {
  text-align: center;
  margin-top: 48px;
}
.carte-cta a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 4px;
  transition: color 0.15s;
}
.carte-cta a:hover { color: var(--orange); }

/* ===== Fidélité ===== */
.fidelite {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 80px);
  max-width: var(--container);
  margin: 0 auto;
}
.fid-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--parchment);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px);
}
.fid-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 460px;
}
.tiers {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--canvas);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--hair);
}
.tier span { font-size: 18px; }
.tier-vip {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}
.link-arrow {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 600;
  font-size: 15px;
  color: var(--orange);
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.2s;
}

/* Loyalty mock card */
.fid-mock { display: flex; justify-content: center; }
.loyalty-card {
  width: 320px;
  background: linear-gradient(135deg, #1a1815 0%, #2a2520 100%);
  color: var(--canvas);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  font-family: var(--font-text);
}
.lc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 28px;
}
.lc-top span:first-child { color: var(--orange); font-size: 18px; letter-spacing: -0.02em; }
.lc-tier {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
}
.lc-points {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.lc-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.lc-points strong {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.lc-points em {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
}
.lc-progress { margin-bottom: 20px; }
.lc-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-bottom: 8px;
}
.lc-fill {
  width: 56%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #FFB37A);
  border-radius: var(--r-pill);
}
.lc-progress span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.lc-qr {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: monospace;
  font-size: 8px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

@media (max-width: 880px) {
  .fid-card { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Avis ===== */
.avis {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 80px);
  max-width: var(--container);
  margin: 0 auto;
}
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  padding: 32px 28px;
  background: var(--canvas);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.quote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.quote .stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
}
.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
}
.quote cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
@media (max-width: 880px) {
  .avis-grid { grid-template-columns: 1fr; }
}

/* ===== Trouver ===== */
.trouver {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--parchment);
}
.trouver-info {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 80px);
}
.addr {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 8px 0 24px;
}
.contact-row {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
}
.contact-row a {
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}

.hours {
  width: 100%;
  max-width: 460px;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.hours th, .hours td {
  text-align: left;
  padding: 10px 0;
  font-size: 14.5px;
  border-bottom: 1px solid var(--hair);
}
.hours th {
  color: var(--ink-soft);
  font-weight: 500;
  width: 140px;
}
.hours td {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.hours .hours-today th, .hours .hours-today td {
  color: var(--orange);
  font-weight: 700;
}
.hours .hours-today th::before {
  content: "▸ ";
  color: var(--orange);
}

.livraison {
  font-size: 14px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.livraison strong { color: var(--ink); }

.trouver-map {
  position: relative;
  min-height: 480px;
}
.trouver-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

@media (max-width: 880px) {
  .trouver { grid-template-columns: 1fr; }
  .trouver-map { min-height: 360px; }
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 80px) 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand-mark, .footer .brand-name { color: var(--canvas); }
.footer .brand-mark { color: var(--orange); }
.foot-tag {
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}
.footer h4 {
  font-family: var(--font-text);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  font-weight: 600;
}
.social-list li {
  margin-bottom: 8px;
  font-size: 15px;
}
.social-list a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s;
}
.social-list a:hover { color: var(--orange); }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.foot-bottom a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.55),
              0 4px 12px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -12px rgba(37, 211, 102, 0.65),
              0 6px 16px rgba(0,0,0,0.22);
}
.sticky-icon {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
  animation: pulseWhite 2s infinite;
}
@keyframes pulseWhite {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (max-width: 640px) {
  .sticky-cta {
    bottom: 16px;
    left: 16px;
    right: 16px;
    justify-content: center;
    padding: 16px 22px;
  }
}

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