:root {
  --bg: #08090c;
  --bg-2: #11141b;
  --panel: #171b24;
  --panel-2: #ffffff;
  --text: #f6f7fb;
  --muted: #bac2d3;
  --dark-text: #151923;
  --dark-muted: #5b6474;
  --red: #b80f1f;
  --red-2: #e11d2f;
  --gold: #f7c45f;
  --line: rgba(255, 255, 255, .13);
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
  --radius: 26px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--gold);
  color: #111;
  padding: .75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 12, .82);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .48rem 1rem;
  font-size: .88rem;
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--gold);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: max-content;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: .02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: -.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  color: var(--muted);
  font-weight: 800;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
  color: #fff;
}

.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  font-weight: 950;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(225, 29, 47, .28);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(225, 29, 47, .38);
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-small {
  min-height: 40px;
  padding: .65rem 1rem;
  font-size: .92rem;
}

.promo-hero {
  width: 100%;
  background: #050608;
  border-bottom: 1px solid var(--line);
}

.promo-frame {
  width: 100%;
  min-height: clamp(330px, 39vw, 560px);
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 38px);
  background: linear-gradient(135deg, rgba(184, 15, 31, .28), rgba(247, 196, 95, .12)), radial-gradient(circle at 8% 20%, rgba(225, 29, 47, .32), transparent 30%), radial-gradient(circle at 88% 30%, rgba(247, 196, 95, .18), transparent 28%), #11141b;
}

.promo-placeholder {
  width: min(100%, 1680px);
  min-height: clamp(280px, 33vw, 495px);
  border: 3px dashed rgba(255, 255, 255, .46);
  border-radius: 30px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .45rem;
  text-align: center;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .055) 0 22px, rgba(255, 255, 255, .025) 22px 44px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), 0 28px 90px rgba(0, 0, 0, .35);
  padding: 2rem;
}

.promo-placeholder strong {
  font-size: clamp(4rem, 13vw, 13rem);
  line-height: .85;
  letter-spacing: -.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 14px 60px rgba(0, 0, 0, .5);
}

.promo-placeholder span {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .05em;
}

.promo-placeholder .promo-kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .22em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  background: radial-gradient(circle at 16% 18%, rgba(225, 29, 47, .22), transparent 35%), radial-gradient(circle at 84% 14%, rgba(247, 196, 95, .14), transparent 28%), linear-gradient(120deg, rgba(8, 9, 12, .96), rgba(13, 16, 22, .9));
}

.home-hero {
  padding-top: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: -.07em;
}

