:root {
  --bg: #070707;
  --panel: #121212;
  --panel-soft: #181818;
  --orange: #d97b00;
  --orange-light: #ff9d00;
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --line: #2a2a2a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 24% 0, rgba(54, 31, 6, .45) 0, rgba(8, 8, 8, .98) 34%, #020202 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 310px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 3.4vw;
  background: rgba(0, 0, 0, .94);
  border-bottom: 1px solid rgba(255, 157, 0, .12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .55);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 280px;
  max-height: 76px;
  object-fit: contain;
}

.brand span {
  color: var(--orange-light);
  font-weight: 900;
}

.top nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 24px;
  flex-wrap: wrap;
}

.top nav a {
  position: relative;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .01em;
  transform-origin: center;
  transition: color .18s ease, transform .18s ease, text-shadow .18s ease;
}

.top nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--orange-light);
  opacity: 0;
  transform: scaleX(.2);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

.top nav a:hover,
.top nav a.active,
.adminEdit:hover {
  color: var(--orange-light);
}

.top nav a:hover {
  transform: translateY(-2px) scale(1.08);
  text-shadow: 0 0 16px rgba(255, 157, 0, .35);
}

.top nav a:hover::after,
.top nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.topCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  white-space: nowrap;
  border-radius: 6px;
  background: linear-gradient(135deg, #ee8500, #ff9d00);
  color: #060606;
  font-size: 14px;
  font-weight: 950;
  padding: 0 20px;
  box-shadow: 0 0 24px rgba(255, 157, 0, .17);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.topCta span {
  font-size: 24px;
  line-height: 1;
}

.topCta:hover {
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.06);
  box-shadow: 0 0 32px rgba(255, 157, 0, .32);
}

.menuButton {
  display: none;
  border: 1px solid #2f1e0b;
  border-radius: 8px;
  background: #111;
  color: var(--orange-light);
  font-weight: 900;
  padding: 10px 14px;
}

main {
  min-height: 70vh;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 5vw 54px;
  text-align: center;
}

.heroText {
  max-width: 850px;
}

.hero h1,
.pageHead h1 {
  margin: 10px 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 1.02;
}

.hero h1 span {
  color: var(--orange-light);
  font-size: .72em;
  white-space: nowrap;
}

.hero p,
.lead,
.pageHead p {
  max-width: 850px;
  color: #ddd;
  font-size: 20px;
  line-height: 1.5;
}

.heroLogo {
  padding: 34px;
  border: 1px solid #33210c;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(217, 123, 0, .16), rgba(255, 255, 255, .04));
  box-shadow: 0 0 90px rgba(217, 123, 0, .14);
}

.heroLogo img {
  max-height: 360px;
  object-fit: contain;
  margin: auto;
}

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

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #0b0b0b;
  font-weight: 900;
  padding: 14px 22px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(217, 123, 0, .25);
}

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

.btn.ghost {
  border: 1px solid var(--orange);
  background: #111;
  color: var(--orange-light);
}

.btn.small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
}

.btn.wide {
  width: 100%;
  margin-top: 14px;
}

.section {
  padding: 40px 5vw;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 36px;
}

.aboutPanel {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #151515, #080808);
}

.aboutLogo {
  width: 100%;
  max-width: 260px;
  object-fit: contain;
}

.aboutText {
  max-width: 980px;
}

.aboutText p {
  margin: 0 0 14px;
  color: #e8e8e8;
  font-size: 18px;
  line-height: 1.65;
}

.grid {
  display: grid;
  gap: 22px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #151515, #0c0c0c);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
}

.imgWrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, #111, #050505);
}

