/* ============================================
   ARTIVO AI — Premium Restaurant/Café Template
   Palette: charcoal / cream / gold
   ============================================ */
:root {
  color-scheme: only light;
  --bg: #E3EAD3;
  --bg-2: #D8E2C4;
  --bg-3: #CBD8B2;
  --cream: #1C1F15;
  --cream-dim: #3E4634;
  --gold: #6E8F52;
  --gold-light: #55743C;
  --ink: #1C1F15;
  --sage-deep: #55743C;
  --line: rgba(110, 143, 82, 0.4);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }

/* ---------- Cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); transition: transform .15s; }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid var(--gold);
  opacity: .5; transition: transform .2s ease-out, width .25s, height .25s, opacity .25s;
}
.cursor-ring.is-hover { width: 56px; height: 56px; opacity: .9; background: rgba(126,167,101,.10); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ---------- Floating coffee beans ---------- */
.beans { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.bean {
  position: absolute; opacity: .16; will-change: transform;
  animation: beanFloat linear infinite;
}
.bean svg { display: block; }
@keyframes beanFloat {
  0%   { transform: translateY(105vh) rotate(0deg); }
  100% { transform: translateY(-15vh) rotate(360deg); }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; background: var(--bg); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--serif); font-size: 42px; letter-spacing: 4px;
  color: var(--gold); display: block; margin-bottom: 18px;
  animation: fadePulse 1.6s ease infinite alternate;
}
.preloader-line {
  display: block; width: 0; height: 1px; background: var(--gold);
  margin: 0 auto; animation: lineGrow 1.8s ease forwards;
}
@keyframes fadePulse { from { opacity: .5; } to { opacity: 1; } }
@keyframes lineGrow { to { width: 160px; } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 26px 0; transition: all .4s ease;
}
.nav.scrolled {
  padding: 14px 0; background: rgba(227, 234, 211, .92);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  letter-spacing: 3px; color: var(--ink); text-transform: uppercase; transition: color .3s;
  display: flex; align-items: center;
}
.nav-logo-img { height: 46px; width: auto; display: block; transition: height .4s; }
.nav.scrolled .nav-logo-img { height: 38px; }
.nav.scrolled .nav-logo { color: var(--cream); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink); position: relative; transition: color .3s;
}
.nav.scrolled .nav-links a { color: var(--cream-dim); }
.nav.scrolled .nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .35s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold); padding: 10px 24px; color: var(--gold) !important;
  transition: all .35s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; }
.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.nav-burger span { width: 26px; height: 2px; background: var(--cream); transition: all .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--bg); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.hero-overlay {
  position: absolute; inset: 0;
  background: none;
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 900px; }
.hero-kicker {
  font-size: 13px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 18px;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(52px, 9vw, 108px);
  font-weight: 500; line-height: 1.05; letter-spacing: 1px;
  color: #FAFBF7; text-shadow: 0 2px 24px rgba(20,24,16,.45);
}
.hero-title em { font-style: italic; color: #ABCA99; }
.hero-sub {
  margin: 28px auto 40px; max-width: 560px; color: var(--ink);
  font-size: 17px; font-weight: 300;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.reveal-hero { opacity: 0; transform: translateY(34px); animation: heroIn 1.1s cubic-bezier(.22,1,.36,1) forwards; }
.reveal-hero:nth-child(1) { animation-delay: .9s; }
.reveal-hero:nth-child(2) { animation-delay: 1.05s; }
.reveal-hero:nth-child(3) { animation-delay: 1.25s; }
.reveal-hero:nth-child(4) { animation-delay: 1.45s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
/* ---------- Cup hero (static, no animation) ---------- */
.hero-cup-stage { overflow: hidden; }
.cup-float-wrap {
  position: relative; margin: 8px auto 6px; width: min(280px, 55vw);
  perspective: 1200px;
}
.cup-spinner {
  transform-style: preserve-3d; will-change: transform;
}
.cup-img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 24px 34px rgba(42,46,32,.22));
}
.cup-shadow {
  width: 55%; height: 22px; margin: 4px auto 0; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(42,46,32,.28) 0%, rgba(42,46,32,0) 70%);
}

  50% { transform: translateY(-26px); }
}

  100% { transform: rotateY(360deg); }
}

  50% { transform: scaleX(.72); opacity: .5; }
}
@media (prefers-reduced-motion: reduce) {
  .cup-spinner, .cup-img, .cup-shadow { animation: none; }
}

