/* ============================================
   Carnicería Imola — Landing v2 (modern)
   Paleta: azul + blanco, tipografía Outfit/Inter
   ============================================ */

:root {
  /* Brand blue derived from logo */
  --brand:      #1f4ad3;
  --brand-700:  #1a3eb8;
  --brand-900:  #0b1f5c;
  --brand-soft: #eaf0ff;
  --brand-pale: #f5f8ff;

  --ink-900: #0a1530;
  --ink-700: #2a3759;
  --ink-500: #5a6685;
  --ink-300: #a8b1c8;
  --line:    #e6ebf5;
  --bg:      #ffffff;
  --bg-soft: #f7f9ff;

  --wa-green: #25d366;
  --wa-green-dark: #1ebe5a;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-xs: 0 1px 2px rgba(10, 21, 48, 0.05);
  --shadow-sm: 0 2px 8px rgba(10, 21, 48, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 21, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 21, 48, 0.14);
  --shadow-brand: 0 16px 40px rgba(31, 74, 211, 0.25);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--brand); text-decoration: none; }

h1, h2, h3 {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink-900);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Scroll fade animation ============ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ HEADER ============ */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s var(--ease);
}

.site-nav a:hover { color: var(--brand); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  box-shadow: var(--shadow-brand);
  transition: transform 0.12s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--brand-700) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .site-nav a:not(.nav-cta) { display: none; }
}

/* ============ HERO ============ */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--brand-pale) 0%, var(--bg) 100%);
  padding: 96px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero-blob-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #c9d6ff 0%, transparent 70%);
  top: -180px;
  right: -160px;
}

.hero-blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #d8e0ff 0%, transparent 70%);
  bottom: -160px;
  left: -120px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--brand-soft);
  color: var(--brand-700);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  margin-bottom: 24px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-900) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-500);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-size: 0.75rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.meta-value {
  font-size: 0.95rem;
  color: var(--ink-900);
  font-weight: 600;
}

.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}

/* Hero logo */
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-logo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--brand-pale) 0%, transparent 60%);
  z-index: 0;
}

.hero-logo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

@media (max-width: 920px) {
  .hero { padding: 64px 0 88px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-logo-frame { max-width: 280px; }
}

/* En mobile ocultamos hero-meta y el logo del hero
   (el logo ya está en el header y los datos están en otras secciones) */
@media (max-width: 760px) {
  .hero-meta { display: none; }
  .hero-logo { display: none; }
  .hero-actions { margin-bottom: 0; }
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
}

.btn-lg { padding: 16px 30px; font-size: 1rem; }

@media (max-width: 480px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn {
    flex: 1 1 calc(50% - 6px);
    padding: 14px 16px;
    font-size: 0.95rem;
  }
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  background: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(31, 74, 211, 0.32);
}

.btn-ghost {
  background: #fff;
  color: var(--ink-900);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

/* ============ SECTIONS ============ */

.section { padding: 96px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--ink-500);
}

/* ============ FEATURES ============ */

.features-section { background: var(--bg-soft); }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #d6dffc;
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--ink-500);
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}

/* ============ LOCATION ============ */

.location-section { background: #fff; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location-text h2 { margin-bottom: 16px; }

.location-text p {
  color: var(--ink-500);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.address-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px 22px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.address-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-900) 100%);
  border-radius: 4px;
}

.address-card:hover {
  border-color: #c8d4f7;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.address-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-900) 100%);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(31, 74, 211, 0.3);
}

.address-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  min-width: 0;
}

.address-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}

.address-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.address-card-meta {
  font-size: 0.92rem;
  color: var(--ink-500);
}

.address-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.address-card:hover .address-card-arrow {
  transform: translateX(4px);
  background: var(--brand);
  color: #fff;
}

@media (max-width: 480px) {
  .address-card { padding: 18px 18px 18px 22px; gap: 14px; }
  .address-card-icon { width: 48px; height: 48px; }
  .address-card-title { font-size: 1.1rem; }
  .address-card-meta { font-size: 0.85rem; }
  .address-card-arrow { width: 36px; height: 36px; }
}

.location-map {
  display: flex;
  justify-content: center;
}

.map-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-900) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: var(--shadow-brand);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 40%);
}

.map-pin {
  position: relative;
  width: 96px;
  height: 96px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.map-label { position: relative; }

.map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(31, 74, 211, 0.35);
}

