:root {
  --ink: #0c1d3f;
  --ink-soft: #244067;
  --red: #d10f1f;
  --red-dark: #a70c19;
  --green: #237a4b;
  --gold: #c28a2c;
  --paper: #ffffff;
  --wash: #f5f7fb;
  --line: #dbe2ef;
  --muted: #65728a;
  --shadow: 0 18px 40px rgba(12, 29, 63, 0.12);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

@keyframes hero-pop {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(42px) scale(0.86);
  }

  58% {
    opacity: 1;
    filter: none;
    transform: translateY(-9px) scale(1.08);
  }

  78% {
    transform: translateY(4px) scale(0.98);
  }

  100% {
    opacity: 1;
    filter: none;
    transform: translateY(0) scale(1);
  }
}

@keyframes photo-settle {
  0% {
    transform: scale(1.055);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes text-pop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }

  65% {
    opacity: 1;
    transform: translateY(-4px) scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(219, 226, 239, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  color: var(--ink);
}

.brand img {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a,
.site-nav button {
  min-height: 42px;
  padding: 10px 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav button:hover,
.site-nav a.active {
  background: var(--wash);
  color: var(--ink);
}

.site-nav .primary-nav {
  background: var(--red);
  color: #fff;
}

.site-nav .primary-nav:hover,
.site-nav .primary-nav.active {
  background: var(--red-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 116px);
  overflow: hidden;
  padding: clamp(72px, 11vw, 126px) clamp(18px, 5vw, 72px);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.82) 46%, rgba(255, 255, 255, 0.48) 100%),
    rgba(255, 255, 255, 0.18);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 700px;
  color: var(--ink);
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: #243653;
  font-size: clamp(1.08rem, 2.1vw, 1.38rem);
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(12, 29, 63, 0.12);
}

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

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

.button.ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button.small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

.section {
  padding: clamp(52px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.section.wash {
  background: var(--wash);
}

.section.tight {
  padding-top: clamp(30px, 5vw, 54px);
  padding-bottom: clamp(30px, 5vw, 54px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 440px);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.stat {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}

.stat span {
  color: var(--ink-soft);
  font-weight: 750;
}

.feature-grid,
.photo-grid,
.pricing-grid,
.admin-grid,
.about-grid {
  display: grid;
  gap: 18px;
}

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

.feature {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature h3,
.space-card h3,
.admin-panel h3,
.content-panel h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.feature p,
.space-card p,
.admin-panel p,
.content-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.photo-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.facility-photo {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.facility-photo.tall {
  min-height: 520px;
}

.facility-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform-origin: center;
}

.photo-stack {
  display: grid;
  gap: 18px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 32px;
  align-items: center;
  padding: clamp(48px, 8vw, 84px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.page-hero img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

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

.space-card,
.admin-panel,
.content-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 29, 63, 0.06);
}

.space-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.space-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 850;
}

.pill.available {
  background: #e7f5ed;
  color: var(--green);
}

.pill.rented {
  background: #fff0de;
  color: #8a5410;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--ink);
}

.price strong {
  font-size: 2.2rem;
  line-height: 1;
}

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

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.auth-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  min-height: calc(100vh - 180px);
}

.auth-art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
  background: var(--wash);
}

.auth-art img {
  width: min(680px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.auth-panel {
  display: flex;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
}

.auth-box {
  width: 100%;
}

.auth-box h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
}

.auth-box p {
  color: var(--muted);
  line-height: 1.65;
}

.notice {
  margin: 16px 0 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fffaf0;
  color: #604315;
  line-height: 1.5;
}

.notice.error {
  border-left-color: var(--red);
  background: #fff0f1;
  color: #88121d;
}

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

.admin-panel,
.content-panel {
  padding: 22px;
}

.inventory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.inventory-table th,
.inventory-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.inventory-table th {
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.inventory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 24px;
  align-items: start;
}

.about-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.payment-layout > .content-panel:only-child,
.about-grid > .content-panel:only-child {
  grid-column: 1 / -1;
  width: min(100%, 860px);
  margin-inline: auto;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.timeline div {
  padding: 15px 0 15px 18px;
  border-left: 3px solid var(--red);
}

.timeline strong {
  display: block;
  margin-bottom: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

.motion-ready .hero-content > * {
  opacity: 0;
  animation: hero-pop 1050ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.motion-ready .hero-content .eyebrow {
  animation-delay: 120ms;
}

.motion-ready .hero-content h1 {
  animation-delay: 280ms;
}

.motion-ready .hero-content .hero-text {
  animation-delay: 480ms;
}

.motion-ready .hero-content .action-row {
  animation-delay: 680ms;
}

.motion-ready .reveal-pop {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(36px) scale(0.95);
  transform-origin: center;
  transition:
    opacity 1050ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1050ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1050ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1050ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-ready .reveal-pop.reveal-text {
  transform: translateY(26px) scale(0.97);
}

.motion-ready .reveal-pop.reveal-image {
  filter: blur(6px) saturate(0.9);
  transform: translateY(34px) scale(0.96);
}

.motion-ready .reveal-pop.is-visible {
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
}

.motion-ready .reveal-pop.reveal-image.is-visible,
.motion-ready .facility-photo.reveal-pop.is-visible {
  box-shadow: 0 20px 42px rgba(12, 29, 63, 0.14);
}

.motion-ready .facility-photo.reveal-pop.is-visible img,
.motion-ready .page-hero img.reveal-pop.is-visible,
.motion-ready .auth-art img.reveal-pop.is-visible {
  animation: photo-settle 1500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready .feature.is-visible h3,
.motion-ready .feature.is-visible p,
.motion-ready .space-card.is-visible h3,
.motion-ready .space-card.is-visible p,
.motion-ready .content-panel.is-visible h3,
.motion-ready .content-panel.is-visible p,
.motion-ready .admin-panel.is-visible h3,
.motion-ready .admin-panel.is-visible p {
  animation: text-pop 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .feature.is-visible p,
.motion-ready .space-card.is-visible p,
.motion-ready .content-panel.is-visible p,
.motion-ready .admin-panel.is-visible p {
  animation-delay: 160ms;
}

.motion-ready.motion-replay .reveal-pop,
.motion-ready.motion-replay .hero-content > * {
  animation-name: none;
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .hero-content > *,
  .motion-ready .facility-photo.reveal-pop.is-visible img,
  .motion-ready .page-hero img.reveal-pop.is-visible,
  .motion-ready .auth-art img.reveal-pop.is-visible,
  .motion-ready .feature.is-visible h3,
  .motion-ready .feature.is-visible p,
  .motion-ready .space-card.is-visible h3,
  .motion-ready .space-card.is-visible p,
  .motion-ready .content-panel.is-visible h3,
  .motion-ready .content-panel.is-visible p,
  .motion-ready .admin-panel.is-visible h3,
  .motion-ready .admin-panel.is-visible p {
    animation-duration: 420ms;
  }

  .motion-ready .reveal-pop {
    transition-duration: 420ms;
  }
}

@media (max-width: 960px) {
  .section-heading,
  .page-hero,
  .auth-wrap,
  .admin-grid,
  .payment-layout,
  .about-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

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

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .auth-art {
    min-height: 260px;
  }

  .page-hero img,
  .auth-art img {
    max-height: 260px;
    object-fit: contain;
  }

  .facility-photo.tall {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

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

  .site-nav a,
  .site-nav button {
    width: 100%;
    text-align: left;
  }

  .hero {
    min-height: 72vh;
    padding-top: 48px;
    padding-bottom: 48px;
    background-position: center top;
  }

  .hero::before {
    background: rgba(255, 255, 255, 0.86);
  }

  .feature-grid,
  .pricing-grid,
  .quick-stats {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
  }

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

  .brand img {
    width: 48px;
    height: 34px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-hero {
    gap: 22px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

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

  .facility-photo {
    min-height: 220px;
  }

  .facility-photo.tall {
    min-height: 330px;
  }

  .auth-art {
    min-height: 190px;
    padding: 18px;
  }

  .auth-art img {
    max-height: 170px;
  }

  .auth-panel {
    padding: 30px 18px 42px;
  }

  .admin-panel,
  .content-panel,
  .feature,
  .space-card {
    padding: 18px;
  }

  .inventory-table {
    min-width: 620px;
  }

  .motion-ready .reveal-pop,
  .motion-ready .reveal-pop.reveal-text,
  .motion-ready .reveal-pop.reveal-image {
    transform: translateY(22px) scale(0.98);
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.45rem, 14vw, 3.45rem);
    line-height: 1;
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.1rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .action-row,
  .filters {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .inventory-actions .button {
    width: auto;
  }

  .site-header {
    min-height: 64px;
  }

  .site-nav {
    inset: 64px 0 auto 0;
    max-height: calc(100vh - 64px);
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 30px;
  }

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

  .section-heading h2 {
    font-size: clamp(1.75rem, 10vw, 2.35rem);
    line-height: 1.08;
  }

  .quick-stats,
  .feature-grid,
  .pricing-grid,
  .photo-grid,
  .payment-layout,
  .about-grid,
  .admin-grid {
    gap: 14px;
  }

  .stat {
    min-height: auto;
    padding: 18px;
  }

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

.facility-photo {
    min-height: 190px;
  }

  .facility-photo.tall {
    min-height: 260px;
  }

  .site-footer {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* Hollywood Self Storage inspired UX adapted for G&E Storage. */
:root {
  --blue: #2862b7;
  --blue-dark: #1d4f9c;
  --check-red: #e23a2f;
  --soft-gray: #f1f2f4;
}

body {
  font-family: Archivo, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  display: block;
  min-height: 0;
  padding: 0;
  border-bottom: 0;
  background: #fff;
  backdrop-filter: none;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 12px clamp(18px, 7vw, 108px);
  background: #000;
  color: #fff;
  font-weight: 800;
}

.top-strip a,
.top-strip span {
  color: #fff;
  line-height: 1.35;
}

.main-nav-row {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 10px clamp(18px, 7vw, 108px);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.brand img {
  width: 170px;
  height: 80px;
  object-fit: contain;
}

.site-nav {
  justify-content: flex-end;
  gap: 21px;
}

.site-nav a,
.site-nav button {
  min-height: auto;
  padding: 10px 0 8px;
  border-radius: 0;
  color: #000;
  font-size: 0.98rem;
  font-weight: 900;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav button:hover,
.site-nav a.active {
  background: transparent;
  color: #000;
  box-shadow: inset 0 -3px 0 var(--blue);
}

.site-nav .primary-nav,
.site-nav .primary-nav:hover,
.site-nav .primary-nav.active {
  background: transparent;
  color: #000;
}

.nav-toggle {
  justify-self: end;
  border-color: #000;
  color: #000;
  background: #fff;
}

.hero.storage-hero {
  min-height: clamp(560px, 72vh, 720px);
  padding: clamp(70px, 9vw, 118px) clamp(18px, 7vw, 108px);
  background-position: center;
}

.hero.storage-hero::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.2));
}

.hero.storage-hero .hero-content {
  max-width: 1120px;
}

.hero.storage-hero .eyebrow,
.hero.storage-hero h1,
.hero.storage-hero .hero-text {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
}

.hero.storage-hero h1 {
  max-width: 1080px;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 1.08;
}

.hero.storage-hero .hero-text {
  max-width: 1080px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.button.blue,
.button.red {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--blue);
  text-transform: uppercase;
}

.button.payment-button {
  text-transform: none;
}

.button.blue:hover,
.button.red:hover {
  background: var(--blue-dark);
}

.button.outline-light {
  border-color: #fff;
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.hollywood-section {
  background: #fff;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.split-feature h2,
.section-heading h2,
.pricing-title {
  color: #000;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.split-feature .eyebrow,
.section-heading .eyebrow {
  color: var(--check-red);
}

.check-list,
.mini-check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.mini-check-list li {
  position: relative;
  padding-left: 34px;
  color: #111;
  font-weight: 850;
  line-height: 1.45;
}

.check-list li::before,
.mini-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--check-red);
  font-size: 1.45rem;
  font-weight: 950;
}

.check-list.compact {
  gap: 12px;
  margin-top: 14px;
}

.showcase-photo {
  min-height: 390px;
  border-radius: 0;
}

.showcase-photo img,
.photo-grid .facility-photo img {
  object-fit: contain;
}

.service-band {
  background: var(--soft-gray);
}

.section-heading.centered {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.section-heading.centered p {
  max-width: 720px;
}

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

.rental-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 28px 30px;
  border-left: 6px solid var(--blue);
  background: #fff;
}

.rental-cta .eyebrow {
  margin-bottom: 7px;
}

.rental-cta h3 {
  margin: 0;
  color: #000;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  line-height: 1.25;
}

.rental-cta .button {
  flex: 0 0 auto;
  min-width: 158px;
}

.feature {
  border: 0;
  border-radius: 0;
  padding: 30px;
  box-shadow: none;
}

.feature h3 {
  color: #000;
  font-size: 1.35rem;
}

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

.photo-grid .facility-photo {
  min-height: 240px;
  border-radius: 0;
}

.page-hero {
  display: block;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 7vw, 108px);
  background: var(--soft-gray);
  text-align: center;
}

.page-hero h1 {
  max-width: none;
  color: #000;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  text-transform: uppercase;
}

.page-hero p {
  margin-right: auto;
  margin-left: auto;
}

.page-hero img {
  display: none;
}

.page-hero.page-hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(390px, 54vh, 560px);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  text-align: left;
}

.page-hero.page-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.page-hero.page-hero-image > div {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
}

.page-hero.page-hero-image h1,
.page-hero.page-hero-image p {
  margin-right: 0;
  margin-left: 0;
  color: #fff;
}

.page-hero.page-hero-image .eyebrow {
  color: #fff;
}

.unit-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 38px;
}

.filter-tile {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 14px;
  border: 2px solid #d9d9d9;
  background: #fff;
  color: #000;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.filter-tile.active,
.filter-tile:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  align-items: start;
}

.pricing-title {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.pricing-note {
  margin: 0 0 26px;
  color: #333;
  line-height: 1.65;
}

.unit-list {
  display: grid;
  gap: 0;
}

.unit-row {
  display: grid;
  grid-template-columns: 210px minmax(220px, 1fr) minmax(250px, 0.75fr);
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border: 0;
  border-top: 1px solid #d4d4d4;
  border-radius: 0;
  box-shadow: none;
}

.unit-row:last-child {
  border-bottom: 1px solid #d4d4d4;
}

.unit-thumb {
  min-height: 150px;
  background: var(--soft-gray);
}

.unit-thumb img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.unit-details h3 {
  margin: 0;
  color: #000;
  font-size: 2rem;
}

.unit-name {
  margin: 6px 0 0;
  color: var(--check-red);
  font-weight: 900;
  text-transform: uppercase;
}

.mini-check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-bottom: 0;
}

.mini-check-list li {
  padding-left: 22px;
  font-size: 0.95rem;
}

.mini-check-list li::before {
  top: 0;
  color: var(--blue);
  font-size: 1rem;
}

.unit-price {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.unit-price .price strong {
  color: var(--check-red);
  font-weight: 500;
}

.unit-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
}

.unit-actions .button {
  min-height: 56px;
}

.pricing-sidebar {
  display: grid;
  gap: 20px;
  color: #000;
}

.pricing-sidebar h3 {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #cfcfcf;
  font-size: 1.7rem;
}

.pricing-sidebar h3:first-child {
  padding-top: 0;
  border-top: 0;
}

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

.hours-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
}

.hours-list dt {
  font-weight: 950;
}

.hours-list dd {
  margin: 0;
  font-weight: 750;
}

.site-footer {
  background: #000;
}

@media (max-width: 1100px) {
  .main-nav-row {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
  }

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

  .unit-row {
    grid-template-columns: 180px minmax(220px, 1fr);
  }

  .unit-price {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }

  .unit-actions {
    max-width: 420px;
  }
}

@media (max-width: 880px) {
  .top-strip {
    display: none;
  }

  .main-nav-row {
    grid-template-columns: 1fr auto;
    padding: 10px 18px;
  }

  .brand img {
    width: 138px;
    height: 58px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 78px);
    padding: 8px 18px 20px;
    overflow-y: auto;
    background: #000;
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav button,
  .site-nav .primary-nav {
    width: 100%;
    min-height: 46px;
    color: #fff;
    text-align: left;
  }

  .site-nav a:hover,
  .site-nav button:hover,
  .site-nav a.active,
  .site-nav .primary-nav:hover,
  .site-nav .primary-nav.active {
    color: #fff;
    box-shadow: inset 4px 0 0 var(--blue);
  }

  .split-feature,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .page-hero.page-hero-image {
    min-height: 390px;
    background-position: 58% center;
  }

  .rental-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px 20px;
  }

  .hero.storage-hero {
    min-height: 620px;
    padding: 58px 18px;
  }

  .hero.storage-hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.7rem);
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .unit-filters,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .unit-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .unit-thumb img {
    height: 170px;
  }

  .mini-check-list,
  .unit-actions {
    grid-template-columns: 1fr;
  }
}