.imgWrap img,
.galleryGrid img,
.adminCard img,
.mainProduct {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galleryGrid img,
.mainProduct {
  object-fit: contain;
  background: #050505;
}

.card.product h3 {
  margin-bottom: 8px;
  font-size: 24px;
  overflow-wrap: anywhere;
  word-break: normal;
}

.card.product p {
  overflow-wrap: anywhere;
}

.cat,
.eyebrow {
  color: var(--orange-light);
  font-weight: 900;
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price {
  margin-top: 14px;
}

.price b {
  color: #fff;
}

.strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 5vw;
  padding: 30px;
  border: 1px solid #3b270c;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(217, 123, 0, .16), rgba(255, 255, 255, .04));
}

.pageHead {
  padding: 55px 5vw 25px;
}

.centered {
  text-align: center;
}

.centered p {
  margin-left: auto;
  margin-right: auto;
}

.productPage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 34px;
  padding: 45px 5vw;
}

.productShowcase {
  display: grid;
  grid-template-columns: minmax(0, 2.08fr) minmax(360px, 1fr);
  gap: 34px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 30px 4.3vw 26px;
}

.productMainCol,
.productSideCol {
  min-width: 0;
}

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.crumbs a {
  color: var(--orange-light);
}

.crumbs span {
  color: #c8c8c8;
}

.crumbs b {
  color: #f2f2f2;
  font-weight: 700;
}

.productShowcase h1 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.2vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.productLead {
  margin: 0 0 16px;
  color: #f2f2f2;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.45;
}

.heroVehicle {
  position: relative;
  min-height: 395px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 255, 255, .24), rgba(255, 255, 255, .04) 27%, rgba(0, 0, 0, 0) 58%);
}

.heroVehicle::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .66)), var(--portrait-bg);
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  transform: scale(1.08);
  transition: opacity .2s ease;
}

.heroVehicle.portraitImageFrame::before {
  opacity: .72;
}

.heroVehicle img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 25px rgba(0, 0, 0, .72));
  cursor: zoom-in;
}

.heroVehicle.portraitImageFrame img {
  width: auto;
  max-width: min(76%, 520px);
  border-radius: 10px;
  background: rgba(0, 0, 0, .32);
}

.thumbRail {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.thumbRail button {
  height: 112px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #111;
  cursor: pointer;
}

.thumbRail button.active {
  border: 2px solid var(--orange-light);
}

.productThumb {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.productThumb:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--orange-light);
  box-shadow: 0 0 22px rgba(255, 157, 0, .20);
}

.thumbRail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productImageUploadGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin: 12px 0 18px;
}

.miniPreview {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin: 8px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
}

.deleteImageCheck {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #ffb3b3;
  font-size: 14px;
  font-weight: 900;
}

.deleteImageCheck input {
  width: auto;
  margin: 0;
}

.productBenefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.productBenefits article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.productBenefits article:first-child {
  padding-left: 0;
}

.productBenefits article:last-child {
  padding-right: 0;
  border-right: 0;
}

.productBenefits span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  color: var(--orange-light);
  font-size: 34px;
  font-weight: 900;
}

.productBenefits h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.productBenefits p {
  margin: 0;
  color: #e6e6e6;
  font-size: 16px;
  line-height: 1.45;
}

.productSideCol {
  display: grid;
  gap: 28px;
  align-content: start;
  padding-top: 12px;
}

.sidePanel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .32);
}

.featurePanel {
  padding: 34px 34px 24px;
}

.sideLogo {
  width: 220px;
  height: 158px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.sidePanel h2 {
  margin: 0 0 14px;
  font-size: 27px;
  line-height: 1.15;
}

.sidePanel p {
  margin: 0 0 13px;
  color: #f0f0f0;
  font-size: 17px;
  line-height: 1.55;
}

.cleanTicks {
  list-style: none;
  padding: 22px 0 18px;
  margin: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.cleanTicks li {
  position: relative;
  margin: 14px 0;
  padding-left: 34px;
  color: #f4f4f4;
  font-size: 17px;
}

.cleanTicks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--orange-light);
  border-radius: 50%;
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 900;
}

.requestBtn {
  width: 100%;
  min-height: 54px;
  border-radius: 7px;
  font-size: 17px;
}

.featurePanel small {
  display: block;
  margin-top: 12px;
  color: #f5f5f5;
  text-align: center;
}

.helpPanel {
  min-height: 238px;
  padding: 28px 30px;
}