/* ---------- Intro statement (moved hero text) ---------- */
.intro-statement { background: var(--bg); padding-top: 90px; padding-bottom: 40px; text-align: center; }
.intro-title {
  font-family: var(--serif); font-size: clamp(40px, 6.5vw, 78px);
  font-weight: 500; line-height: 1.08; letter-spacing: 1px; color: var(--ink);
}
.intro-title em { font-style: italic; color: var(--sage-deep); }
.intro-sub { margin: 24px auto 0; max-width: 620px; color: var(--ink); font-size: 17px; font-weight: 300; }

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 1px; height: 64px; background: rgba(35,31,32,.18); overflow: hidden;
}
.hero-scroll span {
  position: absolute; top: -40%; left: 0; width: 100%; height: 40%;
  background: var(--gold); animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -40%; } 100% { top: 110%; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 15px 38px; font-family: var(--sans);
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  transition: all .4s ease; border: 1px solid transparent;
}
.btn-gold { background: var(--gold-light); color: #FFFFFF; }
.btn-gold:hover { background: transparent; border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(35,31,32,.35); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold); overflow: hidden; padding: 14px 0;
  transform: rotate(-.6deg) scale(1.02); margin: -20px 0 0;
  position: relative; z-index: 3;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap; width: max-content;
  animation: marqueeMove 22s linear infinite;
}
.marquee-track span {
  font-family: var(--serif); font-size: 19px; font-weight: 600;
  color: #FFFFFF; letter-spacing: 2px; text-transform: uppercase;
}
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section headings ---------- */
.section-kicker {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.section-kicker.center { text-align: center; }
.section-title {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 56px);
  font-weight: 500; line-height: 1.15; margin-bottom: 28px;
}
.section-title.center { text-align: center; }

/* ---------- Story ---------- */
.story { background: var(--bg-2); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-media { position: relative; }
.story-img-main { overflow: hidden; }
.story-img-main img { height: 560px; width: 100%; object-fit: cover; transition: transform 1.2s ease; }
.story-media:hover .story-img-main img { transform: scale(1.05); }
.story-img-accent {
  position: absolute; right: -40px; bottom: -50px; width: 240px; height: 240px;
  border: 10px solid var(--bg-2); overflow: hidden;
}
.story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.story-text p { color: var(--cream-dim); margin-bottom: 20px; font-weight: 300; }
.story-signature { margin-top: 36px; }
.signature-name {
  font-family: var(--serif); font-size: 30px; font-style: italic;
  color: var(--gold-light); display: block;
}
.signature-role { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-dim); }

/* ---------- Stats ---------- */
.stats-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 0; background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num {
  font-family: var(--serif); font-size: 54px; color: var(--gold-light); display: block; line-height: 1;
}
.stat-num::after { content: '+'; font-size: 30px; vertical-align: super; }
.stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-dim); }

/* ---------- Menu ---------- */
.menu { background: var(--bg); }
.menu-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 40px 0 56px; }
.menu-tab {
  background: none; border: 1px solid var(--line); color: var(--cream-dim);
  padding: 11px 26px; font-family: var(--sans); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; transition: all .35s;
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold-light); }
.menu-tab.active { background: var(--gold); border-color: var(--gold); color: #FFFFFF; font-weight: 700; }
.menu-panel { display: none; max-width: 820px; margin: 0 auto; }
.menu-panel.active { display: block; animation: panelIn .6s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.menu-item {
  display: flex; align-items: baseline; gap: 14px; padding: 22px 0;
  border-bottom: 1px solid rgba(35,31,32,.10);
}
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--cream);
  display: inline-block;
}
.menu-item-badge {
  display: inline-block; margin-left: 10px; font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold);
  padding: 2px 9px; vertical-align: middle;
}
.menu-item-desc { font-size: 14px; color: var(--cream-dim); font-weight: 300; margin-top: 4px; }
.menu-item.has-photo { align-items: center; }
.menu-thumb {
  width: 92px; height: 68px; flex-shrink: 0; border-radius: 10px; overflow: hidden;
  background: var(--bg-3); box-shadow: 0 2px 10px rgba(35,31,32,.12);
}
.menu-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.menu-item.has-photo:hover .menu-thumb img { transform: scale(1.07); }
.menu-dots { flex: 1; border-bottom: 1px dotted rgba(126,167,101,.5); min-width: 30px; }
.menu-item-price { font-family: var(--serif); font-size: 24px; color: var(--gold-light); white-space: nowrap; }
.menu-cta { text-align: center; margin-top: 52px; }

