:root {
  --ink: #17211c;
  --muted: #64706a;
  --paper: #fbfaf7;
  --paper-strong: #f3eee5;
  --line: #ded6ca;
  --green: #2f6b4f;
  --green-dark: #1f4b38;
  --clay: #b45d3b;
  --gold: #c49a4d;
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(23, 33, 28, 0.14);
  font-family:
    "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  padding: 12px clamp(20px, 3.6vw, 52px);
  color: var(--white);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 14px 38px rgba(31, 75, 56, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 17px;
}

.site-header:not(.is-scrolled):not(.is-open) .brand-mark {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.3vw, 20px);
  font-size: 14px;
}

.site-nav > a,
.nav-menu > summary,
.text-link {
  position: relative;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-menu > summary::-webkit-details-marker {
  display: none;
}

.nav-menu > summary::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.site-nav > a::before,
.nav-menu > summary::before,
.text-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--clay);
  transition: transform 180ms ease;
}

.site-nav > a:hover::before,
.nav-menu:hover > summary::before,
.text-link:hover::before {
  transform: scaleX(1);
}

.nav-menu {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 34px;
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 10px;
  transform: translateX(-50%);
  border: 1px solid rgba(23, 33, 28, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.dropdown a {
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--muted);
}

.dropdown a:hover {
  color: var(--ink);
  background: #eee7dc;
}

.nav-menu:not([open]) .dropdown {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 0 22px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-small {
  min-height: 38px;
  padding-inline: 14px;
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
}

.site-header.is-scrolled .button-light,
.site-header.is-open .button-light {
  color: var(--green);
  background: transparent;
  border-color: rgba(47, 107, 79, 0.28);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost.dark {
  color: var(--green-dark);
  background: transparent;
  border-color: rgba(47, 107, 79, 0.3);
}

.button-card {
  width: 100%;
  min-height: 42px;
  margin-top: 18px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 22, 18, 0.86) 0%, rgba(14, 22, 18, 0.64) 42%, rgba(14, 22, 18, 0.12) 100%),
    linear-gradient(0deg, rgba(14, 22, 18, 0.42), rgba(14, 22, 18, 0.02));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c26f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6.8vw, 84px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.34;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.hero-copy {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
}

.hero-description {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.hero-actions.left {
  margin-top: 26px;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.row-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-bottom: 2px solid var(--clay);
  color: var(--green-dark);
  font-weight: 850;
  white-space: nowrap;
}

.quick {
  background: var(--paper);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.quick-grid a {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 33, 28, 0.06);
  font-weight: 850;
}

.quick-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 14px;
}

.routes,
.bases,
.about {
  background: var(--paper-strong);
}

.scroll-row {
  display: grid;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.route-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 33, 28, 0.08);
  scroll-snap-align: start;
}

.card-image {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(23, 33, 28, 0.16), rgba(23, 33, 28, 0.02)),
    var(--green);
}

.card-image.clay {
  background:
    linear-gradient(135deg, rgba(23, 33, 28, 0.12), rgba(255, 255, 255, 0.18)),
    #b66a48;
}

.card-image.green {
  background:
    linear-gradient(135deg, rgba(23, 33, 28, 0.16), rgba(255, 255, 255, 0.1)),
    #527a52;
}

.card-image.gold {
  background:
    linear-gradient(135deg, rgba(23, 33, 28, 0.14), rgba(255, 255, 255, 0.18)),
    #c49a4d;
}

.card-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
}

.route-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 0;
}

.route-card dt {
  color: var(--muted);
  font-size: 12px;
}

.route-card dd {
  margin: 4px 0 0;
  font-weight: 850;
}

.local {
  background: var(--paper);
}

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

.experience-grid article,
.advantage-grid article,
.story-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-image {
  height: 118px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #ddd0c0;
}

