/* ──────────────────────────────────────────
   Takeout Spot — Grand Opening Invitation
   Luxury mobile-first, brand-aligned
   ────────────────────────────────────────── */

:root {
  /* Brand */
  --green-900: #06251c;
  --green-800: #0d3b2e;
  --green-700: #134a3a;
  --green-600: #1c6149;
  --lime:      #c5f73d;
  --lime-dim:  #9bd329;

  /* Neutral */
  --cream:     #f6f2e9;
  --ivory:     #efe9da;
  --paper:     #fbf8ef;
  --ink:       #0a1410;
  --gold:      #d8b96b;
  --gold-soft: #b69757;

  /* Type */
  --f-display: "Cinzel", "Cormorant Garamond", serif;
  --f-script:  "Cormorant Garamond", serif;
  --f-ethio:   "Noto Serif Ethiopic", serif;
  --f-sans:    "Inter", system-ui, sans-serif;

  /* Misc */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --shadow-soft: 0 22px 60px -20px rgba(6, 37, 28, .45);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { background: var(--green-900); color: var(--cream); }
body {
  font-family: var(--f-sans);
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}

:lang(am), .am { font-family: var(--f-ethio); }

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

/* ───────── floating particles ───────── */
.particles {
  position: fixed; inset: 0; pointer-events: none; z-index: 2; overflow: hidden;
}
.particles span {
  position: absolute;
  width: 6px; height: 6px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
  border-radius: 50%;
  opacity: .35;
  animation: float 14s linear infinite;
}
.particles span:nth-child(1)  { left: 6%;  top: 80%; animation-delay: 0s;   transform: scale(.5); }
.particles span:nth-child(2)  { left: 18%; top: 110%; animation-delay: 1s;  transform: scale(1); }
.particles span:nth-child(3)  { left: 32%; top: 90%; animation-delay: 3s;   transform: scale(.7); }
.particles span:nth-child(4)  { left: 48%; top: 130%; animation-delay: 4s;  transform: scale(.4); }
.particles span:nth-child(5)  { left: 62%; top: 105%; animation-delay: 6s;  transform: scale(.9); }
.particles span:nth-child(6)  { left: 75%; top: 120%; animation-delay: 2s;  transform: scale(.6); }
.particles span:nth-child(7)  { left: 86%; top: 95%; animation-delay: 5s;   transform: scale(.7); }
.particles span:nth-child(8)  { left: 95%; top: 115%; animation-delay: 7s;  transform: scale(.5); }
.particles span:nth-child(9)  { left: 10%; top: 60%; animation-delay: 8s;   transform: scale(.3); }
.particles span:nth-child(10) { left: 40%; top: 50%; animation-delay: 9s;   transform: scale(.6); }
.particles span:nth-child(11) { left: 70%; top: 70%; animation-delay: 10s;  transform: scale(.4); }
.particles span:nth-child(12) { left: 88%; top: 55%; animation-delay: 11s;  transform: scale(.5); }
@keyframes float {
  0%   { transform: translateY(0) scale(var(--s,1)); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .4; }
  100% { transform: translateY(-120vh) scale(var(--s,1)); opacity: 0; }
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: max(16px, env(safe-area-inset-top)) 22px 80px;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(197, 247, 61, 0.12) 0%, transparent 60%),
    radial-gradient(80% 50% at 80% 100%, rgba(216, 185, 107, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 60%, #04190f 100%);
  overflow: hidden;
  z-index: 1;
}
.hero::before {
  /* faint geometric frame */
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(216, 185, 107, .22);
  border-radius: var(--r-lg);
  pointer-events: none;
}
.hero__noise {
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.topbar {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6px 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.topbar__brand { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); font-weight: 500; }
.topbar__dot   { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: pulse 2s ease-in-out infinite; }
.topbar__chip  { font-family: var(--f-script); font-style: italic; text-transform: none; letter-spacing: .04em; color: var(--gold); font-size: 14px; }
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.35 } }

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding-top: 56px;
}

