/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:     #C9A027;
  --gold-lt:  #E8C45A;
  --orange:   #D4622A;
  --cream:    #FDF8F0;
  --brown:    #3A2010;
  --gray:     #6B6057;
  --card-bg:  #FFFFFF;
  --radius:   14px;
  --shadow:   0 2px 12px rgba(58,32,16,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--brown);
  min-height: 100vh;
  /* Safe area for notched phones */
  padding-bottom: env(safe-area-inset-bottom);
}

/* ─── Welcome Splash ────────────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0d0500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: max(60px, env(safe-area-inset-top)) 32px max(60px, env(safe-area-inset-bottom));
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

/* Ambient glow behind logo */
.splash::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(212,98,42,.35) 0%, rgba(201,160,39,.1) 50%, transparent 72%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

.splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Center content */
.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Logo wrapper with animated rings */
.splash-logo-wrap {
  position: relative;
  margin-bottom: 32px;
}

.splash-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,160,39,.5);
  animation: ringPop 0.9s cubic-bezier(0.34,1.3,0.64,1) 0.2s both;
}

.splash-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,39,.2);
  animation: ringPop 0.9s cubic-bezier(0.34,1.3,0.64,1) 0.35s both;
}

.splash-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #C9A027;
  background: #1a0c02;
  box-shadow:
    0 0 0 6px rgba(201,160,39,.12),
    0 0 50px rgba(212,98,42,.5),
    0 0 100px rgba(212,98,42,.2);
  animation: logoZoom 0.8s cubic-bezier(0.34,1.3,0.64,1) both;
}

.splash-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #E8C45A;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(201,160,39,.4);
  animation: fadeUp 0.6s ease 0.3s both;
}

.splash-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  animation: fadeUp 0.6s ease 0.42s both;
}

.splash-divider span:first-child,
.splash-divider span:last-child {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(201,160,39,.35);
}

.splash-divider span:nth-child(2) {
  color: #C9A027;
  font-size: 0.65rem;
}

.splash-tagline {
  font-size: 0.68rem;
  color: rgba(232,196,90,.6);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  animation: fadeUp 0.6s ease 0.52s both;
  margin-bottom: 28px;
}

/* Value words — pop in one by one */
.splash-values {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.splash-val {
  position: relative;
  overflow: hidden;
  font-size: 0.73rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 0 16px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.1);
  opacity: 0;
  animation: valPop 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Shimmer sweep after each chip pops in */
.splash-val::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmerSweep 0.55s ease forwards;
  opacity: 0;
}

.splash-val:nth-child(1) { animation-delay: 1.4s; }
.splash-val:nth-child(2) { animation-delay: 2.3s; }
.splash-val:nth-child(3) { animation-delay: 3.2s; }

.splash-val:nth-child(1)::after { animation-delay: 1.65s; }
.splash-val:nth-child(2)::after { animation-delay: 2.55s; }
.splash-val:nth-child(3)::after { animation-delay: 3.45s; }

@keyframes valPop {
  0%   { opacity: 0; transform: scale(0.55) translateY(8px); }
  60%  { opacity: 1; transform: scale(1.12) translateY(-2px); }
  100% { opacity: 1; transform: scale(1)    translateY(0); }
}

@keyframes shimmerSweep {
  0%   { opacity: 1; left: -80%; }
  100% { opacity: 1; left: 120%; }
}

/* Three loading dots */
.splash-dots {
  position: absolute;
  bottom: max(52px, env(safe-area-inset-bottom));
  display: flex;
  gap: 8px;
  animation: fadeUp 0.5s ease 0.7s both;
}

.splash-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(201,160,39,.5);
  animation: dotPulse 1.3s ease-in-out infinite;
}

.splash-dots span:nth-child(2) { animation-delay: 0.22s; }
.splash-dots span:nth-child(3) { animation-delay: 0.44s; }

@keyframes dotPulse {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.75); }
  40%           { opacity: 1;    transform: scale(1.1); }
}

