:root {
  --navy: #0b2a5a;
  --navy-deep: #081c3f;
  --red: #d71f2d;
  --red-soft: #ffedf0;
  --sky: #e9f5ff;
  --ink: #0d1b2a;
  --muted: #5f6d7a;
  --line: rgba(11, 42, 90, 0.12);
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 60px rgba(8, 28, 63, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f5f8fc 0%, #eef3f8 100%);
  min-height: 100vh;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-orb {
  display: none;
}

.site-header,
.hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 20px 0;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: white;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(8, 28, 63, 0.14);
}

.brand-text strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--muted);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--navy);
  font-weight: 600;
}

.top-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.top-nav a:hover {
  border-color: var(--red);
}

.hero {
  padding: 52px 0 38px;
}

.hero-compact {
  padding-bottom: 30px;
}

.maintenance-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}

.maintenance-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 25, 0.58);
  backdrop-filter: blur(10px);
}

.maintenance-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 640px);
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,249,253,0.98));
  border: 1px solid rgba(11, 42, 90, 0.12);
  box-shadow: 0 32px 80px rgba(8, 28, 63, 0.32);
}

.maintenance-card h2 {
  margin: 10px 0 12px;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.maintenance-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.maintenance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.caption-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-copy h1 {
  margin: 14px 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}

.lead {
  margin: 0;
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  box-shadow: 0 16px 28px rgba(11, 42, 90, 0.24);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid rgba(11, 42, 90, 0.12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(11, 42, 90, 0.06);
}

.stat strong {
  display: block;
  font-size: 1rem;
  color: var(--navy-deep);
}

.stat span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.card-main {
  width: min(100%, 530px);
  padding: 18px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.president-photo {
  width: 100%;
  aspect-ratio: 1.06 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.card-caption {
  padding: 18px 10px 4px;
}

.card-caption h2 {
  margin: 8px 0 8px;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
  font-size: 1.35rem;
}

.card-caption p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 26px 0 64px;
}

.section-alt {
  padding-top: 18px;
}

.section-heading h2,
.focus-card h2,
.feature h3 {
  margin: 10px 0 0;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.focus-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 12px 28px rgba(8, 28, 63, 0.08);
}

.feature-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  border-radius: 18px;
  margin-bottom: 16px;
  padding: 16px;
}

.feature p,
.focus-card p,
.small-note {
  color: var(--muted);
  line-height: 1.7;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--red) 0%, #ff6370 100%);
  box-shadow: 0 12px 18px rgba(215, 31, 45, 0.24);
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
}

.accent {
  background: linear-gradient(180deg, rgba(11, 42, 90, 0.97) 0%, rgba(8, 28, 63, 0.97) 100%);
  color: #f3f7ff;
}

.accent .section-kicker,
.accent h2,
.accent p,
.accent .small-note {
  color: #f3f7ff;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 14px 0;
  color: var(--muted);
  line-height: 1.6;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%);
  box-shadow: 0 0 0 6px rgba(215, 31, 45, 0.09);
}

code {
  padding: 0.15rem 0.35rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.site-footer {
  padding: 0 0 28px;
}

.site-footer-mega {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #06142e 100%);
  color: #eff5ff;
  margin-top: 20px;
}

.footer-shell {
  display: grid;
  gap: 18px;
  padding: 28px 0 0;
}

.footer-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  backdrop-filter: blur(14px);
}

.footer-panel h2,
.footer-panel strong,
.footer-panel p,
.footer-panel li,
.footer-panel figcaption,
.footer-panel a,
.footer-bottom p {
  color: inherit;
}

.footer-panel h2 {
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
}

.footer-panel-wide {
  display: grid;
  gap: 18px;
}

.footer-brand-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand-mark {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  object-fit: contain;
  background: white;
  border-radius: 18px;
  padding: 8px;
}

.footer-kicker {
  color: #ffb3bc;
}