.hero-text,
.page-hero p,
.section-head p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-text {
  max-width: 690px;
  margin: 1.2rem 0 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.hero-actions.centered {
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-card {
  justify-self: end;
  width: min(100%, 470px);
}

.gauge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
  box-shadow: var(--shadow);
  padding: 2rem;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.gauge-top {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--muted);
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.status-dot {
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(247, 196, 95, .9);
}

.big-checks {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: .9rem;
}

.big-checks li {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 255, 255, .06);
  font-weight: 900;
}

.quick-strip {
  background: #fff;
  color: var(--dark-text);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-grid a {
  padding: 1.25rem;
  border-left: 1px solid #e5e7ee;
  transition: background .18s ease;
}

.quick-grid a:last-child {
  border-right: 1px solid #e5e7ee;
}

.quick-grid a:hover {
  background: #f4f6fb;
}

.quick-grid strong {
  display: block;
  font-size: 1.05rem;
}

.quick-grid span {
  display: block;
  color: var(--dark-muted);
  font-size: .92rem;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-head.left {
  text-align: left;
  margin-bottom: 1rem;
}

.section-head h2,
.panel h2,
.cta-inner h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  letter-spacing: -.055em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cards-5 {
  grid-template-columns: repeat(5, 1fr);
}

.service-card,
.action-card,
.coupon,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
  padding: 1.45rem;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
}

.card-icon,
.action-card span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: rgba(247, 196, 95, .13);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-card h3,
.action-card h3,
.coupon h3,
.contact-card h2 {
  font-size: 1.28rem;
  margin-bottom: .6rem;
}

.service-card p,
.action-card p,
.coupon p,
.contact-card p,
.panel p {
  color: var(--muted);
  margin: .5rem 0 0;
}

.text-link {
  display: inline-block;
  color: var(--gold);
  font-weight: 950;
  margin-top: 1rem;
}

.split-section {
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem);
  min-height: 360px;
}

.dark-panel {
  background: linear-gradient(150deg, #161b25, #0c0f15);
  border: 1px solid var(--line);
}

.light-panel {
  background: #fff;
  color: var(--dark-text);
}

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

.check-list {
  display: grid;
  gap: .7rem;
  margin-top: 1.3rem;
}

.check-list span {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: inherit;
  font-weight: 850;
}

.check-list span::before {
  content: "✓";
  color: var(--red-2);
  font-weight: 950;
}

.page-hero {
  padding: 7rem 0 4.5rem;
  background: radial-gradient(circle at 18% 20%, rgba(225, 29, 47, .2), transparent 34%), linear-gradient(135deg, #11141b, #08090c);
}

.page-hero.compact {
  padding: 4.5rem 0;
}

.sales-hero,
.uhaul-hero,
.contact-hero {
  background: radial-gradient(circle at 70% 15%, rgba(247, 196, 95, .16), transparent 34%), linear-gradient(135deg, #11141b, #08090c);
}

.coupon-grid,
.action-card-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.action-card {
  transition: transform .18s ease, border-color .18s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 196, 95, .45);
}

.coupon {
  position: relative;
  background: #fff;
  color: var(--dark-text);
  border: 0;
  overflow: hidden;
}

.coupon::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(var(--red), var(--gold));
}

.coupon p {
  color: var(--dark-muted);
}

.coupon-label {
  display: inline-flex;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: #f1f3f8;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 1rem;
}

.coupon-price {
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.cta-band {
  background: #fff;
  color: var(--dark-text);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-inner p {
  color: var(--dark-muted);
  max-width: 560px;
}

.form-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: .9rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  color: var(--dark-text);
}

.contact-form label {
  display: grid;
  gap: .35rem;
  color: var(--dark-muted);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9deea;
  border-radius: 16px;
  padding: .9rem 1rem;
  color: var(--dark-text);
}

.site-footer {
  background: #06070a;
  border-top: 1px solid var(--line);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .8rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer a {
  display: block;
  margin: .45rem 0;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

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

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

@media (max-width: 1050px) {
  .cards-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .coupon-grid,
  .action-card-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split-grid,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
  }

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

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 9, 12, .98);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: .65rem .8rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 5rem);
  }

  .promo-placeholder strong {
    font-size: clamp(3.3rem, 18vw, 7rem);
  }

  .section {
    padding: 4rem 0;
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .service-grid,
  .coupon-grid,
  .action-card-grid,
  .contact-grid,
  .cards-5,
  .quick-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid a,
  .quick-grid a:last-child {
    border: 0;
    border-top: 1px solid #e5e7ee;
  }

  .promo-frame {
    padding: 12px;
    min-height: 300px;
  }

  .promo-placeholder {
    border-radius: 20px;
    min-height: 260px;
  }

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


/* 2026-06 update: homepage banner image + direct customer routing */
.topbar-uhaul {
  color: var(--uhaul-orange, #ff7a00) !important;
  font-weight: 950;
}

.nav-uhaul {
  color: #ffb36b !important;
  font-weight: 950;
}

.nav-uhaul::after {
  background: #ff7a00 !important;
}

.marquee-image-hero {
  width: 100%;
  background: #050608;
  border-bottom: 1px solid var(--line);
}

.marquee-image-link {
  display: block;
  width: 100%;
  line-height: 0;
}

.marquee-image-link img {
  width: 100%;
  height: auto;
  display: block;
}

.link-hub-section {
  padding: 3rem 0 4.5rem;
  background: linear-gradient(180deg, #08090c 0%, #11141b 100%);
}

.link-hub-head {
  max-width: 960px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.link-hub-head h1 {
  margin-inline: auto;
  font-size: clamp(2.4rem, 5.5vw, 5.8rem);
}

.link-hub-head p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 1rem auto 0;
  max-width: 740px;
}

.link-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hub-card {
  min-height: 210px;
  border-radius: 28px;
  border: 1px solid var(--line);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .45rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .2);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 196, 95, .55);
}

.hub-card strong {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.hub-card small {
  color: var(--muted);
  font-weight: 750;
}

.hub-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: auto;
  background: rgba(255, 255, 255, .1);
}

.hub-service {
  background: linear-gradient(160deg, rgba(184, 15, 31, .42), rgba(255, 255, 255, .055));
}

.hub-uhaul {
  background: linear-gradient(160deg, rgba(255, 122, 0, .55), rgba(34, 15, 0, .18));
  border-color: rgba(255, 122, 0, .48);
}

.hub-sales {
  background: linear-gradient(160deg, rgba(247, 196, 95, .28), rgba(255, 255, 255, .055));
}

.hub-services {
  background: linear-gradient(160deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .045));
}

.btn-uhaul,
.hub-uhaul .btn {
  background: #ff7a00;
  color: #160800;
  box-shadow: 0 15px 45px rgba(255, 122, 0, .28);
}

.services-page-hero {
  background: radial-gradient(circle at 70% 15%, rgba(247, 196, 95, .16), transparent 34%), linear-gradient(135deg, #11141b, #08090c);
}

.services-list-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card-linked {
  display: flex;
  flex-direction: column;
}

.service-card-linked .service-cta {
  margin-top: auto;
  padding-top: 1rem;
}

@media (max-width: 1150px) {

  .link-hub-grid,
  .services-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .link-hub-section {
    padding: 2rem 0 3rem;
  }

  .link-hub-grid,
  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .hub-card {
    min-height: 175px;
  }
}


/* 2026-06 tightening: light theme, header CTA buttons, and reviews */
:root {
  --bg: #f7f8fb;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --panel-2: #ffffff;
  --text: #151923;
  --muted: #5b6474;
  --dark-text: #151923;
  --dark-muted: #5b6474;
  --line: rgba(16, 24, 40, .12);
  --shadow: 0 18px 60px rgba(16, 24, 40, .10);
  --uhaul-orange: #ff7a00;
}

body {
  color: var(--text);
  background: var(--bg);
}

.site-header {
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid #e4e7ee;
  box-shadow: 0 10px 30px rgba(16, 24, 40, .06);
}

.topbar {
  background: #f0f2f7;
  color: var(--dark-muted);
}

.topbar a:hover {
  color: var(--red);
}

.brand small {
  color: var(--dark-muted);
}

.nav {
  gap: .75rem;
}

.nav-links {
  gap: .65rem;
  color: var(--dark-muted);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links .btn {
  color: #fff;
}

.btn-sales {
  background: linear-gradient(135deg, #111827, #374151);
  box-shadow: 0 12px 34px rgba(17, 24, 39, .22);
}

.btn-uhaul {
  background: linear-gradient(135deg, #ff7a00, #ff9f1c);
  color: #1f1300 !important;
  box-shadow: 0 12px 34px rgba(255, 122, 0, .25);
}

.marquee-image-hero {
  background: #fff;
  border-bottom: 1px solid #e4e7ee;
}

.link-hub-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
}

.link-hub-head p,
.section-head p,
.hero-text,
.page-hero p {
  color: var(--dark-muted);
}

.hub-card,
.service-card,
.action-card,
.contact-card {
  background: #fff;
  color: var(--dark-text);
  border: 1px solid #e1e5ee;
  box-shadow: var(--shadow);
}

.hub-card small,
.service-card p,
.action-card p,
.contact-card p,
.panel p {
  color: var(--dark-muted);
}

.hub-icon {
  background: #f1f3f8;
}

.hub-service {
  background: linear-gradient(160deg, rgba(184, 15, 31, .11), #fff);
}

.hub-uhaul {
  background: linear-gradient(160deg, rgba(255, 122, 0, .18), #fff);
  border-color: rgba(255, 122, 0, .35);
}

.hub-sales {
  background: linear-gradient(160deg, rgba(17, 24, 39, .10), #fff);
}

.hub-services {
  background: linear-gradient(160deg, rgba(184, 15, 31, .08), #fff);
}

.split-section {
  background: #f4f6fb;
}

.dark-panel,
.light-panel {
  background: #fff;
  color: var(--dark-text);
  border: 1px solid #e1e5ee;
  box-shadow: var(--shadow);
}

.big-checks li {
  background: #fff;
  border-color: #e1e5ee;
  color: var(--dark-text);
}

.page-hero,
.services-page-hero,
.sales-hero,
.uhaul-hero,
.contact-hero {
  background: linear-gradient(180deg, #fff, #f4f6fb);
  color: var(--dark-text);
}

.cta-band {
  background: #ffffff;
  color: var(--dark-text);
  border-top: 1px solid #e1e5ee;
  border-bottom: 1px solid #e1e5ee;
}

.site-footer {
  background: #ffffff;
  color: var(--dark-text);
  border-top: 1px solid #e1e5ee;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: var(--dark-muted);
}

.site-footer a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid #e1e5ee;
}

.reviews-section {
  background: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.review-card {
  background: #fff;
  color: var(--dark-text);
  border: 1px solid #e1e5ee;
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.stars {
  color: #f5a400;
  letter-spacing: .08em;
  font-size: 1.25rem;
  line-height: 1;
}

.review-card blockquote {
  margin: 0;
  color: var(--dark-muted);
  font-size: .98rem;
}

.review-name {
  margin: auto 0 0;
  font-weight: 950;
  color: var(--dark-text);
}

@media (max-width: 1150px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    border-color: #d7dce7;
    background: #fff;
  }

  .nav-toggle span:not(.sr-only) {
    background: var(--dark-text);
  }

  .nav-links {
    background: rgba(255, 255, 255, .98);
    border-color: #e1e5ee;
    box-shadow: var(--shadow);
  }

  .nav-links a:not(.btn) {
    color: var(--dark-text);
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}


/* 2026-06 update: meet the team section */
.team-section {
  background: #f7f8fb;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.team-card {
  background: #fff;
  border: 1px solid #e1e5ee;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.55rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-height: 320px;
}

.team-photo {
  width: 100%;
  min-height: 170px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f1f3f8, #ffffff);
  border: 1px dashed #cfd6e3;
  color: var(--red);
  font-weight: 950;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  letter-spacing: -.04em;
}

.team-card h3 {
  margin: .35rem 0 0;
  font-size: 1.45rem;
}

.team-role {
  margin: 0;
  color: var(--red);
  font-weight: 950;
}

.team-card p:not(.team-role) {
  color: var(--dark-muted);
  margin: 0;
}

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

  .team-card {
    min-height: unset;
  }
}


/* 2026-06 update: contact modal with map background */
.nav-contact-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  padding: .65rem .8rem;
  border-radius: 999px;
}

.nav-contact-button:hover,
.nav-contact-button:focus-visible {
  color: var(--red);
  outline: none;
  background: rgba(184, 15, 31, .08);
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal.is-open {
  display: flex;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, .72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.contact-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  min-height: min(680px, calc(100vh - 48px));
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
  background:
    linear-gradient(90deg, rgba(8, 12, 20, .84) 0%, rgba(8, 12, 20, .64) 42%, rgba(8, 12, 20, .22) 100%),
    url("/assets/jvk-contact-map.webp") center / cover no-repeat;
  color: #fff;
  outline: none;
}

.contact-modal-content {
  width: min(560px, 100%);
  min-height: inherit;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
}

.contact-modal-content .eyebrow {
  color: #ffd166;
}

.contact-modal-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.contact-modal-intro {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-modal-grid {
  display: grid;
  gap: .75rem;
  margin-top: .65rem;
}

.contact-pill {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  color: #151923;
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
}

.contact-pill span {
  color: #5b6474;
  font-weight: 900;
}

.contact-pill strong {
  white-space: nowrap;
  font-size: 1.05rem;
}

.contact-pill:hover,
.contact-pill:focus-visible {
  transform: translateY(-2px);
  color: #151923;
}

.uhaul-pill {
  background: linear-gradient(135deg, #ff7a00, #ffb13b);
  color: #1f1300;
}

.uhaul-pill span {
  color: rgba(31, 19, 0, .75);
}

.contact-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: .8rem;
}

.contact-modal-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .12);
}

.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .94);
  color: #111827;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  transform: scale(1.04);
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .contact-modal {
    padding: 12px;
    align-items: stretch;
  }

  .contact-modal-dialog {
    min-height: calc(100vh - 24px);
    border-radius: 24px;
    background-position: 58% center;
  }

  .contact-modal-content {
    overflow-y: scroll;
    scrollbar-width: none;
    min-height: unset;
    height: calc(100vh - 50px);
    padding: 5.5rem 1.2rem 1.4rem;
    justify-content: flex-start;
  }

  .contact-pill {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }

  .contact-pill strong {
    white-space: normal;
  }

  .contact-modal-actions {
    display: grid;
  }
}


/* 2026-06 polish: fix light-theme ghost buttons and contact page copy/layout */
.btn-ghost {
  color: var(--dark-text) !important;
  background: #ffffff;
  border: 1px solid #cfd6e3;
  box-shadow: 0 10px 26px rgba(16, 24, 40, .08);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: #ffffff !important;
  background: linear-gradient(135deg, #111827, #374151);
  border-color: transparent;
}

.contact-clean-hero h1 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -.065em;
}

.contact-clean-hero p {
  max-width: 720px;
  margin-inline: auto;
}

.contact-card .btn {
  margin-top: 1rem;
  width: 100%;
}

.contact-card .text-link {
  color: var(--red);
}

.form-wrap .section-head h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.contact-form button {
  width: 100%;
}

.contact-modal-actions .btn-ghost {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.contact-modal-actions .btn-ghost:hover,
.contact-modal-actions .btn-ghost:focus-visible {
  color: #111827 !important;
  background: #ffffff;
}

@media (max-width: 640px) {
  .contact-clean-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f5f7fb;
  color: var(--dark-text);
  padding: 3rem 0;
}

.redirect-page p {
  color: var(--dark-muted);
}

/* 2026-06 update: services page summer deals hero */
.summer-deals-section {
  padding: clamp(2.75rem, 6vw, 5.25rem) 0 clamp(3.25rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 180, 60, .38), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(225, 29, 47, .18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
  border-bottom: 1px solid #e1e5ee;
}

.summer-deal-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3.2rem);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .9)),
    radial-gradient(circle at 80% 12%, rgba(255, 122, 0, .24), transparent 30%);
  color: var(--dark-text);
  border: 1px solid rgba(16, 24, 40, .10);
  box-shadow: 0 28px 90px rgba(16, 24, 40, .14);
}

.summer-deal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(8px, 1.1vw, 14px);
  background: linear-gradient(180deg, var(--red), #ff7a00, var(--gold));
}

.summer-deal-copy {
  position: relative;
  z-index: 1;
}

.summer-deal-card h1 {
  max-width: 100%;
  margin: 0;
  color: #111827;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: .86;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.summer-lead {
  max-width: 820px;
  margin: 1rem 0 0;
  color: #2f3746;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 850;
}

.summer-deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin: 1.6rem 0;
}

.summer-mini-card {
  min-height: 100%;
  padding: 1rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e1e5ee;
  box-shadow: 0 12px 34px rgba(16, 24, 40, .08);
}

.summer-mini-card span {
  display: inline-grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  margin-bottom: .55rem;
  border-radius: 16px;
  background: #fff2cc;
  font-size: 1.35rem;
}

.summer-mini-card strong {
  display: block;
  margin-bottom: .35rem;
  color: #111827;
  font-size: 1.02rem;
  line-height: 1.2;
}

.summer-mini-card p {
  margin: 0;
  color: var(--dark-muted);
  font-size: .94rem;
}

.summer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.summer-deal-badge {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  align-content: center;
  justify-self: center;
  width: min(100%, 280px);
  aspect-ratio: 1;
  padding: 1.5rem;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .45), transparent 25%),
    linear-gradient(135deg, #b80f1f 0%, #ff7a00 55%, #111827 100%);
  box-shadow: 0 24px 70px rgba(184, 15, 31, .28);
}

.summer-deal-badge span {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: .6rem;
}

.summer-deal-badge strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.summer-deal-badge small {
  display: block;
  max-width: 180px;
  margin-top: .65rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 900;
}

/* Safety: the summer banner must never vanish if reveal classes are accidentally added later. */
.summer-deals-section .reveal,
.summer-deal-card.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .summer-deal-card {
    grid-template-columns: 1fr;
  }

  .summer-deal-badge {
    width: min(240px, 82vw);
  }

  .summer-deal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .summer-deals-section {
    padding: 1.5rem 0 3rem;
  }

  .summer-deal-card {
    border-radius: 26px;
  }

  .summer-deal-card h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .summer-actions {
    display: grid;
  }
}

a.granet-link {
  display: inline;
  margin: 0;
}
