:root {
  --ink: #12221d;
  --muted: #657168;
  --pine: #12352c;
  --pine-deep: #0d251f;
  --pine-soft: #236052;
  --sage: #7f9b63;
  --clay: #a75235;
  --amber: #eeb14a;
  --river: #2d7480;
  --sky: #dceef1;
  --canvas: #fffaf0;
  --cream: #fbf4e6;
  --mist: #eef3ea;
  --clay-soft: #f4e0d2;
  --line: #dde4d7;
  --white: #ffffff;
  --forest: var(--pine);
  --forest-deep: var(--pine-deep);
  --meadow: var(--sage);
  --gold: var(--amber);
  --paper: var(--canvas);
  --shadow: 0 24px 70px rgba(18, 34, 27, 0.16);
  --soft-shadow: 0 14px 34px rgba(18, 34, 27, 0.1);
  --focus-ring: 0 0 0 4px rgba(45, 116, 128, 0.2);
  --max-width: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(220, 238, 241, 0.28), transparent 360px),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: var(--pine-deep);
  background: rgba(238, 177, 74, 0.45);
}

address {
  font-style: normal;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.svg-sprite symbol,
.icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--clay);
  border-radius: 6px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid rgba(221, 228, 215, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.97);
  box-shadow: 0 14px 36px rgba(18, 34, 29, 0.09);
}

.nav-shell {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 22px rgba(18, 34, 26, 0.16);
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--pine-deep);
  font-size: 1.03rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.15;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: var(--pine-deep);
  background: rgba(238, 177, 74, 0.16);
  outline: none;
}

.nav-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-menu-button:hover,
.nav-menu-button:focus-visible {
  color: var(--pine-deep);
  background: rgba(238, 177, 74, 0.16);
  outline: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  background: var(--clay);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(167, 82, 53, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--pine-deep);
  background: rgba(238, 177, 74, 0.14);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle .icon-close {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, 82svh, 820px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 37, 31, 0.91), rgba(18, 53, 44, 0.52) 55%, rgba(167, 82, 53, 0.16)),
    linear-gradient(0deg, rgba(13, 37, 31, 0.5), rgba(13, 37, 31, 0.04) 44%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(620px, 82svh, 820px);
  display: grid;
  align-content: center;
  padding: 78px 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions,
.location-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(18, 34, 29, 0.08);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 14px 28px rgba(18, 34, 29, 0.12);
}

.button-primary {
  color: var(--pine-deep);
  background: var(--amber);
  border-color: var(--amber);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f4c86c;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.52);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.button-dark {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--pine-deep);
}

.button-light {
  color: var(--pine-deep);
  background: var(--cream);
  border-color: var(--line);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--river);
  font-weight: 900;
  text-decoration: none;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--pine-deep);
  outline: none;
  text-decoration: underline;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(850px, 100%);
  margin: 54px 0 0;
}

