:root {
  --bg: #050505;
  --bg-soft: #111111;
  --panel: #181818;
  --paper: #f6f6f3;
  --paper-strong: #ffffff;
  --ink: #050505;
  --muted: #5f5f5c;
  --muted-light: #d7d7d2;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(5, 5, 5, 0.14);
  --orange: #d10000;
  --orange-dark: #990000;
  --red: #d10000;
  --red-bright: #ff1e1e;
  --cyan: #111111;
  --green: #2c7a4b;
  --danger: #a72424;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  color-scheme: dark light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(209, 0, 0, 0.16), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #111111 48%, #050505 100%);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body:has(.admin-shell),
body:has(.admin-login) {
  background: #ededeb;
  color: var(--ink);
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  font-size: 4.6rem;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted-light);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 5vw;
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

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

.logo-brand {
  padding: 4px 8px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.brand-logo {
  width: 160px;
  max-height: 78px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 38px;
  border: 2px solid var(--orange);
  color: var(--paper-strong);
  background: #050505;
  font-weight: 900;
  border-radius: 50%;
}

.brand-text {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--paper);
  font-size: 0.95rem;
}

.brand-text span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  position: relative;
  color: #f1f1ee;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a.is-active {
  color: var(--orange);
}

.main-nav a.is-active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
}

.nav-cta {
  border: 1px solid var(--orange);
  border-radius: 4px;
  background: rgba(209, 0, 0, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 5px auto;
  background: var(--paper);
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-color: #050505;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center calc(50% + var(--hero-offset, 0px));
  padding: 132px 5vw 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(5, 5, 5, 0.62), rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(209, 0, 0, 0.22), transparent 34%);
  pointer-events: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateY(var(--hero-offset, 0px));
  transition: transform 120ms linear;
}

.hero-slide {
  position: absolute;
  inset: -40px 0;
  width: 100%;
  height: calc(100% + 80px);
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 6200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--red), #fff, var(--red), transparent);
  opacity: 0.82;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  min-width: 0;
  max-width: 780px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero h1,
.page-hero h1 {
  margin-bottom: 22px;
  color: var(--paper-strong);
}

.hero p,
.page-hero p {
  max-width: 650px;
  font-size: 1.25rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.hero-proof span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.58);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(209, 0, 0, 0.32);
}

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

.button.ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(0, 0, 0, 0.2);
}

.button.danger {
  color: #fff;
  background: var(--danger);
}

.button.full {
  width: 100%;
}

.section {
  padding: 82px 5vw;
  position: relative;
}