.helpPanel h2 {
  color: var(--orange-light);
  font-size: 25px;
}

.helpPanel img {
  position: absolute;
  right: -42px;
  bottom: -34px;
  width: 245px;
  opacity: .18;
  filter: grayscale(1);
}

.helpPanel .cleanTicks {
  width: 70%;
  margin-top: 8px;
  padding-top: 0;
  border-top: 0;
}

.helpPanel .cleanTicks li {
  margin: 10px 0;
  font-size: 16px;
}

.requestSection {
  padding: 28px 4.3vw 50px;
}

.cutLettersRequestSection {
  padding-inline: 2vw;
}

.requestForm {
  max-width: 1440px;
}

.botTrap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.botConfirmation {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  margin: 4px 0 18px;
  padding: 12px 16px;
  border: 1px solid #3c3c3c;
  border-radius: 6px;
  background: #101010;
  color: #f4f4f4;
  font-weight: 700;
  cursor: pointer;
}

.botConfirmation input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--orange);
}

.formError {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #cc6f00;
  border-radius: 6px;
  background: #2a1705;
  color: #ffd59b;
  font-weight: 700;
}

.cutLettersRequestForm {
  max-width: 1760px;
  width: 100%;
}

.letterDesigner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(360px, .85fr);
  gap: 28px;
  margin-bottom: 24px;
  padding: clamp(18px, 2.4vw, 34px);
  border: 1px solid rgba(255, 157, 0, .32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 157, 0, .13), transparent 34%),
    linear-gradient(145deg, #171717, #070707);
  color: #f7f7f7;
}

.letterDesigner h3 {
  margin: 0 0 16px;
  color: var(--orange-light);
  font-size: 28px;
}

.letterDesigner p {
  margin: 0;
  color: #d8d8d8;
}

.letterDesigner .fieldLabel {
  color: #f7f7f7;
}

.letterDesigner input,
.letterDesigner textarea,
.letterDesigner select {
  border-color: #3b3b3b;
  border-radius: 6px;
  background: #090909;
  color: #fff;
}

.letterToolbar {
  display: flex;
  gap: 8px;
}

.letterToggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #3f3f3f;
  background: #0b0b0b;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.letterToggle.italic span {
  font-family: Georgia, serif;
  font-style: italic;
}

.letterToggle.active {
  border-color: var(--orange);
  background: rgba(255, 157, 0, .14);
  color: var(--orange-light);
}

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

.letterPreviewBox {
  position: relative;
  min-height: 410px;
  padding: 56px 52px 42px 28px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #efefef;
}

.letterPreviewCanvas {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: start;
  min-height: 250px;
  overflow: hidden;
  padding: 12px;
  transition: background .18s ease;
}

.letterPreviewCanvas.darkPreview {
  background: #151515;
}

.letterPreviewText {
  color: #050505;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  transform-origin: center;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}

.letterWidthMarker,
.letterHeightMarker {
  position: absolute;
  color: #050505;
  font-size: 25px;
  line-height: 1;
  white-space: nowrap;
}

.letterWidthMarker {
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.letterWidthMarker::before,
.letterWidthMarker::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  margin: 0 8px 7px;
  background: #050505;
}

.letterHeightMarker {
  top: 50%;
  right: 6px;
  transform: translateY(-50%) rotate(90deg);
}

.letterHeightMarker::before,
.letterHeightMarker::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  margin: 0 8px 7px;
  background: #050505;
}

.letterControls {
  align-self: start;
}

.letterControlGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.letterHeightField span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-left: 8px;
}

.letterHeightField input {
  width: 76px;
  margin: 0;
  padding: 8px;
}

.letterColorChoices {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.letterColorChoices label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}

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

.letterColorChoices span {
  width: 27px;
  height: 27px;
  border: 1px solid #888;
  border-radius: 50%;
}

.letterColorChoices input:checked + span {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.letterMeasurements {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 157, 0, .35);
  color: #fff;
}

.letterMeasurements b {
  color: var(--orange-light);
}