.hero-facts div {
  min-height: 116px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 900;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.availability-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.availability-panel {
  transform: translateY(-34px);
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(150px, 1fr)) auto;
  align-items: end;
  gap: 14px;
  margin-bottom: -2px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(251, 244, 230, 0.92), rgba(255, 255, 255, 0.98)),
    var(--white);
  border: 1px solid rgba(220, 229, 220, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-lead h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.availability-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.availability-panel input,
.availability-panel select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(238, 243, 234, 0.82);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.availability-panel input:focus,
.availability-panel select:focus {
  border-color: var(--river);
  box-shadow: var(--focus-ring);
}

.form-status {
  grid-column: 2 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-info-section {
  padding: 36px 0 74px;
  background: var(--paper);
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quick-info-grid article {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(145deg, var(--white), rgba(251, 244, 230, 0.78));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.info-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--pine);
  background: rgba(238, 177, 74, 0.18);
  border-radius: 8px;
}

.info-logo {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.info-logo img {
  width: 100%;
  height: 100%;
}

.quick-info-grid p,
.quick-info-grid span:not(.info-icon) {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.quick-info-grid strong {
  color: var(--pine-deep);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.quick-info-grid span:not(.info-icon, .info-logo) {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.arrival-section {
  padding: 0 0 86px;
  background:
    linear-gradient(180deg, var(--paper), rgba(220, 238, 241, 0.55));
  overflow: hidden;
}

.arrival-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.arrival-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.arrival-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.logo-drive-scene {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(220, 238, 241, 0.96), rgba(238, 243, 234, 0.95) 55%, rgba(251, 244, 230, 0.92));
  border: 1px solid rgba(45, 116, 128, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-drive-scene::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background:
    linear-gradient(90deg, rgba(18, 53, 44, 0.09) 0 2px, transparent 2px 100%),
    linear-gradient(rgba(18, 53, 44, 0.08) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, rgba(127, 155, 99, 0.55), rgba(127, 155, 99, 0.88));
  background-size: 74px 74px, 74px 74px, auto;
}

.drive-road {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 34px;
  height: 76px;
  background:
    linear-gradient(180deg, #5d6058, #3f443e);
  border-top: 8px solid rgba(255, 250, 240, 0.64);
  border-bottom: 8px solid rgba(18, 34, 29, 0.22);
  transform: skewY(-1.5deg);
}

.drive-road span {
  position: absolute;
  top: 34px;
  width: 64px;
  height: 5px;
  background: rgba(251, 244, 230, 0.78);
  border-radius: 999px;
}

.drive-road span:nth-child(1) {
  left: 16%;
}

.drive-road span:nth-child(2) {
  left: 43%;
}

.drive-road span:nth-child(3) {
  left: 70%;
}

.parking-pad {
  position: absolute;
  right: clamp(18px, 5vw, 58px);
  bottom: 96px;
  width: clamp(142px, 20vw, 190px);
  height: 128px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.7), rgba(244, 224, 210, 0.82));
  border: 4px solid rgba(255, 250, 240, 0.92);
  border-radius: 8px;
  box-shadow: inset 0 0 0 2px rgba(167, 82, 53, 0.2);
  transform: perspective(380px) rotateX(58deg) rotateZ(-1deg);
}

.parking-pad span {
  position: absolute;
  top: 18px;
  bottom: 18px;
  width: 4px;
  background: rgba(167, 82, 53, 0.46);
  border-radius: 999px;
}

.parking-pad span:nth-child(1) {
  left: 24%;
}

.parking-pad span:nth-child(2) {
  left: 50%;
}

.parking-pad span:nth-child(3) {
  left: 76%;
}

.parking-sign {
  position: absolute;
  right: clamp(30px, 7vw, 88px);
  top: 34px;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  background: var(--canvas);
  border: 5px solid var(--pine);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.parking-sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 8px;
  height: 76px;
  background: var(--pine);
  transform: translateX(-50%);
}

.parking-sign img {
  width: 54px;
  height: 54px;
}

.logo-rig {
  position: absolute;
  left: -132px;
  bottom: 78px;
  width: clamp(116px, 16vw, 178px);
  aspect-ratio: 1;
  filter: drop-shadow(0 20px 20px rgba(13, 37, 31, 0.22));
  animation: logoDrivePark 9s cubic-bezier(0.7, 0, 0.2, 1) infinite;
  will-change: left, bottom, transform;
}

.logo-rig img {
  width: 100%;
  height: 100%;
  border-radius: 22%;
}

@keyframes logoDrivePark {
  0% {
    left: -132px;
    bottom: 78px;
    transform: rotate(0deg) scale(0.98);
  }
  38% {
    left: calc(100% - clamp(190px, 24vw, 270px));
    bottom: 78px;
    transform: rotate(0deg) scale(1);
  }
  50% {
    left: calc(100% - clamp(190px, 24vw, 270px));
    bottom: 78px;
    transform: rotate(0deg) scale(1);
  }
  70% {
    left: calc(100% - clamp(172px, 22vw, 238px));
    bottom: 132px;
    transform: rotate(-8deg) scale(0.96);
  }
  82% {
    left: calc(100% - clamp(174px, 22vw, 240px));
    bottom: 132px;
    transform: rotate(-8deg) scale(0.96);
  }
  100% {
    left: -132px;
    bottom: 78px;
    transform: rotate(0deg) scale(0.98);
  }
}

.content-band,
.gallery-section,
.location-section {
  padding: 92px 0;
}

.content-band,
.rate-section,
.gallery-section,
.reviews-section,
.location-section,
.faq-section,
.contact-section,
.manager-tools-section,
.booking-assurance {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.content-band {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

.section-copy h2,
.rate-copy h2,
.location-copy h2,
.contact-panel h2,
.faq-layout h2,
.section-heading-row h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p,
.rate-copy p,
.location-copy p,
.faq-layout > div > p,
.contact-panel p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px;
  background: rgba(238, 243, 234, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.feature-list .icon {
  color: var(--clay);
}

.image-feature {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rate-section {
  padding: 82px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 37, 31, 0.96), rgba(18, 53, 44, 0.9) 55%, rgba(87, 50, 34, 0.84)),
    url("assets/clean-site.jpg") center/cover;
}

.rate-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 32px;
  align-items: center;
}

.rate-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.rate-card {
  position: relative;
  min-height: 340px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 30px;
  color: var(--forest-deep);
  background: var(--paper);
  border: 1px solid rgba(238, 177, 74, 0.28);
  border-radius: 8px;
  overflow: hidden;
}

.rate-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 76px;
  height: 76px;
  border-radius: 16px;
  opacity: 0.95;
  box-shadow: var(--soft-shadow);
}

.rate-kicker,
.rate-term {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.rate-price {
  margin: 6px 0 0;
  font-size: clamp(4rem, 10vw, 6.2rem);
  line-height: 0.9;
  font-weight: 950;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading-row h2 {
  max-width: 760px;
}

.text-link {
  min-width: max-content;
  color: var(--forest);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.gallery-wide {
  min-height: 520px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(10, 19, 14, 0.72), transparent);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
}

.reviews-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(220, 238, 241, 0.82), rgba(251, 244, 230, 0.76)),
    var(--sky);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-grid blockquote {
  min-height: 220px;
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(45, 116, 128, 0.18);
  border-radius: 8px;
}

.review-grid p {
  margin: 0;
  color: var(--forest-deep);
  font-size: 1.05rem;
  font-weight: 780;
}

.review-note {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 760;
}

.location-section {
  background: var(--paper);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: stretch;
}

.location-copy address {
  margin-top: 24px;
  color: var(--forest-deep);
  font-size: 1.2rem;
  font-weight: 900;
}

.location-actions {
  margin-top: 28px;
}

.map-panel {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 28px;
  overflow: hidden;
  color: var(--forest-deep);
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.9) 0 2px, transparent 2px 100%),
    linear-gradient(rgba(255, 253, 247, 0.9) 0 2px, transparent 2px 100%),
    linear-gradient(135deg, #d8e6d0, var(--sky) 52%, var(--clay-soft));
  background-size: 82px 82px, 82px 82px, auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.map-panel::before,
.map-panel::after {
  content: "";
  position: absolute;
  background: rgba(45, 116, 128, 0.45);
  border-radius: 999px;
  transform-origin: left center;
}

.map-panel::before {
  width: 95%;
  height: 14px;
  left: -12%;
  top: 38%;
  transform: rotate(-16deg);
}

.map-panel::after {
  width: 80%;
  height: 12px;
  left: 22%;
  top: 16%;
  background: rgba(127, 155, 99, 0.56);
  transform: rotate(22deg);
}

.map-marker {
  position: absolute;
  top: 42%;
  left: 48%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--clay);
  border: 6px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(22, 33, 27, 0.2);
}

.map-label,
.map-address {
  position: relative;
  z-index: 1;
}

.map-label {
  font-size: 1.25rem;
  font-weight: 950;
}

.map-address {
  color: var(--muted);
  font-weight: 780;
}

.map-embed-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.map-embed-panel iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
}

.map-embed-panel > a {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--pine-deep);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--soft-shadow);
}

.things-preview {
  padding: 34px 0;
  background: var(--mist);
}

.things-preview-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  color: var(--pine-deep);
  background: linear-gradient(135deg, #e4eee0, #dceef1);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.things-preview-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
}

.things-preview-panel h2 a {
  color: var(--pine-deep);
  text-decoration-color: rgba(13, 37, 31, 0.38);
  text-underline-offset: 6px;
}

.things-preview-panel p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: #36504a;
}

.things-hero {
  padding: clamp(82px, 11vw, 150px) 0 clamp(64px, 8vw, 110px);
  color: var(--white);
  background: linear-gradient(135deg, rgba(13, 37, 31, 0.98), rgba(45, 116, 128, 0.88));
}

.things-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.96;
}