.section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.band-light,
.stage-options-section {
  background:
    linear-gradient(180deg, rgba(209, 0, 0, 0.06) 0%, rgba(209, 0, 0, 0) 42%),
    linear-gradient(180deg, #151515 0%, #0d0d0d 100%) !important;
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(209, 0, 0, 0.18);
}

.band-light p,
.band-light dd,
.band-light span,
.stage-options-section p,
.stage-options-section dd,
.stage-options-section span,
.stage-options-section li {
  color: var(--muted-light);
}

.stage-options-section h2,
.stage-options-section h3 {
  color: var(--paper-strong);
}

.band-light .eyebrow,
.stage-options-section .eyebrow,
.band-light .metric,
.stage-options-section .metric {
  color: var(--orange);
}

.band-warm {
  background: linear-gradient(135deg, #050505 0%, #1a0000 52%, #090909 100%);
  border-top: 1px solid rgba(209, 0, 0, 0.36);
  border-bottom: 1px solid rgba(209, 0, 0, 0.24);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.center {
  text-align: center;
}

.stage-summary .section-heading {
  margin-left: 0;
}

.feature-grid {
  display: grid;
  gap: 20px;
}

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

.feature-panel,
.service-card,
.price-card,
.gallery-preview-card,
.client-card,
.contact-panel,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.band-light .feature-panel,
.band-light .client-card,
.band-light .empty-state,
.stage-options-section .feature-panel,
.stage-options-section .client-card,
.stage-options-section .empty-state {
  border-color: var(--line);
}

.feature-panel {
  min-height: 190px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.metric {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 950;
}

.visual-flow {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.flow-copy {
  max-width: 500px;
}

.flow-copy p:last-child {
  font-size: 1.08rem;
}

.flow-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

.flow-photo {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b0b0b;
  box-shadow: var(--shadow);
}

.flow-photo.large {
  grid-row: span 2;
}

.flow-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 700ms ease, filter 700ms ease;
}

.flow-photo:hover img {
  transform: scale(1.08);
  filter: contrast(1.08);
}

.flow-photo figcaption,
.stage-photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent);
  color: #fff;
  font-weight: 900;
}

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

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

.service-card {
  min-height: 230px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1b1b1b 0%, #101010 100%);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 240ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 0, 0, 0.7);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h2,
.service-card h3 {
  margin-bottom: 12px;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.service-card.with-image {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.service-card-image {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.95) contrast(1.05);
}

.service-grid.detailed .service-card-image {
  height: 170px;
}

.service-card-body {
  flex: 1;
  display: grid;
  align-content: start;
  padding: 26px;
  position: relative;
  z-index: 1;
}

.service-card:not(.with-image) .service-card-body {
  padding: 0;
}

.service-card.with-image .service-icon {
  margin-top: -54px;
  border: 4px solid #111111;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.36);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-weight: 950;
}

.about-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.about-strip p {
  font-size: 1.08rem;
}

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

.gallery-preview-card {
  min-height: 122px;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  overflow: hidden;
  background: var(--panel);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.gallery-preview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(209, 0, 0, 0.72);
  box-shadow: var(--shadow);
}

.gallery-preview-card img {
  width: 100%;
  height: 100%;
  min-height: 122px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0b0c0b;
  transition: transform 700ms ease;
}

.gallery-preview-card:hover img {
  transform: scale(1.05);
}

.gallery-preview-card div {
  min-width: 0;
  padding: 15px 16px;
}

.gallery-preview-card h2,
.gallery-preview-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.15;
}

.gallery-preview-card p:first-child {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-preview-card span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--muted-light);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: linear-gradient(90deg, #050505, #210000);
  border-top: 1px solid rgba(209, 0, 0, 0.45);
}

.contact-cta > div {
  margin: 0;
}

.page-hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 150px 5vw 72px;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.48)),
    linear-gradient(0deg, rgba(209, 0, 0, 0.2), transparent 40%),
    var(--hero-image);
  background-size: cover;
  background-position: center calc(50% + var(--hero-offset, 0px));
}

.page-hero > div,
.page-title > * {
  width: min(900px, 100%);
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.page-title {
  padding: 152px 5vw 56px;
  background:
    linear-gradient(135deg, rgba(209, 0, 0, 0.17), transparent 42%),
    #0c0c0c;
  border-bottom: 1px solid rgba(209, 0, 0, 0.28);
}

.page-title h1 {
  max-width: 950px;
  margin-bottom: 18px;
  color: var(--paper-strong);
}

.page-title p:last-child {
  max-width: 720px;
  font-size: 1.12rem;
}

.stage-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.tick-list,
.price-card ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.tick-list li,
.price-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.tick-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 1px;
  transform: rotate(45deg);
}

.stage-photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.stage-photo-card {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b0b0b;
}

.stage-photo-card.wide {
  grid-row: span 2;
}

.stage-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.stage-photo-card:hover img {
  transform: scale(1.05);
}

.stage-photo-card strong,
.stage-photo-card span {
  display: block;
}

.stage-photo-card span {
  margin-top: 4px;
  color: var(--muted-light);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.spec-list div {
  min-height: 122px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #191919 0%, #101010 100%);
}

.spec-list dt {
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-weight: 950;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--paper);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.price-card {
  min-height: 370px;
  display: grid;
  grid-template-rows: auto auto minmax(4.8em, auto) 1fr;
  align-content: start;
  padding: 28px;
  background: linear-gradient(180deg, #1b1b1b 0%, #101010 100%);
  transition: transform 240ms ease, border-color 240ms ease;
}

.price-card h3 {
  min-height: 2.4em;
}

.price-card > p:not(.price) {
  min-height: 4.8em;
}

.price-card ul {
  align-self: start;
  margin-top: 0;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 0, 0, 0.72);
}

.stage-calculator-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(209, 0, 0, 0.14), transparent 28rem),
    linear-gradient(180deg, #080808 0%, #111111 100%);
  border-top: 1px solid rgba(209, 0, 0, 0.25);
  border-bottom: 1px solid rgba(209, 0, 0, 0.18);
}

.stage-quote-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 24px;
  align-items: start;
}

.quote-builder {
  display: grid;
  gap: 18px;
}

.quote-card,
.quote-result-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1b1b1b 0%, #101010 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.quote-card h3,
.quote-result h3,
.quote-placeholder h3 {
  margin-top: 0;
}

