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

:root {
  --espresso: #1E0F08;
  --brown: #2E1503;
  --warm-mid: #7A4020;
  --gold: #C8860A;
  --gold-light: #E2A83A;
  --cream: #F7F0E6;
  --cream-dark: #EDE3D5;
  --cream-darker: #D9CABB;
  --text-body: #3A1F0D;
  --text-muted: #8A6A55;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.35;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(30,15,8,0.92);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-darker);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

/* HERO */
.hero {
  min-height: 100svh;
  background: var(--espresso);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('kavarna.png') center center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-photo.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15,7,3,0.92) 0%, rgba(15,7,3,0.3) 50%, rgba(15,7,3,0.55) 100%),
    linear-gradient(to right, rgba(15,7,3,0.4) 0%, transparent 60%);
}
.hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,134,10,0.12) 0%, transparent 70%);
  bottom: 0; right: 10%;
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title em {
  font-style: normal;
  color: var(--cream);
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream-darker);
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(247,240,230,0.3);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: rgba(247,240,230,0.9);
  background: rgba(247,240,230,0.08);
  color: var(--cream);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 0.8s ease both;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* STRIP */
.strip {
  background: var(--gold);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
}
.strip-item {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.strip-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--espresso);
  opacity: 0.4;
}

/* SECTION BASE */
section { position: relative; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* MENU */
.menu-section {
  background: var(--cream);
  padding: 100px 48px;
}
.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 60px;
  gap: 24px;
  flex-wrap: wrap;
}
.menu-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 360px;
}
.menu-tabs {
  display: flex;
  gap: 4px;
  background: var(--cream-dark);
  border-radius: 6px;
  padding: 4px;
}
.menu-tab {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.menu-tab.active { background: var(--espresso); color: var(--cream); }

.menu-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}
.menu-card {
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}
.menu-card:hover { background: var(--cream-dark); }
.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.menu-card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ABOUT */
.about-section {
  background: var(--espresso);
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 480px;
}
.about-content { max-width: 480px; }
.about-content .section-title { color: var(--cream); margin-bottom: 24px; }
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream-darker);
  margin-bottom: 20px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.about-feature { display: flex; align-items: flex-start; gap: 16px; }
.about-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}
.about-feature-text { font-size: 0.92rem; line-height: 1.5; color: var(--cream-darker); }

/* COFFEE */
.coffee-section { background: var(--cream-dark); padding: 100px 48px; }
.coffee-inner { max-width: 1100px; margin: 0 auto; }
.coffee-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.coffee-desc { font-size: 1rem; line-height: 1.8; color: var(--text-muted); padding-top: 8px; }

.beansmith-card {
  background: var(--espresso);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.beansmith-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,10,0.15) 0%, transparent 70%);
  right: -60px; top: -60px;
  pointer-events: none;
}
.beansmith-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.beansmith-name { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--cream); line-height: 1.1; }
.beansmith-desc { font-size: 0.9rem; line-height: 1.7; color: var(--cream-darker); }
.beansmith-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,134,10,0.15);
  border: 1px solid rgba(200,134,10,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  width: fit-content;
}

.guest-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.guest-subtitle { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; max-width: 560px; }
.guest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.guest-card {
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  padding: 24px 28px;
  position: relative;
  transition: background 0.2s;
}
.guest-card:hover { background: #f0e8da; }
.guest-card-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.guest-card-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.guest-card-origin { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }
.guest-card-dot { position: absolute; top: 24px; right: 24px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.guest-card-dot.inactive { background: var(--cream-darker); }

/* INFO */
.info-section { background: var(--cream-dark); padding: 100px 48px; }
.info-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.info-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-darker);
}
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.hours-day { color: var(--text-muted); }
.hours-time { font-weight: 500; }
.hours-closed { color: var(--cream-darker); }
.hours-note { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D6A2D;
  background: #D4EDDA;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.badge-open-dot { width: 6px; height: 6px; border-radius: 50%; background: #2D6A2D; }

.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--espresso); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-value { font-size: 0.92rem; font-weight: 500; color: var(--text-body); }
.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { color: var(--gold); }

.map-placeholder {
  background: var(--cream-darker);
  border-radius: 3px;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.04) 39px, rgba(0,0,0,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,0.04) 39px, rgba(0,0,0,0.04) 40px);
}
.map-pin { width: 40px; height: 40px; background: var(--gold); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); position: relative; z-index: 1; }
.map-pin::after { content: ''; position: absolute; inset: 8px; background: var(--espresso); border-radius: 50%; }
.map-label { position: relative; z-index: 1; font-weight: 500; }

