:root {
  --bg-purple: #5b2476;
  --bg-mid: #42185d;
  --bg-dark: #211528;
  --panel: rgba(255, 255, 255, 0.085);
  --gold: #f4d576;
  --gold-soft: #ffe7a0;
  --silver: #e7e7ef;
  --peridot: #9ed96d;
  --text: #fff8df;
  --muted: #e8d7ef;
  --shadow: rgba(0, 0, 0, 0.28);
  --border: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 12% 5%, rgba(183, 113, 214, 0.36), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(158, 217, 109, 0.18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(244, 213, 118, 0.08), transparent 38%),
    linear-gradient(135deg, var(--bg-purple) 0%, var(--bg-mid) 48%, var(--bg-dark) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 80%);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(34, 18, 43, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
}

.mini-gem {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff9d1, var(--peridot) 42%, #4d8d27 100%);
  box-shadow: 0 0 18px rgba(158, 217, 109, 0.75);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-nav a {
  text-decoration: none;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.nav-facebook {
  color: var(--gold-soft) !important;
  border: 1px solid rgba(244, 213, 118, 0.32);
}

.section-pad {
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.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;
}

.hero-business-card {
  padding: clamp(2rem, 5vw, 4.8rem) clamp(1rem, 5vw, 5rem) clamp(2.2rem, 4vw, 4rem);
}

.business-card-hero {
  position: relative;
  overflow: hidden;
  width: min(100%, 1360px);
  aspect-ratio: 1672 / 941;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: clamp(1.1rem, 2vw, 2rem);
  background-image: url("assets/main-banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

.business-card-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.42) 0%, rgba(255, 250, 240, 0) 24%),
    linear-gradient(270deg, rgba(255, 250, 240, 0.48) 0%, rgba(255, 250, 240, 0) 32%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.10), rgba(255, 250, 240, 0));
}

.banner-link {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: clamp(0.45rem, 0.8vw, 0.7rem);
}

.banner-link-left {
  left: clamp(1rem, 3.2vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
}

.banner-link-right {
  right: clamp(1rem, 3.2vw, 3rem);
  top: 50%;
  width: min(28%, 360px);
  transform: translateY(-50%);
}

.banner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  color: #351246;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  border: 1px solid rgba(106, 47, 129, 0.24);
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.86);
  box-shadow: 0 12px 30px rgba(53, 18, 70, 0.18);
  backdrop-filter: blur(8px);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.banner-pill:hover,
.banner-pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 18px 40px rgba(53, 18, 70, 0.25);
}

.facebook-pill {
  color: #fff8df;
  background: linear-gradient(135deg, rgba(98, 37, 128, 0.92), rgba(47, 18, 62, 0.92));
  border-color: rgba(244, 213, 118, 0.34);
}

.facebook-pill:hover,
.facebook-pill:focus-visible {
  background: linear-gradient(135deg, rgba(119, 49, 151, 0.96), rgba(60, 25, 78, 0.96));
}

.hero-buttons,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 30px var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.btn.gold {
  color: #2b1a05;
  background: linear-gradient(135deg, #fff2b8, var(--gold) 52%, #d6aa38);
}

.btn.silver {
  color: #251330;
  background: linear-gradient(135deg, #ffffff, var(--silver) 55%, #b9b7c5);
}

.btn.ghost {
  color: var(--gold-soft);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(244, 213, 118, 0.28);
}

.btn.full {
  width: 100%;
}

.blank-link {
  cursor: default;
}

.info-strip,
.contact-panel {
  position: relative;
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--panel);
  box-shadow: 0 22px 50px rgba(0,0,0,0.20);
  backdrop-filter: blur(14px);
}

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

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold-soft);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
  color: var(--silver);
}

.section-heading p,
.price-card p,
.contact-panel p,
.contact-modal p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.price-card {
  padding: 1.4rem;
  border-radius: 1.3rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.price-card strong {
  color: var(--gold-soft);
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 0 1rem 2.3rem;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .banner-link-right {
    width: min(33%, 320px);
  }

  .banner-pill {
    min-height: 2.45rem;
    padding: 0.62rem 0.78rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 900px) {
  .site-header,
  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav,
  .contact-actions {
    justify-content: flex-start;
  }

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

  .business-card-hero {
    aspect-ratio: auto;
    min-height: 680px;
    background-size: cover;
  }

  .banner-link-left,
  .banner-link-right {
    left: 50%;
    right: auto;
    width: min(88%, 420px);
    transform: translateX(-50%);
  }

  .banner-link-left {
    top: auto;
    bottom: 1rem;
  }

  .banner-link-right {
    top: auto;
    bottom: 4.8rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1rem;
  }

  .hero-business-card,
  .section-pad {
    padding-inline: 1rem;
  }

  .business-card-hero {
    min-height: 620px;
    background-size: auto 100%;
  }

  .hero-buttons,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

/* Edge-to-edge hero banner update */
.hero-business-card {
  padding: 0 0 clamp(1.5rem, 3vw, 3rem);
}

.business-card-hero {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Move clickable overlay buttons down a bit */
.banner-link-left,
.banner-link-right {
  top: 61%;
}

@media (max-width: 900px) {
  .business-card-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }

  .banner-link-left,
  .banner-link-right {
    top: auto;
  }

  .banner-link-right {
    bottom: 3.8rem;
  }

  .banner-link-left {
    bottom: 0.65rem;
  }
}

@media (max-width: 640px) {
  .hero-business-card {
    padding-inline: 0;
  }

  .business-card-hero {
    min-height: 620px;
  }
}

/* JVK-style contact modal copied onto this site */
.nav-contact-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-contact-button:hover,
.nav-contact-button:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
  outline: none;
}

.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);
  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/main-banner.png") 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);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.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;
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
  outline: none;
}

.uhaul-pill {
  background: linear-gradient(135deg, #7b3fb3, #ffd166);
  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);
  box-shadow: none;
}

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

.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 {
    min-height: calc(100vh - 24px);
    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;
    overflow-wrap: anywhere;
  }

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