@keyframes glowPulse {
  0%, 100% { opacity: .7; transform: translate(-50%, -50%) scale(1);   }
  50%       { opacity: 1;  transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes ringPop {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes logoZoom {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

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

/* ─── Header ────────────────────────────────────────────── */
.header {
  background: var(--brown);
  padding: 14px 16px;
  padding-top: max(14px, env(safe-area-inset-top));
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  background: #fff;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--orange) 0%, #B8491E 100%);
  color: #fff;
  text-align: center;
  padding: 36px 20px 42px;
}

.hero-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 6vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 0.88rem;
  opacity: 0.85;
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ─── Section titles ────────────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--brown);
  text-align: center;
  margin-bottom: 6px;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 8px auto 0;
}

/* ─── Menu ──────────────────────────────────────────────── */
.menu {
  padding: 32px 16px 16px;
  max-width: 680px;
  margin: 0 auto;
}

/* ─── Category ──────────────────────────────────────────── */
.category {
  margin-top: 28px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.category-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.category-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.category-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--orange);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── Note ──────────────────────────────────────────────── */
.menu-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
  background: #fff8ec;
  border: 1.5px solid var(--gold-lt);
  border-radius: 10px;
  padding: 12px 16px;
  line-height: 1.5;
}

/* ─── Dish Card — horizontal on mobile ─────────────────── */
.dish-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  /* Entrance animation */
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.4s ease forwards;
}

/* Stagger cards within each grid */
.menu-grid .dish-card:nth-child(1) { animation-delay: 0.05s; }
.menu-grid .dish-card:nth-child(2) { animation-delay: 0.12s; }
.menu-grid .dish-card:nth-child(3) { animation-delay: 0.19s; }
.menu-grid .dish-card:nth-child(4) { animation-delay: 0.26s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.dish-card:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/* Image — square thumbnail on left */
.dish-img-wrap {
  width: 120px;
  min-width: 120px;
  align-self: stretch;
  background: linear-gradient(135deg, #f5e6c8 0%, #e8d0a0 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dish-img-wrap::after {
  content: attr(data-emoji);
  font-size: 3.5rem;
  pointer-events: none;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 8px;
}

.dish-img-wrap.has-image::after { display: none; }

/* Info */
.dish-info {
  padding: 14px 14px 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.dish-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 5px;
  line-height: 1.2;
}

.dish-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 400;
}

.dish-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

.dish-about {
  margin-top: 6px;
}

.dish-about-toggle {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.dish-about-toggle::-webkit-details-marker { display: none; }

.dish-about[open] .dish-about-toggle {
  color: var(--orange);
}

.dish-about-text {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.55;
  border-left: 2px solid var(--gold-lt);
  padding-left: 8px;
}

.dish-price {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
}

/* ─── Tablet+: 2-column vertical grid ──────────────────── */
@media (min-width: 540px) {
  .menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .dish-card {
    flex-direction: column;
  }

  .dish-img-wrap {
    width: 100%;
    min-width: unset;
    aspect-ratio: 4 / 3;
    position: relative;
  }

  .dish-img {
    position: absolute;
  }

  .dish-info {
    padding: 12px 14px 14px;
  }
}

/* ─── Address ───────────────────────────────────────────── */
.address-section {
  background: var(--gold);
  padding: 14px 20px;
}

.address-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto;
}

.address-icon { font-size: 1.1rem; flex-shrink: 0; }

.address-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.4;
}

/* ─── Actions ───────────────────────────────────────────── */
.actions {
  background: var(--brown);
  padding: 40px 20px 48px;
  padding-bottom: max(48px, calc(env(safe-area-inset-bottom) + 32px));
  text-align: center;
}

.actions .section-title { color: var(--gold); }
.actions .section-title::after { background: var(--gold-lt); }

.actions-sub {
  color: #c8b89a;
  font-size: 0.88rem;
  margin-top: 8px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  margin: 0 auto;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  /* Min 52px height — comfortable tap target */
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.96);
}

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-google {
  background: #fff;
  color: #3c4043;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  box-shadow: 0 2px 10px rgba(188,24,136,.35);
}

/* ─── Dish tap hint ─────────────────────────────────────── */
.has-popup { cursor: pointer; }