.mini-image.one {
  background: linear-gradient(135deg, #c77b56, #ecd4b5);
}

.mini-image.two {
  background: linear-gradient(135deg, #3f7563, #d6e1ce);
}

.mini-image.three {
  background: linear-gradient(135deg, #b99a55, #f0dfb8);
}

.mini-image.four {
  background: linear-gradient(135deg, #8a6546, #d6c0a6);
}

.experience-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 18px;
}

.experience-grid a {
  color: var(--clay);
  font-weight: 850;
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.teams {
  background: #203b30;
  color: var(--white);
}

.teams p {
  color: rgba(255, 255, 255, 0.74);
}

.team-list {
  display: grid;
  gap: 14px;
}

.team-list article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.team-list span {
  display: block;
  margin-bottom: 10px;
  color: #f1c26f;
  font-weight: 850;
}

.base-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.base-grid article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.base-photo {
  min-height: 160px;
  border-radius: 8px;
}

.base-one {
  background: linear-gradient(135deg, #3f7654, #c8dcb6);
}

.base-two {
  background: linear-gradient(135deg, #b65f3a, #ead6be);
}

.base-grid span {
  color: var(--green-dark);
  font-weight: 800;
}

.stories {
  background: var(--paper);
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.avatar {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  font-weight: 850;
}

.advantage-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 900;
}

.merchant {
  background: var(--paper);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 22px 24px 22px 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  counter-increment: process;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 22px;
  color: var(--clay);
  font-weight: 900;
}

.process-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.contact {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.94), rgba(251, 250, 247, 0.74)),
    url("./assets/adult-study-hero.png") center / cover;
}

.service-info {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.service-info strong,
.service-info span {
  display: block;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(23, 33, 28, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.site-footer {
  padding: 54px 0 42px;
  color: rgba(255, 255, 255, 0.72);
  background: #17211c;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 320px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.footer-group h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.3;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  text-align: center;
}

.footer-links a:hover,
.footer-meta a:hover,
.footer-policy a:hover {
  color: var(--white);
}

.legal-page {
  min-height: 100svh;
  background: var(--paper);
}

.legal-wrap {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 0;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--green-dark);
  font-weight: 850;
}

.legal-wrap h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 56px);
}

.legal-wrap h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.legal-wrap p {
  font-size: 16px;
}

.plain-header {
  display: flex;
  width: min(1160px, calc(100% - 40px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.apply-page {
  background:
    linear-gradient(180deg, rgba(243, 238, 229, 0.9), rgba(251, 250, 247, 1) 38%),
    var(--paper);
}

.apply-hero {
  display: grid;
  width: min(1160px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 90px) 0 clamp(28px, 5vw, 58px);
}

.apply-hero h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 72px);
}

.apply-hero p:not(.eyebrow) {
  max-width: 760px;
}

.apply-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.apply-card strong {
  color: var(--green-dark);
  font-size: 20px;
}

.apply-card span {
  color: var(--muted);
  line-height: 1.75;
}

.apply-layout {
  display: grid;
  width: min(1160px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  margin: 0 auto;
  padding-bottom: clamp(70px, 9vw, 118px);
}

.apply-form {
  display: grid;
  gap: 20px;
}

.apply-form fieldset {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.apply-form legend {
  padding: 0 8px;
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 850;
}

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

.form-grid label,
.agree-row {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.apply-form textarea {
  min-height: 120px;
  padding: 13px;
  resize: vertical;
}

.agree-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
}

.agree-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.agree-row a {
  color: var(--green-dark);
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.apply-message {
  min-height: 24px;
  margin: 0;
  font-size: 15px;
  font-weight: 850;
}

.apply-message.success {
  color: var(--green-dark);
}

.apply-message.error {
  color: var(--clay);
}

.apply-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.apply-side {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 22px;
}

.apply-side h2 {
  margin: 0;
  font-size: 28px;
}

.process-list.compact li {
  padding: 20px 20px 20px 66px;
}

.contact-mini {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: #203b30;
}

.contact-mini strong {
  color: var(--white);
  font-size: 20px;
}

@media (max-width: 900px) {
  .apply-hero,
  .apply-layout {
    grid-template-columns: 1fr;
  }

  .apply-side {
    position: static;
  }
}

@media (max-width: 620px) {
  .plain-header {
    width: calc(100% - 32px);
  }

  .apply-hero,
  .apply-layout {
    width: calc(100% - 32px);
  }

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

[v-cloak] {
  display: none;
}

.admin-page {
  min-height: 100svh;
  background: #f4f1eb;
}

.admin-login {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-panel {
  width: min(440px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.login-panel h1 {
  margin: 30px 0 12px;
  font-size: 34px;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.admin-form label,
.review-panel {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.admin-form input,
.admin-filters select,
.review-panel select,
.review-panel textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.review-panel textarea {
  padding: 12px;
  resize: vertical;
}

.admin-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #17211c;
}

.admin-sidebar nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.admin-sidebar button,
.admin-logout {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  text-align: left;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.admin-sidebar button.active {
  color: var(--white);
  background: var(--green);
}

.admin-main {
  padding: clamp(24px, 4vw, 46px);
}

.admin-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-topbar h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 52px);
}

.admin-filters {
  display: flex;
  gap: 12px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-list,
.admin-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 33, 28, 0.06);
}

.admin-list {
  max-height: calc(100svh - 160px);
  overflow: auto;
  padding: 10px;
}

.application-row {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.application-row:hover,
.application-row.selected {
  background: #f1ece2;
}

.application-row div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.application-row strong {
  color: var(--ink);
}

.application-row span,
.application-row small {
  color: var(--muted);
}

.application-row p {
  margin: 0;
  font-size: 14px;
}

.admin-detail {
  padding: 24px;
}

.empty-detail,
.empty-state {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--muted);
}

.detail-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.detail-head h2 {
  margin: 12px 0 4px;
  font-size: 30px;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--green-dark);
  background: #e2eee5;
  font-size: 13px;
  font-weight: 850;
}

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

.detail-grid label {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
}

.detail-grid span {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  word-break: break-word;
}

.detail-grid .wide {
  grid-column: 1 / -1;
}

.review-panel {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-panel h3 {
  margin: 0;
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .admin-sidebar nav {
    grid-column: 1 / -1;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-list {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .admin-topbar {
    display: grid;
  }

  .admin-filters,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .admin-filters {
    display: grid;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open {
    align-items: start;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.is-open .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .site-header.is-open .site-nav > a,
  .site-header.is-open .nav-menu > summary {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .header-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 8px 0;
  }

  .dropdown {
    position: static;
    transform: none;
    min-width: 0;
    margin: 0 0 10px;
    box-shadow: none;
  }

  .quick-grid,
  .experience-grid,
  .advantage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 92svh;
    align-items: flex-end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(14, 22, 18, 0.9) 0%, rgba(14, 22, 18, 0.62) 62%, rgba(14, 22, 18, 0.18) 100%),
      linear-gradient(90deg, rgba(14, 22, 18, 0.56), rgba(14, 22, 18, 0.12));
  }

  .hero-inner {
    padding: 118px 0 42px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .row-heading {
    display: block;
  }

  .quick-grid,
  .experience-grid,
  .advantage-grid,
  .story-grid,
  .base-grid {
    grid-template-columns: 1fr;
  }

  .base-grid article {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .section-inner,
  .hero-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .hero-actions,
  .site-header.is-open .header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .scroll-row {
    grid-auto-columns: minmax(286px, 88vw);
  }

  .route-card dl {
    grid-template-columns: 1fr;
  }
}
