@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --background: #ece7de;
  --surface: #f7f1e7;
  --surface-strong: #ffffff;
  --text: #151515;
  --muted: #62574b;
  --border: #d3c3b1;
  --accent: #cf412c;
  --accent-dark: #962416;
  --ink: #1a1816;
  --gold: #f0b45a;
  --shadow: 0 22px 50px rgba(22, 18, 12, 0.12);
  --radius: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 180, 90, 0.22), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, var(--background) 100%);
  line-height: 1.6;
}

body[data-theme="dark"]:not([data-page="home"]) {
  --background: #171310;
  --surface: #211a16;
  --surface-strong: #2a211c;
  --text: #f4ede1;
  --muted: #d2c4b2;
  --border: rgba(255, 244, 228, 0.12);
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(circle at top right, rgba(240, 180, 90, 0.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(207, 65, 44, 0.2), transparent 28%),
    linear-gradient(135deg, #231d18 0%, #151210 48%, #342319 100%);
}

body.page-animate .enter-stage {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--enter-delay, 0ms);
  will-change: opacity, transform;
}

body.page-animate.page-ready .enter-stage {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.page-animate .enter-stage,
  body.page-animate.page-ready .enter-stage {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 12, 11, 0.92);
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  position: relative;
}

.brand {
  color: #ffffff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.35rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem 1.4rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.menu-toggle[aria-expanded="true"] .menu-arrow {
  transform: rotate(180deg);
}

.site-nav a,
.nav-dropdown-toggle {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.site-nav a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.38rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle:focus-visible {
  color: var(--accent);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown-toggle:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 220px;
  display: none;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: #171d23;
  box-shadow: var(--shadow);
  animation: dropdown-in 0.22s ease;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.65rem;
  color: rgba(255, 255, 255, 0.78);
}

.nav-dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(204, 43, 29, 0.12);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.hero,
.section {
  padding: 4rem 0;
}

.hero-home {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(240, 180, 90, 0.28), transparent 24%),
    radial-gradient(circle at bottom left, rgba(207, 65, 44, 0.22), transparent 28%),
    linear-gradient(135deg, #231d18 0%, #151210 46%, #342319 100%);
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero-home::before {
  top: -9rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 90, 0.24) 0%, rgba(240, 180, 90, 0) 68%);
}

.hero-home::after {
  left: -8rem;
  bottom: -7rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 65, 44, 0.28) 0%, rgba(207, 65, 44, 0) 66%);
}

.hero-grid,
.admin-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.15fr);
  align-items: start;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.15rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 5.2vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0.8rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.intro,
.admin-note,
.empty-state,
.status-message {
  color: var(--muted);
}

.home-copy {
  max-width: 700px;
  display: grid;
  align-content: start;
  gap: 0;
  padding-top: 0.25rem;
}

.home-feature {
  display: grid;
  align-content: start;
  justify-items: center;
  align-self: start;
  gap: 1rem;
}

.home-copy h1,
.home-listing,
.home-intro {
  color: #ffffff;
}

