/* ============================================================
   BEAN CAFÉ BALI — Main Stylesheet
   Palette: Terracotta · Cream · Blush · Bark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --clay:    #C4622D;
  --copper:  #A34E22;
  --sand:    #E8C9A8;
  --cream:   #FAF3E8;
  --mist:    #F5EDE0;
  --blush:   #F0C4A4;
  --bark:    #2D1B0E;
  --text:    #3C2415;
  --muted:   #907060;
  --white:   #FEFBF6;
  --nav-h:   72px;
  --radius:  4px;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }

p { line-height: 1.75; font-size: 0.95rem; }

.serif { font-family: 'Cormorant Garamond', serif; }
.italic { font-style: italic; }
.caps { letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.75rem; font-weight: 400; }
.muted { color: var(--muted); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(250, 243, 232, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(60, 36, 21, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 38px;
  width: auto;
  transition: opacity 0.3s;
}

.nav-logo img.logo-white { display: none; }
.nav-logo img.logo-black { display: block; }

.nav.hero-mode .nav-logo img.logo-white { display: block; }
.nav.hero-mode .nav-logo img.logo-black { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
}

.nav.hero-mode .nav-links a { color: rgba(255,255,255,0.85); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--clay);
  transition: width 0.3s var(--ease);
}
.nav.hero-mode .nav-links a::after { background: white; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--clay);
  color: var(--clay) !important;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.nav.hero-mode .nav-cta {
  border-color: rgba(255,255,255,0.7);
  color: white !important;
}
.nav-cta:hover {
  background: var(--clay);
  color: white !important;
  border-color: var(--clay);
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.nav.hero-mode .nav-toggle span { background: white; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

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

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 10, 5, 0.75) 0%,
    rgba(20, 10, 5, 0.3) 40%,
    rgba(20, 10, 5, 0.1) 70%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 750px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease) 0.3s;
}
.hero.loaded .hero-eyebrow { opacity: 1; transform: translateY(0); }

.hero-eyebrow .line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.6);
}

.hero-eyebrow span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s var(--ease) 0.5s;
  font-weight: 300;
}
.hero.loaded h1 { opacity: 1; transform: translateY(0); }

.hero h1 em {
  font-style: italic;
  color: var(--blush);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s var(--ease) 0.7s;
  line-height: 1.8;
}
.hero.loaded .hero-sub { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s var(--ease) 0.9s;
}
.hero.loaded .hero-actions { opacity: 1; transform: translateY(0); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-primary {
  background: var(--clay);
  color: white;
  border-color: var(--clay);
}
.btn-primary:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline-dark:hover {
  background: var(--text);
  color: var(--cream);
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll .scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ── Sections ── */
section { padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem); }

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.section-label .line {
  width: 30px; height: 1px;
  background: var(--clay);
}
.section-label span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ── About Strip ── */
.about-strip {
  background: var(--bark);
  color: white;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.about-strip-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  margin: 0 clamp(1.5rem, 4vw, 4rem);
}

.about-item { text-align: center; }

.about-item .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── Story Section ── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.story-text h2 { margin-bottom: 1.5rem; }

.story-text h2 em {
  font-style: italic;
  color: var(--clay);
}

.story-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.story-text p strong {
  color: var(--text);
  font-weight: 400;
}

.story-image {
  position: relative;
}

.story-image .main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

.story-image .accent-img {
  position: absolute;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -2rem;
  left: -2rem;
  border: 4px solid var(--cream);
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ── Featured Drinks ── */
.drinks {
  background: var(--mist);
}

.drinks-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.drink-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.drink-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(44, 27, 14, 0.12);
}

.drink-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.drink-card:hover .drink-card-img { transform: scale(1.04); }

.drink-card-body {
  padding: 1.5rem;
}

.drink-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.5rem;
}

.drink-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.drink-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Gallery ── */
.gallery-section { background: var(--cream); }

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(9) { grid-column: span 2; grid-row: span 2; }

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0);
  transition: background 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(20, 10, 5, 0.25);
}

/* ── Location Teaser ── */
.location-teaser {
  background: var(--bark);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}

.location-teaser-content {
  padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 5vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-teaser-content h2 { color: white; margin-bottom: 2rem; }
.location-teaser-content h2 em { color: var(--blush); font-style: italic; }

.hours-table {
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}

.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.6rem 0; font-size: 0.88rem; }
.hours-table td:first-child { color: rgba(255,255,255,0.55); padding-right: 2rem; }
.hours-table td:last-child { color: rgba(255,255,255,0.9); }