.things-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.things-directory {
  padding: 76px 0 110px;
  background: var(--paper);
}

.attraction-groups {
  display: grid;
  gap: 64px;
}

.attraction-group-heading {
  margin-bottom: 20px;
}

.attraction-group-heading h2 {
  margin: 0;
  color: var(--pine-deep);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.attraction-card {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 34, 27, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.attraction-card:hover,
.attraction-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--river);
  box-shadow: 0 18px 42px rgba(18, 34, 27, 0.14);
  outline: none;
}

.attraction-card strong {
  color: var(--pine-deep);
  font-size: 1.22rem;
  line-height: 1.16;
}

.attraction-card span {
  margin-top: 12px;
  color: var(--muted);
}

.attraction-card em {
  display: flex;
  align-items: center;
  gap: 7px;
  align-self: end;
  margin-top: 22px;
  color: var(--river-deep);
  font-style: normal;
  font-weight: 900;
}

.attraction-card .icon {
  width: 18px;
  height: 18px;
}

.things-contact {
  padding-top: 0;
}

.contact-section {
  padding: 0 0 92px;
  background: var(--paper);
}

.faq-section {
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(220, 238, 241, 0.72), rgba(244, 224, 210, 0.42)),
    var(--sky);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(45, 116, 128, 0.16);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--pine-deep);
  font-weight: 950;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--clay);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--pine-deep), #1b463c 65%, #573222);
  border-radius: 8px;
  overflow: hidden;
}

.contact-logo {
  position: absolute;
  right: clamp(22px, 5vw, 52px);
  bottom: -18px;
  width: clamp(120px, 18vw, 190px);
  height: clamp(120px, 18vw, 190px);
  opacity: 0.18;
  filter: saturate(0.9);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, var(--pine-deep), #172b24);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-brand strong {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.footer-history {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
}

.mobile-book-bar {
  display: none;
}

.booking-page {
  background:
    linear-gradient(180deg, rgba(220, 238, 241, 0.34), transparent 360px),
    var(--mist);
}

.booking-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
}

.booking-hero-media,
.booking-hero-shade {
  position: absolute;
  inset: 0;
}

.booking-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 37, 31, 0.92), rgba(18, 53, 44, 0.48) 58%, rgba(167, 82, 53, 0.18)),
    linear-gradient(0deg, rgba(13, 37, 31, 0.62), rgba(13, 37, 31, 0.03));
}

.booking-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  align-content: center;
  padding: 74px 0;
  color: var(--white);
}

.booking-hero-logo {
  width: clamp(76px, 10vw, 126px);
  height: clamp(76px, 10vw, 126px);
  margin-bottom: 18px;
  border-radius: 20%;
  box-shadow: 0 22px 46px rgba(13, 37, 31, 0.3);
}

.booking-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.booking-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

.booking-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.booking-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.booking-trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.booking-workspace {
  padding: 0 0 88px;
  background: var(--mist);
}

.booking-layout {
  transform: translateY(-52px);
  display: block;
  max-width: 920px;
  margin-bottom: -52px;
}

.booking-request-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.booking-request-summary div {
  display: grid;
  gap: 5px;
  padding: 15px;
  background: rgba(222, 235, 221, 0.58);
  border: 1px solid rgba(18, 53, 44, 0.12);
  border-radius: 8px;
}

.booking-request-summary span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-request-summary strong {
  color: var(--pine-deep);
  line-height: 1.25;
}

.booking-card,
.booking-map-summary,
.availability-board {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 244, 230, 0.78));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(18, 34, 27, 0.1);
}

.booking-form {
  padding: clamp(20px, 3vw, 34px);
}

.booking-section-heading {
  margin-bottom: 24px;
}

.booking-section-heading h2,
.booking-map-summary h2,
.assurance-grid h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.booking-section-heading p,
.assurance-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  color: var(--pine-deep);
  background: rgba(238, 177, 74, 0.13);
  border: 1px solid rgba(238, 177, 74, 0.3);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.booking-steps span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--clay);
  border-radius: 50%;
  font-size: 0.74rem;
}

.booking-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label,
.booking-fieldset {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(238, 243, 234, 0.86);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.booking-form textarea {
  min-height: 118px;
  padding-block: 12px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--river);
  box-shadow: var(--focus-ring);
}

.booking-fieldset {
  margin: 24px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-fieldset legend {
  padding: 0 6px;
  color: var(--forest-deep);
  font-size: 1rem;
  font-weight: 950;
}

.pet-liability {
  background: rgba(244, 224, 210, 0.3);
}

.pet-liability.is-required {
  border-color: rgba(167, 82, 53, 0.52);
}

.field-help {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.choice-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 34px;
}

.choice-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--clay);
}

.notes-field {
  margin-top: 22px;
}

.booking-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.booking-submit-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--pine-deep);
  font-weight: 850;
}

.booking-map-panel {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.booking-map-summary {
  padding: 24px;
}

.booking-map-summary {
  position: relative;
  overflow: hidden;
}

.map-summary-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  opacity: 0.9;
  box-shadow: var(--soft-shadow);
}

.map-summary-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

.map-summary-lines div {
  min-height: 78px;
  padding: 14px;
  background: rgba(238, 243, 234, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-summary-lines dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.map-summary-lines dd {
  margin: 8px 0 0;
  color: var(--pine-deep);
  font-size: 1.05rem;
  font-weight: 950;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.availability-legend span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--pine-deep);
  font-weight: 850;
}

.legend-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.66);
}

.legend-dot.is-available {
  background: var(--sage);
}

.legend-dot.is-review {
  background: var(--amber);
}

.legend-dot.is-unavailable {
  background: var(--clay);
}

.legend-dot.is-maintenance {
  background: #7c8580;
}

.availability-board {
  padding: 22px;
}

.availability-board-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.availability-board-header h3 {
  margin: 0;
  color: var(--pine-deep);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.06;
}