/* ---------- Menu teaser ---------- */
.menu-teaser { background: var(--bg); position: relative; z-index: 2; }
.menu-teaser-inner { max-width: 820px; text-align: center; }
.menu-teaser-text { color: var(--cream-dim); font-weight: 300; max-width: 640px; margin: 0 auto 34px; }
.menu-teaser-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.menu-teaser-tags span {
  border: 1px solid var(--line); color: var(--gold-light); background: rgba(255,255,255,.35);
  padding: 9px 20px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 30px;
}

/* ---------- Gallery (album slider) ---------- */
.gallery { background: var(--bg-2); position: relative; z-index: 2; }
.album { position: relative; margin-top: 46px; display: flex; align-items: center; gap: 14px; }
.album-viewport { overflow: hidden; flex: 1; border-radius: 6px; }
.album-track { display: flex; transition: transform .65s cubic-bezier(.22,1,.36,1); }
.album-slide { flex: 0 0 100%; position: relative; }
.album-slide img { width: 100%; height: clamp(320px, 55vw, 560px); object-fit: cover; }
.album-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 26px 18px;
  background: linear-gradient(transparent, rgba(20,24,16,.72));
  color: #F2F5E9; font-family: var(--serif); font-size: 20px; font-style: italic; letter-spacing: .5px;
}
.album-arrow {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,.5); color: var(--gold-light);
  font-size: 20px; cursor: pointer; transition: all .3s; z-index: 3;
}
.album-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.album-dots { position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; }
.album-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(42,46,32,.25);
  border: none; cursor: pointer; transition: all .3s; padding: 0;
}
.album-dot.active { background: var(--gold); transform: scale(1.35); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg); }
.testi-slider { position: relative; max-width: 760px; margin: 40px auto 0; min-height: 240px; }
.testi-card {
  position: absolute; inset: 0; opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease; text-align: center; padding: 20px;
  pointer-events: none;
}
.testi-card.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.testi-stars { color: var(--gold); font-size: 18px; letter-spacing: 6px; margin-bottom: 22px; }
.testi-quote {
  font-family: var(--serif); font-size: 25px; font-style: italic; line-height: 1.5; color: var(--cream);
}
.testi-author { margin-top: 26px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(35,31,32,.2);
  border: none; cursor: pointer; transition: all .3s; padding: 0;
}
.testi-dot.active { background: var(--gold); transform: scale(1.35); }