.location-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.location-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.location-info-item .icon {
  color: var(--blush);
  margin-top: 1px;
  flex-shrink: 0;
}

.location-teaser-map {
  position: relative;
  overflow: hidden;
}

.location-teaser-map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: sepia(20%) contrast(0.9);
}

/* ── Social Strip ── */
.social-strip {
  background: var(--mist);
  text-align: center;
  padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.social-strip h2 {
  margin-bottom: 0.75rem;
}

.social-strip p {
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.social-platforms {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid rgba(60, 36, 21, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: all 0.3s var(--ease);
  font-family: 'Jost', sans-serif;
}

.social-platform-btn:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
  transform: translateY(-2px);
}

.social-platform-btn svg { width: 18px; height: 18px; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: 900px;
  margin: 3rem auto 0;
}

.insta-grid-item {
  aspect-ratio: 1;
  overflow: hidden;
}

.insta-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.insta-grid-item:hover img { transform: scale(1.08); }

/* ── Footer ── */
.footer {
  background: var(--bark);
  color: rgba(255,255,255,0.6);
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 40px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  line-height: 1;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  color: rgba(255,255,255,0.6);
}

.footer-socials a:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: white;
}

/* ── Page Headers ── */
.page-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.page-hero-content .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1rem;
}

.page-hero-content h1 { color: white; font-weight: 300; }

/* ── Menu Page ── */
.menu-coming {
  text-align: center;
  padding: clamp(5rem, 8vw, 10rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--mist);
}

.menu-coming h2 { margin-bottom: 1rem; }
.menu-coming h2 em { color: var(--clay); font-style: italic; }
.menu-coming p { color: var(--muted); max-width: 500px; margin: 0 auto 2.5rem; }

.menu-signature {
  padding: clamp(4rem, 6vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
}

.menu-signature-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-signature-header h2 { margin-bottom: 0.5rem; }
.menu-signature-header p { color: var(--muted); max-width: 400px; margin: 0 auto; }

.menu-category {
  margin-bottom: 4rem;
}

.menu-category-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.menu-category-title h3 {
  font-size: 1.8rem;
  white-space: nowrap;
}

.menu-category-title .rule {
  flex: 1;
  height: 1px;
  background: rgba(60, 36, 21, 0.1);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(60, 36, 21, 0.06);
  gap: 1rem;
}

.menu-item-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.menu-item-info p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--clay);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Location Page ── */
.location-full {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 6vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.location-map-full {
  width: 100%;
  aspect-ratio: 4/3;
  border: none;
  display: block;
  filter: sepia(15%) contrast(0.92);
}

.location-details h2 { margin-bottom: 2rem; }
.location-details h2 em { color: var(--clay); font-style: italic; }

.detail-block {
  margin-bottom: 2.5rem;
}

.detail-block-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 2rem;
}

.hours-grid .day { color: var(--muted); font-size: 0.88rem; }
.hours-grid .time { font-size: 0.88rem; }

/* ── Social Page ── */
.social-page {
  padding: clamp(4rem, 6vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}

.social-page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.social-page-header h2 { margin-bottom: 0.5rem; }
.social-page-header p { color: var(--muted); }

.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.platform-card {
  border: 1px solid rgba(60, 36, 21, 0.1);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.platform-card:hover {
  border-color: var(--clay);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(196, 98, 45, 0.1);
}

.platform-card .platform-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
}

.platform-card .platform-icon.ig {
  background: linear-gradient(135deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
}
.platform-card .platform-icon.fb { background: #1877F2; }
.platform-card .platform-icon.tt { background: #000; }

.platform-card h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.platform-card .handle { font-size: 0.82rem; color: var(--clay); margin-bottom: 0.75rem; }
.platform-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.social-feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

.social-feed-item:hover img { transform: scale(1.1); }

.social-feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-feed-item:hover .social-feed-overlay {
  background: rgba(20, 10, 5, 0.35);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 5, 2, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: var(--clay);
  border-color: var(--clay);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .story { grid-template-columns: 1fr; gap: 3rem; }
  .story-image .accent-img { left: 1rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .location-full { grid-template-columns: 1fr; }
  .platform-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(9) { grid-column: span 1; grid-row: span 1; }
  .about-strip { grid-template-columns: 1fr; gap: 2rem; }
  .about-strip-divider { width: 60px; height: 1px; margin: 0 auto; }
  .location-teaser { grid-template-columns: 1fr; }
  .location-teaser-map { height: 300px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand p { max-width: 100%; }
  .platform-cards { grid-template-columns: 1fr; }
  .drinks-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-sub { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