.footer-brand h2 {
  margin-top: 6px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.footer-brand p {
  margin: 10px 0 0;
  color: rgba(239, 245, 255, 0.82);
  line-height: 1.75;
}

.footer-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.footer-chip,
.footer-mini-card,
.footer-list-item,
.footer-gallery-card,
.footer-contact-box,
.footer-links {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

.footer-chip {
  padding: 14px 16px;
  display: grid;
  gap: 4px;
}

.footer-chip strong {
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(239, 245, 255, 0.72);
}

.footer-chip span {
  color: white;
  font-weight: 700;
  word-break: break-word;
}

.footer-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.footer-mini-card {
  padding: 18px;
}

.footer-mini-card p {
  margin: 10px 0 0;
  color: rgba(239, 245, 255, 0.82);
  line-height: 1.7;
}

.footer-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.footer-list-item {
  padding: 16px 18px;
}

.footer-list-item strong {
  display: block;
  margin-bottom: 6px;
}

.footer-list-item p {
  margin: 0;
  color: rgba(239, 245, 255, 0.82);
  line-height: 1.7;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.footer-gallery-card {
  margin: 0;
  padding: 12px;
}

.footer-gallery-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}

.footer-gallery-card figcaption {
  color: rgba(239, 245, 255, 0.86);
  font-size: 0.92rem;
}

.footer-contact-box {
  padding: 18px;
  margin-top: 18px;
}

.footer-contact-box .contact-email {
  color: #ffffff;
}

.footer-contact-box .contact-list {
  margin-top: 16px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #eff5ff;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 18px;
  margin-top: 18px;
}

.footer-links a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 700;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-note {
  margin: 14px 0 0;
  color: rgba(239, 245, 255, 0.82);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 6px 0;
  color: rgba(239, 245, 255, 0.7);
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.search-field-dark span {
  color: rgba(239, 245, 255, 0.82);
}

.search-field-dark input {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.search-field-dark input::placeholder {
  color: rgba(239, 245, 255, 0.5);
}

.footer-news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.footer-news-grid .news-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-news-grid .news-card h3,
.footer-news-grid .news-card p,
.footer-news-grid .news-card a,
.footer-news-grid .news-meta,
.footer-news-grid .news-tag {
  color: inherit;
}

.footer-news-grid .news-card a {
  font-weight: 700;
}

.flash {
  padding: 14px 16px;
  border-radius: 18px;
  margin: 0 0 16px;
  font-weight: 600;
}

.flash-success {
  background: rgba(28, 142, 78, 0.12);
  border: 1px solid rgba(28, 142, 78, 0.18);
  color: #16653a;
}

.flash-error {
  background: rgba(215, 31, 45, 0.12);
  border: 1px solid rgba(215, 31, 45, 0.18);
  color: #9f1f2c;
}

.admin-table {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.admin-table-head,
.admin-table-row {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.admin-table-head {
  padding: 12px 14px;
  color: var(--navy-deep);
  font-weight: 800;
  background: rgba(11, 42, 90, 0.05);
  border-radius: 14px;
}

.admin-table-row {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 42, 90, 0.08);
}

.row-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  grid-column: 1 / -1;
}

.row-actions a,
.row-actions button {
  border: 0;
  background: rgba(11, 42, 90, 0.08);
  color: var(--navy-deep);
  padding: 8px 12px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
}

.row-actions button {
  cursor: pointer;
}

.admin-empty {
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(11, 42, 90, 0.04);
  color: var(--muted);
}

.panel-title {
  margin: 24px 0 10px;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: start;
}

.php-shell .site-header {
  padding-bottom: 10px;
}

.php-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 255, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 42, 90, 0.08);
}

.php-nav {
  justify-content: flex-end;
}

.php-hero {
  padding-top: 10px;
}

.php-banner {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(233,245,255,0.88));
  border: 1px solid rgba(11, 42, 90, 0.1);
  box-shadow: 0 18px 36px rgba(8, 28, 63, 0.08);
  margin-bottom: 18px;
}

.php-banner h1 {
  margin: 12px 0 10px;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.php-banner p {
  margin: 0;
  max-width: 75ch;
  color: var(--muted);
  line-height: 1.7;
}

.php-layout,
.dashboard-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.php-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 42, 90, 0.12);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(8, 28, 63, 0.08);
}

.php-panel h2 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
  font-size: 1.35rem;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.inline-check {
  font-weight: 700;
  color: var(--navy-deep);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(11, 42, 90, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
  color: var(--ink);
}

.form-field textarea {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(11, 42, 90, 0.42);
  box-shadow: 0 0 0 4px rgba(11, 42, 90, 0.08);
}

.helper-text {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.inline-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.inline-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}

.text-link {
  color: var(--navy);
  font-weight: 700;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.data-stat,
.panel-item {
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,249,253,0.98));
  border: 1px solid rgba(11, 42, 90, 0.08);
}

.data-stat strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: var(--navy-deep);
}

.data-stat span {
  color: var(--muted);
}

.panel-list {
  display: grid;
  gap: 12px;
}

.panel-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-deep);
}

.panel-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 42, 90, 0.12);
  color: var(--muted);
}

.footer-inner strong {
  color: var(--navy-deep);
}