.availability-board-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.map-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.map-filter-group {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px;
  background: rgba(238, 243, 234, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-filter {
  min-height: 34px;
  padding: 0 11px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.map-filter.is-active {
  color: var(--white);
  background: var(--pine);
}

.site-map-context {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.site-map-context span {
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(238, 243, 234, 0.72);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.78rem;
  text-align: center;
}

.site-map-context strong { color: var(--pine-deep); }
.site-map-frame { position: relative; }

.site-map-grid {
  position: relative;
  min-height: 430px;
  aspect-ratio: 16 / 10;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 24% 10%, rgba(14, 62, 29, 0.84) 0 13%, transparent 13.5%),
    radial-gradient(ellipse at 86% 34%, rgba(14, 67, 31, 0.86) 0 10%, transparent 10.6%),
    radial-gradient(ellipse at 82% 78%, rgba(20, 76, 36, 0.82) 0 8%, transparent 8.6%),
    radial-gradient(ellipse at 53% 54%, rgba(20, 76, 36, 0.78) 0 12%, transparent 12.7%),
    radial-gradient(circle at 35% 57%, rgba(11, 52, 25, 0.72) 0 5.4%, transparent 5.7%),
    radial-gradient(circle at 61% 55%, rgba(14, 58, 28, 0.76) 0 6%, transparent 6.3%),
    linear-gradient(90deg, transparent 0 83%, rgba(170, 143, 91, 0.22) 83% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(8, 45, 22, 0.08) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #2f6a35 0%, #4e8d3e 42%, #2f6b35 72%, #7d8b45 100%);
  background-size: auto, auto, auto, auto, auto, auto, auto, 100% 100%, 100% 100%, auto;
  border: 1px solid rgba(18, 53, 44, 0.18);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), inset 0 -42px 120px rgba(5, 32, 18, 0.28);
}

.site-map-instruction {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 5;
  margin: 0;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(13, 37, 31, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  pointer-events: none;
  box-shadow: 0 7px 18px rgba(8, 28, 15, 0.22);
}

.site-map-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("assets/campground-satellite-overlay.svg?v=upper-corner-20260803") center / 100% 100% no-repeat;
  filter: saturate(0.96) drop-shadow(0 10px 9px rgba(8, 31, 17, 0.2));
}

.site-map-grid::after {
  content: "Management";
  position: absolute;
  right: 3.8%;
  bottom: 16%;
  z-index: 2;
  width: 11.5%;
  min-width: 86px;
  padding: 10px 7px;
  color: rgba(255, 250, 240, 0.94);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 100%),
    linear-gradient(145deg, #9f5746, #6f382d);
  border: 2px solid rgba(241, 221, 178, 0.86);
  border-radius: 4px;
  font-size: clamp(0.62rem, 1.1vw, 0.88rem);
  font-weight: 950;
  text-align: center;
  text-shadow: 0 1px 2px rgba(20, 10, 6, 0.38);
  transform: rotate(-31deg);
  box-shadow: 0 10px 20px rgba(8, 28, 15, 0.28);
}

.site-lot {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  z-index: 3;
  width: calc(var(--w) * 1%);
  height: calc(var(--h) * 1%);
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.44) 0 2px, transparent 2px 100%),
    radial-gradient(ellipse at 52% 28%, rgba(255, 252, 230, 0.6), transparent 58%),
    linear-gradient(180deg, rgba(210, 193, 151, 0.86), rgba(156, 137, 95, 0.86));
  border: 1px solid rgba(248, 239, 204, 0.74);
  border-radius: 4px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: inset 0 -9px 17px rgba(73, 54, 29, 0.18), 0 7px 14px rgba(8, 28, 15, 0.2);
}

.site-lot:disabled {
  cursor: not-allowed;
}

.site-lot:not(:disabled) {
  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
}

.site-lot:not(:disabled):hover,
.site-lot:not(:disabled):focus-visible {
  z-index: 6;
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.08) saturate(1.08);
  box-shadow: inset 0 -9px 17px rgba(73, 54, 29, 0.12), 0 13px 24px rgba(8, 28, 15, 0.34);
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 2px;
}

.site-lot::before {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  width: max-content;
  max-width: 220px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(13, 37, 31, 0.95);
  border-radius: 6px;
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 120ms ease, transform 120ms ease;
}

.site-lot:hover::before,
.site-lot:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-lot::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: 17%;
  height: 31%;
  min-width: 6px;
  background:
    linear-gradient(#1e2c29 0 0) 50% 22% / 48% 14% no-repeat,
    linear-gradient(#fffef7, #e4e5d8);
  border: 1px solid rgba(18, 34, 27, 0.25);
  border-radius: 2px;
  transform: translateX(-50%);
  opacity: 0.85;
}

.site-lot.row-overflow::after {
  display: none;
}

.site-lot span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(19px, 2.2vw, 28px);
  height: clamp(19px, 2.2vw, 28px);
  background: rgba(61, 48, 30, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.66), 0 4px 8px rgba(8, 28, 15, 0.26);
}

.site-lot.is-available {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 2px, transparent 2px 100%),
    radial-gradient(ellipse at 52% 28%, rgba(245, 238, 202, 0.62), transparent 58%),
    linear-gradient(180deg, rgba(197, 190, 143, 0.88), rgba(136, 146, 87, 0.88));
  border-color: rgba(220, 234, 197, 0.88);
}

.site-lot.is-review {
  color: var(--pine-deep);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0 2px, transparent 2px 100%),
    radial-gradient(ellipse at 52% 28%, rgba(255, 239, 178, 0.64), transparent 58%),
    linear-gradient(180deg, rgba(216, 190, 126, 0.9), rgba(163, 132, 77, 0.9));
  border-color: rgba(238, 177, 74, 0.9);
}

.site-lot.is-pending {
  color: var(--pine-deep);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0 2px, transparent 2px 100%),
    radial-gradient(ellipse at 52% 28%, rgba(255, 239, 178, 0.64), transparent 58%),
    linear-gradient(180deg, rgba(218, 190, 122, 0.92), rgba(168, 129, 69, 0.92));
  border-color: rgba(238, 177, 74, 0.94);
}

.site-lot.is-unavailable,
.site-lot.is-booked,
.site-lot.is-checked-in,
.site-lot.is-checkout-due,
.site-lot.is-overstay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 2px, transparent 2px 100%),
    radial-gradient(ellipse at 52% 28%, rgba(229, 203, 159, 0.58), transparent 58%),
    linear-gradient(180deg, rgba(182, 150, 104, 0.92), rgba(126, 93, 65, 0.92));
  border-color: rgba(180, 64, 55, 0.9);
}