.productInlineAdmin {
  margin-top: 18px;
}

.productMedia {
  display: grid;
  gap: 16px;
  align-items: center;
}

.mainProduct {
  height: clamp(320px, 52vw, 620px);
  max-height: 620px;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #050505;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .55);
}

.inlineAdminBox {
  padding: 18px;
  border: 1px solid #3b270c;
  border-radius: 16px;
  background: rgba(14, 14, 14, .96);
}

.inlineAdminBox form {
  margin-top: 10px;
}

.inlineAdminBox .file {
  margin-bottom: 8px;
}

.hiddenPreview {
  display: none;
}

.productInfo,
.panel,
.formBox {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #161616, #0d0d0d);
}

.productInfo h1 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
}

.productInfo small {
  display: block;
  margin-top: 10px;
  color: #ddd;
  text-align: center;
}

.big {
  margin: 20px 0;
  font-size: 26px;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ticks {
  list-style: none;
  padding: 0;
}

.ticks li {
  margin: 12px 0;
}

.ticks li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--orange-light);
  font-weight: 900;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

input,
textarea,
select {
  width: 100%;
  margin: 8px 0 14px;
  padding: 14px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #090909;
  color: #fff;
  font: inherit;
}

.fieldLabel {
  display: block;
  margin: 12px 0 4px;
  color: #f4f4f4;
  font-size: 15px;
  font-weight: 900;
}

.fieldLabel input,
.fieldLabel textarea,
.fieldLabel select {
  margin-top: 7px;
}

.helpText {
  color: var(--muted);
  line-height: 1.5;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.file {
  display: block;
  margin: 12px 0;
  padding: 16px;
  border: 1px dashed var(--orange);
  border-radius: 12px;
  color: var(--orange-light);
}

.file input {
  border: 0;
  margin-top: 10px;
  padding-left: 0;
}

.formBox {
  max-width: 900px;
  margin: auto;
}

.cutLettersRequestForm {
  max-width: min(1760px, 96vw);
  width: 100%;
}

.cutLettersRequestForm .letterDesigner {
  width: 100%;
}

.small {
  max-width: 440px;
  width: 100%;
}

.login {
  display: flex;
  justify-content: center;
  padding: 80px 5vw;
}

.error {
  padding: 12px;
  border-radius: 8px;
  background: #4b1111;
}

.success {
  padding: 12px;
  border-radius: 8px;
  background: #12351d;
  color: #d8ffe1;
  font-weight: 800;
}

.accountBox {
  margin: 22px 0 0;
}

.adminPageIntro,
.projectListHeading,
.projectAdminHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.adminPageIntro {
  margin-bottom: 22px;
}

.adminPageIntro h1,
.projectListHeading h2,
.projectAdminHead h2 {
  margin-top: 0;
}

.galleryAdminActions {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 20px;
  align-items: start;
  margin: 22px 0 42px;
}

.galleryAdminActions > *,
.adminPageIntro > *,
.projectAdminHead > *,
.projectPicker {
  min-width: 0;
}

.galleryAdminActions .formBox {
  margin: 0;
}

.projectPicker {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
}

.projectPicker legend {
  padding: 0 8px;
  color: var(--orange-light);
  font-weight: 900;
}

.projectMode {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border: 1px solid transparent;
  background: #090909;
  cursor: pointer;
}

.projectMode:has(input:checked) {
  border-color: rgba(255, 157, 0, .7);
  background: rgba(255, 157, 0, .08);
}

.projectMode input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.projectMode span,
.projectMode small {
  display: block;
}

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

.galleryFilePicker {
  margin: 16px 0;
}

.projectListHeading {
  align-items: end;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

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

.projectAdminList {
  display: grid;
  gap: 24px;
  margin-top: 20px;
}

.projectAdminBlock {
  padding: 20px;
  border: 1px solid var(--line);
  background: #0c0c0c;
}

.projectAdminHead {
  margin-bottom: 18px;
}

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

.projectAdminHead strong {
  color: var(--orange-light);
}

.projectAdminLinks {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.projectAdminLinks details {
  position: relative;
}

.projectAdminLinks summary {
  padding: 10px 13px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 800;
}

.projectEditForm {
  position: absolute;
  z-index: 5;
  top: calc(100% + 8px);
  right: 0;
  width: min(380px, 85vw);
  padding: 16px;
  border: 1px solid var(--orange);
  background: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .55);
}

.projectEditForm label,
.projectImageActions label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.projectImageGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.projectImageCard {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #151515;
}

.projectImageCard .galleryOpen {
  aspect-ratio: 4 / 3;
  background: #050505;
}

.projectImageCard img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.projectImageActions {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.projectImageActions select,
.projectImageActions button {
  width: 100%;
}

.projectEmpty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px dashed var(--line);
  color: var(--muted);
}

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

.albumFolderGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 220px));
  gap: 16px;
}