.footer-inner p {
  margin: 4px 0 0;
}

.footer-meta {
  align-self: end;
}

@media (max-width: 960px) {
  .hero-grid,
  .focus-grid,
  .feature-grid,
  .php-layout,
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .data-grid {
    grid-template-columns: 1fr;
  }

  .form-grid.two-up {
    grid-template-columns: 1fr;
  }

  .footer-brand-row,
  .footer-two-column {
    grid-template-columns: 1fr;
  }

  .footer-profile-grid,
  .footer-gallery,
  .footer-news-grid,
  .footer-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .top-nav {
    gap: 14px;
  }
}


.section-intro {
  margin: 12px 0 0;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading-split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.news-tools {
  min-width: min(100%, 320px);
}

.search-field {
  display: grid;
  gap: 8px;
  color: var(--navy-deep);
  font-weight: 700;
}

.search-field span {
  font-size: 0.92rem;
}

.search-field input,
.chat-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(11, 42, 90, 0.14);
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
}

.search-field input:focus,
.chat-form input:focus {
  border-color: rgba(11, 42, 90, 0.42);
  box-shadow: 0 0 0 4px rgba(11, 42, 90, 0.08);
}

.fact-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.fact-card,
.news-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(8, 28, 63, 0.08);
}

.upgrade-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 249, 253, 0.96) 100%);
  border: 1px solid rgba(11, 42, 90, 0.12);
  border-radius: 26px;
  box-shadow: 0 16px 36px rgba(8, 28, 63, 0.08);
}

.upgrade-tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(215, 31, 45, 0.12);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.upgrade-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
  font-size: 1.15rem;
}

.upgrade-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.manifesto-card,
.contact-panel,
.gallery-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 42, 90, 0.12);
  border-radius: 26px;
  box-shadow: 0 14px 30px rgba(8, 28, 63, 0.08);
}

.manifesto-card {
  display: grid;
  gap: 12px;
}

.manifesto-index {
  display: inline-flex;
  width: fit-content;
  min-width: 54px;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 42, 90, 0.08);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.manifesto-card h3,
.gallery-card strong,
.contact-panel h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
}

.manifesto-card p,
.contact-copy p,
.gallery-card span,
.contact-list {
  color: var(--muted);
  line-height: 1.7;
}

.gallery-card {
  display: grid;
  gap: 14px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-card-large img {
  min-height: 420px;
}

.gallery-card figcaption {
  display: grid;
  gap: 4px;
}

.contact-grid {
  align-items: start;
}

.contact-copy {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(11, 42, 90, 0.96), rgba(8, 28, 63, 0.98));
  color: #eff5ff;
  box-shadow: 0 18px 36px rgba(8, 28, 63, 0.16);
}

.contact-copy .section-kicker,
.contact-copy h2,
.contact-copy .section-intro,
.contact-copy .small-note {
  color: #eff5ff;
}

.contact-email {
  display: inline-flex;
  margin-top: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  word-break: break-word;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 42, 90, 0.08);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.fact-label,
.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.fact-card h3,
.news-card h3 {
  margin: 12px 0 10px;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
  font-size: 1.1rem;
}

.fact-card p,
.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.fact-card a,
.news-meta a {
  color: var(--navy);
  font-weight: 700;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-chat {
  padding-top: 0;
}

.chat-surface {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(11, 42, 90, 0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(233,245,255,0.82));
  box-shadow: 0 16px 34px rgba(8, 28, 63, 0.08);
}

.chat-suggestions,
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill,
.chat-chip {
  border: 1px solid rgba(11, 42, 90, 0.14);
  background: white;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
}

.chat-preview {
  height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #eef5ff;
}

.chat-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.chat-preview-header span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

.chat-preview p {
  margin: 0;
  line-height: 1.7;
  color: rgba(238, 245, 255, 0.88);
}

.chat-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(8, 28, 63, 0.3);
}

.chat-launcher-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ef3bd;
  box-shadow: 0 0 0 5px rgba(126, 243, 189, 0.18);
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 31;
  width: min(390px, calc(100% - 24px));
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 42, 90, 0.12);
  box-shadow: 0 22px 54px rgba(8, 28, 63, 0.24);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.chat-widget-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
}

.chat-widget-header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.chat-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 1.5rem;
  line-height: 1;
}

.chat-widget-body {
  max-height: 320px;
  overflow: auto;
  padding: 16px 16px 10px;
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(239, 245, 251, 0.98));
}

.chat-row {
  display: flex;
}