.site-lot.is-overstay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0 2px, transparent 2px 100%),
    radial-gradient(ellipse at 52% 28%, rgba(212, 181, 141, 0.55), transparent 58%),
    linear-gradient(180deg, rgba(159, 118, 88, 0.94), rgba(98, 67, 54, 0.94));
  border-color: rgba(126, 31, 40, 0.94);
}

.site-lot.is-maintenance {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 2px, transparent 2px 100%),
    radial-gradient(ellipse at 52% 28%, rgba(208, 213, 194, 0.48), transparent 58%),
    linear-gradient(180deg, rgba(129, 142, 132, 0.9), rgba(81, 91, 85, 0.9));
  border-color: rgba(98, 111, 105, 0.94);
}

.site-lot.is-available span {
  background: #2f7d3d;
}

.site-lot.is-unavailable span,
.site-lot.is-booked span,
.site-lot.is-checked-in span,
.site-lot.is-checkout-due span,
.site-lot.is-overstay span {
  background: #9d3036;
  color: var(--white);
}

.site-lot.is-review span,
.site-lot.is-pending span {
  background: #eeb14a;
  color: var(--pine-deep);
}

.site-lot.is-maintenance span {
  background: #657168;
}

.site-lot.is-selected {
  outline: 4px solid rgba(238, 177, 74, 0.95);
  outline-offset: 2px;
  z-index: 4;
}

.site-lot.is-selected span {
  background: var(--pine-deep);
  color: var(--white);
}

.site-lot.is-hidden-by-filter {
  opacity: 0.18;
  filter: saturate(0.45);
  pointer-events: none;
}

.selected-site-panel {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 14px;
  color: var(--pine-deep);
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(238, 177, 74, 0.45);
  border-radius: 8px;
}

.selected-site-panel strong,
.selected-site-panel span,
.selected-site-panel small {
  display: block;
}

.selected-site-panel span {
  color: var(--muted);
  font-weight: 780;
}

.selected-site-panel small {
  color: var(--clay);
  font-weight: 850;
}

.map-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.map-actions .button {
  width: 100%;
}

.available-site-list {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  padding: 16px;
  color: var(--pine-deep);
  background: rgba(238, 243, 234, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.available-site-list strong,
.available-site-list span,
.available-site-list em,
.available-site-list small {
  display: block;
}

.available-site-list span {
  color: var(--muted);
  font-weight: 780;
}

.available-site-list em {
  color: var(--pine-deep);
  font-style: normal;
  font-weight: 850;
}

.available-site-list small {
  color: var(--clay);
  font-weight: 850;
}

.booking-assurance {
  padding: 78px 0 92px;
  background: var(--paper);
}

.assurance-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.assurance-grid article {
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(145deg, var(--white), rgba(238, 243, 234, 0.8));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.assurance-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--clay);
  border-radius: 50%;
  font-weight: 950;
}

.assurance-grid h3 {
  margin: 22px 0 0;
  font-size: 1.25rem;
}

.manager-tools-section {
  padding: 82px 0 96px;
  background:
    linear-gradient(135deg, rgba(220, 238, 241, 0.75), rgba(251, 244, 230, 0.9)),
    var(--sky);
}

.manager-tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.manager-tools-copy,
.manager-tools-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(45, 116, 128, 0.16);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.manager-tools-copy {
  grid-row: span 2;
}

.manager-tools-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.6rem);
  line-height: 1.02;
}

.manager-tools-copy p:not(.eyebrow),
.manager-tools-grid article p {
  margin: 14px 0 0;
  color: var(--muted);
}

.manager-tools-grid article h3 {
  margin: 0;
  color: var(--pine-deep);
  font-size: 1.2rem;
}

.portal-page.portal-locked {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 37, 31, 0.94), rgba(18, 53, 44, 0.84)),
    var(--pine);
}

.portal-page.portal-locked .portal-protected {
  display: none !important;
}

.portal-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.portal-login-card {
  width: min(100%, 440px);
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 244, 230, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.portal-login-card img {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 22px;
}

.portal-login-card h1 {
  margin: 0;
  color: var(--pine-deep);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 0.98;
}

.portal-login-card p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 760;
}

.portal-login-card form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.portal-login-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.portal-login-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(238, 243, 234, 0.9);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.portal-login-card input:focus {
  border-color: var(--river);
  box-shadow: var(--focus-ring);
}

.portal-login-card .button {
  width: 100%;
}

.portal-login-error {
  min-height: 22px;
  margin: 0;
  color: var(--clay);
  font-weight: 850;
}

.portal-reset-link {
  justify-self: start;
  padding: 0;
  border: 0;
  color: var(--pine);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.portal-reset-link:hover,
.portal-reset-link:focus-visible {
  color: var(--rust);
}

.portal-reset-link:disabled {
  cursor: wait;
  opacity: 0.65;
}

.manager-page {
  background: var(--mist);
}

.manager-hero {
  padding: 72px 0 48px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 37, 31, 0.94), rgba(18, 53, 44, 0.88)),
    var(--pine);
}

.manager-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.manager-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.98;
}

.manager-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.manager-app {
  padding-bottom: 72px;
}

.manager-hero-inner {
  display: block;
}

.manager-view-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.manager-view-button {
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 18px 20px;
  color: var(--pine-deep);
  text-align: left;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 9px;
  box-shadow: 0 12px 34px rgba(18, 34, 27, 0.13);
  cursor: pointer;
}

.manager-view-button strong {
  font-size: 1.15rem;
}

.manager-view-button span {
  color: var(--muted);
  font-size: 0.88rem;
}

.manager-view-button:hover,
.manager-view-button:focus-visible {
  border-color: var(--river);
  outline: none;
}

.manager-view-button.is-active {
  color: var(--white);
  background: var(--river-deep);
  border-color: var(--river-deep);
}

.manager-view-button.is-active span {
  color: rgba(255, 255, 255, 0.8);
}

.manager-action-status-bar {
  min-height: 38px;
  padding-top: 12px;
}

.manager-action-status-bar .manager-action-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
}

.manager-view {
  padding: 28px 0 0;
}

.manager-view[hidden] {
  display: none;
}

.manager-view-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}

.manager-view-heading h2 {
  margin: 0;
  color: var(--pine-deep);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.manager-view-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--muted);
}

.manager-view .manager-stat-grid article {
  min-height: 94px;
  color: var(--pine-deep);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 8px 22px rgba(18, 34, 27, 0.08);
}