.albumFolder {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #151515, #090909);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.albumFolder:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255, 157, 0, .65);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .35);
}

.albumCover {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 157, 0, .2), transparent 36%),
    #050505;
}

.albumCover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.albumFolderText {
  display: grid;
  gap: 3px;
}

.albumFolderText strong {
  color: #fff;
  font-size: 17px;
}

.albumFolderText small {
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 900;
}

.galleryGrid article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #111;
}

.galleryOpen {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.galleryOpen img {
  transition: transform .18s ease, filter .18s ease;
}

.galleryOpen:hover img {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.galleryGrid img {
  height: 220px;
  border-radius: 12px;
}

.galleryOnlyImages article {
  padding: 0;
  overflow: hidden;
}

.galleryOnlyImages .galleryOpen,
.galleryOnlyImages img {
  display: block;
  width: 100%;
}

.galleryOnlyImages img {
  height: 260px;
}

.galleryOnlyImages .galleryOpen {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.galleryMasonry {
  columns: 4 250px;
  column-gap: 16px;
}

.galleryMasonry article {
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
}

.galleryMasonry .galleryOpen,
.galleryMasonry img {
  display: block;
  width: 100%;
}

.galleryMasonry img {
  height: auto;
  transition: transform .18s ease, filter .18s ease;
}

.galleryMasonry .galleryOpen:hover img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.adminGallery.galleryOnlyImages article {
  padding: 12px;
}

.adminGallery.galleryOnlyImages p {
  margin: 10px 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, .88);
}

.lightbox figure {
  width: min(1100px, 94vw);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: #050505;
}

.lightbox figcaption {
  margin-top: 12px;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.lightboxClose {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.albumBlock {
  margin-bottom: 46px;
}

.albumHead {
  margin-bottom: 18px;
}

.albumHead h2 {
  margin-bottom: 6px;
}

.albumHead p {
  margin: 0;
  color: var(--muted);
}

.albumAdminGrid,
.newsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 20px 0 34px;
}

.newsCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #151515, #0c0c0c);
}

.newsCard img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #050505;
}

.newsCard div {
  padding: 20px;
}

.newsCard h2 {
  margin: 8px 0;
  font-size: 28px;
}

.articlePage {
  padding-bottom: 30px;
}

.newsHero {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 70px 5vw;
  background: linear-gradient(135deg, rgba(217, 123, 0, .16), rgba(255, 255, 255, .04));
  background-position: center;
  background-size: cover;
}

.newsHero > div {
  max-width: 850px;
}

.newsHero h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 1.02;
  margin: 10px 0;
}

.newsHero p {
  max-width: 750px;
  color: #ddd;
  font-size: 20px;
  line-height: 1.5;
}

.articleBody {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 5vw;
}

.articleBody p {
  color: #e8e8e8;
  font-size: 19px;
  line-height: 1.7;
}

.articleBody figure {
  margin: 28px auto;
}

.articleBody img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #050505;
}

.newsLivePreview {
  padding: 16px;
}

.previewArticle {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #070707;
}

.previewArticle .newsHero {
  min-height: 260px;
  padding: 32px;
}

.previewArticle .newsHero h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.previewArticle .newsHero p {
  font-size: 16px;
}