.home-topline {
  margin-bottom: 1.4rem;
  color: rgba(255, 245, 231, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-specialty {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-copy h1 {
  max-width: 10ch;
  margin-bottom: 1.4rem;
  text-wrap: balance;
}

.home-listing {
  margin-bottom: 0.75rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.home-copy > .home-listing:last-of-type {
  margin-bottom: 0;
}

.home-intro {
  max-width: 58ch;
  margin-bottom: 1.6rem;
  color: rgba(255, 245, 231, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.home-service-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.home-service-ribbon span {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ec;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-photo-collage,
.home-card {
  width: 100%;
}

.home-photo-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.showcase-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

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

.showcase-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 13, 11, 0.78);
  color: #fff8ee;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-photo-vehicle {
  grid-column: 1;
  grid-row: 2 / 4;
  min-height: 430px;
}

.showcase-photo-sign {
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 120px;
}

.showcase-photo-sign {
  background:
    linear-gradient(180deg, rgba(20, 17, 15, 0.18), rgba(20, 17, 15, 0.18)),
    linear-gradient(180deg, #d8dde3 0%, #bcc6cf 100%);
}

.showcase-photo-sign img {
  object-fit: cover;
  object-position: center 52%;
}

.showcase-photo-printer {
  grid-column: 2;
  grid-row: 2 / 4;
  min-height: 430px;
}

.showcase-photo-printer img {
  object-position: center 44%;
}

.showcase-photo-sign figcaption {
  left: 1rem;
  transform: none;
  bottom: 0.9rem;
}

.home-card {
  justify-self: stretch;
  grid-column: 1 / -1;
  grid-row: 4;
  min-width: 0;
  margin-top: 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(255, 244, 228, 0.12);
  border-top: 5px solid var(--gold);
  border-radius: 24px;
  background: rgba(255, 249, 242, 0.96);
  text-align: center;
}

.home-photo-card {
  overflow: hidden;
  margin: 0;
  border-radius: 0;
}

.home-photo-card img {
  width: 100%;
  max-width: 980px;
  max-height: 640px;
  object-fit: contain;
  transform: translateY(-1rem);
}

.home-callout {
  margin-bottom: 0.4rem;
  color: rgba(17, 22, 27, 0.66);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-phone {
  margin-bottom: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.3rem, 3vw, 3rem);
  line-height: 0.95;
}

.home-phone a {
  text-decoration: none;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button,
button:not(.nav-dropdown-toggle):not(.theme-toggle):not(.back-to-top) {
  appearance: none;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.button:hover,
button:not(.nav-dropdown-toggle):not(.theme-toggle):not(.back-to-top):hover {
  background: var(--accent-dark);
  box-shadow: 0 14px 26px rgba(162, 31, 20, 0.22);
  transform: translateY(-2px);
}

.button:active,
button:not(.nav-dropdown-toggle):not(.theme-toggle):not(.back-to-top):active {
  transform: translateY(0);
  box-shadow: 0 7px 16px rgba(162, 31, 20, 0.18);
}

.button:focus-visible,
button:not(.nav-dropdown-toggle):not(.theme-toggle):not(.back-to-top):focus-visible,
.nav-dropdown-toggle:focus-visible,
.site-nav a:focus-visible,
.theme-toggle:focus-visible,
.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.hero-home .button-secondary {
  border-color: rgba(255, 244, 228, 0.42);
  background: transparent;
  color: #fff7ec;
}

.hero-home .button-secondary:hover {
  border-color: var(--accent);
  color: #ffffff;
}

.hero-home .button-secondary:active {
  color: #ffffff;
}

.info-card,
.feature-card,
.gallery-card,
.admin-panel,
.admin-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.info-card,
.admin-panel {
  padding: 1.5rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.card-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.4rem;
  text-decoration: none;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gallery-card:hover,
.admin-item:hover,
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(23, 34, 45, 0.12);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dde3e8;
}

.gallery-copy {
  padding: 1rem 1rem 1.2rem;
}

.gallery-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.empty-state {
  display: none;
  margin-top: 1rem;
}

.site-footer {
  padding: 1.45rem 0 1.25rem;
  border-top: 1px solid rgba(17, 22, 27, 0.08);
  background: #fffaf2;
}

body[data-theme="dark"] .site-footer {
  border-top-color: rgba(255, 244, 228, 0.08);
  background: rgba(16, 13, 11, 0.92);
}

body[data-theme="dark"] .site-footer,
body[data-theme="dark"] .site-footer a,
body[data-theme="dark"] .site-footer .developer-credit {
  color: rgba(255, 244, 228, 0.78);
}

body[data-theme="dark"] .developer-credit {
  border-top-color: rgba(255, 244, 228, 0.08);
}

body[data-theme="dark"] .footer-copy {
  border-top-color: rgba(255, 244, 228, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem 1.4rem;
}

.footer-content p {
  margin: 0;
}

.footer-brand {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.footer-contact a {
  text-decoration: none;
}

.footer-copy {
  grid-column: 1 / -1;
  order: 10;
  margin-top: 0.15rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(17, 22, 27, 0.08);
  text-align: center;
  color: var(--muted);
}

.footer-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0;
  justify-self: end;
}

.theme-toggle {
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.theme-toggle:hover,
.theme-toggle:active {
  color: var(--text);
  border-color: rgba(207, 65, 44, 0.45);
  background: rgba(207, 65, 44, 0.08);
  box-shadow: none;
  transform: none;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid rgba(255, 244, 228, 0.16);
  border-radius: 999px;
  background: rgba(20, 16, 13, 0.92);
  color: #fff5e6;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.back-to-top:hover,
.back-to-top:active {
  background: rgba(207, 65, 44, 0.94);
  border-color: rgba(255, 244, 228, 0.24);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.developer-credit {
  grid-column: 1 / -1;
  order: 11;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.developer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.developer-credit a:hover,
.developer-credit a:focus-visible,
.developer-credit a:active {
  color: #2e5e95;
}

body[data-theme="dark"]:not([data-page="home"]) .developer-credit a:hover,
body[data-theme="dark"]:not([data-page="home"]) .developer-credit a:focus-visible,
body[data-theme="dark"]:not([data-page="home"]) .developer-credit a:active {
  color: var(--gold);
}

body[data-theme="dark"][data-page="home"] .developer-credit a:hover,
body[data-theme="dark"][data-page="home"] .developer-credit a:focus-visible,
body[data-theme="dark"][data-page="home"] .developer-credit a:active,
body[data-theme="dark"][data-page="home"] .site-footer a:hover,
body[data-theme="dark"][data-page="home"] .site-footer a:focus-visible,
body[data-theme="dark"][data-page="home"] .site-footer a:active {
  color: #fff5e6;
}

.simple-page {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 260px);
}

.simple-page-container {
  max-width: 760px;
}

.simple-page-card {
  padding: 2.2rem;
}

.simple-page-actions {
  margin-top: 1.25rem;
}

.admin-layout {
  width: min(calc(100% - 2rem), 1480px);
  margin: 0 auto;
  display: block;
}

.admin-app {
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
  gap: 2rem;
  width: 100%;
}

.admin-app[hidden],
#admin-login-panel[hidden] {
  display: none !important;
}

#admin-login-panel {
  max-width: 520px;
}

.admin-form,
.admin-item-actions,
.admin-move-actions {
  display: grid;
  gap: 0.9rem;
}

.admin-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.admin-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.admin-field-wide,
.admin-actions {
  grid-column: 1 / -1;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.admin-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.admin-item {
  padding: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.admin-item p {
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.admin-item-actions,
.admin-move-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-header h1 {
  max-width: none;
}

.admin-toolbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.admin-toolbar .button {
  min-width: 0;
  white-space: nowrap;
}

.admin-items-panel {
  min-height: 780px;
}

.contact-layout {
  max-width: 980px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-side-column {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.contact-form-column {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.contact-process {
  margin-top: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.process-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.process-card h3,
.process-card p {
  margin-bottom: 0;
}

.process-label {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-card-logo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1)),
    var(--surface-strong);
}

.process-logo-row {
  display: grid;
  gap: 1rem;
}

.process-software-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
}

.process-software-item img {
  width: 100%;
  height: 64px;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 14px;
  background: #ffffff;
  object-fit: contain;
}

.process-software-item p {
  margin: 0;
  color: #3d332a;
  font-size: 0.96rem;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.contact-form input[type="file"] {
  padding: 0.7rem 0;
  border: 0;
  background: transparent;
}

.contact-form button {
  justify-self: start;
}

.contact-map-card {
  padding: 1.5rem;
}

.contact-map-copy h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.contact-map-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-map-frame {
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ddd5c8;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 2rem;
}

.about-intro {
  position: sticky;
  top: 7rem;
}

.about-intro h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 1.5rem;
}

.about-photo-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.about-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-sections {
  display: grid;
  gap: 1.25rem;
}

.about-copy-section {
  padding: 1.75rem;
  border-left: 4px solid var(--accent);
}

.about-copy-section p:last-child {
  margin-bottom: 0;
}

@keyframes dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .admin-layout,
  .admin-app,
  .contact-grid,
  .about-layout,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .site-header .container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.9rem 0 0.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .nav-dropdown,
  .nav-dropdown-toggle {
    width: 100%;
  }

  .site-nav a::after,
  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.55rem;
    padding: 0.35rem 0 0 0.85rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    animation: none;
  }

  .nav-dropdown-menu a {
    padding: 0.35rem 0;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown.is-open:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }

  .brand {
    font-size: 2rem;
  }

  h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-home {
    min-height: auto;
    padding: 2.75rem 0 2rem;
  }

  .home-copy {
    max-width: 100%;
    text-align: center;
    justify-items: center;
  }

  .home-copy h1,
  .home-intro {
    max-width: none;
  }

  .home-feature {
    justify-items: center;
    align-self: center;
  }

  .contact-grid,
  .process-grid,
  .about-layout,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-software-item {
    grid-template-columns: 1fr;
  }

  .process-software-item img {
    max-width: 150px;
  }

  .home-photo-collage {
    grid-template-columns: 1fr;
  }

  .showcase-photo-vehicle,
  .showcase-photo-sign,
  .showcase-photo-printer {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .home-topline {
    margin-bottom: 1rem;
  }

  .home-specialty {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
  }

  .home-service-ribbon {
    justify-content: center;
  }

  .home-card {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0 auto 1rem;
    padding: 1.6rem 1.4rem;
  }

  .home-phone {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .about-intro {
    position: static;
  }

  .back-to-top {
    display: inline-flex;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-controls,
  .footer-contact,
  .footer-copy,
  .developer-credit {
    justify-content: center;
    text-align: center;
  }

  .footer-controls {
    justify-self: center;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-controls {
    width: auto;
  }
}