.quote-fieldset {
  min-width: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.quote-fieldset legend {
  margin-bottom: 10px;
  color: var(--paper);
  font-weight: 950;
}

.stage-size-options,
.quote-extra-grid {
  display: grid;
  gap: 12px;
}

.stage-size-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stage-timing-grid .full-row {
  grid-column: 1 / -1;
}

.stage-size-option,
.quote-extra {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.stage-size-option {
  display: block;
  cursor: pointer;
}

.stage-size-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.stage-size-option span {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  border-radius: var(--radius);
}

.stage-size-option input:checked + span {
  outline: 2px solid var(--red);
  background: rgba(209, 0, 0, 0.12);
}

.stage-size-option strong,
.quote-extra strong {
  color: var(--paper-strong);
}

.stage-size-option small,
.quote-extra small {
  color: var(--muted-light);
  font-weight: 850;
}

.quote-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 72px;
  padding: 14px 16px;
}

.quote-extra label {
  width: 100%;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0;
  cursor: pointer;
}

.quote-extra input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--red);
}

.quote-extra label span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.info-button {
  position: relative;
  width: 32px;
  height: 32px;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--paper);
  background: #050505;
  font-weight: 950;
}

.info-button span {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 5;
  width: min(280px, 78vw);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--paper);
  background: #050505;
  box-shadow: var(--shadow);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.info-button:hover span,