.previewArticle .articleBody {
  padding: 24px;
}

.previewArticle .articleBody p {
  font-size: 16px;
}

.previewArticle .articleBody figure {
  margin: 18px auto;
}

.adminEdit {
  display: inline-flex;
  margin-top: 10px;
  color: var(--orange-light);
  font-weight: 900;
}

.empty {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #111;
}

.footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding: 35px 5vw;
  border-top: 1px solid var(--line);
  background: #050505;
  color: #ccc;
}

.footer img {
  width: 170px;
}

.footer p {
  margin: 5px 0;
}

.adminNav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 5vw;
  border-bottom: 1px solid var(--line);
  background: #101010;
}

.adminNav a {
  padding: 10px 14px;
  border-radius: 8px;
  background: #1a1a1a;
  color: var(--orange-light);
  font-weight: 900;
}

.adminPage {
  padding: 35px 5vw;
}

.letterRequestAdminPage {
  padding-inline: 2vw;
}

.adminHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.adminTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.adminTabs a {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-weight: 900;
}

.adminTabs a.active {
  border-color: var(--orange-light);
  background: #211306;
  color: var(--orange-light);
}

.dashGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.dashGrid a {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #161616, #0a0a0a);
}

.dashGrid b {
  display: block;
  color: var(--orange-light);
  font-size: 50px;
}

.adminCards {
  display: grid;
  gap: 15px;
}

.adminCard,
.request,
.row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #121212;
}

.request,
.row {
  grid-template-columns: 1fr 220px;
}

.requestSummary {
  align-items: start;
}

.bulkRequestToolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
}

.bulkSelectAll,
.requestCheckbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f4f4;
  font-weight: 800;
  cursor: pointer;
}

.bulkSelectAll input,
.requestCheckbox input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.requestSelection {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
}

.requestCheckbox {
  align-self: start;
  padding-top: 4px;
}

.btn.danger {
  border-color: #9e342d;
  background: #a72d24;
  color: #fff;
}

.btn.danger:hover {
  background: #c33a30;
}

.btn.danger:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.adminSuccess {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #397a45;
  border-radius: 6px;
  background: #102617;
  color: #bfe8c7;
  font-weight: 800;
}

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

.requestActions {
  display: grid;
  gap: 8px;
}

.requestSearch {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 10px;
  align-items: end;
  margin: 0 0 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101010;
}

.requestDetailGrid {
  display: grid;
  grid-template-columns: minmax(620px, 1.25fr) minmax(360px, .75fr);
  gap: 20px;
  align-items: start;
}

.letterRequestAdminPage .requestDetailGrid {
  grid-template-columns: minmax(900px, 1.55fr) minmax(360px, .45fr);
}

.requestInfoBox h2 {
  margin-top: 22px;
}

.requestInfoBox h2:first-child {
  margin-top: 0;
}

.customerMessage {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 157, 0, .18);
  border-radius: 8px;
  background: #090909;
  color: #f5f5f5;
  font: inherit;
  line-height: 1.55;
  white-space: pre-wrap;
}

.adminLetterPreviewBox {
  margin-bottom: 26px;
}

.adminLetterPreviewBox h2 {
  margin-top: 0;
  color: var(--orange-light);
}

.adminLetterPreview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 400px;
  overflow: hidden;
  padding: 68px 104px 64px 40px;
  border: 1px solid rgba(255, 157, 0, .35);
  border-radius: 8px;
  background: #f2f2f2;
}

.adminLetterPreview.darkPreview {
  background: #151515;
}

.adminLetterText {
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(30px, 3.8vw, 74px);
  line-height: 1.18;
  text-align: center;
  text-overflow: clip;
  white-space: nowrap;
}

.adminLetterWidth,
.adminLetterHeight {
  position: absolute;
  color: #050505;
  font-size: 23px;
  line-height: 1;
  white-space: nowrap;
}

.adminLetterPreview.darkPreview .adminLetterWidth,
.adminLetterPreview.darkPreview .adminLetterHeight {
  color: #fff;
}