/* ──── Hero brandmark (restaurant identity) ──── */
.brandmark {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeUp .9s .1s ease forwards;
}
.brandmark__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.brandmark__core {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  border: 1px solid rgba(216, 185, 107, .35);
  border-radius: 999px;
  background:
    radial-gradient(120% 200% at 50% 0%, rgba(197, 247, 61, .08) 0%, transparent 70%),
    rgba(6, 25, 18, .55);
  backdrop-filter: blur(6px);
  box-shadow:
    0 12px 30px -16px rgba(197, 247, 61, .35),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}
.brandmark__core::before,
.brandmark__core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
  opacity: .7;
}
.brandmark__core::before { left: -2px; }
.brandmark__core::after  { right: -2px; }
.brandmark__icon {
  width: 30px; height: 30px;
  color: var(--lime);
  filter: drop-shadow(0 0 10px rgba(197, 247, 61, .45));
  flex-shrink: 0;
}
.brandmark__type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.brandmark__take {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .32em;
  color: var(--lime);
  text-shadow: 0 0 18px rgba(197, 247, 61, .25);
  padding-right: .32em; /* preserve trailing tracking */
}
.brandmark__spot {
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
  margin-top: 0px;
  margin-left: 28px;
  background: linear-gradient(180deg, #f0d089 0%, #b8985a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brandmark__tagline {
  font-family: var(--f-script);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .9s .25s ease forwards;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-script);
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-size: 14px;
  opacity: 0;
  animation: fadeUp .9s .4s ease forwards;
}
.hero__eyebrow .line {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__title {
  position: relative;
  margin: 18px 0 6px;
  font-family: var(--f-display);
  line-height: 0.95;
  letter-spacing: .04em;
  opacity: 0;
  animation: fadeUp 1s .3s ease forwards;
}
.hero__title-grand {
  display: block;
  font-weight: 900;
  font-size: clamp(64px, 22vw, 130px);
  background: linear-gradient(180deg, #ffffff 0%, #e9e3cf 50%, #b8a87a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 30px rgba(216, 185, 107, .15);
}
.hero__title-opening {
  display: block;
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(44px, 14vw, 90px);
  color: var(--gold);
  margin-top: -6px;
  position: relative;
}
.hero__title-opening::before,
.hero__title-opening::after {
  content: "";
  position: absolute; top: 50%;
  width: 18%; max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}
.hero__title-opening::before { right: 102%; }
.hero__title-opening::after  { left: 102%; background: linear-gradient(90deg, var(--gold-soft), transparent); }

.hero__subtitle {
  max-width: 28ch;
  font-family: var(--f-script);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: rgba(246, 242, 233, .78);
  margin: 14px auto 28px;
  opacity: 0;
  animation: fadeUp 1s .55s ease forwards;
}

.hero__date {
  display: flex; align-items: stretch;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(216, 185, 107, .35);
  border-radius: var(--r-md);
  background: rgba(6, 25, 18, .45);
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s .75s ease forwards;
}
.hero__date-block {
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
}
.hero__date-block--right { text-align: right; align-items: flex-end; }
.hero__date-label {
  font-family: var(--f-ethio);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
}
.hero__date-block--right .hero__date-label {
  font-family: var(--f-sans);
  letter-spacing: .15em;
}
.hero__date-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--cream);
  line-height: 1.1;
}
.hero__date-num--small { font-size: 22px; }
.hero__date-num span { color: var(--gold); margin: 0 2px; font-weight: 500; }
.hero__date-year {
  font-size: 10px;
  letter-spacing: .15em;
  color: rgba(246, 242, 233, .6);
  text-transform: uppercase;
}
.hero__date-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
}