/* INSTAGRAM */
.insta-section { background: var(--cream); padding: 100px 48px; }
.insta-header { max-width: 1100px; margin: 0 auto 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.insta-handle { display: inline-flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.insta-handle:hover { color: var(--gold); }
.insta-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.insta-post { aspect-ratio: 1; border-radius: 3px; overflow: hidden; position: relative; cursor: pointer; background: var(--cream-darker); display: block; text-decoration: none; }
.insta-post-bg { position: absolute; inset: 0; transition: transform 0.4s ease; background-size: cover; background-position: center; }
.insta-post:hover .insta-post-bg { transform: scale(1.06); }
.insta-post-overlay { position: absolute; inset: 0; background: rgba(15,7,3,0); display: flex; align-items: flex-end; padding: 16px; transition: background 0.3s; }
.insta-post:hover .insta-post-overlay { background: rgba(15,7,3,0.55); }
.insta-post-caption { color: var(--cream); font-size: 0.8rem; line-height: 1.4; opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.insta-post:hover .insta-post-caption { opacity: 1; transform: none; }
.insta-post-likes { position: absolute; top: 12px; right: 12px; background: rgba(15,7,3,0.6); color: var(--cream); font-size: 0.72rem; font-weight: 500; padding: 4px 10px; border-radius: 20px; opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; gap: 5px; }
.insta-post:hover .insta-post-likes { opacity: 1; }
.post-c1 { background: linear-gradient(135deg, #3D1F0D 0%, #7A4020 40%, #C8860A 100%); }
.post-c2 { background: linear-gradient(160deg, #D9C8B0 0%, #A0785A 100%); }
.post-c3 { background: linear-gradient(135deg, #1E2A1A 0%, #3D5C30 60%, #8FAB6A 100%); }
.post-c4 { background: linear-gradient(135deg, #2C1810 0%, #5A3020 50%, #C8860A 100%); }
.post-c5 { background: linear-gradient(160deg, #F0E8D8 0%, #C8A878 100%); }
.post-c6 { background: linear-gradient(135deg, #1A1208 0%, #4A3010 50%, #8B6040 100%); }
.post-c7 { background: linear-gradient(160deg, #E8D5B8 0%, #B08050 100%); }
.post-c8 { background: linear-gradient(135deg, #0D1A1A 0%, #204040 60%, #508080 100%); }
.insta-post-bg::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E"); background-size: 150px 150px; }
.post-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.25; }
.insta-api-note { max-width: 1100px; margin: 24px auto 0; font-size: 0.78rem; color: var(--text-muted); text-align: center; font-style: italic; }

/* FOOTER */
footer { background: var(--brown); padding: 60px 48px 36px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 36px; border-bottom: 1px solid rgba(247,240,230,0.1); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--cream); }
.footer-tagline { font-size: 0.85rem; font-style: italic; color: var(--text-muted); font-family: 'Playfair Display', serif; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-darker); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { max-width: 1100px; margin: 28px auto 0; font-size: 0.75rem; color: var(--text-muted); text-align: center; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DRAWER */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(15,7,3,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  padding: 18px 0;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, color 0.2s;
}
.nav-drawer.open a { opacity: 1; transform: none; }
.nav-drawer.open a:nth-child(1) { transition-delay: 0.05s; }
.nav-drawer.open a:nth-child(2) { transition-delay: 0.10s; }
.nav-drawer.open a:nth-child(3) { transition-delay: 0.15s; }
.nav-drawer.open a:nth-child(4) { transition-delay: 0.20s; }
.nav-drawer.open a:nth-child(5) { transition-delay: 0.25s; }
.nav-drawer a:hover { color: var(--gold-light); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
  .hero { padding: 100px 24px 70px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline { text-align: center; }
  .strip { padding: 14px 20px; gap: 12px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .strip::-webkit-scrollbar { display: none; }
  .about-section { grid-template-columns: 1fr; padding: 72px 24px; gap: 48px; }
  .about-visual { height: 300px; }
  .info-grid { grid-template-columns: 1fr; }
  .menu-section, .info-section { padding: 72px 24px; }
  .strip { padding: 14px 24px; gap: 20px; }
  footer { padding: 48px 24px 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .coffee-section { padding: 72px 24px; }
  .coffee-top { grid-template-columns: 1fr; gap: 40px; }
  .guest-grid { grid-template-columns: 1fr; }
  .insta-section { padding: 72px 24px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 600px) {
  .menu-header { flex-direction: column; align-items: flex-start; }
  .menu-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
