/* ============================================
   Restoran Green View — Site Stylesheet
   Palette and motifs sourced from the official
   brand identity deck (crown + shrimp emblem,
   seafood line icons, 3 named patterns).
   ============================================ */

:root {
  --green-dark: #1b463c;
  --green-darker: #12332c;
  --cream: #efe8d9;
  --cream-light: #f7f3e9;
  --coral: #f57627;
  --coral-dark: #c03222;
  --brick-red: #c03222;
  --gold: #aa8e1e;
  --gold-bright: #e5be4a;
  --text: #2a2a24;
  --text-light: #6b6a5f;
  --border: #ddd4bd;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream-light);
  line-height: 1.6;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 0.6em;
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 12px;
  background: url('../images/brand/crown.png') center / contain no-repeat;
  flex-shrink: 0;
}

.bg-dark .eyebrow::before,
.page-header .eyebrow::before,
.site-footer .eyebrow::before {
  background-image: url('../images/brand/crown-gold.png');
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
}
.btn-primary:hover { background: var(--coral-dark); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.btn-outline-dark:hover { background: var(--green-dark); color: #fff; }

.btn-sm { padding: 9px 18px; font-size: 0.75rem; }

/* ---------- Scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-light);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(18,51,44,0.12); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { height: 164px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: none;
  font-weight: 600;
  color: var(--green-dark);
}

.nav-download {
  display: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  align-items: center;
  gap: 6px;
}
.nav-download:hover { color: var(--coral); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--green-dark);
  cursor: pointer;
  padding: 4px 8px;
}

@media (min-width: 900px) {
  .nav-phone { display: inline-block; }
  .nav-download { display: inline-flex; }
}

@media (max-width: 899px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-light);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a.active, .nav-links a:hover { border-bottom-color: var(--border); background: rgba(245,118,39,0.08); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,28,24,0.72) 0%, rgba(10,28,24,0.6) 45%, rgba(10,28,24,0.85) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  height: 640px;
  transform: translate(-50%, -50%);
  background: url('../images/brand/crown.png') center / contain no-repeat;
  opacity: 0.07;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.hero-content .eyebrow { color: var(--gold-bright); justify-content: center; }
.hero-content .eyebrow::before { background-image: url('../images/brand/crown-gold.png'); }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 0.4em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.hero p.lead {
  font-size: 1.15rem;
  color: #f7f3e9;
  margin-bottom: 1.8em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Page header (non-home hero) ---------- */

.page-header {
  position: relative;
  background: var(--green-dark);
  color: #fff;
  padding: 90px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.page-header h1 { color: #fff; margin-bottom: 0.3em; }
.page-header p { color: #d8dcd4; max-width: 560px; margin: 0 auto; position: relative; }
.page-header .eyebrow { justify-content: center; color: var(--gold-bright); position: relative; }
.page-header h1, .page-header > .eyebrow { position: relative; }

/* ---------- Sections ---------- */

section { padding: 72px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.bg-dark {
  background: var(--green-dark);
  color: #f2ede0;
}
.bg-dark h2 { color: #fff; }
.bg-dark .eyebrow { color: var(--gold-bright); }

.bg-cream { background: var(--cream); }

/* ---------- Pattern textures ---------- */

.pattern-divider {
  height: 34px;
  background-image: url('../images/brand/pattern-legacy-of-the-sea.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
}
.pattern-divider.pattern-freshness { background-image: url('../images/brand/pattern-gathered-freshness.png'); }
.pattern-divider.pattern-completeness { background-image: url('../images/brand/pattern-shared-completeness.png'); }

.section-texture {
  position: relative;
  background-image:
    linear-gradient(rgba(18,51,44,0.93), rgba(18,51,44,0.93)),
    url('../images/brand/pattern-shared-completeness.png');
  background-repeat: repeat, repeat;
  background-size: auto, 340px auto;
}

.page-header.section-texture {
  background-image:
    linear-gradient(rgba(27,70,60,0.9), rgba(27,70,60,0.9)),
    url('../images/brand/pattern-gathered-freshness.png');
  background-size: auto, 300px auto;
}

/* ---------- Story / About blocks ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split.reverse > *:first-child { order: 2; }
}

.split img { border-radius: 4px; }

/* ---------- Layered image frame (depth) ---------- */

.img-frame {
  position: relative;
}
.img-frame::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  background-image: url('../images/brand/pattern-legacy-of-the-sea.png');
  background-size: 260px auto;
  background-repeat: repeat;
  background-color: var(--gold-bright);
  border-radius: 4px;
  z-index: 0;
}
.img-frame img {
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 48px -16px rgba(18,51,44,0.45);
}
.img-frame.frame-gold::before { background-color: var(--gold-bright); }
.img-frame.frame-dark::before { background-color: var(--green-dark); }

.badge-circle {
  position: absolute;
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--cream-light);
  box-shadow: 0 10px 24px rgba(18,51,44,0.35);
  padding: 12px;
  bottom: -20px;
  right: -20px;
}
.badge-circle img { width: 100%; height: 100%; object-fit: contain; }

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat-row .stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--coral);
  line-height: 1;
}

.stat-row .stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Highlight cards (Home) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.highlight-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.6s ease;
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 32px -14px rgba(18,51,44,0.3);
  border-color: var(--gold-bright);
}
.highlight-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.highlight-card:hover::after { transform: scaleX(1); }

.highlight-card img { height: 220px; width: 100%; object-fit: cover; }

.highlight-card-body { padding: 22px; position: relative; }

.highlight-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.5em;
}

.icon-chip-inline {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(18,51,44,0.15);
  padding: 8px;
}
.icon-chip-inline img { width: 100%; height: 100%; object-fit: contain; }

.highlight-card h3 { font-size: 1.2rem; margin-bottom: 0; }
.highlight-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Menu Spotlight ---------- */

.menu-spotlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}
.menu-spotlight-chips span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--green-dark);
  background: #fff;
}