.dish-tap-hint {
  font-size: 0.75rem;
  color: var(--gold);
  vertical-align: middle;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* ─── Popup overlay ─────────────────────────────────────── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 2, 0.65);
  z-index: 1000;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.popup-overlay.active {
  display: flex;
  animation: fadeOverlay 0.22s ease forwards;
}

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

/* ─── Bottom sheet ──────────────────────────────────────── */
.popup-sheet {
  background: linear-gradient(180deg, #f0deb8 0%, #fbecd8 30%, #fdf6ee 100%);
  width: 100%;
  max-width: 540px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  position: relative;
  max-height: 72vh;
  overflow-y: auto;
  animation: slideUp 0.35s cubic-bezier(0.32, 0.72, 0, 1) forwards;
  box-shadow: 0 -8px 40px rgba(0,0,0,.25);
}

.popup-sheet.closing {
  animation: slideDown 0.28s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(0); }
  to   { transform: translateY(100%); }
}

/* Drag bar — signals it can slide down */
.popup-drag-bar {
  display: block;
  width: 44px;
  height: 4px;
  background: rgba(58,32,16,.25);
  border-radius: 2px;
  margin: 14px auto 0;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 10;
  background: rgba(20, 8, 2, 0.55);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 0.85rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

/* ─── Popup image ───────────────────────────────────────── */
.popup-img-wrap {
  width: 100%;
  height: 176px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 8px;
}

.popup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.popup-img-emoji {
  font-size: 5rem;
  position: absolute;
}

.popup-img-emoji { display: block; }

/* Origin badge on image */
.popup-origin-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(58,32,16,.75);
  color: var(--gold-lt);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.03em;
}

/* ─── Popup body ────────────────────────────────────────── */
.popup-body {
  padding: 14px 16px 26px;
}

.popup-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
}

.popup-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown);
  line-height: 1.1;
}

.popup-meaning {
  font-size: 0.65rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 3px;
  letter-spacing: 0.03em;
}

.popup-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  background: #fff3e0;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1.5px solid #f5c57a;
}

.popup-tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 13px;
}

.popup-tag {
  background: #fff8ec;
  border: 1.5px solid var(--gold-lt);
  color: var(--brown);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
}

.popup-divider {
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  border-radius: 1px;
  margin-bottom: 13px;
}

.popup-desc {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 13px;
}

.popup-desc strong { color: var(--brown); font-weight: 600; }
.popup-desc em     { color: var(--orange); font-style: italic; }

/* Ingredients card */
.popup-ingredients {
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(201,160,39,0.35);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.popup-ingredients-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.popup-ingredient-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.popup-ingredient {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown);
}

.ingredient-icon {
  font-size: 1.2rem;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(58,32,16,.1);
  flex-shrink: 0;
}

/* ─── Remove old details styles ─────────────────────────── */
.dish-about, .dish-about-toggle, .dish-about-text { display: none; }

/* ─── Sticky Order Bar ──────────────────────────────────── */
.order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -2px 16px rgba(0,0,0,.12);
  border-top: 1px solid rgba(0,0,0,.06);
}

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 22px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, opacity 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.order-btn:active { transform: scale(0.96); opacity: 0.9; }

.order-btn-swiggy {
  background: #FC8019;
  color: #fff;
  box-shadow: 0 3px 12px rgba(252,128,25,.4);
}

.swiggy-flame {
  width: 16px;
  height: 21px;
  flex-shrink: 0;
}

.swiggy-wordmark {
  height: 18px;
  width: auto;
  flex-shrink: 0;
}

/* Push page content above the sticky bar */
body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }

/* ─── Action hint ───────────────────────────────────────── */
.action-hint {
  margin-top: 16px;
  font-size: 0.75rem;
  color: #7a6a58;
  letter-spacing: 0.02em;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  background: #1e0e06;
  color: #8a7060;
  text-align: center;
  padding: 24px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 8px;
  background: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 2px;
  -webkit-tap-highlight-color: transparent;
}

.footer-link-google { color: #6ab0f5; }
.footer-link-insta  { color: #f08aaa; }

.footer-divider { color: #4a3828; }

.footer-copy {
  margin-top: 10px;
  opacity: 0.5;
  font-size: 0.72rem;
}