/* ───── countdown ───── */
.countdown {
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
  width: 100%;
  max-width: 380px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 1s .95s ease forwards;
}
.countdown__cell {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 6px 10px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(28, 97, 73, .35) 0%, rgba(6, 37, 28, .8) 100%);
  border: 1px solid rgba(197, 247, 61, .14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  position: relative;
}
.countdown__cell::after {
  content: "";
  position: absolute; left: 8px; right: 8px; top: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 185, 107, .35), transparent);
}
.countdown__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(26px, 8.5vw, 34px);
  color: var(--cream);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transition: transform .25s ease;
}
.countdown__num.tick { animation: tick .35s ease; }
@keyframes tick {
  0%   { transform: translateY(-6px); opacity: 0; filter: blur(2px); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}
.countdown__lbl {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246, 242, 233, .55);
}
.countdown__sep {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  opacity: .55;
  margin-top: -10px;
  animation: blink 1.2s steps(2,end) infinite;
}
@keyframes blink { 50% { opacity: .15; } }

.hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--lime);
  color: var(--green-900);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(197, 247, 61, .55), inset 0 1px 0 rgba(255,255,255,.5);
  transition: transform .25s ease, box-shadow .25s ease;
  opacity: 0;
  animation: fadeUp 1s 1.1s ease forwards;
}
.hero__cta:hover, .hero__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -14px rgba(197, 247, 61, .7);
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  color: rgba(246, 242, 233, .5);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.4s ease forwards;
}
.hero__scroll span {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: .6; }
  50%      { transform: scaleY(.3); transform-origin: top; opacity: 1; }
}

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

/* ─────────── LETTER ─────────── */
.letter {
  position: relative;
  padding: 80px 22px;
  background:
    linear-gradient(180deg, #04190f 0%, var(--green-800) 50%, #04190f 100%);
}
.letter__frame {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 28px 36px;
  border: 1px solid rgba(216, 185, 107, .28);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(197, 247, 61, .06) 0%, transparent 70%),
    rgba(6, 37, 28, .55);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.letter__frame::before,
.letter__frame::after {
  content: "";
  position: absolute;
  width: 38px; height: 38px;
  border: 1px solid var(--gold-soft);
}
.letter__frame::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.letter__frame::after  { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.letter__sparkle {
  display: inline-block;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(216, 185, 107, .5);
}
.letter__heading {
  font-family: var(--f-ethio);
  font-weight: 700;
  font-size: clamp(28px, 8vw, 40px);
  color: var(--lime);
  margin-bottom: 22px;
  letter-spacing: .01em;
}
.letter__body {
  font-family: var(--f-ethio);
  font-weight: 400;
  font-size: clamp(15px, 4vw, 17px);
  line-height: 1.95;
  color: rgba(246, 242, 233, .92);
  text-align: justify;
  text-justify: inter-character;
}
.letter__body strong { color: var(--lime); font-weight: 700; }
.letter__body em     { color: var(--gold); font-style: normal; font-weight: 700; }

.letter__sign {
  margin-top: 22px;
  font-family: var(--f-script);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: .04em;
}

/* ─────────── SECTION HEADERS ─────────── */
.section__eyebrow {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--gold);
  letter-spacing: .08em;
  font-size: 15px;
  text-align: center;
  margin-bottom: 6px;
}
.section__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 9vw, 44px);
  text-align: center;
  color: var(--cream);
  margin-bottom: 36px;
  letter-spacing: .02em;
}
.section__title em {
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 500;
  color: var(--lime);
  display: block;
  margin-top: 2px;
}