@media (max-width: 920px) {
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-text { text-align: center; }
  .address-box { text-align: left; }
}

/* ============ CONTACT ============ */

.contact-section {
  background: var(--bg-soft);
  padding-bottom: 120px;
}

.contact-card {
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand) 100%);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.1) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.contact-card > * { position: relative; z-index: 1; }

.contact-eyebrow {
  color: #b8c7ff !important;
}

.contact-card h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.contact-card > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.contact-tile {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease);
  text-align: left;
  backdrop-filter: blur(8px);
}

.contact-tile:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-tile-whatsapp .tile-icon {
  background: var(--wa-green);
  color: #fff;
}

.contact-tile-phone .tile-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.tile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.tile-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tile-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.tile-arrow {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.18s var(--ease), color 0.18s var(--ease);
}

.contact-tile:hover .tile-arrow {
  transform: translateX(4px);
  color: #fff;
}

@media (max-width: 640px) {
  .contact-card { padding: 56px 24px; }
}

/* ============ FLOATING ACTION BUTTONS ============ */

.float-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
  position: relative;
}

.float-phone {
  background: var(--brand);
  box-shadow: 0 8px 24px rgba(31, 74, 211, 0.4);
}

.float-phone:hover {
  background: var(--brand-700);
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(31, 74, 211, 0.5);
}

.float-whatsapp {
  background: var(--wa-green);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  opacity: 0;
  animation: pulse 2.4s var(--ease) infinite;
}

.float-whatsapp:hover {
  background: var(--wa-green-dark);
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0%   { transform: scale(0.96); opacity: 0.7; }
  100% { transform: scale(1.5);  opacity: 0; }
}

@media (max-width: 480px) {
  .float-buttons { bottom: 16px; right: 16px; gap: 10px; }
  .float-btn { width: 54px; height: 54px; }
}

/* ============ FOOTER ============ */

.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 64px 0 24px;
  font-size: 0.95rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: var(--ink-300);
  margin-top: 16px;
  line-height: 1.5;
}

.footer-logo {
  height: 72px;
  width: auto;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.footer-col a {
  color: var(--ink-300);
  font-size: 0.92rem;
  transition: color 0.15s var(--ease);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  color: var(--ink-500);
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* ============ GALLERY ============ */

.gallery-section { background: #fff; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-900) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  cursor: pointer;
}

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

.gallery-img {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.12) 0%, transparent 45%),
    radial-gradient(circle at 75% 80%, rgba(255,255,255,0.08) 0%, transparent 45%);
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover .gallery-img img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 31, 92, 0.85) 100%);
  color: #fff;
}

.gallery-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  position: absolute;
  top: 20px;
  left: 20px;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
  text-align: left;
  max-width: none;
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item { aspect-ratio: 16 / 10; }
}

/* ============ HOW TO ORDER ============ */

.how-section { background: var(--bg-soft); }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

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

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-900) 100%);
  color: #fff;
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--shadow-brand);
}

.step-body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.step-body p {
  color: var(--ink-500);
  font-size: 0.95rem;
  text-align: left;
  margin: 0;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.6rem;
  opacity: 0.4;
}

.step-connector::after {
  content: "→";
  font-weight: 700;
}

.how-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 14px; }
  .step-connector { display: none; }
}

/* ============ HOURS ============ */

.hours-section { background: #fff; }

.hours-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink-300);
  flex-shrink: 0;
  position: relative;
}

.status-dot.is-open {
  background: #22c55e;
}

.status-dot.is-open::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.35);
  animation: pulse-dot 1.8s ease-out infinite;
}

.status-dot.is-closed {
  background: #ef4444;
}

@keyframes pulse-dot {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hours-status > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.status-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-900);
  font-family: 'Outfit', sans-serif;
}

.status-sub {
  font-size: 0.9rem;
  color: var(--ink-500);
}

.hours-grid {
  padding: 8px 0;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}

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

.hours-row.is-today {
  background: var(--brand-soft);
}

.hours-day {
  font-weight: 600;
  color: var(--ink-900);
  font-size: 1rem;
}

.hours-times {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hours-chip {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-700);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

.hours-row.is-today .hours-chip {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand);
}

@media (max-width: 560px) {
  .hours-status { padding: 20px 20px; }
  .hours-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 20px; }
  .hours-times { justify-content: flex-start; }
}
