:root {
  --ivory: #FAF8F3; --navy: #011038; --gold: #fdc002;
  --un-blue: #5B92E5; --ink: #22293A; --muted: #6b7280;
  --serif: "Montserrat", system-ui, sans-serif; --sans: "Poppins", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; }
[hidden] { display: none !important; }
body { background: var(--ivory); color: var(--ink); font-family: var(--sans); line-height: 1.6; }
h1, h2, h3 { font-family: var(--serif); color: var(--navy); line-height: 1.2; }
img { max-width: 100%; display: block; }
a { color: var(--navy); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section-title { font-size: 2rem; margin-bottom: 0.5rem; }
.section-title::after { content: ""; display: block; width: 64px; height: 3px; background: var(--gold); margin-top: 0.75rem; }

/* Navbar */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(250, 248, 243, 0.95); backdrop-filter: blur(6px); border-bottom: 1px solid #e8e4da; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--serif); font-weight: 600;
  font-size: 1.15rem; letter-spacing: -0.01em; color: var(--navy); text-decoration: none; }
.nav-logo b { font-weight: 900; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; padding: 0; }
.nav-links a { text-decoration: none; font-size: 0.95rem; }
.nav-links a[aria-current="page"] { color: var(--gold); font-weight: 600; }
.nav-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; }
.nav-toggle i { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 1px; }

/* Buttons */
.btn { display: inline-block; padding: 0.65rem 1.4rem; border-radius: 4px; text-decoration: none; font-weight: 600; border: 1px solid var(--navy); color: var(--navy); background: transparent; cursor: pointer; font-family: var(--sans); font-size: 1rem; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn-gold:hover { filter: brightness(1.05); }

/* Eyebrow (section label, echoes hero) */
.eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem; }

/* About (homepage) */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: start; }
.about-statement { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; text-transform: uppercase;
  line-height: 1.05; letter-spacing: -0.01em; }