.info-button:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.quote-av-details[hidden] {
  display: none;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.quote-live-note {
  color: var(--muted-light);
  font-size: 0.9rem;
  font-weight: 850;
}

.quote-result-panel {
  position: sticky;
  top: 96px;
}

.quote-live-panel {
  display: grid;
  gap: 16px;
}

.quote-live-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-live-top .eyebrow {
  margin: 0;
}

.vat-toggle {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #070707;
}

.vat-toggle button {
  min-height: 32px;
  padding: 0 11px;
  border: 0;
  border-radius: 3px;
  color: var(--muted-light);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.vat-toggle button.is-active {
  color: #fff;
  background: var(--red);
}

.quote-total {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(209, 0, 0, 0.45);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(209, 0, 0, 0.2), rgba(209, 0, 0, 0.05)),
    #121212;
}

.quote-total span {
  color: var(--muted-light);
  font-weight: 850;
}

.quote-total strong {
  color: var(--paper-strong);
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  line-height: 1;
}

.quote-total small {
  color: var(--muted-light);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-mini-list {
  display: grid;
  gap: 0;
}

.quote-mini-list p {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-mini-list strong {
  color: var(--muted-light);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-mini-list span {
  min-width: 0;
  color: var(--paper);
  font-weight: 900;
  line-height: 1.35;
  text-align: right;
}

.quote-breakdown {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.quote-breakdown div,
.quote-extra-summary li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-breakdown dt {
  color: var(--muted-light);
  font-weight: 800;
}

.quote-breakdown dd {
  margin: 0;
  color: var(--paper);
  font-weight: 950;
  text-align: right;
}

.quote-route,
.quote-extra-summary {
  margin-top: 18px;
}

.quote-route h4,
.quote-extra-summary h4 {
  margin: 0 0 8px;
  color: var(--paper);
}

.quote-route p,
.quote-note,
.quote-disclaimer,
.quote-placeholder p {
  color: var(--muted-light);
}

.quote-route p {
  margin: 0 0 6px;
}

.quote-extra-summary ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.quote-extra-summary strong {
  white-space: nowrap;
}

.quote-route-note,
.quote-note {
  padding: 10px 12px;
  border: 1px solid rgba(209, 0, 0, 0.26);
  border-radius: var(--radius);
  background: rgba(209, 0, 0, 0.08);
}

.quote-note.subtle {
  opacity: 0.78;
}

.quote-disclaimer {
  max-width: 880px;
  margin-top: 18px;
  color: var(--muted-light);
  font-size: 0.94rem;
  font-weight: 750;
}

.quote-success {
  max-width: 920px;
  margin-bottom: 18px;
}

.quote-error h3 {
  color: var(--paper-strong);
}

.price {
  color: var(--orange);
  font-size: 1.55rem;
  font-weight: 950;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.good-fit-section .section-heading,
.good-fit-section .tag-grid {
  width: min(100%, 760px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.good-fit-section .tag-grid {
  justify-content: flex-start;
}

.tag-grid span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--paper);
  background: rgba(209, 0, 0, 0.14);
  font-weight: 800;
}

.local-seo-panel {
  background:
    linear-gradient(135deg, rgba(209, 0, 0, 0.08), transparent 45%),
    #101010;
  border-top: 1px solid rgba(209, 0, 0, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.local-seo-panel .section-heading,
.local-seo-panel .coverage-grid {
  width: min(100%, 760px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.coverage-grid span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 850;
}

.faq-section {
  background: #080808;
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
}

.faq-grid h3 {
  margin-bottom: 10px;
}

.faq-grid p {
  margin-bottom: 0;
}

.seo-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-left: max(5vw, calc((100vw - 1180px) / 2));
  padding-right: max(5vw, calc((100vw - 1180px) / 2));
}

.seo-copy > *,
.contact-layout > * {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.seo-copy > div {
  max-width: 720px;
}

.calculator-redirect-card {
  align-self: start;
  justify-self: end;
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(209, 0, 0, 0.16), rgba(255, 255, 255, 0.03)),
    #141414;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.calculator-redirect-card h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.calculator-redirect-card p {
  max-width: 36rem;
  margin: 0;
}

.calculator-redirect-card .button {
  justify-self: start;
  width: auto;
  min-width: 220px;
}

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

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 240ms ease, border-color 240ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 0, 0, 0.72);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent);
}

.gallery-item strong,
.gallery-item span {
  display: block;
}

.gallery-item span {
  color: var(--orange);
  font-weight: 800;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 0;
  background: rgba(0, 0, 0, 0.86);
  cursor: zoom-out;
}

.lightbox img {
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.client-card {
  padding: 24px;
  background: linear-gradient(180deg, #191919 0%, #101010 100%);
}

.client-card h3 {
  color: var(--paper);
}

.client-card span {
  color: var(--muted-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.contact-panel {
  padding: 28px;
  background: linear-gradient(180deg, #1b1b1b 0%, #101010 100%);
}

.contact-panel a {
  display: block;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.enquiry-form,
.admin-form,
.login-card {
  display: grid;
  gap: 18px;
}

.enquiry-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

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

label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

label span {
  color: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

label small {
  color: var(--muted-light);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--paper);
  background: #111210;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-success,
.form-error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 4px;
  font-weight: 800;
}

.form-success {
  color: #14351f;
  background: #d8f2df;
}

.form-error {
  color: #fff;
  background: var(--danger);
}

.empty-state {
  padding: 34px;
  background: var(--panel);
}

.policy-page {
  background: linear-gradient(180deg, #111111 0%, #090909 100%);
  color: var(--paper);
}

.policy-content {
  max-width: 840px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
}

.policy-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

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

.policy-content p {
  color: var(--muted-light);
}

.policy-content a {
  color: var(--red);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.policy-content code {
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  background: #111;
}

.policy-note {
  margin-top: 32px;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 24px;
  padding: 36px 5vw;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-logo {
  width: 150px;
  height: auto;
  border-radius: 6px;
  background: #fff;
  padding: 4px 8px;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-legal {
  display: grid;
  gap: 8px;
}

.footer-legal p {
  color: #d7d7d2;
  font-size: 0.88rem;
}

.footer-legal strong {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 16px;
}

.footer-links a {
  color: var(--orange);
  font-weight: 800;
}

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

.login-card {
  width: min(100%, 420px);
  padding: 34px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.login-brand {
  justify-self: start;
}

.login-card h1 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 2rem;
}

.login-card input,
.admin-shell input,
.admin-shell textarea,
.admin-shell select {
  color: var(--ink);
  border-color: var(--dark-line);
  background: #fff;
}

.admin-shell {
  min-height: 100vh;
  display: block;
}

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 270px;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  color: var(--paper);
  background: #050505;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a {
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--muted-light);
  font-weight: 850;
}

.admin-sidebar nav a:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar form {
  margin-top: auto;
}

.admin-main {
  min-width: 0;
  margin-left: 270px;
  padding: 32px;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 26px;
}

.admin-top h1 {
  margin: 0;
  color: var(--ink);
  font-size: 2.8rem;
}

.save-pill {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: #14351f;
  background: #d8f2df;
  font-weight: 900;
}

.error-pill {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--danger);
  font-weight: 900;
}

.analytics-dashboard {
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.08);
}

.analytics-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.analytics-heading h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.9rem;
}

.analytics-heading p {
  max-width: 760px;
  margin: 0;
  color: #625c54;
  font-weight: 750;
}

.analytics-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.analytics-kpis article {
  padding: 16px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #f6f6f3;
}

.analytics-kpis span,
.analytics-panel h3 {
  color: #5c564f;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.analytics-kpis strong {
  display: block;
  margin: 4px 0;
  color: var(--orange-dark);
  font-size: 2rem;
  line-height: 1;
}

.analytics-kpis small,
.analytics-row small {
  color: #6f6961;
  font-weight: 800;
}

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

.analytics-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fff;
}

.analytics-panel.large {
  grid-column: span 2;
}

.analytics-panel h3 {
  margin: 0 0 12px;
}

.analytics-table {
  display: grid;
  gap: 8px;
}

.analytics-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
}

.analytics-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.analytics-row span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 850;
}

.analytics-row strong {
  color: var(--orange-dark);
  font-size: 0.95rem;
  white-space: nowrap;
}

.analytics-row.compact {
  grid-template-columns: minmax(0, 1fr) auto;
}

.analytics-empty {
  margin: 0;
}

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

.admin-stats article {
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fff;
}

.admin-stats strong {
  display: block;
  color: var(--orange-dark);
  font-size: 2rem;
}

.reveal-target {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms ease var(--reveal-delay, 0ms);
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.admin-stats span {
  color: #5c564f;
  font-weight: 800;
}

.admin-section {
  padding: 36px 0;
  border-top: 1px solid var(--dark-line);
}

.admin-section-heading {
  margin-bottom: 18px;
}

.admin-section-heading h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.8rem;
}

.admin-section-heading p {
  color: #625c54;
}

.admin-form,
.admin-card,
.enquiry-card {
  padding: 22px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fff;
}

.admin-form.compact {
  margin-bottom: 18px;
}

.admin-form h3,
.admin-card h3 {
  margin: 0;
  color: var(--ink);
}

.admin-form p,
.admin-card p {
  color: #5c564f;
}

.admin-subcard {
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #f6f6f3;
}

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

.admin-image-field {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #f6f6f3;
}

.admin-image-field img,
.admin-card-preview {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #ecece8;
}

.admin-card-preview {
  margin-bottom: 16px;
}

.admin-form hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--dark-line);
}

.admin-list,
.gallery-admin-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.media-admin-card > img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 4px;
  background: #111210;
}

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

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.enquiry-card {
  grid-template-columns: 1fr 180px 110px;
  align-items: start;
}

.enquiry-card a {
  display: inline-block;
  margin-right: 12px;
  color: var(--orange-dark);
  font-weight: 900;
}

.admin-quote-summary {
  display: grid;
  gap: 4px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(209, 0, 0, 0.28);
  border-radius: var(--radius);
  background: #fff5f5;
}

.admin-quote-summary strong {
  color: var(--orange-dark);
  font-size: 1.45rem;
}

.admin-quote-summary span {
  color: #4f4942;
  font-weight: 800;
}

body:has(.admin-shell),
body:has(.admin-login) {
  background:
    radial-gradient(circle at 18% 0%, rgba(209, 0, 0, 0.14), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #111111 48%, #050505 100%);
  color: var(--paper);
}

.admin-shell,
.admin-login {
  color: var(--paper);
}

.admin-login {
  background:
    radial-gradient(circle at 18% 10%, rgba(209, 0, 0, 0.18), transparent 24rem),
    #050505;
}

.login-card,
.analytics-dashboard,
.analytics-kpis article,
.analytics-panel,
.admin-stats article,
.admin-form,
.admin-card,
.enquiry-card,
.admin-subcard,
.admin-image-field {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #141414;
  color: var(--paper);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.admin-sidebar {
  border-right: 1px solid rgba(209, 0, 0, 0.32);
  background:
    linear-gradient(180deg, rgba(209, 0, 0, 0.16), rgba(209, 0, 0, 0.02)),
    #050505;
}

.admin-sidebar nav a {
  border: 1px solid transparent;
}

.admin-sidebar nav a:hover {
  border-color: rgba(209, 0, 0, 0.42);
  background: rgba(209, 0, 0, 0.16);
}

.admin-main {
  background:
    radial-gradient(circle at 78% 0%, rgba(209, 0, 0, 0.1), transparent 24rem),
    #090909;
}

.login-card h1,
.admin-top h1,
.analytics-heading h2,
.admin-section-heading h2,
.admin-form h3,
.admin-card h3 {
  color: var(--paper-strong);
}

.login-card p,
.admin-shell p,
.admin-section-heading p,
.admin-form p,
.admin-card p,
.analytics-heading p {
  color: var(--muted-light);
}

.login-card input,
.admin-shell input,
.admin-shell textarea,
.admin-shell select {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.18);
  background: #0c0d0c;
  color-scheme: dark;
}

.admin-shell input:focus,
.admin-shell textarea:focus,
.admin-shell select:focus,
.login-card input:focus {
  outline: 2px solid rgba(209, 0, 0, 0.72);
  outline-offset: 2px;
}

.admin-shell label span,
.login-card label span {
  color: var(--paper);
}

.analytics-heading {
  align-items: end;
  flex-wrap: wrap;
}

.analytics-range-form {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-left: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.analytics-range-form label {
  min-width: 190px;
  gap: 6px;
}

.analytics-range-form label span,
.analytics-kpis span,
.analytics-panel h3 {
  color: var(--red-bright);
}

.analytics-range-form .button {
  min-height: 44px;
}

.analytics-kpis strong,
.analytics-row strong,
.admin-stats strong,
.enquiry-card a,
.admin-card a {
  color: var(--red-bright);
}

.analytics-kpis small,
.analytics-row small,
.admin-stats span {
  color: var(--muted-light);
}

.analytics-row {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.analytics-row span {
  color: var(--paper);
}

.admin-section {
  border-top-color: rgba(209, 0, 0, 0.28);
}

.admin-image-field img,
.admin-card-preview {
  border-color: var(--line);
  background: #0c0d0c;
}

.admin-quote-summary {
  border-color: rgba(209, 0, 0, 0.42);
  background: rgba(209, 0, 0, 0.12);
}

.admin-quote-summary strong {
  color: var(--red-bright);
}

.admin-quote-summary span {
  color: var(--muted-light);
}

.admin-shell .button.ghost,
.login-card .button.ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1050px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .service-grid,
  .gallery-preview-grid,
  .pricing-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .stage-quote-calculator {
    grid-template-columns: 1fr;
  }

  .quote-result-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 18px;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    margin-left: auto;
    border-color: rgba(209, 0, 0, 0.9);
    background: rgba(209, 0, 0, 0.18);
    transform: translateY(-50%);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 18, 16, 0.96);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    width: 100%;
  }

  .hero,
  .page-hero {
    min-height: 72vh;
    padding: 120px 22px 48px;
  }

  .page-title {
    padding: 126px 22px 42px;
  }

  .section {
    padding: 56px 22px;
  }

  .feature-grid.two,
  .visual-flow,
  .flow-gallery,
  .service-grid,
  .service-grid.detailed,
  .gallery-preview-grid,
  .pricing-grid,
  .stage-photo-grid,
  .stage-layout,
  .seo-copy,
  .contact-layout,
  .about-strip,
  .faq-grid,
  .client-grid,
  .gallery-grid,
  .stage-size-options,
  .form-grid,
  .gallery-admin-grid {
    grid-template-columns: 1fr;
  }

  .quote-live-top,
  .quote-mini-list p {
    grid-template-columns: 1fr;
  }

  .quote-live-top {
    display: grid;
    align-items: start;
  }

  .quote-mini-list span {
    text-align: left;
  }

  .contact-cta,
  .site-footer,
  .admin-top {
    display: grid;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

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

  .admin-sidebar {
    position: sticky;
    top: 0;
    width: auto;
    max-height: 100vh;
    overflow-y: auto;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-main {
    margin-left: 0;
    padding: 22px;
  }

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

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

  .analytics-dashboard {
    padding: 18px;
  }

  .analytics-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .analytics-row small {
    grid-column: 1 / -1;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero p,
  .page-hero p {
    font-size: 1.05rem;
  }

  .brand-text {
    display: none;
  }

  .brand-logo {
    width: 126px;
    max-height: 70px;
  }

  .logo-brand {
    padding: 3px 6px;
  }

  .hero-proof span {
    width: 100%;
    text-align: center;
  }

  .hero-content,
  .page-hero > div {
    width: 100%;
    max-width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .spec-list,
  .admin-stats,
  .admin-sidebar nav,
  .analytics-kpis,
  .analytics-panels {
    grid-template-columns: 1fr;
  }

  .analytics-panel.large {
    grid-column: span 1;
  }

  .button {
    width: 100%;
  }
}