/* ─────────── SCHEDULE ─────────── */
.schedule {
  padding: 80px 22px;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(216, 185, 107, .06) 0%, transparent 60%),
    var(--green-900);
}
.schedule__grid {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.day {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: var(--r-lg);
  background:
    linear-gradient(160deg, rgba(28, 97, 73, .45) 0%, rgba(6, 37, 28, .9) 100%);
  border: 1px solid rgba(216, 185, 107, .22);
  overflow: hidden;
  isolation: isolate;
}
.day::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 100% 0%, rgba(197, 247, 61, .12) 0%, transparent 60%);
  z-index: -1;
}
.day--two::before {
  background: radial-gradient(120% 60% at 0% 100%, rgba(216, 185, 107, .14) 0%, transparent 60%);
}
.day__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.day__pill {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green-900);
  background: var(--lime);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.day__sparkle {
  color: var(--gold);
  font-size: 18px;
  text-shadow: 0 0 12px rgba(216, 185, 107, .4);
  opacity: .8;
}
.day__day {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--cream);
  letter-spacing: .03em;
  line-height: 1.05;
}
.day__day-en {
  background: linear-gradient(180deg, #ffffff 0%, #e9e3cf 60%, #b8a87a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.day__day-divider {
  color: var(--gold);
  font-family: var(--f-script);
  font-weight: 400;
  font-size: 26px;
  opacity: .7;
}
.day__day-am {
  font-family: var(--f-ethio);
  font-weight: 700;
  font-size: 28px;
  color: var(--lime);
  letter-spacing: .01em;
  text-shadow: 0 0 18px rgba(197, 247, 61, .15);
}
/* ── Bilingual date strip (parallel UI/UX) ── */
.day__dates {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.day__date {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(246, 242, 233, .6);
}
.day__date--am {
  font-family: var(--f-ethio);
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: none;
  color: var(--gold);
}
.day__date-sep {
  width: 14px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

/* ── Bilingual time block (Western / Ethiopian local) ── */
.day__times {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin: 20px 0 0;
  padding: 16px 14px;
  border-radius: var(--r-md);
  background: rgba(4, 25, 15, .6);
  border: 1px dashed rgba(216, 185, 107, .35);
}
.day__time-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
.day__time-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--lime);
  line-height: 1;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.day__time-suffix {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--cream);
  opacity: .65;
}
.day__time-tag {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246, 242, 233, .55);
}
.day__time-tag--am {
  font-family: var(--f-ethio);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--gold);
}
.day__time-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
}
.day__plan {
  list-style: none;
}
.day__plan li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(246, 242, 233, .85);
  border-bottom: 1px dashed rgba(216, 185, 107, .12);
}
.day__plan li:last-child { border-bottom: none; }
.day__plan li span {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .08em;
  min-width: 52px;
}

/* ─────────── MENU ─────────── */
.menu {
  padding: 80px 0;
  background: #04190f;
  position: relative;
}
.menu .section__eyebrow,
.menu .section__title { padding: 0 22px; }

.menu__scroller {
  display: flex;
  gap: 16px;
  padding: 6px 22px 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu__scroller::-webkit-scrollbar { display: none; }

.dish {
  position: relative;
  flex: 0 0 78%;
  max-width: 320px;
  aspect-ratio: 9/14;
  scroll-snap-align: center;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216, 185, 107, .25);
  transform: translateY(0);
  transition: transform .4s ease, box-shadow .4s ease;
  cursor: zoom-in;
}
.dish::after {
  content: "";
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(6, 25, 18, .65);
  border: 1px solid rgba(216, 185, 107, .4);
  backdrop-filter: blur(4px);
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5f73d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s ease, transform .3s ease;
}
.dish:hover::after,
.dish:focus-visible::after { opacity: 1; transform: scale(1); }
.dish img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.dish:hover img { transform: scale(1.06); }
.dish__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(4, 25, 15, .55) 70%, rgba(4, 25, 15, .95) 100%);
}
.dish__overlay--soft {
  background:
    linear-gradient(180deg, rgba(4, 25, 15, .25) 0%, rgba(4, 25, 15, .55) 60%, rgba(4, 25, 15, .9) 100%);
}
.dish__info {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  color: var(--cream);
  z-index: 2;
}
.dish__info--center {
  text-align: center;
}
.dish__no {
  font-family: var(--f-script);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.dish__info h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--lime);
  letter-spacing: .03em;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.dish__info p {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(246, 242, 233, .8);
  font-family: var(--f-script);
  font-style: italic;
}

.menu__dots {
  display: flex; justify-content: center; gap: 6px; padding-top: 6px;
}
.menu__dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(216, 185, 107, .25);
  transition: all .3s ease;
}
.menu__dots span.is-active {
  width: 18px;
  border-radius: 6px;
  background: var(--lime);
}