.about-statement .gold { color: var(--gold); }
.about-body p { max-width: 60ch; }
.stats { display: flex; gap: 2.75rem; margin: 2rem 0 0; }
.stats dt { font-family: var(--serif); font-weight: 900; font-size: 2.2rem; color: var(--navy); line-height: 1; }
.stats dd { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* CTA band (homepage bookend) */
.cta-band { text-align: center; color: #fff; padding: 6rem 1.25rem; background:
  linear-gradient(rgba(13, 19, 36, 0.88), rgba(13, 19, 36, 0.88)),
  url("/assets/img/cta-timisoara.jpg") center 62% / cover no-repeat var(--navy); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p { color: #cfd6e4; margin: 1rem 0 2rem; font-size: 1.15rem; }
.cta-band .eyebrow { margin-bottom: 1rem; }
.cta-band .countdown { font-family: var(--serif); color: var(--gold); font-size: 1.3rem; margin-bottom: 2rem; }

/* Partner feature (homepage) */
.partner-feature { display: flex; align-items: center; gap: 1.75rem; margin-top: 2rem; }
.partner-feature img { max-height: 96px; width: auto; }
.partner-feature strong { display: block; font-family: var(--serif); font-size: 1.2rem; color: var(--navy); }
.partner-feature span { color: var(--muted); font-size: 0.9rem; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.card { background: #fff; border: 1px solid #e8e4da; border-radius: 8px; padding: 1.5rem; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(1, 16, 56, 0.08); }
.card h3 { font-size: 1.25rem; }
.card .abbr { color: var(--un-blue); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; }
.card p { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; }

.person-card { text-align: center; }
.person-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 0.75rem; }
.person-card .role { color: var(--gold); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.person-card.tba img { filter: grayscale(1); opacity: 0.4; }

.badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 999px; letter-spacing: 0.05em; }

/* Quotes (homepage testimonials) */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.quote { position: relative; margin: 0; background: #fff; border: 1px solid #e8e4da; border-radius: 8px; padding: 2.4rem 1.5rem 1.5rem; }
.quote::before { content: "\201C"; position: absolute; top: 0.4rem; left: 1.1rem; font-family: var(--serif);
  font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.quote blockquote { margin: 0 0 1rem; font-size: 0.97rem; color: var(--ink); }
.quote figcaption { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* Packages (apply page) */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.package { position: relative; background: #fff; border: 1px solid #e8e4da; border-radius: 8px; padding: 1.5rem; }
.package--featured { border-color: var(--gold); border-width: 2px; }
.package-tag { position: absolute; top: -0.8rem; left: 1.25rem; background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 999px; }
.package .price { font-family: var(--serif); font-weight: 900; font-size: 2rem; color: var(--navy); margin: 0.5rem 0 1rem; }
.package .price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.package ul { margin: 0; padding-left: 1.1rem; color: var(--ink); font-size: 0.93rem; }
.package li { margin-bottom: 0.45rem; }
.package--link { display: block; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
.package--link:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(1, 16, 56, 0.08); }
.package-line { color: var(--muted); font-size: 0.92rem; }

/* Accordion (FAQ) */
.accordion details { background: #fff; border: 1px solid #e8e4da; border-radius: 8px; margin-bottom: 0.75rem; padding: 1rem 1.25rem; }
.accordion summary { font-weight: 600; cursor: pointer; color: var(--navy); }
.accordion details p { margin-top: 0.75rem; color: var(--muted); }

/* Forms */
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.9rem; }
.form-field input, .form-field textarea { width: 100%; padding: 0.6rem 0.8rem; border: 1px solid #d6d1c4; border-radius: 4px; font: inherit; background: #fff; }

/* Footer */
.footer { position: relative; overflow: hidden; background: var(--navy); color: #cfd6e4;
  padding: 4rem 0 2rem; margin-top: 4rem; border-top: 4px solid var(--gold); }
.footer a { color: #cfd6e4; text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer-top { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 2fr; gap: 3rem; }
.footer-tagline { font-family: var(--serif); font-style: normal; font-weight: 700; color: #fff; margin: 0.75rem 0 0.25rem; }
.footer-meta { font-size: 0.9rem; color: #9aa6c8; }
.footer-social { display: flex; gap: 0.9rem; margin-top: 1.25rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; }
.footer-social a:hover { border-color: var(--gold); }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)); gap: 1.6rem; }
.footer-cols h4 { color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-cols a { display: block; font-size: 0.92rem; margin-bottom: 0.55rem; }
.footer-bottom { position: relative; z-index: 1; margin-top: 3rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12); }
.footer .fine { font-size: 0.8rem; color: #8b96ad; margin: 0; }
.footer-ghost { position: absolute; left: 50%; bottom: -0.22em; transform: translateX(-50%);
  font-family: var(--serif); font-weight: 900; font-size: clamp(8rem, 24vw, 20rem); line-height: 1;
  letter-spacing: -0.02em; color: #fff; opacity: 0.035; pointer-events: none; user-select: none; white-space: nowrap; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; gap: 2.25rem; } }

/* Archive theming */
.archive img { filter: grayscale(0.7) sepia(0.15); }

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--ivory); flex-direction: column; padding: 1rem 1.25rem; border-bottom: 1px solid #e8e4da; }
  .nav-links.open { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats { gap: 1.75rem; flex-wrap: wrap; }
  .partner-feature { flex-direction: column; align-items: flex-start; }
}

/* ===== Hero globe (homepage) ===== */
.hero-globe { position: relative; min-height: 100svh; background:
  linear-gradient(180deg, rgba(10,15,30,0.78) 0%, rgba(9,13,26,0.5) 45%, rgba(7,11,22,0.92) 100%),
  url("/assets/img/hero-timisoara.jpg") center 38% / cover no-repeat #070b16;
  color: #fff; display: flex; align-items: center; overflow: hidden; }
.hero-globe canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0.65; }
.hero-stage { position: relative; z-index: 2; padding-top: 3rem; padding-bottom: 3rem; }
.hero-eyebrow { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem; }
.hero-title { font-size: clamp(2.5rem, 7.2vw, 6rem); line-height: 1.02; text-transform: uppercase;
  letter-spacing: -0.01em; font-weight: 900; color: #fff; margin: 0 0 1.5rem; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; transform: translateY(110%);
  animation: line-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero-title .line:nth-child(3) > span { animation-delay: 0.24s; }
.hero-title .line:nth-child(4) > span { animation-delay: 0.36s; }
.hero-title .gold { color: var(--gold); }
@keyframes line-up { to { transform: translateY(0); } }
.hero-sub { color: #aeb9d4; font-size: 1.15rem; max-width: 34ch; margin-bottom: 2rem;
  opacity: 0; animation: fade-in 0.8s ease 0.55s forwards; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap;
  opacity: 0; animation: fade-in 0.8s ease 0.75s forwards; }
.btn-ghost { border-color: rgba(255,255,255,0.45); color: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
@keyframes fade-in { to { opacity: 1; } }
.scroll-cue { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 14px; z-index: 2; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 2px; background: var(--gold); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 55% { transform: translateY(14px); opacity: 0.15; } }

/* Navbar over dark hero */
.nav--overlay { background: transparent; border-bottom-color: transparent; }
.nav--overlay .nav-links a { color: #fff; }
.nav--overlay .nav-links a[aria-current="page"] { color: var(--gold); }
.nav--overlay .nav-logo { color: #fff; }
.nav--overlay .nav-logo img { filter: brightness(0) invert(1); }
.nav--overlay .nav-toggle i { background: #fff; }
.nav--overlay.nav--solid { background: rgba(250, 248, 243, 0.95); border-bottom-color: #e8e4da; }
.nav--overlay.nav--solid .nav-links a { color: var(--ink); }
.nav--overlay.nav--solid .nav-links a[aria-current="page"] { color: var(--gold); }
.nav--overlay.nav--solid .nav-logo { color: var(--navy); }
.nav--overlay.nav--solid .nav-logo img { filter: none; }
.nav--overlay.nav--solid .nav-toggle i { background: var(--navy); }
.nav-logo img { display: block; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--serif);
  font-weight: 600; font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; }
.footer-brand b { font-weight: 900; }
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.9; }
@media (max-width: 720px) {
  .nav--overlay .nav-links { background: #0c1224; }
  .nav--overlay.nav--solid .nav-links { background: var(--ivory); }
  .hero-globe canvas { opacity: 0.5; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3.6rem); }
}

/* Chatbot (fixed-question assistant) */
.chatbot-toggle { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60; width: 56px; height: 56px;
  border-radius: 50%; border: 0; background: var(--navy); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(1, 16, 56, 0.35); }
.chatbot-toggle:hover { background: #24375e; }
.chatbot-panel { position: fixed; right: 1.25rem; bottom: 6rem; z-index: 60; width: min(360px, calc(100vw - 2.5rem));
  max-height: min(520px, calc(100vh - 8rem)); display: flex; flex-direction: column;
  background: #fff; border: 1px solid #e8e4da; border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(1, 16, 56, 0.25); }
.chatbot-head { background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700;
  padding: 0.8rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.chatbot-close { background: none; border: 0; color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0 0.2rem; }
.chatbot-log { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.chatbot-msg { max-width: 85%; padding: 0.6rem 0.85rem; border-radius: 10px; font-size: 0.92rem; line-height: 1.45; }
.chatbot-msg--bot { background: var(--ivory); border: 1px solid #e8e4da; align-self: flex-start; }
.chatbot-msg--user { background: var(--navy); color: #fff; align-self: flex-end; }
.chatbot-chips { padding: 0.75rem 1rem 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; border-top: 1px solid #f0ece2; }
.chatbot-chip { border: 1px solid var(--navy); background: transparent; color: var(--navy); font: inherit;
  font-size: 0.85rem; font-weight: 600; padding: 0.4rem 0.8rem; border-radius: 999px; cursor: pointer; }
.chatbot-chip:hover { background: var(--navy); color: #fff; }
.chatbot-chip--ghost { border-color: #b8860b; color: #b8860b; }
.chatbot-chip--ghost:hover { background: var(--gold); color: var(--navy); }

/* Scroll reveals + card polish */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
.card { position: relative; }
.card:hover { border-color: var(--gold); }
.card .abbr { position: relative; }

/* Placard cards (committees — country-placard edge + ghost logo watermark) */
.card--placard { border-top: 4px solid var(--navy); overflow: hidden; padding-bottom: 2.4rem; }
.card-mark { position: absolute; right: -0.5rem; bottom: -0.8rem; width: 118px; height: 118px;
  object-fit: contain; filter: invert(1); opacity: 0.08; pointer-events: none; }
.committee-emblem { display: flex; align-items: center; justify-content: center; width: 116px; height: 116px;
  border-radius: 50%; background: var(--navy); margin-bottom: 1.5rem; }
.committee-emblem img { width: 68%; height: 68%; object-fit: contain; }
.card--placard:hover { border-top-color: var(--gold); }
.card-go { position: absolute; left: 1.5rem; bottom: 1.1rem; color: var(--gold); font-weight: 700;
  opacity: 0; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s; }
.card--placard:hover .card-go { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-title .line > span { animation: none; transform: none; }
  .hero-sub, .hero-ctas { animation: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
}

/* Hero fixes: nav floats over hero; type breathing room */
.has-hero-globe .nav { position: fixed; top: 0; left: 0; right: 0; }
.has-hero-globe .footer { margin-top: 0; }
.hero-title { line-height: 1.04; }

/* Contact quick lines */
.contact-lines { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; margin: 1.25rem 0 0.5rem; }
.contact-lines a { font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--gold); }

/* ===== Delegate platform (/app/) ===== */
.app-tabs { display: flex; gap: 0.5rem; margin: 1.5rem 0; }
.app-tab { flex: 1; padding: 0.6rem; font: inherit; font-weight: 600; background: #fff;
  border: 1px solid #e8e4da; border-radius: 6px; cursor: pointer; color: var(--muted); }
.app-tab.is-active { border-color: var(--navy); color: var(--navy); }
.app-status { margin-top: 1rem; font-weight: 600; }
.app-warn { background: #fff7df; border: 1px solid var(--gold); border-radius: 8px;
  padding: 0.9rem 1.1rem; margin-top: 1rem; font-size: 0.95rem; }
.app-card { background: #fff; border: 1px solid #e8e4da; border-left: 4px solid var(--navy);
  border-radius: 8px; padding: 1.5rem; margin-top: 1.5rem; }
.app-steps { display: flex; gap: 0; list-style: none; padding: 0; margin: 1.5rem 0 2rem;
  counter-reset: step; }
.app-steps li { flex: 1; text-align: center; font-size: 0.85rem; color: var(--muted);
  padding-top: 2rem; position: relative; counter-increment: step; }
.app-steps li::before { content: counter(step); position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 26px; height: 26px; border-radius: 50%; line-height: 26px;
  background: #e8e4da; color: var(--muted); font-weight: 700; font-size: 0.8rem; }
.app-steps li.is-active { color: var(--navy); font-weight: 600; }
.app-steps li.is-active::before { background: var(--navy); color: #fff; }
.app-choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.9rem; margin-top: 1.5rem; }
.app-choice { text-align: left; background: #fff; border: 1px solid #e8e4da; border-radius: 8px;
  padding: 1rem 1.1rem; cursor: pointer; font: inherit; }
.app-choice strong { display: block; color: var(--navy); font-family: var(--serif); }
.app-choice em { display: block; font-style: normal; font-weight: 700; color: var(--navy); margin: 0.2rem 0; }
.app-choice span { font-size: 0.85rem; color: var(--muted); }
.app-choice:hover, .app-choice.is-active { border-color: var(--gold); }
.app-choice.is-active { box-shadow: 0 0 0 1px var(--gold); }
.app-seat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem; margin-top: 0.5rem; }
.app-seat { font: inherit; font-size: 0.88rem; padding: 0.5rem 0.6rem; background: #fff;
  border: 1px solid #e8e4da; border-radius: 6px; cursor: pointer; }
.app-seat:hover:not([disabled]) { border-color: var(--gold); }
.app-seat[disabled] { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.app-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; background: #fff; }
.app-table th, .app-table td { text-align: left; padding: 0.55rem 0.7rem; border-bottom: 1px solid #eee7d9; }
.app-table th { background: var(--navy); color: #fff; font-weight: 600; white-space: nowrap; }
.app-table tr.is-paid td { background: #f3faf3; }
.app-table tr.is-cancelled td { opacity: 0.5; }
.app-table .btn { padding: 0.25rem 0.7rem; font-size: 0.82rem; }

.app-google { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%;
  margin-top: 1.5rem; background: #fff; }
.app-or { text-align: center; color: var(--muted); font-size: 0.85rem; margin: 1rem 0 0; }

/* ===== Platformă: foaie "diplomat" ===== */
[data-app-page] { background: #fff; border: 1px solid #e8e4da; border-radius: 14px;
  padding: 2.75rem 2.5rem 3rem; margin-top: 3rem; margin-bottom: 4.5rem;
  box-shadow: 0 14px 44px rgba(1, 16, 56, 0.07); }
[data-app-page] .section-title { font-size: 1.55rem; }
[data-app-page] .section-title::after { width: 44px; }
[data-app-page] .eyebrow { margin-bottom: 0.4rem; font-size: 0.72rem; }
[data-app-page] h2 { font-size: 1.15rem; margin-bottom: 0.75rem; }

.form-field label { font-size: 0.85rem; color: var(--navy); }
.form-field label .opt { font-weight: 400; color: var(--muted); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.7rem 0.9rem; border: 1px solid #d6d1c4; border-radius: 8px;
  font: inherit; font-size: 0.95rem; background: #fff; color: var(--ink); }
.form-field select:invalid { color: var(--muted); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(253, 192, 2, 0.25); }
.form-field { margin-bottom: 1.1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.app-tabs { border-bottom: 1px solid #e8e4da; gap: 0; margin: 1.75rem 0 1.5rem; }
.app-tab { border: 0; border-bottom: 2px solid transparent; border-radius: 0; background: none;
  padding: 0.6rem 0; margin-right: 1.5rem; flex: none; font-size: 0.95rem; }
.app-tab.is-active { border-bottom-color: var(--gold); color: var(--navy); }

.app-google { border-color: #d6d1c4; font-weight: 600; }
.app-google:hover { border-color: var(--navy); }

.app-steps { margin: 2rem 0 2.25rem; border-bottom: 1px solid #f0ece2; padding-bottom: 1.5rem; }
.app-steps li { font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
.app-steps li::before { width: 22px; height: 22px; line-height: 22px; font-size: 0.72rem; }

/* Modal comitete */
.committee-modal { margin: auto; border: 0; border-radius: 14px; padding: 0; max-width: min(640px, calc(100vw - 2rem));
  width: 100%; box-shadow: 0 24px 80px rgba(1, 16, 56, 0.35); border-top: 4px solid var(--gold); }
.committee-modal::backdrop { background: rgba(1, 16, 56, 0.55); backdrop-filter: blur(3px); }
.committee-modal .modal-head { display: flex; gap: 1.25rem; align-items: center;
  padding: 1.75rem 2rem 1rem; }
.committee-emblem--sm { width: 72px; height: 72px; margin: 0; flex: none; }
.committee-modal h2 { margin: 0.15rem 0 0.5rem; font-size: 1.35rem; }
.committee-modal .modal-body { padding: 0.5rem 2rem 0; max-height: 46vh; overflow-y: auto; }
.committee-modal .modal-body p { margin-bottom: 0.9rem; font-size: 0.95rem; }
.committee-modal .modal-actions { padding: 1rem 2rem 1.75rem; margin: 0; }
.modal-close { position: absolute; top: 0.7rem; right: 0.9rem; background: none; border: 0;
  font-size: 1.7rem; line-height: 1; color: var(--muted); cursor: pointer; }
.modal-close:hover { color: var(--navy); }

/* filigran logo în modal (ca pe carduri) */
.committee-modal .modal-mark { position: absolute; right: -1.5rem; bottom: -1.5rem;
  width: 240px; height: 240px; object-fit: contain; filter: invert(1); opacity: 0.07;
  pointer-events: none; }
.committee-modal .modal-head > div { position: relative; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.news-card { position: relative; display: block; background: #fff; border: 1px solid #e8e4da; border-radius: 8px;
  padding: 1.5rem; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(1, 16, 56, 0.08); }
.news-card h3 { font-size: 1.15rem; margin: 0.4rem 0 0.5rem; }
.news-card p { color: var(--muted); font-size: 0.92rem; }
.news-byline { display: block; margin-top: 0.9rem; color: var(--muted); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.news-official { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.55rem; border-radius: 999px; }
.news-card--sg { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 6px 28px rgba(253, 192, 2, 0.28); }
.news-card--sg:hover { box-shadow: 0 0 0 1px var(--gold), 0 10px 34px rgba(253, 192, 2, 0.4); }
.article--sg { border-left: 4px solid var(--gold); padding-left: 1.5rem; }
.article-body p { margin-bottom: 1rem; }
.article-byline { border-top: 1px solid #e8e4da; padding-top: 1rem; margin-top: 2rem; }
.news-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid #e8e4da; border-radius: 8px; padding: 0.9rem 1.1rem; margin-bottom: 0.6rem; }
.news-row--sg { border-color: var(--gold); }
.news-row .btn { padding: 0.3rem 0.8rem; font-size: 0.85rem; }

/* welcome + nav login */
.apply-welcome { background: #fff7df; border: 1px solid var(--gold); border-radius: 10px;
  padding: 1rem 1.25rem; margin: 1.25rem 0 0; font-size: 0.98rem; }
.nav-login { padding: 0.45rem 1.1rem; font-size: 0.92rem; }
.nav--overlay .nav-links .nav-login { border-color: rgba(255,255,255,0.45); color: #fff; }
.nav--overlay.nav--solid .nav-links .nav-login { border-color: var(--navy); color: var(--navy); }

/* sloturi preferinte */
.pref-slot { display: flex; gap: 0.9rem; align-items: center; margin-bottom: 0.9rem; }
.pref-num { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--navy);
  color: #fff; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; }
@media (max-width: 560px) { .pref-slot { flex-wrap: wrap; } }
.app-table select { font: inherit; font-size: 0.82rem; padding: 0.25rem; max-width: 190px; }

.app-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem;
  margin: 0.6rem 0; cursor: pointer; line-height: 1.45; }
.app-check input { margin-top: 0.25rem; accent-color: var(--navy); width: 16px; height: 16px; flex: none; }

/* Dashboard shell (sidebar stanga + continut dreapta) */
.dash-shell { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; margin-top: 1.5rem; align-items: start; }
.dash-nav { display: flex; flex-direction: column; gap: 2px; position: sticky; top: 84px; }
.dash-nav button, .dash-nav a { display: block; width: 100%; text-align: left; background: none; border: 0;
  border-left: 3px solid transparent; padding: 0.55rem 0.9rem; font: inherit; font-size: 0.95rem;
  color: var(--ink); cursor: pointer; text-decoration: none; border-radius: 0 6px 6px 0; }
.dash-nav button:hover, .dash-nav a:hover { background: #f1ede3; }
.dash-nav button.is-active { border-left-color: var(--gold); color: var(--navy); font-weight: 600; background: #fff; }
.dash-nav-sep { border-top: 1px solid #e8e4da; margin: 0.6rem 0; }
.dash-content section > .app-card h3 { margin-top: 0; }
@media (max-width: 720px) {
  .dash-shell { grid-template-columns: 1fr; gap: 1rem; }
  .dash-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .dash-nav button, .dash-nav a { width: auto; border-left: 0; border-bottom: 3px solid transparent; border-radius: 6px 6px 0 0; }
  .dash-nav button.is-active { border-bottom-color: var(--gold); }
}

/* Secțiuni mari comitete (/committees/) */
.committee-block { padding: 3.5rem 0; border-top: 1px solid #eee7d9; }
.committee-block--alt { background: #fff; }
.cb-inner { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: center; }
.committee-block--alt .cb-inner { grid-template-columns: 1fr 300px; }
.committee-block--alt .cb-media { order: 2; }
.cb-media { background: var(--navy); border-radius: 14px; aspect-ratio: 1; display: flex;
  align-items: center; justify-content: center; border-bottom: 4px solid var(--gold); }
.cb-media img { width: 62%; height: 62%; object-fit: contain; }
.cb-body h2 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.cb-teaser { font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.cb-desc { color: var(--ink); max-width: 62ch; }
.cb-meta { margin: 1.25rem 0 1.5rem; }
@media (max-width: 760px) {
  .cb-inner, .committee-block--alt .cb-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .committee-block--alt .cb-media { order: 0; }
  .cb-media { max-width: 220px; }
}

/* Roster țări pe pagina de detaliu */
.roster-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.roster-chip { background: #fff; border: 1px solid #e8e4da; border-radius: 999px;
  padding: 0.35rem 0.9rem; font-size: 0.88rem; color: var(--navy); font-weight: 500; }
.roster-chip--taken { opacity: 0.45; background: #f4f0e6; }

/* dashboard full-width */
.dash-page { padding: 3rem clamp(1.25rem, 3.5vw, 3rem) 4rem; }
.dash-shell { grid-template-columns: 240px minmax(0, 1fr); }

/* Board */
.board-lead-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem; max-width: 720px; }
.board-lead { background: #fff; border: 1px solid var(--gold); border-radius: 14px; text-align: center;
  padding: 2.5rem 2rem 2.25rem; box-shadow: 0 0 0 1px var(--gold), 0 10px 36px rgba(253, 192, 2, 0.22); }
.board-lead-photo { width: 132px; height: 132px; border-radius: 50%; margin: 0 auto 1.25rem;
  overflow: hidden; border: 3px solid var(--gold); background: var(--navy);
  display: flex; align-items: center; justify-content: center; }
.board-lead-photo img { width: 100%; height: 100%; object-fit: cover; }
.board-lead-photo .board-tba-emblem { width: 62%; height: 62%; object-fit: contain; opacity: 0.85; }
.board-role { color: #b8860b; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 0.35rem; }
.board-name { font-size: 1.3rem; margin: 0; }
.board-name-sm { font-size: 1.05rem; margin: 0; }
.board-soon { color: var(--muted); font-size: 0.82rem; font-style: italic; margin-top: 0.5rem; }
.board-lead.is-tba .board-name, .board-card.is-tba .board-name-sm { color: var(--muted); }
.board-section { margin-top: 3rem; }
.board-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; margin-top: 1rem; }
.board-card { display: flex; align-items: center; gap: 1rem; background: #fff;
  border: 1px solid #e8e4da; border-top: 3px solid var(--navy); border-radius: 10px; padding: 1rem 1.1rem; }
.board-card-photo { flex: none; width: 58px; height: 58px; border-radius: 50%; overflow: hidden;
  background: var(--navy); display: flex; align-items: center; justify-content: center; }
.board-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.board-card-photo .board-tba-emblem { width: 60%; height: 60%; object-fit: contain; opacity: 0.8; }
.board-cta { margin-top: 4rem; background: #fff; border: 1px solid #e8e4da; border-left: 4px solid var(--gold);
  border-radius: 10px; padding: 1.75rem 2rem; }

/* dashboard: lipit de navbar si footer, fara benzi crem */
.dash-page { padding: 1.75rem clamp(1.25rem, 3.5vw, 3rem) 2.5rem; min-height: calc(100vh - 64px); }
body:has(.dash-page) .footer { margin-top: 0; }

/* app chrome (layout-app: topbar in loc de navbarul de site, fara footer) */
.app-body { background: var(--ivory); }
.app-topbar { position: sticky; top: 0; z-index: 60; background: var(--navy); border-bottom: 3px solid var(--gold); }
.app-topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 56px;
  padding: 0 clamp(1rem, 3vw, 2rem); }
.app-topbar .brand { display: flex; align-items: center; gap: 0.55rem; color: #fff; text-decoration: none;
  font-family: var(--serif); font-weight: 700; font-size: 1.02rem; }
.app-topbar .brand img { height: 30px; filter: brightness(0) invert(1); }
.app-topbar .brand b { color: var(--gold); font-weight: 900; }
.app-topbar .brand em { font-style: normal; font-weight: 400; color: #9aa6c8; font-size: 0.8rem; margin-left: 0.2rem; }
.app-topbar-right { display: flex; align-items: center; gap: 1.1rem; font-size: 0.88rem; }
.app-topbar-right a { color: #cfd6e4; text-decoration: none; }
.app-topbar-right a:hover { color: var(--gold); }
#topbar-user { color: #9aa6c8; }
.btn-topbar { background: transparent; border: 1px solid #33406b; color: #fff; border-radius: 4px;
  padding: 0.35rem 0.9rem; cursor: pointer; font: inherit; font-size: 0.84rem; }
.btn-topbar:hover { border-color: var(--gold); color: var(--gold); }
.app-main { min-height: calc(100vh - 56px); }
.dash-page { min-height: 0; }

/* sub-tab-uri secretariat + form chairs */
.sec-tabs { display: flex; gap: 0.4rem; margin: 0.75rem 0 1.25rem; border-bottom: 1px solid #e8e4da; }
.sec-tabs button { background: none; border: 0; border-bottom: 3px solid transparent; padding: 0.5rem 1rem;
  font: inherit; font-size: 0.95rem; color: var(--muted); cursor: pointer; }
.sec-tabs button.is-active { color: var(--navy); font-weight: 600; border-bottom-color: var(--gold); }
.chair-add { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.chair-add input, .chair-add select { padding: 0.55rem 0.8rem; border: 1px solid #d6d1c4; border-radius: 4px; font: inherit; }
.chair-add input { min-width: 260px; }

/* ============================================================
   PLATFORM V2 — "cancelarie diplomatică"
   Chrome navy sobru + conținut ca document oficial cu letterhead.
   Suprascrie stilurile de platformă anterioare.
   ============================================================ */

.app-body { background: #f6f3ea; }
.app-main { min-height: calc(100vh - 160px); }

/* — chrome — */
.app-topbar { position: sticky; top: 0; z-index: 60; background: var(--navy);
  border-bottom: 2px solid var(--gold); box-shadow: 0 6px 24px rgba(1, 16, 56, 0.25); }
.app-topbar-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; height: 60px;
  display: flex; align-items: center; justify-content: space-between; }
.app-topbar .brand { display: flex; align-items: center; gap: 0.6rem; color: #fff;
  text-decoration: none; font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.app-topbar .brand img { height: 30px; filter: brightness(0) invert(1); }
.app-topbar .brand b { font-weight: 900; }
.app-topbar .brand em { font-style: normal; font-weight: 500; color: var(--gold);
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,0.25); padding-left: 0.7rem; margin-left: 0.15rem; }
.app-topbar-right { display: flex; align-items: center; gap: 1.25rem; font-size: 0.85rem; }
.app-topbar-right a { color: #cfd6e4; text-decoration: none; }
.app-topbar-right a:hover { color: var(--gold); }
#topbar-user { color: #9aa6c8; font-size: 0.82rem; }
.btn-topbar { background: none; border: 1px solid rgba(255,255,255,0.35); color: #fff;
  font: inherit; font-size: 0.8rem; padding: 0.35rem 0.9rem; border-radius: 3px; cursor: pointer; }
.btn-topbar:hover { border-color: var(--gold); color: var(--gold); }

.app-footline { max-width: 1100px; margin: 0 auto; padding: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: center;
  font-size: 0.75rem; letter-spacing: 0.06em; color: #9b9484; text-transform: uppercase; }
.app-footline a { color: #9b9484; text-decoration: none; }
@media (max-width: 640px) { .app-topbar .brand em, .app-footline-sep { display: none; } }

/* — documentul oficial — */
[data-app-page] { background: #fffdf8; border: 1px solid #e3ddcd; border-radius: 4px;
  padding: 2rem 3rem 3.25rem; margin-top: 2.75rem; margin-bottom: 3.5rem;
  box-shadow: 0 1px 0 #fff inset, 0 18px 40px rgba(1, 16, 56, 0.07); }
[data-app-page]::before { content: "Timișoara International Model United Nations · MMXXVI";
  display: block; text-align: center; font-family: var(--sans); font-size: 0.66rem;
  font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: #b8860b;
  padding: 62px 0 16px; margin-bottom: 2.25rem;
  background: url("/assets/img/emblem.png") center top / 46px no-repeat;
  border-bottom: 1px solid #e8e2d2; box-shadow: 0 3px 0 -2px #e8e2d2; }
@media (max-width: 640px) { [data-app-page] { padding: 1.5rem 1.25rem 2.5rem; } }

[data-app-page] .eyebrow { font-size: 0.68rem; letter-spacing: 0.28em; color: #b8860b; margin-bottom: 0.5rem; }
[data-app-page] .section-title { font-size: 1.5rem; letter-spacing: -0.01em; }
[data-app-page] .section-title::after { width: 38px; height: 2px; margin-top: 0.6rem; }
[data-app-page] h2 { font-size: 1.02rem; margin: 0 0 0.9rem; letter-spacing: 0.01em; }

/* — autentificare — */
.app-google { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%;
  margin-top: 1.6rem; background: #fff; border: 1px solid #d8d2c2; border-radius: 3px;
  font-weight: 600; padding: 0.75rem 1rem; }
.app-google:hover { border-color: var(--navy); background: #fff; }
.app-or { text-align: center; color: #9b9484; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; margin: 1.2rem 0 0; }
.app-tabs { display: flex; gap: 0; border-bottom: 1px solid #e8e2d2; margin: 1.4rem 0 1.6rem; }
.app-tab { flex: none; background: none; border: 0; border-bottom: 2px solid transparent;
  border-radius: 0; margin-right: 1.75rem; padding: 0.55rem 0; font: inherit; font-size: 0.9rem;
  font-weight: 600; color: #9b9484; cursor: pointer; }
.app-tab.is-active { color: var(--navy); border-bottom-color: var(--gold); }

/* — câmpuri de registru — */
.form-field { margin-bottom: 1.15rem; }
.form-field label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 0.4rem; }
.form-field label .opt { font-weight: 500; color: #9b9484; text-transform: none; letter-spacing: 0.02em; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.68rem 0.85rem; border: 1px solid #d8d2c2; border-radius: 3px;
  font: inherit; font-size: 0.95rem; background: #fff; color: var(--ink); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(253, 192, 2, 0.22); }
.app-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem;
  margin: 0.65rem 0; cursor: pointer; line-height: 1.5; }
.app-check input { margin-top: 0.22rem; accent-color: var(--navy); width: 15px; height: 15px; flex: none; }

/* — pașii ca articole de tratat — */
.app-steps { display: flex; list-style: none; padding: 0 0 1.4rem; margin: 1.9rem 0 2rem;
  border-bottom: 1px solid #e8e2d2; counter-reset: step; }
.app-steps li { flex: 1; text-align: center; counter-increment: step; position: relative;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #b9b29e; padding-top: 1.85rem; }
.app-steps li::before { content: counter(step, upper-roman); position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); font-family: var(--serif); font-size: 0.95rem; font-weight: 800;
  color: #cfc8b2; letter-spacing: 0.05em; }
.app-steps li.is-active { color: var(--navy); }
.app-steps li.is-active::before { color: #b8860b; }

/* — opțiuni ca dosare oficiale — */
.app-choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.8rem; margin-top: 1.4rem; }
.app-choice { text-align: left; background: #fff; border: 1px solid #e3ddcd; border-left: 3px solid var(--navy);
  border-radius: 3px; padding: 1rem 1.1rem; cursor: pointer; font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s; }
.app-choice strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 0.98rem; }
.app-choice em { display: block; font-style: normal; font-weight: 700; color: #b8860b; margin: 0.2rem 0; font-size: 0.9rem; }
.app-choice span { font-size: 0.82rem; color: #6b7280; line-height: 1.45; display: block; margin-top: 0.15rem; }
.app-choice:hover { border-color: var(--gold); border-left-color: var(--gold); }
.app-choice.is-active { border-left-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); background: #fffcf2; }
.app-choice[disabled] { opacity: 0.45; cursor: not-allowed; }

.app-seat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.45rem; margin-top: 0.5rem; }
.app-seat { font: inherit; font-size: 0.85rem; padding: 0.48rem 0.6rem; background: #fff;
  border: 1px solid #e3ddcd; border-radius: 2px; cursor: pointer; color: var(--ink); }
.app-seat:hover:not([disabled]) { border-color: var(--gold); background: #fffcf2; }
.app-seat[disabled] { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

/* — preferințele I / II / III — */
#pref-slots { counter-reset: pref; margin-top: 1.5rem; }
.pref-slot { display: flex; gap: 0.9rem; align-items: center; margin-bottom: 0.9rem; counter-increment: pref; }
.pref-num { flex: none; width: 34px; height: 34px; border: 1px solid var(--navy); border-radius: 2px;
  background: #fff; color: transparent; position: relative; }
.pref-num::before { content: counter(pref, upper-roman); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; font-family: var(--serif);
  font-weight: 800; font-size: 0.8rem; color: var(--navy); }
@media (max-width: 560px) { .pref-slot { flex-wrap: wrap; } }

/* — dosarul din dashboard & note — */
.app-card { background: #fff; border: 1px solid #e3ddcd; border-left: 3px solid var(--navy);
  border-radius: 3px; padding: 1.6rem 1.75rem; margin-top: 1.5rem; }
.app-card h3 { font-size: 1.02rem; }
.app-warn { background: #fffcf2; border: 1px solid #eadfb8; border-left: 3px solid var(--gold);
  border-radius: 3px; padding: 0.95rem 1.15rem; margin-top: 1.1rem; font-size: 0.92rem; }
.app-status { margin-top: 1rem; font-weight: 600; font-size: 0.9rem; }
.apply-welcome { background: #fffcf2; border: 1px solid #eadfb8; border-left: 3px solid var(--gold);
  border-radius: 3px; padding: 0.95rem 1.2rem; margin: 1.1rem 0 0; font-size: 0.95rem; }
.badge { border-radius: 2px; letter-spacing: 0.06em; }

/* — registre (tabele) — */
.app-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; background: #fff;
  border: 1px solid #e3ddcd; }
.app-table th { background: #fffdf8; color: var(--navy); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; text-align: left;
  padding: 0.7rem 0.75rem; border-bottom: 2px solid var(--navy); white-space: nowrap; }
.app-table td { text-align: left; padding: 0.6rem 0.75rem; border-bottom: 1px solid #efe9da; vertical-align: top; }
.app-table tr.is-assigned td { background: #f6faf4; }
.app-table tr.is-paid td { background: #f4f8fd; }
.app-table tr:hover td { background: #fffcf2; }
.app-table .btn { padding: 0.28rem 0.7rem; font-size: 0.78rem; border-radius: 2px; }
.app-table select { font: inherit; font-size: 0.8rem; padding: 0.28rem; max-width: 190px;
  border: 1px solid #d8d2c2; border-radius: 2px; }

/* — newsroom — */
.news-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid #e3ddcd; border-left: 3px solid var(--navy);
  border-radius: 3px; padding: 0.9rem 1.1rem; margin-bottom: 0.6rem; }
.news-row--sg { border-left-color: var(--gold); }
