:root {
  color-scheme: light;
  --ink: #24212a;
  --paper: #fbfaf5;
  --white: #ffffff;
  --muted: #6f6972;
  --line: #e6dfd1;
  --panel: #f3eddf;
  --charcoal: #24212a;
  --red: #ffb000;
  --red-dark: #e28a00;
  --teal: #3b3542;
  --amber: #ffc400;
  --shadow: 0 18px 50px rgba(36, 33, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Microsoft JhengHei", "PingFang TC", sans-serif;
  letter-spacing: 0;
}

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

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

button,
select,
input,
textarea {
  border-radius: 6px;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(36, 33, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: 92px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  border-radius: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.admin-only {
  display: none;
}

body.show-admin .admin-only {
  display: inline-flex;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-picker select {
  min-height: 42px;
  padding: 0 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.language-picker option {
  color: var(--ink);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  border-radius: 6px;
  border: 0;
  white-space: nowrap;
}

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

.view-switcher {
  display: none;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.view-button {
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.view-button.is-active {
  color: var(--ink);
  background: var(--white);
}

.is-hidden {
  display: none !important;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 116px clamp(20px, 6vw, 88px) 88px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-equipment-rental.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  animation: slowHeroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(36, 33, 42, 0.94) 0%, rgba(36, 33, 42, 0.76) 38%, rgba(36, 33, 42, 0.18) 76%),
    linear-gradient(0deg, rgba(36, 33, 42, 0.92) 0%, rgba(36, 33, 42, 0.08) 30%, rgba(36, 33, 42, 0.05) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 7vw, 5.6rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.primary-button {
  color: var(--ink);
  background: var(--red);
  border-color: var(--red);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.secondary-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.secondary-button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.hero-stats {
  max-width: 650px;
  margin-top: 52px;
}

.hero-stats div {
  min-width: 142px;
  padding: 18px 20px;
  border-left: 2px solid var(--red);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.5rem;
}

.hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

@keyframes slowHeroZoom {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.07);
  }
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.intro-item {
  min-height: 210px;
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
}

.intro-icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-weight: 900;
}

.intro-item h2 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.intro-item p,
.section-heading p,
.process-grid p,
.contact-section p,
.form-note {
  color: var(--muted);
  line-height: 1.75;
}

.catalog-section,
.booking-section,
.process-section,
.film-section,
.promo-section,
.inspiration-section,
.retail-section,
.location-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

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

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.inspiration-section {
  background: var(--ink);
  color: var(--white);
}

.inspiration-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

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

.inspiration-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 330px;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(25, 23, 30, 0.08), rgba(25, 23, 30, 0.9)),
    url("assets/hero-equipment-rental.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease;
}

.inspiration-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 196, 0, 0.22), transparent 28%),
    linear-gradient(120deg, rgba(36, 33, 42, 0.76), rgba(36, 33, 42, 0.24));
}

.inspiration-card:hover,
.inspiration-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 196, 0, 0.52);
}

.inspiration-card.travel {
  background-image:
    linear-gradient(180deg, rgba(25, 23, 30, 0.08), rgba(25, 23, 30, 0.9)),
    url("assets/gear/ricoh-gr3.png");
  background-color: #2c3037;
  background-size: 95%;
  background-repeat: no-repeat;
}

.inspiration-card.concert {
  background-position: 72% center;
}

.inspiration-card.interview {
  background-position: 22% center;
}

.inspiration-card.film-life {
  background-image:
    linear-gradient(180deg, rgba(25, 23, 30, 0.08), rgba(25, 23, 30, 0.9)),
    url("assets/digital-dinosur-logo.png");
  background-color: #34313b;
  background-size: 72%;
  background-repeat: no-repeat;
}

.inspiration-card.mv {
  background-position: 58% center;
}

.inspiration-card.social {
  background-image:
    linear-gradient(180deg, rgba(25, 23, 30, 0.08), rgba(25, 23, 30, 0.9)),
    url("assets/gear/dji-osmo-mobile-6.jpg");
  background-size: cover;
}

.inspiration-card span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.inspiration-card h3 {
  max-width: 320px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.inspiration-card p {
  max-width: 360px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.inspiration-card a {
  width: fit-content;
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
}

.retail-section {
  background: var(--panel);
}

.retail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.retail-feature {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(36, 33, 42, 0.94), rgba(36, 33, 42, 0.68)),
    url("assets/insta360-mic-pro.png");
  background-size: cover;
  background-position: center;
}

.retail-feature p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.retail-feature .primary-button {
  width: fit-content;
}

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

.retail-list article {
  display: grid;
  align-content: start;
  min-height: 172px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17, 19, 23, 0.06);
}

.retail-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.retail-list span {
  color: var(--muted);
  line-height: 1.7;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  padding: 22px;
  color: var(--white);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.filter-panel label {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.search-field {
  display: grid;
  grid-template-columns: 1fr 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.search-field input,
.search-field button {
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.search-field input {
  width: 100%;
  padding: 0 14px;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.search-field button {
  font-size: 1.3rem;
}

.catalog-brand-filter {
  min-height: 46px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.catalog-brand-filter option {
  color: var(--ink);
  background: var(--white);
}

.category-tabs {
  display: grid;
  gap: 8px;
}

.category-tabs button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
}

.category-tabs button[aria-selected="true"] {
  color: var(--ink);
  border-color: var(--red);
  background: rgba(255, 176, 0, 0.28);
}

.equipment-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.equipment-toolbar select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
}

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

.equipment-card {
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17, 19, 23, 0.08);
}

.equipment-image {
  min-height: 178px;
  background-image:
    linear-gradient(180deg, rgba(17, 19, 23, 0.06), rgba(17, 19, 23, 0.28)),
    url("assets/hero-equipment-rental.png");
  background-size: 210%;
  background-repeat: no-repeat;
}

.equipment-image.has-custom-image {
  background-size: cover;
  background-position: center;
}

.equipment-image.missing-image {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(241, 13, 47, 0.12), rgba(255, 196, 0, 0.18)),
    #f6f3ed;
}

.equipment-image.missing-image span {
  padding: 8px 12px;
  color: #111;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.equipment-image.image-camera {
  background-position: 68% 55%;
}

.equipment-image.image-lens {
  background-position: 92% 50%;
}

.equipment-image.image-lighting {
  background-position: 100% 12%;
}

.equipment-image.image-audio {
  background-position: 86% 82%;
}

.equipment-image.image-support {
  background-position: 48% 58%;
}

.equipment-image.image-monitor,
.equipment-image.image-power {
  background-position: 72% 68%;
}

.equipment-image.image-grip {
  background-position: 40% 54%;
}

.equipment-image.image-drone,
.equipment-image.image-filter,
.equipment-image.image-film {
  background-position: 88% 70%;
}

.equipment-image.image-package {
  background-position: 73% 58%;
}

.equipment-card header,
.equipment-card p,
.equipment-card .spec-list,
.equipment-card .card-footer {
  margin-left: 20px;
  margin-right: 20px;
}

.equipment-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.equipment-card h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  color: var(--ink);
  background: rgba(255, 196, 0, 0.18);
  border: 1px solid rgba(255, 176, 0, 0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.equipment-card p {
  color: var(--muted);
  line-height: 1.65;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  padding: 6px 9px;
  color: #4e535b;
  background: var(--panel);
  border-radius: 4px;
  font-size: 0.82rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
  padding-bottom: 20px;
}

.price strong {
  font-size: 1.28rem;
}

.price span {
  color: var(--muted);
  font-size: 0.86rem;
}

.add-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.load-more-button {
  display: block;
  width: min(320px, 100%);
  margin: 24px auto 0;
}

.add-button.is-added {
  border-color: var(--teal);
  background: var(--teal);
}

.booking-section {
  background: #24212a;
  color: var(--white);
}

.booking-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.booking-form,
.cart-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.booking-form {
  display: grid;
  gap: 18px;
}

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

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.booking-form select option {
  color: var(--ink);
}

.booking-form textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.form-submit {
  width: fit-content;
}

.form-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.cart-warning {
  min-height: 24px;
  margin: -6px 0 0;
  color: #f0a400;
  font-weight: 800;
}

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

.cart-heading h3 {
  margin: 0;
  font-size: 1.55rem;
}

.cart-heading button,
.cart-remove {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.cart-item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.empty-cart {
  padding: 18px;
  color: rgba(255, 255, 255, 0.56);
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.cart-summary {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary dt {
  color: rgba(255, 255, 255, 0.64);
}

.cart-summary dd {
  margin: 0;
  font-weight: 800;
}

.summary-total {
  color: var(--white);
  font-size: 1.22rem;
}

.promo-code-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.promo-code-form label {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.inline-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.inline-field input,
.inline-admin-form input {
  min-height: 42px;
}

.promo-code-form input {
  width: 100%;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

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

.process-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border-top: 4px solid var(--amber);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

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

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(46px, 6vw, 76px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #302b35;
}

.contact-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-section p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.confirm-dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  box-shadow: var(--shadow);
}

.confirm-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
}

.confirm-dialog h2 {
  margin-bottom: 12px;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 1.3rem;
}

.no-results {
  grid-column: 1 / -1;
  padding: 34px;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--line);
}

.film-section {
  background: #fff8e6;
}

.promo-section {
  background: var(--charcoal);
  color: var(--white);
}

.promo-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(36, 33, 42, 0.08);
}

.service-grid h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.4rem;
}

.promo-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.45fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.promo-side-list {
  display: grid;
  gap: 18px;
}

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

.promo-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #302d35;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.promo-tile a,
.promo-tile-image {
  position: absolute;
  inset: 0;
}

.promo-tile a {
  display: block;
  color: inherit;
}

.promo-tile-image {
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.promo-tile-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.promo-tile span,
.promo-tile strong {
  color: var(--red);
  font-weight: 900;
}

.promo-tile h3 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 3.15rem);
  line-height: 1.05;
}

.promo-tile p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.promo-feature {
  min-height: clamp(360px, 43vw, 600px);
}

.promo-feature .promo-tile {
  min-height: 100%;
}

.promo-side {
  min-height: 180px;
}

.promo-side .promo-tile-content {
  padding: 18px;
}

.promo-side h3 {
  font-size: 1.35rem;
}

.promo-side p {
  display: none;
}

.promo-card {
  min-height: 260px;
}

.promo-card .promo-tile-content {
  padding: 24px;
}

.promo-card h3 {
  font-size: 1.55rem;
}

.record-thumb {
  min-height: 120px;
  margin-bottom: 12px;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.location-section {
  background: var(--paper);
}

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

.location-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(36, 33, 42, 0.08);
}

.location-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.location-card p,
.muted-copy {
  color: var(--muted);
  line-height: 1.7;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  font-weight: 800;
}

.map-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

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

.social-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.status-pill.is-open {
  color: #1e3d22;
  background: #dff2d7;
  border-color: #b9dfad;
}

.status-pill.is-closed {
  color: #5d261d;
  background: #ffe1d6;
  border-color: #f2b5a2;
}

.member-section,
.admin-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.member-section {
  background: var(--paper);
}

.admin-section {
  background: #f7f1e4;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.admin-tab {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.admin-tab.is-active {
  color: var(--ink);
  background: var(--red);
  border-color: var(--red);
}

.admin-page {
  display: none;
}

.admin-page:not(.is-active) {
  display: none !important;
}

.admin-page.is-active {
  display: grid;
}

.admin-page[data-admin-page="overview"].is-active {
  display: block;
}

.member-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.member-login-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 920px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 19, 23, 0.08);
}

.member-login-prompt p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.member-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.member-profile-card {
  grid-column: span 1;
}

.member-records-card {
  min-height: 100%;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.admin-grid.lower {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  margin-top: 24px;
}

.film-admin-grid {
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.film-order-panel {
  overflow: hidden;
}

.member-card,
.admin-panel {
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 19, 23, 0.08);
}

.member-card,
.admin-panel,
.member-card form,
.admin-panel form,
.member-login-form {
  min-width: 0;
}

.member-card,
.admin-panel,
#equipmentForm,
.member-login-form {
  display: grid;
  gap: 16px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.panel-heading h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.status-pill,
.booking-status,
.stock-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill {
  color: var(--ink);
  background: rgba(255, 196, 0, 0.18);
  border: 1px solid rgba(255, 176, 0, 0.32);
}

.booking-status.pending {
  color: #8d5a13;
  background: rgba(200, 146, 67, 0.18);
}

.booking-status.confirmed {
  color: var(--ink);
  background: rgba(255, 196, 0, 0.18);
}

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

.member-benefits div {
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.member-benefits strong,
.member-benefits span {
  display: block;
}

.member-benefits strong {
  font-size: 1.25rem;
}

.member-benefits span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.film-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.film-summary-grid article {
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.film-summary-grid span,
.film-summary-grid strong {
  display: block;
}

.film-summary-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.film-summary-grid strong {
  margin-top: 4px;
  font-size: 1.18rem;
}

.film-filter-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(140px, 0.55fr) minmax(130px, 0.45fr) minmax(130px, 0.45fr);
  gap: 10px;
}

.booking-status.completed {
  color: #424850;
  background: #e6e1d8;
}

.booking-status.cancelled {
  color: var(--red-dark);
  background: rgba(214, 62, 50, 0.12);
}

.stock-pill {
  color: var(--ink);
  background: var(--panel);
}

.member-card label,
.admin-panel label {
  display: grid;
  gap: 8px;
  color: #424850;
  font-weight: 800;
}

.member-card input,
.member-card select,
.member-card textarea,
.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fbfaf8;
}

.member-card textarea,
.admin-panel textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.image-upload-field {
  display: grid;
  gap: 10px;
}

.image-upload-field > span {
  color: #424850;
  font-weight: 800;
}

.image-dropzone {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 2px dashed var(--line);
  background: #fbfaf8;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.image-dropzone:hover,
.image-dropzone:focus-visible,
.image-dropzone.is-dragging {
  border-color: var(--red);
  background: rgba(255, 176, 0, 0.12);
  outline: none;
}

.image-preview {
  display: grid;
  place-items: center;
  min-height: 190px;
  overflow: hidden;
  color: var(--muted);
  background:
    linear-gradient(45deg, rgba(36, 33, 42, 0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(36, 33, 42, 0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(36, 33, 42, 0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(36, 33, 42, 0.04) 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.image-preview.has-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.image-dropzone p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.login-dialog {
  width: min(1180px, calc(100vw - 32px));
  padding: clamp(26px, 5vw, 56px);
}

.login-title {
  display: grid;
  grid-template-columns: 6px 1fr auto;
  gap: 28px;
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.login-title > span:first-child {
  width: 6px;
  height: 82px;
  background: #f10d2f;
}

.login-title p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.login-title h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.auth-mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: clamp(22px, 4vw, 38px);
  padding: 6px;
  background: #f2f2f2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.auth-mode-tab {
  min-height: 48px;
  padding: 0 12px;
  color: #555;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 900;
}

.auth-mode-tab.is-active {
  color: var(--white);
  background: #111;
}

.login-register-layout {
  display: grid;
  gap: clamp(22px, 4vw, 38px);
}

.auth-pane {
  display: none;
}

.auth-pane.is-active {
  display: grid;
  gap: 24px;
}

.auth-pane h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.login-pane label,
.register-pane label {
  display: grid;
  gap: 10px;
  color: #050505;
  font-size: 1.18rem;
  font-weight: 900;
}

.login-pane label small,
.register-pane label small {
  color: #8a8a8a;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
}

.login-pane input,
.register-pane input {
  width: 100%;
  min-height: 62px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid #d0d0d0;
  background: var(--white);
  border-radius: 6px;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.login-check {
  display: inline-flex !important;
  font-size: 1rem !important;
}

.link-button {
  padding: 0;
  color: #050505;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-weight: 900;
}

.login-submit,
.register-submit {
  min-height: 70px;
  color: var(--white);
  background: #f10d2f;
  border-color: #f10d2f;
  font-size: 1.2rem;
}

.login-submit {
  width: min(360px, 100%);
  justify-self: center;
  margin-top: 34px;
}

.register-pane {
  display: grid;
  gap: 24px;
  text-align: left;
}

.register-pane p {
  margin: 0;
  color: #8a8a8a;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.65;
}

.auth-pane:not(.is-active) {
  display: none;
}

.privacy-consent-box {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #fbfaf8;
  border: 1px solid var(--line);
}

.privacy-consent-box h3 {
  margin: 0;
  font-size: 1.25rem;
}

.privacy-consent-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.privacy-check {
  margin-top: 4px;
  color: var(--ink) !important;
  font-size: 1rem !important;
}

.register-submit:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.reset-password-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.reset-password-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
}

.check-row input {
  width: auto !important;
  min-height: auto !important;
}

.inline-admin-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.compact-list {
  gap: 8px;
}

.compact-record {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.record-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.form-actions,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ghost-button,
.mini-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  font-weight: 800;
}

.ghost-button,
.mini-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

.danger-button {
  color: var(--white);
  border: 1px solid var(--red-dark);
  background: var(--red-dark);
}

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

.admin-stats article {
  padding: 22px;
  background: var(--charcoal);
  color: var(--white);
  border-left: 3px solid var(--red);
}

.admin-stats span,
.admin-stats strong {
  display: block;
}

.admin-stats span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.admin-stats strong {
  margin-top: 10px;
  font-size: 2rem;
}

.analytics-page.is-active {
  display: grid;
  gap: 24px;
}

.analytics-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 19, 23, 0.08);
}

.analytics-header h3 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.analytics-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.analytics-controls select {
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fbfaf8;
  font-weight: 800;
}

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

.analytics-stats article {
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid #7d2df2;
  box-shadow: 0 14px 34px rgba(17, 19, 23, 0.08);
}

.analytics-stats span,
.analytics-stats strong {
  display: block;
}

.analytics-stats span {
  color: var(--muted);
  font-weight: 800;
}

.analytics-stats strong {
  margin-top: 10px;
  font-size: 2.2rem;
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.analytics-panel {
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 19, 23, 0.08);
}

.analytics-wide {
  grid-row: span 2;
}

.analytics-bars {
  display: grid;
  gap: 18px;
}

.analytics-bars.compact {
  gap: 14px;
}

.analytics-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(160px, 1fr) 42px;
  gap: 14px;
  align-items: center;
}

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

.analytics-track {
  height: 30px;
  overflow: hidden;
  background: #e4e5e8;
  border-radius: 6px;
}

.analytics-track span {
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 28px;
  background: linear-gradient(90deg, #8b35ff, #5521a8);
  border-radius: inherit;
}

.analytics-track strong {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 8px;
  padding: 0 8px;
  color: var(--white);
  background: rgba(36, 33, 42, 0.62);
  border-radius: 999px;
  font-size: 0.82rem;
}

.analytics-count {
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.turnstile-wrap {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: flex-start;
}

.turnstile-wrap .form-note {
  margin: 0;
}

.cloud-save-status {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 36px));
  border: 1px solid rgba(36, 33, 42, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(36, 33, 42, 0.16);
  color: var(--ink);
  font-size: 0.9rem;
  padding: 12px 14px;
}

.cloud-save-status.success {
  border-color: rgba(51, 132, 82, 0.35);
}

.cloud-save-status.error {
  border-color: rgba(170, 58, 58, 0.38);
}

.cloud-save-status.is-hidden {
  display: none;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.notification-log {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.notification-log h4 {
  margin: 0;
  font-size: 1rem;
}

.notification-row {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fbfaf8;
}

.notification-row .status-pill {
  width: fit-content;
}

.notify-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 8px 8px 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.notify-row input {
  width: auto;
}

.error-text {
  color: #b42318;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: var(--white);
}

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

th {
  color: #4e535b;
  background: #f4f0e9;
  font-size: 0.82rem;
  text-transform: uppercase;
}

td {
  color: var(--ink);
}

td small,
.record-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-panel select.status-select {
  min-height: 36px;
  padding: 0 10px;
  background: var(--white);
}

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

.record-card {
  padding: 15px;
  border: 1px solid var(--line);
  background: #fbfaf8;
}

.record-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.record-card strong {
  display: block;
}

.record-card p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.empty-state {
  padding: 18px;
  color: var(--muted);
  border: 1px dashed var(--line);
  background: #fbfaf8;
}

@media (max-width: 1100px) {
  .equipment-grid,
  .process-grid,
  .admin-stats,
  .analytics-stats,
  .service-grid,
  .promo-grid,
  .inspiration-grid,
  .retail-list,
  .location-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-layout,
  .member-dashboard,
  .admin-grid,
  .admin-grid.lower,
  .film-admin-grid,
  .login-register-layout,
  .retail-layout,
  .promo-showcase,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .film-summary-grid,
  .film-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .login-pane {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
  }

}

@media (max-width: 720px) {
  .admin-panel table,
  .admin-panel thead,
  .admin-panel tbody,
  .admin-panel tr,
  .admin-panel th,
  .admin-panel td {
    display: block;
  }

  .admin-panel thead {
    display: none;
  }

  .admin-panel tr {
    margin: 0 0 12px;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .admin-panel td {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-panel td:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: auto;
  }

  .brand {
    min-width: auto;
  }

  .nav-links {
    order: 3;
    width: calc(100% + 2px);
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .view-switcher {
    order: 2;
  }

  .header-tools {
    order: 2;
    margin-left: auto;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: 860px;
    padding-top: 150px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(12, 13, 15, 0.96) 0%, rgba(12, 13, 15, 0.8) 48%, rgba(12, 13, 15, 0.22) 100%),
      linear-gradient(90deg, rgba(12, 13, 15, 0.7), rgba(12, 13, 15, 0.1));
  }

  .intro-band,
  .catalog-layout,
  .booking-layout,
  .inspiration-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .film-summary-grid,
  .film-filter-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 780px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions,
  .hero-actions a,
  .retail-feature .primary-button,
  .form-submit {
    width: 100%;
  }

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

  .field-row,
  .inline-field,
  .inline-admin-form,
  .equipment-grid,
  .process-grid,
  .admin-stats,
  .analytics-stats,
  .service-grid,
  .promo-grid,
  .retail-list,
  .location-layout,
  .member-benefits {
    grid-template-columns: 1fr;
  }

  .equipment-toolbar,
  .contact-section,
  .card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .equipment-toolbar select,
  .add-button,
  .contact-section a,
  .map-actions a,
  .social-actions a,
  .form-actions .primary-button,
  .form-actions .ghost-button {
    width: 100%;
  }

  .panel-heading,
  .record-card header,
  .member-login-prompt,
  .login-options,
  .reset-password-actions,
  .analytics-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .auth-mode-tabs {
    grid-template-columns: 1fr;
  }

  .login-dialog {
    padding: 24px;
  }

  .login-title {
    grid-template-columns: 5px 1fr;
    gap: 16px;
  }

  .login-title .status-pill {
    grid-column: 2;
  }

  .login-submit,
  .register-submit {
    width: 100%;
  }

  .analytics-controls,
  .analytics-controls select,
  .analytics-controls button {
    width: 100%;
  }

  .analytics-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .analytics-count {
    text-align: left;
  }

  .member-login-prompt .primary-button,
  .header-tools,
  .header-action,
  .language-picker,
  .language-picker select {
    width: 100%;
  }
}
