:root {
  --black: #080808;
  --charcoal: #151515;
  --red: #e31313;
  --red-dark: #ad0d0d;
  --white: #ffffff;
  --soft: #f4f4f4;
  --muted: #646464;
  --shadow: 0 20px 60px rgba(0, 0, 0, .32);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--soft);
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  align-items: stretch;
  gap: 24px;
  height: 112px;
  padding: 0 clamp(16px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(43, 43, 43, .97), rgba(33, 33, 33, .95));
  color: var(--white);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .24);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: visible;
}
.brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 112px;
  overflow: visible;
  flex-shrink: 0;
}
.brand img {
  width: clamp(320px, 31vw, 420px);
  max-width: 100%;
  transform: translateY(22px);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.36));
}
.header-actions {
  display: flex;
  align-items: flex-end;
  align-self: stretch;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.6vw, 26px);
  min-width: 0;
  padding: 0 0 20px;
  font-size: clamp(1rem, 1.2vw, 1.32rem);
  font-weight: 800;
  white-space: nowrap;
}
.header-actions a { text-decoration: none; opacity: .92; }
.header-actions a:hover { opacity: 1; color: #ff3b3b; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(227, 19, 19, .28);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--red-dark); border-color: var(--red-dark); }
.btn-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.65); box-shadow: none; }
.btn-secondary:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-small {
  min-height: 40px;
  height: 40px;
  padding: 0 15px;
  font-size: clamp(.92rem, 1vw, 1.08rem);
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 30px;
  padding: clamp(130px, 12vw, 170px) clamp(18px, 5vw, 70px) clamp(70px, 8vw, 120px);
  color: var(--white);
  background: url('assets/castle-bg.jpg') center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.62) 50%, rgba(0,0,0,.74)), radial-gradient(circle at 25% 15%, rgba(227,19,19,.20), transparent 32%);
}
.hero-content, .hero-card { position: relative; z-index: 1; }
.hero-content { max-width: 780px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card {
  align-self: end;
  padding: 28px;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  color: var(--black);
  text-align: center;
  box-shadow: var(--shadow);
}
.hero-card .card-label { display: block; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.hero-card strong { display: block; color: var(--red); font-size: 4.2rem; line-height: 1; margin: 10px 0 4px; }
.hero-card span { display: block; font-weight: 900; font-size: 1.25rem; }
.hero-card small { display: block; margin-top: 15px; color: var(--muted); font-weight: 700; }

.section-pad { padding: clamp(55px, 8vw, 90px) clamp(18px, 5vw, 70px); }
.intro, .features, .pricing, .storage-needs, .location { max-width: var(--max); margin: 0 auto; }
.intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
}
.intro h2, .features h2, .pricing h2, .storage-needs h2, .location h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
.intro p, .pricing p, .location p { color: #444; font-size: 1.12rem; }
.facility-photo-wrap {
  border: 8px solid var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.facility-photo-wrap img { aspect-ratio: 4 / 3; object-fit: cover; }

.center { text-align: center; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.feature-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  border-top: 5px solid var(--red);
}
.icon { font-size: 2rem; }
.feature-card h3 { margin: 14px 0 8px; font-size: 1.25rem; }
.feature-card p { margin-bottom: 0; color: #505050; }

.pricing-panel {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: calc(var(--radius) + 8px);
  color: var(--white);
  background: linear-gradient(135deg, #0b0b0b, #2a2a2a);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.pricing-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/castle-bg.jpg') center / cover no-repeat;
  opacity: .12;
}
.pricing-panel > * { position: relative; }
.pricing-panel p { color: rgba(255,255,255,.82); }
.price-box {
  padding: 28px;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  text-align: center;
}
.price-box span { display: block; color: #ddd; text-transform: uppercase; font-weight: 800; letter-spacing: .12em; }
.price-box strong { display: block; margin: 8px 0 20px; color: var(--white); font-size: 1.55rem; }

.needs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.needs-list span {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #ddd;
  font-weight: 900;
}

.location-card {
  padding: clamp(30px, 6vw, 56px);
  border-radius: calc(var(--radius) + 8px);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  text-align: center;
}
.contact-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 25px; }
.location .btn-secondary { color: var(--black); border-color: #bbb; }
.location .btn-secondary:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.site-footer {
  padding: 34px 18px;
  background: var(--black);
  color: rgba(255,255,255,.78);
  text-align: center;
}
.site-footer p { margin: 4px 0; }
.site-footer a { color: var(--white); font-weight: 800; }

@media (max-width: 900px) {
  .site-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 12px;
  }
  .brand { height: auto; }
  .brand img {
    width: min(360px, 86vw);
    max-width: 100%;
    transform: none;
  }
  .header-actions {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    align-self: auto;
    flex-wrap: wrap;
    overflow-x: visible;
    padding: 0;
    font-size: 1rem;
    gap: 16px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 50px;
  }
  .hero-card { align-self: auto; max-width: 420px; }
  .intro, .pricing-panel, .access { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .access-photo img { aspect-ratio: auto; }
  .left-align { justify-content: center; }
}

@media (max-width: 620px) {
  .site-header { gap: 8px; }
  .brand img { width: min(300px, 88vw); }
  .header-actions { font-size: .92rem; gap: 14px; }
  .header-actions a:not(.btn) { display: none; }
  .hero { padding-top: 50px; }
  h1 { font-size: clamp(2.4rem, 15vw, 4rem); }
  .hero-card { padding: 22px; }
  .hero-card strong { font-size: 3.2rem; }
  .btn { width: 100%; }
  .header-actions .btn { width: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .section-pad { padding-left: 16px; padding-right: 16px; }
}

/* Final fix for RV entry section image box */
.access.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
}

.access-photo.facility-photo-wrap {
  width: 100%;
  max-width: 420px;
  justify-self: start;
}

.access-photo.facility-photo-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.access-text {
  min-width: 0;
}

.access-text p {
  color: #444;
  font-size: 1.08rem;
}

.left-align {
  justify-content: flex-start;
}

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

  .access-photo.facility-photo-wrap {
    max-width: 520px;
    justify-self: center;
  }

  .access-photo.facility-photo-wrap img {
    aspect-ratio: auto;
  }

  .left-align {
    justify-content: center;
  }
}