.chat-row.user {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 84%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.55;
  box-shadow: 0 8px 20px rgba(8, 28, 63, 0.08);
}

.chat-row.user .chat-bubble {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  border-bottom-right-radius: 6px;
}

.chat-row.bot .chat-bubble {
  background: white;
  color: var(--ink);
  border-bottom-left-radius: 6px;
  border: 1px solid rgba(11, 42, 90, 0.08);
}

.chat-form {
  display: flex;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(11, 42, 90, 0.1);
  background: white;
}

.chat-form button {
  flex: 0 0 auto;
  min-width: 92px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red) 0%, #ff6370 100%);
  color: white;
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .section-heading-split,
  .chat-surface {
    grid-template-columns: 1fr;
  }

  .section-heading-split {
    display: grid;
    align-items: start;
  }

  .fact-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .upgrade-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fact-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .chat-launcher {
    left: 12px;
    right: 12px;
    justify-content: center;
  }

  .chat-widget {
    left: 12px;
    right: 12px;
    bottom: 84px;
    width: auto;
  }

  .chat-form {
    flex-direction: column;
  }

  .chat-form button {
    min-height: 48px;
  }

  .upgrade-card {
    padding: 20px;
  }

  .php-banner,
  .php-panel {
    padding: 20px;
  }

  .form-row {
    align-items: stretch;
  }

  .contact-copy {
    padding: 20px;
  }

  .gallery-card-large img {
    min-height: 260px;
  }

  .footer-profile-grid,
  .footer-gallery,
  .footer-news-grid,
  .footer-highlights {
    grid-template-columns: 1fr;
  }

  .footer-section-head {
    align-items: start;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-bottom {
    padding-bottom: 8px;
  }

  .maintenance-card {
    padding: 22px;
  }

  .admin-table-head,
  .admin-table-row {
    grid-template-columns: 1fr;
  }

  .row-actions {
    grid-column: auto;
  }
}

.maintenance-page {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: #102238;
  background:
    radial-gradient(circle at top, rgba(11, 42, 90, 0.04), transparent 42%),
    linear-gradient(180deg, #fafbfd 0%, #eef3f8 100%);
}

.maintenance-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.maintenance-panel {
  width: min(100%, 760px);
  padding: clamp(24px, 5vw, 42px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 42, 90, 0.08);
  box-shadow: 0 18px 44px rgba(16, 34, 56, 0.08);
  backdrop-filter: blur(10px);
}

.maintenance-brand {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.maintenance-logo {
  width: 104px;
  height: 104px;
  padding: 12px;
  border-radius: 26px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(16, 34, 56, 0.08);
}

.maintenance-page .eyebrow {
  color: var(--red);
}

.maintenance-page h1 {
  margin: 8px 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}

.maintenance-subtitle {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.maintenance-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4f7fb;
  border: 1px solid rgba(11, 42, 90, 0.08);
  color: var(--navy-deep);
  font-weight: 700;
}

.status-pill.active {
  background: rgba(215, 31, 45, 0.08);
  border-color: rgba(215, 31, 45, 0.18);
  color: var(--navy-deep);
}

.maintenance-card {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,253,0.98));
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(16, 34, 56, 0.08);
}

.maintenance-card-primary {
  margin-top: 0;
}

.maintenance-minimal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.maintenance-mini {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7f9fc;
  border: 1px solid rgba(11, 42, 90, 0.08);
}

.maintenance-mini strong {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  color: var(--navy-deep);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.maintenance-mini span {
  color: var(--muted);
  font-size: 0.98rem;
}

.progress-track {
  position: relative;
  height: 10px;
  margin: 14px 0 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #e7edf5;
}

.progress-fill {
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red) 0%, var(--navy) 100%);
  box-shadow: 0 0 14px rgba(11, 42, 90, 0.15);
  transition: width 240ms ease;
}

.maintenance-card-header h2 {
  margin: 10px 0 0;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.maintenance-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.maintenance-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7f9fc;
  border: 1px solid rgba(11, 42, 90, 0.08);
}

.maintenance-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-deep);
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
}

.maintenance-note p {
  margin: 0;
}

.maintenance-copyline {
  margin-top: 18px;
  font-size: 0.98rem;
  color: var(--muted);
}

.maintenance-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 42, 90, 0.08);
  color: var(--muted);
}

.maintenance-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-deep);
  font-family: "Montserrat", sans-serif;
}

.maintenance-footer p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .maintenance-brand,
  .maintenance-footer {
    grid-template-columns: 1fr;
  }

  .maintenance-logo {
    width: 92px;
    height: 92px;
  }
}