/* ---------- Visit ---------- */
.visit { background: var(--bg-2); }
.visit-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; align-items: start; }
.visit-block { margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid rgba(35,31,32,.10); }
.visit-block h4 {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.visit-block p { color: var(--cream-dim); font-weight: 300; }
.visit-block a:hover { color: var(--gold-light); }
.visit-social { display: flex; gap: 24px; }
.visit-social a {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-dim);
  border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: all .3s;
}
.visit-social a:hover { color: var(--gold-light); border-color: var(--gold); }
.visit-map { height: 100%; min-height: 460px; filter: grayscale(20%); }
.visit-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact-inner { max-width: 720px; }
.contact-form { margin-top: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row:nth-of-type(2) { grid-template-columns: 1fr 1fr 1fr; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: var(--bg-3); border: 1px solid rgba(35,31,32,.15);
  color: var(--cream); padding: 16px 18px; font-family: var(--sans); font-size: 15px;
  transition: border-color .3s; -webkit-appearance: none; border-radius: 0;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.contact-form textarea { margin-bottom: 16px; resize: vertical; }
.form-note { text-align: center; margin-top: 18px; font-size: 14px; color: var(--cream-dim); }
.form-note a { color: var(--gold-light); }

/* ---------- Footer ---------- */
.footer { background: #231F20; border-top: 1px solid var(--line); padding-top: 70px; }
.footer .footer-logo { color: #FAFBF7; }
.footer .footer-brand p, .footer .footer-col a, .footer .footer-col span { color: rgba(250,251,247,.72); }
.footer .footer-col h5 { color: #ABCA99; }
.footer .footer-col a:hover { color: #C8DCBD; }
.footer .powered { color: #ABCA99; }
.footer .powered:hover { color: #C8DCBD; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 56px; }
.footer-logo {
  font-family: var(--serif); font-size: 30px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--cream); display: block; margin-bottom: 14px;
}
.footer-brand p { color: var(--cream-dim); font-weight: 300; max-width: 320px; }
.footer-col h5 {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col a, .footer-col span { display: block; color: var(--cream-dim); font-size: 14px; margin-bottom: 10px; font-weight: 300; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(250,251,247,.12); padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  max-width: 1200px; margin: 0 auto; font-size: 13px; color: rgba(243,237,227,.55);
}
.powered { color: var(--gold); }
.powered:hover { color: var(--gold-light); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .story-grid, .visit-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-img-accent { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links {
    position: fixed; inset: 0; background: rgba(227,234,211,.98); flex-direction: column;
    justify-content: center; gap: 30px; transform: translateX(100%); transition: transform .45s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 17px; }
  .nav-burger { display: flex; z-index: 1001; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .form-row, .form-row:nth-of-type(2) { grid-template-columns: 1fr; }
  .story-img-main img { height: 420px; }
  .story-img-accent { width: 170px; height: 170px; bottom: -30px; }
  .album { gap: 8px; }
  .album-arrow { width: 40px; height: 40px; font-size: 16px; position: absolute; top: 50%; transform: translateY(-50%); }
  .album-prev { left: 8px; } .album-next { right: 8px; }
  .album-slide figcaption { font-size: 16px; padding: 30px 18px 14px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Social Feeds Section ---------- */
.social-feeds { background: var(--bg); }
.social-feeds-sub {
  text-align: center; color: var(--cream-dim); font-size: 16px;
  margin: -16px auto 40px; max-width: 480px;
}
.social-tabs {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 36px;
}
.social-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 28px; border-radius: 50px;
  border: 1.5px solid var(--line); background: transparent;
  color: var(--cream-dim); font-family: var(--sans); font-size: 15px;
  font-weight: 500; cursor: pointer;
  transition: all .22s ease;
}
.social-tab svg { transition: stroke .22s ease; }
.social-tab:hover { border-color: var(--gold); color: var(--gold); }
.social-tab.active {
  background: var(--gold); border-color: var(--gold);
  color: #231F20; font-weight: 700;
}
.social-feed-panel { display: none; }
.social-feed-panel.active { display: block; }
.social-profile-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card-bg, rgba(255,255,255,.04));
  border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 24px; margin-bottom: 24px;
}
.social-profile-info {
  display: flex; align-items: center; gap: 16px;
}
.social-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.social-avatar-fb {
  background: #1877F2;
}
.social-profile-info strong {
  display: block; color: var(--cream); font-size: 16px;
  font-family: var(--serif); font-weight: 600;
}
.social-profile-info span {
  color: var(--cream-dim); font-size: 13px; font-weight: 300;
}
.social-follow-btn {
  flex-shrink: 0; padding: 10px 24px; font-size: 14px;
}
/* Elfsight placeholder */
.elfsight-placeholder {
  border: 1.5px dashed var(--line); border-radius: 14px;
  padding: 40px 24px; text-align: center;
}
.elfsight-placeholder-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; max-width: 360px; margin: 0 auto 24px;
}
.ep-item {
  aspect-ratio: 1; border-radius: 8px;
  background: var(--line); opacity: .5;
}
.elfsight-placeholder p {
  color: var(--cream-dim); font-size: 14px; font-weight: 300;
}
.elfsight-placeholder a { color: var(--gold); text-decoration: underline; }
/* Facebook iframe wrap */
.fb-page-wrap {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  max-width: 500px; margin: 0 auto;
}
@media (max-width: 600px) {
  .social-profile-bar { flex-direction: column; gap: 16px; text-align: center; }
  .social-profile-info { flex-direction: column; }
  .social-tab { padding: 9px 18px; font-size: 14px; }
}

/* ---------- Delivery Buttons ---------- */
.delivery-section {
  background: var(--bg);
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}
.delivery-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.delivery-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin: 0;
}
.delivery-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.delivery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  opacity: 0.93;
}
.delivery-btn:active { transform: scale(0.97); }
/* efood — red */
.delivery-btn-efood {
  background: #E30613;
  color: #fff;
}
/* Wolt — blue */
.delivery-btn-wolt {
  background: #009DE0;
  color: #fff;
}
.delivery-logo {
  width: 52px;
  height: 22px;
  flex-shrink: 0;
}
.delivery-btn span {
  font-size: 17px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .delivery-btns { flex-direction: column; align-items: center; }
  .delivery-btn { width: 260px; justify-content: center; }
}

.delivery-wordmark { font-size: 18px; font-weight: 700; letter-spacing: 0.3px; }
.delivery-wordmark strong { font-weight: 900; }

/* ---------- Menu Delivery Buttons ---------- */
.menu-delivery {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.menu-delivery-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin: 0;
}
.menu-delivery-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