/* ─────────── LOCATION ─────────── */
.location {
  padding: 80px 22px;
  background:
    linear-gradient(180deg, #04190f 0%, var(--green-800) 100%);
}
.location__eyebrow {
  margin-bottom: 28px;
  font-size: 16px;
}
.location__wrap {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* ── Beautiful framed map ── */
.location__map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 10px;
  border-radius: calc(var(--r-lg) + 8px);
  background:
    linear-gradient(135deg, rgba(216, 185, 107, .55) 0%, rgba(216, 185, 107, .1) 35%, rgba(197, 247, 61, .35) 65%, rgba(216, 185, 107, .55) 100%);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(216, 185, 107, .25);
  isolation: isolate;
}
.location__map::before {
  /* corner accents — luxury frame */
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: var(--r-lg);
  pointer-events: none;
  background:
    linear-gradient(to right, var(--gold) 0, var(--gold) 24px, transparent 24px) top left / 100% 1px no-repeat,
    linear-gradient(to right, transparent calc(100% - 24px), var(--gold) calc(100% - 24px)) top left / 100% 1px no-repeat,
    linear-gradient(to right, var(--gold) 0, var(--gold) 24px, transparent 24px) bottom left / 100% 1px no-repeat,
    linear-gradient(to right, transparent calc(100% - 24px), var(--gold) calc(100% - 24px)) bottom left / 100% 1px no-repeat,
    linear-gradient(to bottom, var(--gold) 0, var(--gold) 24px, transparent 24px) top left / 1px 100% no-repeat,
    linear-gradient(to bottom, var(--gold) 0, var(--gold) 24px, transparent 24px) top right / 1px 100% no-repeat,
    linear-gradient(to bottom, transparent calc(100% - 24px), var(--gold) calc(100% - 24px)) bottom left / 1px 100% no-repeat,
    linear-gradient(to bottom, transparent calc(100% - 24px), var(--gold) calc(100% - 24px)) bottom right / 1px 100% no-repeat;
  z-index: 3;
}
.location__map iframe {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 0;
  border-radius: var(--r-lg);
  filter: saturate(.92) contrast(1.02);
}

/* ── Get Directions CTA ── */
.location__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-900);
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 16px 34px -12px rgba(197, 247, 61, .6),
    inset 0 1px 0 rgba(255, 255, 255, .5);
  transition: transform .25s ease, box-shadow .25s ease, gap .25s ease;
}
.location__cta:hover,
.location__cta:focus-visible {
  transform: translateY(-2px);
  gap: 16px;
  box-shadow:
    0 22px 44px -14px rgba(197, 247, 61, .75),
    inset 0 1px 0 rgba(255, 255, 255, .55);
}
.location__cta svg:last-child { transition: transform .25s ease; }
.location__cta:hover svg:last-child { transform: translateX(3px); }
.location__card {
  padding: 24px;
  border-radius: var(--r-lg);
  background: rgba(6, 37, 28, .65);
  border: 1px solid rgba(216, 185, 107, .25);
  backdrop-filter: blur(6px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  box-shadow: var(--shadow-soft);
}
.location__pin {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-900);
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -6px rgba(197, 247, 61, .6);
}
.location__name {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--cream);
  font-size: 18px;
  letter-spacing: .02em;
}
.location__addr {
  font-family: var(--f-ethio);
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246, 242, 233, .85);
}
.location__addr small {
  font-family: var(--f-script);
  font-style: italic;
  color: rgba(246, 242, 233, .55);
  font-size: 13px;
}
.location__btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.location__btn:hover {
  background: var(--gold);
  color: var(--green-900);
}