.manager-view .manager-stat-grid small {
  color: var(--muted);
}

.manager-map-heading {
  grid-template-columns: minmax(0, 1fr) auto;
}

.manager-view .manager-map-panel {
  position: static;
}

.manager-history {
  margin-top: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.manager-history summary {
  color: var(--pine-deep);
  font-weight: 900;
  cursor: pointer;
}

.manager-history .manager-event-log {
  margin-top: 16px;
}

.manager-review-reminder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  color: var(--pine-deep);
  background: rgba(216, 230, 208, 0.66);
  border: 1px solid rgba(127, 155, 99, 0.5);
  border-radius: 8px;
}

.manager-review-reminder h3 {
  margin: 0;
  font-size: 1.3rem;
}

.manager-review-reminder p:not(.eyebrow) {
  max-width: 850px;
  margin: 10px 0 0;
  color: var(--muted);
}

.manager-demo-tools {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.manager-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.manager-stat-grid article {
  min-height: 120px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.manager-stat-grid span {
  display: block;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 950;
}

.manager-stat-grid small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

.manager-workspace {
  padding: 34px 0 72px;
}

.manager-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.manager-toolbar h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.manager-date-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.manager-date-controls label,
.manager-create-form label,
.manager-assign-lot,
.manager-extend-control {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.manager-date-controls input,
.manager-create-form input,
.manager-create-form select,
.manager-create-form textarea,
.manager-assign-lot select,
.manager-extend-control input {
  width: 100%;
  min-height: 44px;
  padding: 0 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.manager-create-form textarea {
  min-height: 88px;
  padding-block: 10px;
  resize: vertical;
}

.manager-date-controls input:focus,
.manager-create-form input:focus,
.manager-create-form select:focus,
.manager-create-form textarea:focus,
.manager-assign-lot select:focus,
.manager-extend-control input:focus {
  border-color: var(--river);
  box-shadow: var(--focus-ring);
}

.manager-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.18fr);
  gap: 18px;
  align-items: start;
}

.manager-panel,
.manager-map-panel .availability-board {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 244, 230, 0.78));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(18, 34, 27, 0.1);
}

.manager-panel {
  padding: 22px;
}

.manager-map-panel {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  min-width: 0;
}

.manager-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.manager-panel-header h3 {
  margin: 0;
  color: var(--pine-deep);
  font-size: 1.35rem;
  line-height: 1.08;
}

.manager-pill,
.reservation-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
  white-space: nowrap;
}

.manager-pill {
  color: var(--pine-deep);
  background: rgba(238, 177, 74, 0.18);
  border: 1px solid rgba(238, 177, 74, 0.32);
}

.reservation-status {
  color: var(--pine-deep);
  background: rgba(238, 177, 74, 0.24);
}

.reservation-status.is-booked,
.reservation-status.is-checked-in {
  color: var(--white);
  background: var(--clay);
}

.reservation-status.is-checkout-due {
  color: var(--pine-deep);
  background: var(--amber);
}

.reservation-status.is-overstay {
  color: var(--white);
  background: #681d25;
}

.manager-list,
.manager-event-log {
  display: grid;
  gap: 12px;
}

.manager-request-card,
.manager-stay-row,
.manager-event-log article {
  padding: 16px;
  background: rgba(238, 243, 234, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.manager-card-top,
.manager-stay-row {
  display: grid;
  gap: 12px;
}

.manager-card-top {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.manager-card-top strong,
.manager-card-top span,
.manager-stay-row strong,
.manager-stay-row small,
.manager-event-log strong,
.manager-event-log span,
.manager-event-log small {
  display: block;
}

.manager-card-top strong,
.manager-stay-row strong,
.manager-event-log strong {
  color: var(--pine-deep);
}

.manager-card-top span,
.manager-stay-row small,
.manager-event-log span,
.manager-event-log small,
.manager-request-details dd,
.manager-request-note {
  color: var(--muted);
}

.manager-request-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.manager-request-details div {
  min-height: 64px;
  padding: 10px;
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(221, 228, 215, 0.86);
  border-radius: 8px;
}

.manager-request-details dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.manager-request-details dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.manager-request-note {
  margin: 0 0 14px;
  font-weight: 760;
}

.manager-card-actions,
.manager-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.manager-card-actions .button,
.manager-row-actions .button {
  min-height: 40px;
  padding-inline: 12px;
}

.manager-create-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.manager-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.manager-notes-field {
  margin: 12px 0;
}

.manager-action-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--pine-deep);
  font-weight: 850;
}

.manager-legend {
  margin-bottom: 16px;
}

.manager-site-map {
  min-height: 500px;
}

.manager-operations {
  padding: 0 0 82px;
}

.manager-operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.manager-table {
  display: grid;
  gap: 10px;
}

.manager-stay-row {
  grid-template-columns: minmax(0, 1fr) auto minmax(150px, 0.28fr) auto;
  align-items: end;
}

.manager-empty {
  margin: 0;
  padding: 16px;
  color: var(--muted);
  background: rgba(238, 243, 234, 0.72);
  border: 1px dashed rgba(101, 113, 104, 0.38);
  border-radius: 8px;
  font-weight: 780;
}

.owner-page {
  background: var(--mist);
}

.owner-hero {
  padding: 76px 0 54px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 37, 31, 0.92), rgba(45, 116, 128, 0.72)),
    var(--pine);
}

.owner-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.owner-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.25rem, 5.2vw, 5.2rem);
  line-height: 0.98;
}

.owner-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.owner-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.owner-kpi-grid article {
  min-height: 144px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.owner-kpi-grid span {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 950;
}

.owner-kpi-grid small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.owner-workspace,
.owner-detail-section {
  padding: 34px 0 72px;
}

.owner-detail-section {
  padding-top: 0;
}

.owner-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.owner-toolbar h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.owner-date-range {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.owner-date-range label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.owner-date-range input {
  width: 100%;
  min-height: 44px;
  padding: 0 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.owner-date-range input:focus {
  border-color: var(--river);
  box-shadow: var(--focus-ring);
}

.owner-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(540px, 1.18fr) minmax(360px, 0.82fr);
  gap: 18px;
  align-items: start;
}

.owner-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.owner-panel {
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 244, 230, 0.78));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(18, 34, 27, 0.1);
}

.owner-map-panel {
  overflow: hidden;
}

