:root {
  --paper: #f6f7f3;
  --surface: #ffffff;
  --ink: #182022;
  --muted: #657076;
  --line: #d8dedc;
  --pine: #1f6f68;
  --pine-dark: #174f4a;
  --copper: #c46b2f;
  --blue: #2f617f;
  --danger: #a33a33;
  --success-bg: #e9f4ec;
  --error-bg: #f9e9e7;
  --shadow: 0 18px 50px rgba(28, 36, 33, 0.11);
}


* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body {
  min-height: 100vh;
  margin: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(216, 223, 216, 0.7);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.admin-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--pine);
  color: white;
  font-size: 0.9rem;
}

.nav-links,
.admin-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.link-button,
.admin-menu a {
  min-height: 40px;
  padding: 9px 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.nav-links a.active,
.nav-links a:hover,
.link-button:hover,
.admin-menu a.active,
.admin-menu a:hover {
  background: #eef3ee;
  color: var(--ink);
}

.inline-form {
  display: inline;
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--pine);
  border-radius: 8px;
  background: var(--pine);
  color: white;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.button:hover {
  background: var(--pine-dark);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover {
  background: #f2f5f2;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button.danger,
.danger {
  border-color: var(--danger);
  background: var(--danger);
  color: white;
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

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

.flash,
.form-errors {
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 700;
}

.flash + .flash {
  margin-top: 8px;
}

.flash-success {
  border: 1px solid #b8d7bf;
  background: var(--success-bg);
  color: #214c2c;
}

.flash-error,
.form-errors {
  border: 1px solid #e3b6b1;
  background: var(--error-bg);
  color: #74302c;
}

.form-errors {
  margin: 0 0 18px;
}

.form-errors p {
  margin: 0;
}

.form-errors p + p {
  margin-top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(640px, calc(100vh - 68px));
  display: flex;
  align-items: end;
  padding: 88px 32px 56px;
  background:
    linear-gradient(90deg, rgba(18, 24, 21, 0.78), rgba(18, 24, 21, 0.36) 52%, rgba(18, 24, 21, 0.08)),
    url("/assets/delivery-hero.png") center / cover no-repeat;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-frame-image {
  position: absolute;
  z-index: 0;
  left: 17.12%;
  top: 9.8%;
  width: 19%;
  height: 35%;
  overflow: hidden;
  background: #1f2c25;
}

.hero-frame-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform-origin: center;
}

.hero-frame-scale-50 img { transform: scale(0.5); }
.hero-frame-scale-55 img { transform: scale(0.55); }
.hero-frame-scale-60 img { transform: scale(0.6); }
.hero-frame-scale-65 img { transform: scale(0.65); }
.hero-frame-scale-70 img { transform: scale(0.7); }
.hero-frame-scale-75 img { transform: scale(0.75); }
.hero-frame-scale-80 img { transform: scale(0.8); }
.hero-frame-scale-85 img { transform: scale(0.85); }
.hero-frame-scale-90 img { transform: scale(0.9); }
.hero-frame-scale-95 img { transform: scale(0.95); }
.hero-frame-scale-100 img { transform: scale(1); }
.hero-frame-scale-105 img { transform: scale(1.05); }
.hero-frame-scale-110 img { transform: scale(1.1); }
.hero-frame-scale-115 img { transform: scale(1.15); }
.hero-frame-scale-120 img { transform: scale(1.2); }
.hero-frame-scale-125 img { transform: scale(1.25); }
.hero-frame-scale-130 img { transform: scale(1.3); }
.hero-frame-scale-135 img { transform: scale(1.35); }
.hero-frame-scale-140 img { transform: scale(1.4); }
.hero-frame-scale-145 img { transform: scale(1.45); }
.hero-frame-scale-150 img { transform: scale(1.5); }
.hero-frame-scale-155 img { transform: scale(1.55); }
.hero-frame-scale-160 img { transform: scale(1.6); }
.hero-frame-scale-165 img { transform: scale(1.65); }
.hero-frame-scale-170 img { transform: scale(1.7); }
.hero-frame-scale-175 img { transform: scale(1.75); }
.hero-frame-scale-180 img { transform: scale(1.8); }
.hero-frame-scale-185 img { transform: scale(1.85); }
.hero-frame-scale-190 img { transform: scale(1.9); }
.hero-frame-scale-195 img { transform: scale(1.95); }
.hero-frame-scale-200 img { transform: scale(2); }
.hero-frame-scale-205 img { transform: scale(2.05); }
.hero-frame-scale-210 img { transform: scale(2.1); }
.hero-frame-scale-215 img { transform: scale(2.15); }
.hero-frame-scale-220 img { transform: scale(2.2); }
.hero-frame-scale-225 img { transform: scale(2.25); }
.hero-frame-scale-230 img { transform: scale(2.3); }
.hero-frame-scale-235 img { transform: scale(2.35); }
.hero-frame-scale-240 img { transform: scale(2.4); }
.hero-frame-scale-245 img { transform: scale(2.45); }
.hero-frame-scale-250 img { transform: scale(2.5); }

.eyebrow {
  margin: 0 0 8px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0bc72;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

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

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

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.split-section h2,
.process-section h2,
.showcase-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.large-copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.section-heading,
.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading h2,
.admin-heading h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px 26px;
  padding-top: 12px;
}

.work-card {
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(28, 36, 33, 0.06);
}

.work-card-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e6ece6;
}

.work-card-image.image-frame-none {
  overflow: hidden;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.work-card:hover .work-card-image img {
  transform: scale(1.025);
}

.image-frame {
  --frame-size: 0px;
  --frame-radius: 8px;
  --frame-surface: transparent;
  --frame-sheen: transparent;
  --frame-shadow: none;
  position: relative;
  display: block;
  isolation: isolate;
  border-radius: var(--frame-radius);
}

.image-frame > img {
  position: relative;
  z-index: 3;
  border-radius: inherit;
}

.image-frame:not(.image-frame-none)::before,
.image-frame:not(.image-frame-none)::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.image-frame:not(.image-frame-none) {
  overflow: visible;
}

.image-frame:not(.image-frame-none) > img {
  box-shadow: 0 0 0 1px rgba(18, 24, 21, 0.16);
}

.image-frame:not(.image-frame-none)::before {
  inset: calc(var(--frame-size) * -1);
  z-index: 1;
  border-radius: calc(var(--frame-radius) + var(--frame-size));
  background: var(--frame-surface);
  box-shadow: var(--frame-shadow);
}

.image-frame:not(.image-frame-none)::after {
  inset: calc(var(--frame-size) * -1);
  z-index: 2;
  border-radius: calc(var(--frame-radius) + var(--frame-size));
  background: var(--frame-sheen);
}

.image-frame-warm-route {
  --frame-size: 13px;
  --frame-surface:
    linear-gradient(180deg, rgba(255, 215, 145, 0.18), rgba(42, 23, 11, 0.32)),
    repeating-linear-gradient(88deg, #8d5b32 0 9px, #6f4426 9px 18px, #a36a3b 18px 26px);
  --frame-shadow:
    0 10px 26px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(54, 30, 14, 0.75),
    inset 0 0 0 4px rgba(222, 166, 91, 0.34);
}

.image-frame-warm-route {
  --frame-sheen:
    linear-gradient(90deg, rgba(32, 16, 7, 0.42), transparent 18%, transparent 82%, rgba(32, 16, 7, 0.38)),
    repeating-linear-gradient(12deg, rgba(255, 228, 167, 0.12) 0 1px, transparent 1px 8px);
}

.image-frame-modern-shadow {
  --frame-size: 10px;
  --frame-surface: linear-gradient(180deg, #fbfaf5, #e5e0d4);
  --frame-shadow:
    0 12px 28px rgba(13, 20, 18, 0.2),
    inset 0 0 0 1px rgba(30, 36, 33, 0.14),
    inset 0 0 0 5px rgba(255, 255, 255, 0.48);
}

.image-frame-modern-shadow {
  --frame-sheen: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%, rgba(30, 36, 33, 0.08));
}

.image-frame-city-edge {
  --frame-size: 12px;
  --frame-surface: linear-gradient(135deg, #596164, #242b2d 38%, #717a7b 51%, #293033 72%, #171d1f);
  --frame-shadow:
    0 12px 26px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(224, 229, 225, 0.22),
    inset 0 0 0 4px rgba(0, 0, 0, 0.26);
}

.image-frame-city-edge {
  --frame-sheen: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.12));
}

.image-frame-weather-shift {
  --frame-size: 13px;
  --frame-surface:
    radial-gradient(circle at 18% 24%, #707245 0 17%, transparent 18%),
    radial-gradient(circle at 78% 30%, #3c4a37 0 18%, transparent 19%),
    radial-gradient(circle at 52% 82%, #8a7645 0 19%, transparent 20%),
    linear-gradient(135deg, #2f3e2c, #4d5134);
  --frame-shadow:
    0 13px 27px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(18, 24, 18, 0.76),
    inset 0 0 0 4px rgba(164, 142, 81, 0.34);
}

.image-frame-weather-shift {
  --frame-sheen: linear-gradient(180deg, rgba(255, 235, 160, 0.1), rgba(0, 0, 0, 0.18));
}

.image-frame-heavy-shift {
  --frame-size: 14px;
  --frame-surface: linear-gradient(135deg, #5d6566, #2e3638 42%, #697172 52%, #252c2d);
  --frame-shadow:
    0 12px 28px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(232, 236, 229, 0.22),
    inset 0 0 0 5px rgba(0, 0, 0, 0.22);
}

.image-frame-heavy-shift {
  --frame-sheen:
    radial-gradient(circle at 9% 12%, rgba(230, 233, 226, 0.72) 0 2px, rgba(42, 47, 48, 0.82) 3px, transparent 5px),
    radial-gradient(circle at 91% 12%, rgba(230, 233, 226, 0.72) 0 2px, rgba(42, 47, 48, 0.82) 3px, transparent 5px),
    radial-gradient(circle at 9% 88%, rgba(230, 233, 226, 0.72) 0 2px, rgba(42, 47, 48, 0.82) 3px, transparent 5px),
    radial-gradient(circle at 91% 88%, rgba(230, 233, 226, 0.72) 0 2px, rgba(42, 47, 48, 0.82) 3px, transparent 5px);
}

.image-frame-route-line {
  --frame-size: 14px;
  --frame-surface:
    repeating-linear-gradient(45deg, #d3ae72 0 5px, #8b643c 5px 10px, #c59b61 10px 15px),
    linear-gradient(180deg, #5a3a22, #8a6036);
  --frame-shadow:
    0 12px 25px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(65, 40, 19, 0.72),
    inset 0 0 0 5px rgba(255, 230, 170, 0.24);
}

.image-frame-route-line {
  --frame-sheen: linear-gradient(90deg, rgba(52, 31, 13, 0.28), transparent 25%, transparent 75%, rgba(52, 31, 13, 0.24));
}

.image-frame-evening-shift {
  --frame-size: 12px;
  --frame-surface: linear-gradient(135deg, #20363b, #102227 42%, #24434a 62%, #101e22);
  --frame-shadow:
    0 12px 28px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(242, 202, 113, 0.58),
    inset 0 0 0 4px rgba(187, 132, 48, 0.26);
}

.image-frame-evening-shift {
  --frame-sheen: linear-gradient(120deg, rgba(237, 197, 108, 0.28), transparent 33%, rgba(0, 0, 0, 0.18));
}

.image-frame-clean-detail {
  --frame-size: 13px;
  --frame-radius: 10px;
  --frame-surface: linear-gradient(135deg, #787b7c, #303437 38%, #a6a19a 51%, #2b3032 74%, #171b1d);
  --frame-shadow:
    0 13px 28px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(238, 221, 171, 0.46),
    inset 0 0 0 5px rgba(0, 0, 0, 0.24);
}

.image-frame-clean-detail {
  --frame-sheen: linear-gradient(90deg, transparent 46%, rgba(235, 219, 174, 0.28) 49%, rgba(235, 219, 174, 0.28) 51%, transparent 54%);
}

.image-frame-city-structure {
  --frame-size: 14px;
  --frame-surface:
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(33, 30, 25, 0.2) 13px 15px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(33, 30, 25, 0.16) 34px 36px),
    linear-gradient(135deg, #8d8877, #5c594f);
  --frame-shadow:
    0 13px 27px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(230, 222, 195, 0.32),
    inset 0 0 0 5px rgba(41, 35, 26, 0.18);
}

.image-frame-city-structure {
  --frame-sheen: linear-gradient(135deg, rgba(255, 246, 211, 0.16), transparent 38%, rgba(28, 24, 18, 0.18));
}

.image-frame-night-ride {
  --frame-size: 12px;
  --frame-surface: linear-gradient(135deg, #191916, #35312b 42%, #10110f 72%, #30241c);
  --frame-shadow:
    0 13px 28px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(213, 97, 54, 0.38),
    inset 0 0 0 4px rgba(0, 0, 0, 0.34);
}

.image-frame-night-ride {
  --frame-sheen: linear-gradient(135deg, rgba(223, 95, 49, 0.2), transparent 30%, transparent 70%, rgba(223, 95, 49, 0.16));
}

.image-frame-note-paper {
  --frame-size: 12px;
  --frame-surface:
    radial-gradient(circle at 20% 24%, rgba(108, 74, 36, 0.12) 0 12%, transparent 13%),
    radial-gradient(circle at 82% 78%, rgba(108, 74, 36, 0.1) 0 11%, transparent 12%),
    linear-gradient(180deg, #e8d9b6, #cdb681);
  --frame-shadow:
    0 10px 22px rgba(70, 48, 24, 0.22),
    inset 0 0 0 1px rgba(112, 80, 39, 0.28),
    inset 0 0 0 5px rgba(255, 245, 212, 0.2);
}

.image-frame-note-paper {
  --frame-sheen: linear-gradient(135deg, rgba(255, 248, 219, 0.2), transparent 44%, rgba(104, 75, 38, 0.12));
}

.image-frame-highlight-glow {
  --frame-size: 12px;
  --frame-surface: linear-gradient(135deg, #17463f, #4b8f82 34%, #d09b4d 58%, #143b36);
  --frame-shadow:
    0 13px 30px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(192, 255, 234, 0.28),
    inset 0 0 0 5px rgba(17, 54, 49, 0.32);
}

.image-frame-highlight-glow {
  --frame-sheen: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 28%, transparent 70%, rgba(255, 231, 166, 0.22));
}

.image-frame-clean-view {
  --frame-size: 10px;
  --frame-surface: linear-gradient(180deg, rgba(242, 248, 243, 0.95), rgba(188, 204, 197, 0.92));
  --frame-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(54, 83, 78, 0.22),
    inset 0 0 0 5px rgba(255, 255, 255, 0.34);
}

.image-frame-clean-view {
  --frame-sheen: linear-gradient(115deg, rgba(255, 255, 255, 0.38) 0 18%, transparent 19% 58%, rgba(255, 255, 255, 0.2) 59% 68%, transparent 69%);
}

.image-frame-prep-table {
  --frame-size: 13px;
  --frame-surface:
    repeating-linear-gradient(90deg, #8b6037 0 14px, #6f4a2a 14px 28px, #9a6d40 28px 42px),
    linear-gradient(180deg, #8b6037, #5d381d);
  --frame-shadow:
    0 12px 26px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(49, 31, 15, 0.72),
    inset 0 0 0 4px rgba(245, 197, 123, 0.22);
}

.image-frame-prep-table {
  --frame-sheen: linear-gradient(90deg, rgba(43, 24, 9, 0.28), transparent 25%, transparent 75%, rgba(43, 24, 9, 0.22));
}

.work-card:hover .work-card-image.image-frame:not(.image-frame-none) img {
  transform: none;
}

.work-card-body {
  padding: 18px;
}

.work-card h3 {
  margin: 7px 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.work-card p,
.empty-state p,
.admin-row p,
.lead {
  color: var(--muted);
}

.work-meta,
.row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 800;
}

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

.process-grid article,
.showcase-card,
.contact-form,
.inquiry-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.process-grid article span,
.showcase-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-grid h3,
.showcase-card h3 {
  margin: 0 0 8px;
}

.process-grid p,
.showcase-card p,
.contact-copy p,
.inquiry-message {
  color: var(--muted);
}

.showcase-section .section-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
  gap: 26px;
  align-items: start;
}

.contact-section-form-only {
  grid-template-columns: minmax(320px, 720px);
  justify-content: center;
}

.contact-copy {
  padding-top: 8px;
}

.contact-facts {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.contact-facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.contact-facts dt {
  color: var(--muted);
  font-weight: 900;
}

.contact-facts dd {
  margin: 0;
}

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

.empty-state {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.empty-state img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.empty-state h2,
.empty-state h3 {
  margin: 0 0 8px;
}

.empty-state p {
  margin: 0 0 16px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--ink);
}

.legal-page {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.legal-page h1 {
  margin: 0 0 12px;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 1;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  margin-top: 18px;
  padding: 22px;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.legal-card p {
  color: var(--muted);
}

.legal-card a {
  color: var(--pine);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.legal-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-list dt {
  color: var(--muted);
  font-weight: 900;
}

.legal-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.pre-line {
  white-space: pre-line;
}

.detail-page {
  padding-bottom: 48px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 40px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 24px;
}

.detail-media {
  overflow: hidden;
  border-radius: 8px;
  background: #e6ece6;
}

.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.detail-copy {
  align-self: center;
}

.detail-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1;
}

.detail-facts {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.detail-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.detail-facts dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-facts dd {
  margin: 0;
}

.detail-text {
  padding-top: 28px;
}

.detail-text h2 {
  margin-top: 0;
}

.detail-text p {
  max-width: 760px;
  white-space: pre-line;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.image-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.public-body {
  --rust-bg: #171a15;
  --rust-bg-deep: #10130f;
  --rust-panel: rgba(45, 35, 25, 0.9);
  --rust-panel-soft: rgba(63, 48, 34, 0.78);
  --rust-ink: #f4ead8;
  --rust-muted: #cdbfa6;
  --rust-line: rgba(215, 158, 82, 0.28);
  --rust-line-strong: rgba(215, 158, 82, 0.44);
  --rust-copper: #d28745;
  --rust-green: #244c42;
  background:
    linear-gradient(180deg, #1d231d 0, var(--rust-bg) 360px, var(--rust-bg-deep) 100%),
    repeating-linear-gradient(8deg, rgba(210, 143, 69, 0.08) 0 1px, transparent 1px 16px);
  color: var(--rust-ink);
}

.public-body .topbar {
  isolation: isolate;
  overflow: visible;
  border-bottom: 1px solid rgba(8, 5, 3, 0.95);
  background:
    linear-gradient(180deg, rgba(103, 61, 28, 0.18) 0%, rgba(10, 6, 3, 0.36) 72%, rgba(2, 1, 1, 0.58) 100%),
    radial-gradient(ellipse at 18% 28%, rgba(219, 139, 62, 0.24), transparent 30%),
    radial-gradient(ellipse at 78% 54%, rgba(238, 166, 82, 0.14), transparent 32%),
    repeating-linear-gradient(0deg, rgba(255, 210, 133, 0.08) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, #1e0f07 0 150px, #2c170c 150px 154px, #402414 154px 322px, #241108 322px 326px),
    linear-gradient(90deg, #211006 0%, #4a2a16 28%, #2a1509 54%, #56311a 76%, #1a0c05 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 217, 150, 0.16),
    inset 0 -15px 22px rgba(3, 2, 1, 0.74),
    0 14px 28px rgba(0, 0, 0, 0.36);
  backdrop-filter: none;
}

.public-body .brand,
.public-body .link-button,
.public-body .nav-links a {
  color: #f8ecd7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.48);
}

.public-body .brand-mark {
  border: 1px solid rgba(236, 198, 130, 0.34);
  background: linear-gradient(180deg, #326858, #20483d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 7px 18px rgba(0, 0, 0, 0.3);
}

.public-body .nav-links a.active,
.public-body .nav-links a:hover,
.public-body .link-button:hover {
  background: rgba(246, 231, 202, 0.16);
  color: #fff8e8;
}

.public-body main {
  background:
    linear-gradient(180deg, rgba(18, 20, 15, 0) 0 280px, rgba(18, 20, 15, 0.92) 280px),
    repeating-linear-gradient(0deg, rgba(255, 220, 150, 0.035) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(94deg, rgba(94, 62, 35, 0.18) 0 2px, transparent 2px 42px),
    linear-gradient(135deg, #1a201a 0%, #2b241d 42%, #151814 100%);
}

.public-body .section {
  color: var(--rust-ink);
}

.public-body .split-section,
.public-body .process-section,
.public-body #beitraege,
.public-body .contact-section,
.public-body .detail-text {
  border-top: 1px solid var(--rust-line);
}

.public-body .split-section h2,
.public-body .process-section h2,
.public-body .section-heading h2,
.public-body .contact-section h2,
.public-body .detail-copy h1,
.public-body .legal-page h1 {
  color: #fff2dc;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
}

.public-body .eyebrow {
  color: var(--rust-copper);
}

.public-body .large-copy,
.public-body .lead,
.public-body .work-card p,
.public-body .empty-state p,
.public-body .process-grid p,
.public-body .contact-copy p,
.public-body .legal-card p,
.public-body .inquiry-message,
.public-body .detail-text p {
  color: var(--rust-muted);
}

.public-body .work-card,
.public-body .process-grid article,
.public-body .contact-form,
.public-body .empty-state,
.public-body .legal-card,
.public-body .inquiry-card {
  border-color: var(--rust-line);
  background:
    linear-gradient(180deg, rgba(77, 55, 36, 0.9), rgba(34, 28, 21, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 218, 145, 0.055) 0 1px, transparent 1px 18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.public-body .work-card {
  border-width: 1px;
}

.public-body .work-card h3,
.public-body .work-card h3 a,
.public-body .process-grid h3,
.public-body .legal-card h2,
.public-body .detail-text h2 {
  color: #fff3df;
}

.public-body .work-card-image,
.public-body .detail-media,
.public-body .image-gallery .image-frame,
.public-body .empty-state img {
  background: #111813;
  box-shadow: inset 0 0 0 1px rgba(247, 207, 137, 0.18);
}

.public-body .work-meta,
.public-body .row-meta,
.public-body .process-grid article span {
  color: #f0a55f;
}

.public-body .contact-facts div,
.public-body .detail-facts div,
.public-body .legal-list div,
.public-body .site-footer {
  border-color: var(--rust-line);
}

.public-body .contact-facts dt,
.public-body .detail-facts dt,
.public-body .legal-list dt,
.public-body .site-footer {
  color: var(--rust-muted);
}

.public-body .contact-facts a,
.public-body .legal-card a,
.public-body .footer-links a {
  color: #f0c782;
}

.public-body .contact-form input,
.public-body .contact-form textarea {
  border-color: rgba(230, 178, 108, 0.36);
  background: rgba(246, 235, 211, 0.94);
  color: #1b211d;
}

.public-body .contact-form input:focus,
.public-body .contact-form textarea:focus {
  border-color: #e0a15b;
  outline-color: rgba(224, 161, 91, 0.28);
}

.public-body .contact-form label span {
  color: #f4ead8;
}

.public-body .button {
  border-color: #386b5d;
  background: linear-gradient(180deg, #326456, #23483f);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.public-body .button:hover {
  background: linear-gradient(180deg, #3b7464, #285247);
}

.public-body .button-secondary {
  border-color: var(--rust-line-strong);
  background: rgba(244, 234, 216, 0.1);
  color: #fff1db;
}

.public-body .button-secondary:hover {
  background: rgba(244, 234, 216, 0.18);
}

.public-body .site-footer {
  color: var(--rust-muted);
}

.auth-body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(45, 91, 79, 0.1), rgba(181, 82, 57, 0.08)),
    var(--paper);
}

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

.auth-brand {
  margin-bottom: 28px;
}

.auth-panel h1 {
  margin: 0 0 22px;
  font-size: 2rem;
}

.form-stack,
.admin-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

label span {
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5cf;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 11px 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(45, 91, 79, 0.18);
  border-color: var(--pine);
}

.subtle-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--pine);
  font-weight: 800;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.field-hint {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.dev-link {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-body {
  background: #f5f7f4;
}

.admin-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100vh;
  border-right: 1px solid var(--line);
  background: var(--surface);
  padding: 24px 18px;
}

.admin-menu {
  align-items: stretch;
  flex-direction: column;
}

.admin-menu a {
  display: flex;
}

.admin-main {
  width: min(1160px, 100%);
  padding: 34px;
}

.admin-main.narrow {
  max-width: 840px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.stat-grid div,
.form-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.stat-grid span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.stat-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
}

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

.admin-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
}

.admin-row > img {
  width: 112px;
  height: 84px;
  border-radius: 8px;
  object-fit: cover;
  background: #e6ece6;
}

.admin-row-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.admin-row h2 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.16rem;
}

.admin-row p {
  margin: 5px 0;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-pill.published {
  background: var(--success-bg);
  color: #214c2c;
}

.status-pill.draft {
  background: #eef1f3;
  color: var(--blue);
}

.form-section h2 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

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

.form-grid.compact {
  align-items: end;
}

.span-2 {
  grid-column: 1 / -1;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.frame-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.frame-choice {
  position: relative;
  display: block;
}

.frame-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.frame-choice-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.frame-choice input:checked + .frame-choice-card {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(45, 91, 79, 0.15);
}

.frame-choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 91, 79, 0.48);
}

.frame-choice-preview {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: #e6ece6;
}

.frame-choice-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-choice-copy {
  display: grid;
  align-content: center;
  gap: 4px;
  min-width: 0;
}

.frame-choice-copy strong {
  line-height: 1.12;
}

.frame-choice-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.registration-status {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf7;
  padding: 12px;
}

.registration-status span {
  color: var(--muted);
}

.compliance-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #d7c39b;
  border-radius: 8px;
  background: #fff8e8;
  margin-bottom: 18px;
  padding: 16px;
}

.compliance-alert p {
  margin: 5px 0 0;
  color: var(--muted);
}

.compliance-alert.pending {
  border-color: #b8d7bf;
  background: var(--success-bg);
}

.compliance-alert.approved {
  border-color: #b8d7bf;
  background: var(--success-bg);
}

.compliance-alert.rejected {
  border-color: #e3b6b1;
  background: var(--error-bg);
}

.review-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
}

.review-card h2 {
  margin: 8px 0 4px;
}

.review-card p {
  margin: 0 0 8px;
  color: var(--muted);
}

.review-reject-form {
  margin-top: 16px;
}

.file-box {
  min-height: 120px;
  align-content: center;
  justify-items: center;
  border: 1px dashed #b7c2bb;
  border-radius: 8px;
  background: #f7faf7;
  padding: 18px;
  text-align: center;
}

.file-box input {
  max-width: 420px;
}

.hero-window-preview {
  width: min(520px, 100%);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 12px solid #d8d2b8;
  border-radius: 4px;
  background: #1f2c25;
  margin-bottom: 16px;
}

.hero-window-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform-origin: center;
}

.hero-scale-form {
  gap: 12px;
  margin-bottom: 18px;
}

.hero-scale-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  align-items: end;
  gap: 12px;
}

.hero-scale-head div {
  display: grid;
  gap: 4px;
}

.hero-scale-head span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-scale-head strong {
  font-size: 1.45rem;
}

.hero-scale-head input {
  min-height: 42px;
  text-align: center;
}

.hero-scale-form input[type="range"] {
  width: 100%;
  accent-color: var(--pine);
}

.hero-image-empty {
  margin-bottom: 16px;
}

.hero-image-form {
  gap: 14px;
  margin-bottom: 12px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.existing-images {
  margin-top: 22px;
}

.image-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.image-admin-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
}

.image-admin-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.image-order-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.image-order-control {
  display: grid;
  grid-template-columns: 1fr minmax(76px, 96px);
  align-items: center;
  gap: 10px;
}

.image-order-control span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.image-order-control input {
  min-height: 42px;
  padding: 8px 10px;
  text-align: center;
}

.image-order-actions {
  margin-top: 14px;
}

.image-folder-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 220px));
  align-items: start;
}

.image-folder-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.image-folder-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #e6ece6;
}

.image-folder-thumb img,
.frame-dropdown-preview img,
.frame-menu-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-folder-controls {
  display: grid;
  gap: 8px;
}

.frame-dropdown {
  position: relative;
}

.frame-dropdown summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 52px;
  border: 1px solid #cbd5cf;
  border-radius: 8px;
  background: #f8faf8;
  padding: 7px;
  cursor: pointer;
  list-style: none;
}

.frame-dropdown summary::-webkit-details-marker {
  display: none;
}

.frame-dropdown summary small,
.frame-menu-option-card small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.frame-dropdown summary strong,
.frame-menu-option-card strong {
  display: block;
  overflow: hidden;
  font-size: 0.86rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.frame-dropdown-preview,
.frame-menu-preview {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: #e6ece6;
}

.frame-menu {
  position: absolute;
  z-index: 25;
  left: 0;
  right: auto;
  top: calc(100% + 6px);
  display: grid;
  width: min(380px, calc(100vw - 48px));
  max-height: 320px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(28, 36, 33, 0.2);
  padding: 6px;
}

.frame-menu-option {
  display: block;
}

.frame-menu-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.frame-menu-option-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
}

.frame-menu-option-card:hover,
.frame-menu-option input:checked + .frame-menu-option-card {
  border-color: rgba(45, 91, 79, 0.34);
  background: #eef3ee;
}

.image-folder-card .danger {
  width: 100%;
}

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

.inquiry-card.unread {
  border-color: #b8d7bf;
}

.inquiry-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.inquiry-head h2 {
  margin: 8px 0 0;
  font-size: 1.25rem;
}

.inquiry-facts {
  margin: 0;
}

.inquiry-message {
  margin: 16px 0;
  white-space: pre-line;
}

.status-page {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.status-page h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

@media (max-width: 900px) {
  .detail-hero,
  .split-section,
  .contact-section,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-menu {
    flex-flow: row wrap;
  }

  .admin-row {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .row-actions {
    grid-column: 1 / -1;
    justify-content: start;
  }

  .detail-media img {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 540px;
    padding: 72px 16px 42px;
  }

  .hero-frame-image {
    left: 17%;
    top: 9%;
    width: 37%;
    height: 25%;
  }

  .section,
  .detail-hero,
  .site-footer {
    width: calc(100% - 28px);
  }

  .section-heading,
  .admin-heading,
  .site-footer,
  .compliance-alert,
  .review-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .empty-state,
  .form-grid,
  .stat-grid,
  .contact-form,
  .legal-list div {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding: 20px 14px 32px;
  }

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

  .admin-row > img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .admin-row-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .row-actions,
  .form-actions {
    width: 100%;
  }

  .row-actions form,
  .row-actions a,
  .form-actions a,
  .form-actions button {
    flex: 1 1 180px;
  }
}

html {
  background: #10130f;
}

.public-body {
  background:
    linear-gradient(180deg, #151b16 0, #10130f 420px, #0c100d 100%),
    radial-gradient(circle at 50% 0, rgba(194, 118, 55, 0.14), transparent 38%);
}

.public-body .site-footer {
  width: 100%;
  margin: 0;
  padding: 28px max(32px, calc((100vw - 1120px) / 2));
  background: #111d20;
  color: #f6f0e2;
}
