/* Self-hosted Inter (variable, latin subset) - no external font CDN. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("public/fonts/inter-latin-wght-normal.woff2") format("woff2");
}

:root {
  --ink: #2c241d;
  --muted: #6e6258;
  --paper: #fffaf3;
  --cream: #f7ead7;
  --gold: #d8902f;
  --rust: #a94f28;
  --cranberry: #7b2f37;
  --pine: #314b3c;
  --uhaul: #f36f21;
  --line: rgba(44, 36, 29, 0.14);
  --shadow: 0 18px 45px rgba(73, 45, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(44, 36, 29, 0.08);
}

/* Offset in-page anchor jumps so the sticky header + overflowing logo
   don't cover the top of the targeted section. */
.section[id] {
  scroll-margin-top: 190px;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: auto;
  height: 180px;
  object-fit: contain;
  /* Grow the logo without growing the header bar: it hangs below the bar.
     align-self:start pins it to the top so it only overflows downward;
     the negative bottom margin keeps it from stretching the header height. */
  align-self: start;
  margin-bottom: -46px;
  margin-top: -20px;
}

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

.brand strong {
  font-size: 1.05rem;
  line-height: 1.2;
  max-width: 16ch;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 28px);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--rust);
}

.header-call {
  color: #fff;
  background: var(--pine);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 78vh, 700px);
  align-items: end;
  overflow: hidden;
  padding: clamp(92px, 12vw, 150px) clamp(18px, 4vw, 56px) clamp(54px, 7vw, 84px);
  color: #fff;
  background: var(--pine);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(36, 27, 20, 0.82), rgba(36, 27, 20, 0.46) 48%, rgba(36, 27, 20, 0.2)),
    linear-gradient(0deg, rgba(44, 36, 29, 0.68), transparent 52%);
}

.hero .hero-media {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
}

.hero-media span {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.34);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.94;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.74);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 clamp(18px, 3vw, 28px);
}

.quick-info div {
  min-height: 96px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-info div:first-child {
  border-radius: 8px 0 0 8px;
}

.quick-info div:last-child {
  border-radius: 0 8px 8px 0;
}

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 4vw, 56px);
}

.intro-section {
  padding-top: clamp(78px, 11vw, 130px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(26px, 7vw, 86px);
  max-width: 1120px;
  margin: 0 auto;
}

.split h2,
.section-heading h2,
.supplies-copy h2,
.visit-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 1.02;
}

.split p,
.section-heading p,
.supplies-copy p,
.visit-panel p,
.visit-details p {
  color: var(--muted);
}

.band {
  background: var(--cream);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.feature-card,
.equipment-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(73, 45, 22, 0.08);
}

.feature-card h3,
.feature-card p,
.equipment-grid h3 {
  margin-right: 18px;
  margin-left: 18px;
}

.feature-card h3,
.equipment-grid h3,
.visit-details h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

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

.image-placeholder {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(123, 47, 55, 0.82), rgba(216, 144, 47, 0.5)),
    linear-gradient(45deg, #314b3c 25%, #446f51 25%, #446f51 50%, #314b3c 50%, #314b3c 75%, #446f51 75%);
  background-size: auto, 34px 34px;
}

.image-placeholder::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(44, 36, 29, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
}

/* When a real photo is supplied, it fills the same box the placeholder used. */
.image-placeholder.has-photo {
  background: none;
  border: 0;
}

.image-placeholder.has-photo::before {
  display: none;
}

.image-placeholder .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Anchor the hero photo to the bottom so the storefront/front door stays in view. */
.office-photo .photo {
  object-position: 50% 85%;
}

/* Office interior: keep the award plaques and box-selection chart at the
   top in view; let the counter edge crop off the bottom. */
.storage-photo-three .photo {
  object-position: 50% 0%;
}