.owner-map-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.owner-map-metrics div {
  min-height: 74px;
  padding: 12px;
  background: rgba(238, 243, 234, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.owner-map-metrics strong,
.owner-map-metrics span {
  display: block;
}

.owner-map-metrics strong {
  color: var(--pine-deep);
  font-size: 1.6rem;
  line-height: 1;
}

.owner-map-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.owner-map-shell {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 37, 31, 0.96), rgba(18, 53, 44, 0.92));
  border: 1px solid rgba(13, 37, 31, 0.34);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 22px 42px rgba(18, 34, 27, 0.16);
}

.owner-map-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 850;
}

.owner-map-toolbar b {
  color: var(--amber);
  font-weight: 950;
}

.owner-site-map {
  min-height: 430px;
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.owner-signal-list,
.owner-metric-list,
.owner-demand-list {
  display: grid;
  gap: 12px;
}

.owner-signal-card,
.owner-metric-list article,
.owner-demand-row {
  padding: 16px;
  background: rgba(238, 243, 234, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.owner-signal-card.is-warning {
  border-color: rgba(238, 177, 74, 0.48);
  background: rgba(238, 177, 74, 0.16);
}

.owner-signal-card.is-danger {
  border-color: rgba(167, 82, 53, 0.5);
  background: rgba(244, 224, 210, 0.58);
}

.owner-signal-card strong,
.owner-signal-card span,
.owner-metric-list strong,
.owner-metric-list span,
.owner-demand-row strong,
.owner-demand-row span {
  display: block;
}

.owner-signal-card strong,
.owner-metric-list strong,
.owner-demand-row strong,
.owner-demand-row b {
  color: var(--pine-deep);
}

.owner-metric-list strong {
  font-size: 1.6rem;
  line-height: 1;
}

.owner-signal-card span,
.owner-metric-list span,
.owner-demand-row span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 760;
}

.owner-demand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.owner-lot-review {
  display: grid;
  gap: 14px;
}

.owner-lot-review-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.owner-lot-review-header h3 {
  margin: 0;
  color: var(--pine-deep);
  font-size: 1.8rem;
  line-height: 1;
}

.owner-lot-review-header span:not(.reservation-status) {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 780;
}

.owner-lot-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.owner-lot-detail-grid div {
  min-height: 68px;
  padding: 11px;
  background: rgba(238, 243, 234, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.owner-lot-detail-grid dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-lot-detail-grid dd {
  margin: 6px 0 0;
  color: var(--pine-deep);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.owner-lot-note {
  display: grid;
  gap: 5px;
  padding: 14px;
  color: var(--pine-deep);
  background: rgba(255, 250, 240, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.owner-lot-note span {
  color: var(--muted);
  font-weight: 760;
}

.owner-event-list {
  display: grid;
  gap: 9px;
}

.owner-event-list > strong {
  color: var(--pine-deep);
}

.owner-event-list article {
  padding: 11px;
  background: rgba(238, 243, 234, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.owner-event-list article strong,
.owner-event-list article span {
  display: block;
}

.owner-event-list article span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.owner-panel-divider {
  height: 1px;
  margin: 18px 0;
  background: var(--line);
}

.owner-lot-roster-section {
  padding: 0 0 86px;
}

.owner-roster-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.owner-roster-heading h2 {
  margin: 0;
  color: var(--pine-deep);
  font-size: clamp(1.9rem, 3.5vw, 3.4rem);
  line-height: 1.02;
}

.owner-roster-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 780;
}

.owner-lot-roster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.owner-lot-card {
  min-height: 250px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 234, 0.82));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 34, 27, 0.08);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.owner-lot-card:hover,
.owner-lot-card:focus-visible,
.owner-lot-card.is-selected {
  border-color: rgba(238, 177, 74, 0.86);
  box-shadow: 0 18px 38px rgba(18, 34, 27, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.owner-lot-card.is-selected {
  box-shadow: 0 0 0 4px rgba(238, 177, 74, 0.22), 0 18px 38px rgba(18, 34, 27, 0.12);
}

.owner-lot-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.owner-lot-card-top strong {
  color: var(--pine-deep);
  font-size: 1.18rem;
}

.owner-lot-card p {
  min-height: 48px;
  margin: 14px 0;
  color: var(--muted);
  font-weight: 780;
}

.owner-lot-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.owner-lot-card dl div {
  padding: 9px;
  background: rgba(255, 250, 240, 0.8);
  border: 1px solid rgba(221, 228, 215, 0.86);
  border-radius: 8px;
}

.owner-lot-card dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-lot-card dd {
  margin: 4px 0 0;
  color: var(--pine-deep);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.owner-lot-card small {
  display: block;
  margin-top: 12px;
  color: var(--clay);
  font-weight: 800;
}

.reservation-status.is-available {
  color: var(--white);
  background: var(--sage);
}

.reservation-status.is-maintenance {
  color: var(--white);
  background: #64716a;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    order: 3;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a,
  .nav-menu-button {
    justify-content: center;
    min-height: 48px;
  }

  .nav-toggle[aria-expanded="true"] .icon-menu {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .icon-close {
    display: block;
  }

  .availability-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-lead,
  .form-status {
    grid-column: 1 / -1;
  }

  .rate-grid,
  .split,
  .location-layout,
  .arrival-inner,
  .booking-layout,
  .manager-hero-inner,
  .manager-layout,
  .manager-toolbar,
  .manager-operations-grid,
  .manager-stay-row,
  .owner-hero-inner,
  .owner-toolbar,
  .owner-dashboard-grid,
  .owner-detail-grid,
  .owner-roster-heading,
  .manager-tools-grid,
  .faq-layout,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .manager-tools-copy {
    grid-row: auto;
  }

  .attraction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manager-view-heading,
  .manager-map-heading,
  .manager-review-reminder {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    transform: translateY(-38px);
    margin-bottom: -38px;
  }

  .booking-map-panel {
    position: static;
  }

  .manager-map-panel {
    position: static;
  }

  .manager-date-controls {
    justify-content: flex-start;
  }

  .manager-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .owner-date-range {
    justify-content: flex-start;
  }

  .owner-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .owner-lot-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-wide {
    grid-column: 1 / -1;
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .section-inner {
    width: min(100% - 28px, var(--max-width));
  }

  .nav-shell {
    width: min(100% - 24px, var(--max-width));
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta {
    width: 44px;
    padding: 0;
  }

  body {
    padding-bottom: 74px;
  }

  .portal-page {
    padding-bottom: 0;
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(13, 37, 31, 0.84), rgba(13, 37, 31, 0.34)),
      linear-gradient(90deg, rgba(18, 53, 44, 0.86), rgba(167, 82, 53, 0.34));
  }

  .hero-inner {
    padding: 46px 0 34px;
    align-content: end;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 13vw, 3.7rem);
    line-height: 1;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero-facts div {
    min-height: 104px;
    padding: 14px 10px;
  }

  .hero-facts dt {
    font-size: 1.1rem;
  }

  .hero-facts dd {
    margin-top: 4px;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .availability-panel {
    transform: translateY(-22px);
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .availability-panel .button {
    width: 100%;
  }

  .content-band,
  .quick-info-section,
  .gallery-section,
  .reviews-section,
  .faq-section,
  .location-section {
    padding: 68px 0;
  }

  .feature-list,
  .quick-info-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .quick-info-section {
    padding-top: 34px;
  }

  .gallery-item,
  .gallery-wide {
    min-height: 310px;
  }

  .section-heading-row {
    display: grid;
  }

  .text-link {
    min-width: 0;
  }

  .rate-section {
    padding: 64px 0;
  }

  .rate-card {
    min-height: 300px;
    padding: 24px;
  }

  .rate-logo {
    width: 58px;
    height: 58px;
    top: 20px;
    right: 20px;
  }

  .arrival-section {
    padding-bottom: 68px;
  }

  .arrival-inner {
    gap: 24px;
  }

  .logo-drive-scene {
    min-height: 280px;
  }

  .logo-rig {
    left: -104px;
    width: clamp(92px, 28vw, 118px);
  }

  .parking-sign {
    top: 24px;
    width: 60px;
    height: 60px;
    border-width: 4px;
  }

  .parking-sign img {
    width: 42px;
    height: 42px;
  }

  .parking-pad {
    right: 14px;
    bottom: 90px;
    width: 120px;
    height: 110px;
  }

  @keyframes logoDrivePark {
    0% {
      left: -104px;
      bottom: 70px;
      transform: rotate(0deg) scale(0.98);
    }
    38%,
    50% {
      left: calc(100% - 132px);
      bottom: 70px;
      transform: rotate(0deg) scale(1);
    }
    70%,
    82% {
      left: calc(100% - 126px);
      bottom: 122px;
      transform: rotate(-8deg) scale(0.96);
    }
    100% {
      left: -104px;
      bottom: 70px;
      transform: rotate(0deg) scale(0.98);
    }
  }

  .map-panel {
    min-height: 340px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-logo {
    right: 12px;
    bottom: -8px;
    width: 120px;
    height: 120px;
  }

  .faq-list summary {
    padding: 17px;
  }

  .faq-list p {
    padding: 0 17px 17px;
  }

  .contact-actions .button,
  .location-actions .button {
    width: 100%;
  }

  .footer-inner {
    display: grid;
  }

  .booking-hero,
  .booking-hero-inner {
    min-height: 620px;
  }

  .booking-hero-inner {
    padding: 54px 0;
    align-content: end;
  }

  .booking-hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.7rem);
  }

  .booking-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .booking-hero-actions .button,
  .booking-form-actions .button {
    width: 100%;
  }

  .booking-trust-strip {
    display: grid;
  }

  .booking-workspace {
    padding-bottom: 68px;
  }

  .booking-request-summary {
    grid-template-columns: 1fr;
  }

  .manager-hero {
    padding: 48px 0 34px;
  }

  .owner-hero {
    padding: 48px 0 34px;
  }

  .manager-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .things-preview-panel,
  .attraction-grid {
    grid-template-columns: 1fr;
  }

  .things-preview-panel .button {
    justify-self: start;
  }

  .manager-view-nav {
    grid-template-columns: 1fr;
    margin-top: -16px;
  }

  .manager-view-button {
    min-height: 74px;
  }

  .owner-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manager-form-grid,
  .manager-request-details {
    grid-template-columns: 1fr;
  }

  .manager-date-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .owner-date-range {
    display: grid;
    grid-template-columns: 1fr;
  }

  .owner-map-metrics,
  .owner-lot-detail-grid,
  .owner-lot-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .availability-board {
    padding: 16px;
  }

  .availability-board-header {
    grid-template-columns: 1fr;
  }

  .site-map-grid {
    width: 100%;
    min-height: 320px;
    aspect-ratio: auto;
  }

  .site-map-context {
    grid-template-columns: 1fr;
  }

  .site-map-context span {
    text-align: left;
  }

  .booking-field-grid {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manager-panel,
  .manager-map-panel .availability-board,
  .owner-panel {
    padding: 16px;
  }

  .manager-site-map,
  .owner-site-map {
    min-height: 320px;
  }

  .site-map-grid::after {
    min-width: 58px;
    padding: 8px 5px;
    border-width: 2px;
    font-size: 0.5rem;
  }

  .site-lot span {
    width: clamp(17px, 5.4vw, 24px);
    height: clamp(17px, 5.4vw, 24px);
    font-size: 0.7rem;
  }

  .site-lot::after {
    min-width: 4px;
  }

  .manager-card-top,
  .manager-panel-header {
    align-items: start;
  }

  .manager-row-actions,
  .manager-card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .owner-lot-roster {
    grid-template-columns: 1fr;
  }

  .owner-map-toolbar,
  .owner-lot-review-header,
  .owner-lot-card-top,
  .owner-demand-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-form,
  .booking-map-summary {
    padding: 20px;
  }

  .map-summary-logo {
    width: 50px;
    height: 50px;
    top: 18px;
    right: 18px;
  }

  .assurance-grid article {
    min-height: auto;
  }

  .booking-assurance {
    padding: 64px 0;
  }

  .mobile-book-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(13, 37, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(13, 37, 31, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-book-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    color: var(--pine-deep);
    background: var(--amber);
    border-radius: 8px;
    font-weight: 950;
    text-decoration: none;
  }

  .mobile-book-bar a:first-child {
    color: var(--white);
    background: var(--clay);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .logo-rig {
    animation: none !important;
    left: calc(100% - clamp(174px, 22vw, 240px));
    bottom: 132px;
    transform: rotate(-8deg) scale(0.96);
  }

}