/* ─────────── RSVP ─────────── */
.rsvp {
  padding: 90px 22px 70px;
  background:
    radial-gradient(120% 50% at 50% 0%, rgba(197, 247, 61, .1) 0%, transparent 65%),
    var(--green-900);
}
.rsvp__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.rsvp__eyebrow { color: var(--lime); }
.rsvp__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 11vw, 54px);
  color: var(--cream);
  letter-spacing: .03em;
  line-height: 1.05;
  margin: 8px 0 16px;
}
.rsvp__body {
  font-family: var(--f-script);
  font-style: italic;
  font-size: 16px;
  color: rgba(246, 242, 233, .8);
  margin-bottom: 30px;
  max-width: 32ch;
  margin-inline: auto;
}
/* Yes / No RSVP choice */
.rsvp__choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 6px 0 22px;
}
.choice {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  padding: 22px 14px 20px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(216, 185, 107, .25);
  background: linear-gradient(160deg, rgba(28, 97, 73, .35) 0%, rgba(6, 37, 28, .85) 100%);
  color: var(--cream);
  font-family: var(--f-sans);
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  isolation: isolate;
}
.choice::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(80% 60% at 50% 0%, rgba(197, 247, 61, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
}
.choice:hover, .choice:focus-visible {
  transform: translateY(-3px);
  border-color: var(--lime);
  box-shadow: 0 18px 40px -16px rgba(197, 247, 61, .35);
}
.choice:hover::before, .choice:focus-visible::before { opacity: 1; }
.choice__emoji {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  transition: transform .3s ease;
}
.choice--yes .choice__emoji {
  background: var(--lime);
  color: var(--green-900);
  box-shadow: 0 10px 22px -8px rgba(197, 247, 61, .6);
}
.choice--no .choice__emoji {
  background: rgba(246, 242, 233, .08);
  color: var(--cream);
  border: 1px solid rgba(246, 242, 233, .25);
}
.choice:hover .choice__emoji { transform: scale(1.08) rotate(-4deg); }
.choice__label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.choice--yes .choice__label { color: var(--lime); }
.choice__sub {
  font-family: var(--f-ethio);
  font-size: 13px;
  color: rgba(246, 242, 233, .65);
  letter-spacing: .01em;
}
.choice.is-picked {
  border-color: var(--lime);
  box-shadow: 0 0 0 2px rgba(197, 247, 61, .4) inset;
}
.share {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: none;
  color: rgba(246, 242, 233, .7);
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px;
  transition: color .25s ease;
}
.share:hover { color: var(--lime); }

/* ─────────── FOOTER ─────────── */
.foot {
  padding: 36px 22px max(40px, env(safe-area-inset-bottom));
  text-align: center;
  background: #04190f;
  border-top: 1px solid rgba(216, 185, 107, .12);
}
.foot__small {
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(246, 242, 233, .4);
  text-transform: uppercase;
}

/* ─────────── LIGHTBOX ─────────── */
.lightbox {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  padding: max(20px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom));
  background: rgba(2, 8, 5, .94);
  backdrop-filter: blur(10px);
  z-index: 120;
  opacity: 0;
  transition: opacity .35s ease;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox__stage {
  position: relative;
  max-width: min(640px, 92vw);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
}
.lightbox__img {
  max-width: 100%;
  max-height: 76vh;
  width: auto; height: auto;
  border-radius: var(--r-lg);
  border: 1px solid rgba(216, 185, 107, .3);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .9);
  animation: lbIn .45s cubic-bezier(.2, 1.2, .4, 1) both;
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__caption {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center;
  color: var(--cream);
}
.lightbox__count {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .14em;
}
.lightbox__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--lime);
  letter-spacing: .03em;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(6, 25, 18, .75);
  border: 1px solid rgba(216, 185, 107, .35);
  color: var(--cream);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform .25s ease, border-color .25s ease, color .25s ease;
  z-index: 2;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: scale(1.06);
}
.lightbox__close {
  top: max(18px, env(safe-area-inset-top));
  right: 18px;
}
.lightbox__nav--prev { left: 12px;  top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.06); }

@media (min-width: 720px) {
  .lightbox__nav--prev { left: 24px; }
  .lightbox__nav--next { right: 24px; }
}