.menu-spotlight-download {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.menu-spotlight-download small {
  color: var(--text-light);
  font-size: 0.8rem;
}

.menu-teaser-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: center;
}
.menu-teaser-row .icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  background: var(--cream);
  border-radius: 50%;
  padding: 14px;
}
.menu-teaser-row .icon-wrap img { width: 100%; height: 100%; object-fit: contain; }
.menu-teaser-row h4 { font-size: 1rem; margin-bottom: 0.2em; }
.menu-teaser-row p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; }

/* ---------- Team page ---------- */

.team-year {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.team-year-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.team-year-head .year-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--coral);
  line-height: 1;
}

.team-year-head .year-caption {
  color: var(--text-light);
  font-size: 0.95rem;
}

.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.team-photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 24px -12px rgba(18,51,44,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-photo-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 34px -14px rgba(18,51,44,0.4);
}

/* ---------- Reservation widget ---------- */

.reserve-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 36px;
}
.reserve-trust-row span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 20px;
}

.reserve-embed-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.reserve-embed-wrap::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  background-image: url('../images/brand/pattern-legacy-of-the-sea.png');
  background-size: 260px auto;
  background-repeat: repeat;
  background-color: var(--gold-bright);
  border-radius: 8px;
  z-index: 0;
}
.reserve-embed-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 44px -18px rgba(18,51,44,0.35);
  padding: 8px;
}
.reserve-embed-wrap iframe {
  width: 100%;
  height: 780px;
  border: 0;
  border-radius: 6px;
  display: block;
}
@media (max-width: 640px) {
  .reserve-embed-wrap iframe { height: 620px; }
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 34px -14px rgba(18,51,44,0.4);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,26,22,0.94);
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { visibility: visible; opacity: 1; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-list .icon { font-size: 1.3rem; flex-shrink: 0; }
.info-list h4 { margin-bottom: 0.2em; font-size: 1rem; }
.info-list p { margin-bottom: 0; color: var(--text-light); }

.map-frame-wrap {
  position: relative;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 20px 40px -16px rgba(18,51,44,0.3);
  height: 100%;
  min-height: 400px;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 4px;
  display: block;
}

.social-row { display: flex; gap: 14px; margin-top: 24px; }
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social-row a:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  background: var(--green-darker);
  color: #cfd6c9;
  padding: 56px 0 24px;
  background-image: linear-gradient(rgba(18,38,33,0.96), rgba(18,38,33,0.96)), url('../images/brand/pattern-shared-completeness.png');
  background-repeat: repeat, repeat;
  background-size: auto, 300px auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

.footer-grid img { height: 164px; margin-bottom: 14px; }
.footer-grid h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #8b9385;
  position: relative;
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 18px 0 14px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.6s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px -14px rgba(18,51,44,0.25);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card blockquote {
  margin: 0 0 10px;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text);
}
.review-translation {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin: -4px 0 10px;
}
.review-author {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-dark);
  border-top: 1px solid var(--border);
}

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Social floating buttons ---------- */

.social-fab-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 999;
}

.social-fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.34);
}
.social-fab svg { width: 24px; height: 24px; }

.social-fab.whatsapp { width: 58px; height: 58px; background: #25d366; }
.social-fab.whatsapp svg { width: 30px; height: 30px; }
.social-fab.facebook { background: #1877f2; }
.social-fab.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* ---------- Mobile sticky CTA bar ---------- */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  z-index: 998;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.25);
}
.mobile-cta-bar .row { display: flex; }
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px 12px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.mobile-cta-bar a:last-child { border-right: none; }
.mobile-cta-bar svg { width: 20px; height: 20px; }

@media (max-width: 640px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 64px; }
  .social-fab-stack { bottom: 78px; }
}

/* ---------- Open Now badge ---------- */

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 12px;
  margin-left: 10px;
  vertical-align: middle;
}
.open-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.open-badge.open { background: rgba(37,211,102,0.18); color: #22c55e; }
.open-badge.closed { background: rgba(192,50,34,0.18); color: #e0672e; }