/* Storage "why store with us" features strip */
.storage-features {
  list-style: none;
  max-width: 1120px;
  margin: 36px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.storage-features li {
  position: relative;
  padding: 18px 18px 18px 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(73, 45, 22, 0.06);
}

.storage-features li::before {
  content: "\2713";
  position: absolute;
  left: 16px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pine);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.storage-features strong {
  display: block;
  font-size: 0.98rem;
}

.storage-features span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Storage FAQ accordion */
.faq {
  max-width: 820px;
  margin: 48px auto 0;
}

.faq h3 {
  margin: 0 0 16px;
  font-size: 1.4rem;
  text-align: center;
}

.faq details {
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq summary {
  position: relative;
  list-style: none;
  padding: 16px 50px 16px 18px;
  font-weight: 700;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "\2013";
}

.faq details p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
}

.hero .hero-media span {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 22px;
}

.office-photo {
  background:
    linear-gradient(135deg, rgba(49, 75, 60, 0.18), rgba(123, 47, 55, 0.24)),
    linear-gradient(120deg, #233326 0 28%, #8a4d28 28% 45%, #e7b15b 45% 62%, #6f262f 62% 100%);
}

.storage-photo-one,
.equipment-three {
  background-color: #7b2f37;
}

.storage-photo-two,
.equipment-four {
  background-color: #314b3c;
}

.storage-photo-three,
.uhaul-van-one,
.uhaul-van-two,
.equipment-one,
.equipment-two {
  background:
    linear-gradient(135deg, rgba(243, 111, 33, 0.82), rgba(49, 75, 60, 0.46)),
    repeating-linear-gradient(45deg, #fff 0 16px, #f36f21 16px 32px);
}

.rental-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 18px;
}

.rental-layout .image-placeholder {
  min-height: 340px;
  border-radius: 8px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.equipment-grid .image-placeholder {
  min-height: 160px;
}

.equipment-grid h3 {
  margin-bottom: 18px;
}

.supplies-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 80px);
  align-items: center;
  background: var(--pine);
  color: #fff;
}

.supplies-copy {
  max-width: 620px;
  justify-self: end;
}

.supplies-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.supplies-copy .note {
  padding-left: 16px;
  border-left: 4px solid var(--gold);
}

.supply-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.supply-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(255, 250, 243, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.supply-item h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
}

.supply-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: 22px;
  max-width: 1232px;
  margin: 0 auto;
}

.visit-panel,
.visit-details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}

address {
  margin-top: 24px;
  font-style: normal;
  font-weight: 800;
}

.visit-details {
  display: grid;
  gap: 16px;
}

.visit-details > div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.visit-details > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.visit-map {
  position: relative;
  display: block;
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.visit-map img {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  object-fit: cover;
  object-position: center;
}

.visit-map-cta {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--pine);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(44, 36, 29, 0.25);
}

.visit-map:hover .visit-map-cta {
  background: var(--rust);
}

.warning {
  background: #fff4e5;
  border: 1px solid rgba(169, 79, 40, 0.24);
  border-radius: 8px;
  padding: 18px;
}

.warning p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #241b14;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 420px;
}

.footer-disclaimer {
  flex-basis: 100%;
  width: 100%;
  margin-top: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.footer-links {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-decoration: none;
}

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

.notfound {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(72px, 12vw, 140px) clamp(18px, 4vw, 56px);
  text-align: center;
}

.notfound h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.notfound p {
  color: var(--muted);
  max-width: 460px;
  margin-inline: auto;
}

.notfound .contact-actions {
  justify-content: center;
  margin-top: 28px;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) clamp(18px, 4vw, 56px);
}

.legal h1 {
  margin: 0 0 6px;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
}

.legal .updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal h2 {
  margin: 34px 0 8px;
  font-size: 1.3rem;
}

.legal p,
.legal li {
  color: var(--ink);
}

.legal ul {
  padding-left: 20px;
}

.legal li {
  margin: 6px 0;
}

.legal a {
  color: var(--rust);
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.powered-by img {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .header-call {
    display: none;
  }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    justify-content: stretch;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-links a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-open .nav-links a:last-child {
    border-bottom: 0;
  }

  .quick-info,
  .feature-grid,
  .equipment-grid,
  .split,
  .supplies-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: 0;
    padding: 0;
  }

  .quick-info div,
  .quick-info div:first-child,
  .quick-info div:last-child {
    border-radius: 0;
    box-shadow: none;
  }

  .rental-layout {
    grid-template-columns: 1fr;
  }

  .supplies-copy {
    justify-self: start;
  }
}

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

  .brand small {
    display: none;
  }

  .logo-mark {
    height: 92px;
    margin-bottom: -58px;
  }

  .hero {
    min-height: 680px;
    padding-inline: 18px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .supply-list {
    grid-template-columns: 1fr;
  }

  .section[id] {
    scroll-margin-top: 110px;
  }
}