/* ─────────── CELEBRATE OVERLAY (fireworks) ─────────── */
.celebrate, .sad {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 100;
  padding: 24px;
  opacity: 0;
  transition: opacity .4s ease;
}
.celebrate.is-open, .sad.is-open {
  display: flex;
  opacity: 1;
}
.celebrate {
  background: radial-gradient(120% 80% at 50% 50%, rgba(6, 37, 28, .85) 0%, rgba(4, 12, 8, .98) 100%);
  backdrop-filter: blur(4px);
}
.celebrate__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.celebrate__content {
  position: relative;
  max-width: 420px;
  padding: 36px 26px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(216, 185, 107, .3);
  background: rgba(6, 37, 28, .55);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  animation: popIn .7s cubic-bezier(.2, 1.4, .4, 1) both;
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(.85) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.celebrate__eyebrow {
  font-family: var(--f-ethio);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.celebrate__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(34px, 11vw, 52px);
  color: var(--cream);
  background: linear-gradient(180deg, #ffffff, #d8b96b);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
  letter-spacing: .03em;
}
.celebrate__sub {
  font-family: var(--f-ethio);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(246, 242, 233, .85);
  margin-bottom: 22px;
}
.celebrate__close, .sad__close {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-900);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform .25s ease;
}
.celebrate__close:hover, .sad__close:hover { transform: translateY(-2px); }

/* ─────────── SAD OVERLAY ─────────── */
.sad {
  background: linear-gradient(180deg, #0c1a26 0%, #04101a 100%);
}
.sad__rain {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(124, 211, 255, .05) 0%, transparent 60%);
}
.sad__rain::before,
.sad__rain::after {
  content: "";
  position: absolute;
  top: -50%; left: 0; right: 0; bottom: -50%;
  background-image:
    radial-gradient(2px 12px at 10% 20%, rgba(124, 211, 255, .35), transparent 60%),
    radial-gradient(2px 14px at 28% 50%, rgba(124, 211, 255, .25), transparent 60%),
    radial-gradient(2px 10px at 55% 30%, rgba(124, 211, 255, .35), transparent 60%),
    radial-gradient(2px 16px at 72% 70%, rgba(124, 211, 255, .22), transparent 60%),
    radial-gradient(2px 12px at 88% 40%, rgba(124, 211, 255, .3), transparent 60%);
  background-size: 100% 200px;
  animation: rain 2.4s linear infinite;
}
.sad__rain::after {
  animation-duration: 3.4s;
  animation-delay: -1.2s;
  opacity: .55;
}
@keyframes rain {
  from { transform: translateY(-200px); }
  to   { transform: translateY(200px); }
}
.sad__content {
  position: relative;
  max-width: 420px;
  padding: 36px 26px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(124, 211, 255, .2);
  background: rgba(12, 26, 38, .65);
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 60px -20px rgba(12, 26, 38, .8);
  animation: popIn .7s cubic-bezier(.2, 1.4, .4, 1) both;
}
.sad__face {
  color: rgba(246, 242, 233, .85);
  margin-bottom: 18px;
  animation: bob 3.6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.sad__eyebrow {
  font-family: var(--f-ethio);
  color: #7cd3ff;
  font-size: 14px;
  letter-spacing: .14em;
  margin-bottom: 6px;
}
.sad__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 9vw, 40px);
  color: var(--cream);
  letter-spacing: .03em;
  margin-bottom: 8px;
}
.sad__sub {
  font-family: var(--f-ethio);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(246, 242, 233, .78);
  margin-bottom: 22px;
}
.sad__close {
  background: rgba(246, 242, 233, .08);
  color: var(--cream);
  border: 1px solid rgba(246, 242, 233, .3);
}

/* ─────────── Tablet/desktop ─────────── */
@media (min-width: 720px) {
  .schedule__grid { grid-template-columns: 1fr 1fr; }
  .dish           { flex: 0 0 360px; }
  .hero__subtitle { font-size: 18px; }
}

@media (min-width: 1100px) {
  .hero__title-grand   { font-size: 150px; }
  .hero__title-opening { font-size: 100px; }
}

/* ─────────── reveal-on-scroll ─────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