.adminLetterWidth {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.adminLetterWidth::before,
.adminLetterWidth::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin: 0 8px 7px;
  background: currentColor;
}

.adminLetterHeight {
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(90deg);
}

.adminLetterHeight::before,
.adminLetterHeight::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 8px 7px;
  background: currentColor;
}

.deletePanel {
  max-width: 900px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #3d1717;
  border-radius: 12px;
  background: #140909;
}

.fileList {
  display: grid;
  gap: 8px;
}

.adminCard img {
  height: 80px;
  border-radius: 10px;
}

.adminActions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.danger {
  border: 0;
  border-radius: 8px;
  background: #6b1111;
  color: #fff;
  font-weight: 900;
  padding: 9px 12px;
  cursor: pointer;
}

.editForm {
  max-width: 900px;
}

.productEditorPage .editForm {
  max-width: none;
}

.editorLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 22px;
  align-items: start;
}

.fieldLabel {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.helpText {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.liveProductPreview {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #151515, #080808);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.productPagePreview > .eyebrow,
.productPagePreview > h2,
.productPagePreview > p:not(.eyebrow),
.productPagePreview > img,
.productPagePreview > .previewSidePanel {
  display: none;
}

.previewPageFrame {
  display: grid;
  gap: 14px;
}

.previewCrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.previewCrumbs span:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: var(--orange-light);
}

.previewProductGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .9fr);
  gap: 14px;
  align-items: start;
}

.previewMainColumn,
.previewSideColumn {
  display: grid;
  gap: 12px;
}

.previewMainColumn h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.previewLead,
.previewDescription {
  color: #e7e7e7;
  font-size: 15px;
  line-height: 1.55;
}

.previewImageFrame {
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: radial-gradient(circle at 50% 42%, #252525, #050505 72%);
}

.liveProductPreview .previewImageFrame img {
  width: 100%;
  max-height: 330px;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.previewBenefitRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.previewBenefitRow span {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.productPagePreview .sideLogo {
  width: 130px;
  height: auto;
  aspect-ratio: auto;
  margin: 0 auto 8px;
  border: 0;
  background: transparent;
}

.productPagePreview .previewSidePanel,
.productPagePreview .previewHelpPanel {
  padding: 18px;
}

.productPagePreview .previewSidePanel h3,
.productPagePreview .previewHelpPanel h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.productPagePreview .cleanTicks {
  margin-top: 12px;
  padding: 12px 0 8px;
}

.productPagePreview .cleanTicks li {
  margin: 8px 0;
  font-size: 14px;
}

.productPagePreview .btn {
  pointer-events: none;
}

.liveProductPreview .eyebrow {
  margin: 0;
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.liveProductPreview h2,
.liveProductPreview p {
  margin: 0;
}

.liveProductPreview h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 4vw, 46px);
}

.liveProductPreview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: radial-gradient(circle at 50% 42%, #252525, #050505 72%);
}

.previewSidePanel {
  padding: 18px;
  border-radius: 12px;
}

.previewSidePanel h3 {
  margin-top: 0;
}

.formPreview {
  max-height: 240px;
  width: 100%;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #050505;
  margin: 8px 0 14px;
}

.imageEditor {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid #2d2114;
  border-radius: 16px;
  background: #101010;
}

.imageEditor h2 {
  margin: 0 0 6px;
}

.imageEditor p,
.previewTitle {
  color: var(--muted);
}

.previewTitle {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checks {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.checks input {
  width: auto;
}

.bundleLine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contentBlock {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #101010;
  padding: 18px;
  margin: 16px 0;
}

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

.saveActions .btn {
  border: 0;
}

.saveActions .ghost {
  border: 1px solid #3b3b3b;
  background: #171717;
  color: #fff;
}

.rangeLabel {
  display: block;
  color: var(--orange-light);
  font-weight: 900;
}

.rangeLabel input {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .hero,
  .productPage,
  .productShowcase,
  .aboutPanel,
  .previewProductGrid,
  .editorLayout {
    grid-template-columns: 1fr;
  }

  .liveProductPreview {
    position: static;
  }

  .heroLogo {
    max-width: 760px;
  }

  .brand img {
    width: 190px;
  }

  .top {
    grid-template-columns: auto 1fr;
  }

  .topCta {
    display: none;
  }

  .brand span {
    display: none;
  }

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

@media (max-width: 760px) {
  body {
    background: radial-gradient(circle at 10% 0, #241300 0, #060606 42%, #020202 100%);
  }

  .top {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 12px 4vw;
  }

  .brand img {
    width: 220px;
    max-height: 72px;
  }

  .menuButton {
    display: inline-flex;
    align-self: center;
  }

  .top nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
  }

  .top nav.open {
    display: grid;
  }

  .top nav a {
    padding: 10px 6px;
    border: 1px solid #241708;
    border-radius: 10px;
    background: #121212;
    text-align: center;
    font-size: 12px;
  }

  .hero {
    padding: 28px 4vw;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero h1 span {
    font-size: .58em;
  }

  .hero p,
  .pageHead p,
  .lead {
    font-size: 17px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .heroLogo {
    padding: 18px;
    border-radius: 16px;
  }

  .section {
    padding: 28px 4vw;
  }

  .section h2 {
    font-size: 28px;
  }

  .cards,
  .two,
  .formGrid,
  .bundleLine,
  .albumAdminGrid,
  .galleryAdminActions,
  .newsGrid,
  .imageEditor {
    grid-template-columns: 1fr;
  }

  .adminPageIntro,
  .projectListHeading,
  .projectAdminHead,
  .projectAdminLinks,
  .projectEmpty {
    align-items: stretch;
    flex-direction: column;
  }

  .projectEditForm {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  .adminPage {
    padding-inline: 24px;
    overflow-x: hidden;
  }

  .projectPicker {
    padding: 12px;
  }

  .projectMode {
    overflow-wrap: anywhere;
  }

  .imgWrap {
    height: 230px;
  }

  .pageHead {
    padding: 35px 4vw 15px;
  }

  .pageHead h1 {
    font-size: 42px;
  }

  .productPage {
    padding: 28px 4vw;
    gap: 18px;
  }

  .productShowcase {
    padding: 24px 4vw;
    gap: 18px;
  }

  .crumbs {
    font-size: 12px;
  }

  .productShowcase h1 {
    font-size: 40px;
  }

  .productLead {
    font-size: 17px;
  }

  .heroVehicle {
    min-height: 270px;
  }

  .thumbRail {
    grid-template-columns: repeat(2, 1fr);
  }

  .thumbRail button {
    height: 96px;
  }

  .productBenefits,
  .productSideCol {
    grid-template-columns: 1fr;
  }

  .productBenefits {
    padding: 18px;
  }

  .productBenefits article {
    grid-template-columns: 52px 1fr;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .productBenefits article:last-child {
    border-bottom: 0;
  }

  .productBenefits span {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .featurePanel,
  .helpPanel {
    padding: 22px;
  }

  .sideLogo {
    width: 210px;
    height: 128px;
  }

  .helpPanel .cleanTicks {
    width: 100%;
  }

  .productInfo,
  .panel,
  .formBox {
    padding: 18px;
  }

  .strip {
    display: block;
    margin: 25px 4vw;
    padding: 22px;
  }

  .footer {
    display: block;
    text-align: center;
  }

  .footer img {
    width: 220px;
    margin: 0 auto 12px;
  }

  .adminHead {
    display: block;
  }

  .adminCard,
  .request,
  .requestDetailGrid,
  .letterRequestAdminPage .requestDetailGrid,
  .requestSearch,
  .row {
    grid-template-columns: 1fr;
  }

  .adminCard img {
    width: 100%;
    height: 180px;
  }

  .adminActions {
    flex-wrap: wrap;
  }

  .newsHero {
    min-height: 360px;
    padding: 42px 4vw;
  }

  .articleBody figure {
    max-width: 100% !important;
  }
}
