/* Crooked River Ranch RV Park — production V3 layer.
   The approved V3 prototype remains isolated and unchanged. This file adds
   the production navigation, footer, content utilities, and compatibility
   styling used by every live route. */

.crr-site {
  --crr-forest: #174f40;
  --crr-forest-deep: #0d241e;
  --crr-mint: #a8d9ca;
  --crr-mint-light: #dff1eb;
  --crr-ink: #10221e;
  --crr-muted: #687b76;
  --crr-line: rgba(29, 67, 58, 0.14);
  --crr-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(226, 238, 234, 0.58));
  --crr-shadow: 0 24px 62px rgba(17, 53, 44, 0.12);
  min-height: 100vh;
}

.crr-site main {
  min-height: 60vh;
}

.crr-site .v2-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.crr-site .v2-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.crr-site a:focus-visible,
.crr-site button:focus-visible,
.crr-site input:focus-visible,
.crr-site select:focus-visible {
  outline: 3px solid rgba(35, 107, 88, 0.3);
  outline-offset: 3px;
}

/* Utility + navigation */

.crr-utility {
  position: relative;
  z-index: 202;
  background: #0b211b;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.crr-utility .v2-shell {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
}

.crr-utility .v2-shell > div {
  display: flex;
  gap: 22px;
}

.crr-utility a:hover {
  color: #fff;
}

.crr-header {
  position: sticky;
  z-index: 200;
  top: 0;
  border-bottom: 1px solid rgba(29, 67, 58, 0.12);
  background: rgba(247, 251, 249, 0.9);
  box-shadow: 0 12px 36px rgba(17, 53, 44, 0.04);
  backdrop-filter: blur(24px) saturate(135%);
}

.crr-header-inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

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

.crr-brand-logo {
  display: block;
  width: 62px;
  height: auto;
  flex: 0 0 auto;
}

.crr-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 46%),
    linear-gradient(135deg, #2d7764, #143f35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 8px 22px rgba(20, 73, 59, 0.2);
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.crr-brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.crr-brand strong {
  color: var(--crr-ink);
  font-family: Manrope, sans-serif;
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.crr-brand small {
  color: var(--crr-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.crr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.crr-nav > a,
.crr-nav-group > button {
  position: relative;
  border: 0;
  background: transparent;
  color: #304842;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.crr-nav-group > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.crr-nav > a::after,
.crr-nav-group > button::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--crr-forest);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.crr-nav > a:hover::after,
.crr-nav > a[aria-current="page"]::after,
.crr-nav-group:hover > button::after,
.crr-nav-group.is-open > button::after {
  transform: scaleX(1);
}

.crr-nav-group {
  position: relative;
}

.crr-mega {
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  display: none;
  width: min(760px, calc(100vw - 48px));
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(247, 251, 249, 0.96);
  box-shadow: 0 28px 72px rgba(17, 53, 44, 0.18);
  padding: 28px;
  transform: translateX(-50%);
  backdrop-filter: blur(28px) saturate(130%);
}

.crr-nav-group.is-open .crr-mega {
  display: grid;
}

.crr-mega-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(168, 217, 202, 0.2), transparent 13rem),
    linear-gradient(135deg, #173d34, #0d241e);
  color: #fff;
  padding: 24px;
}

.crr-mega-heading small {
  color: #c8e9df;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.crr-mega-heading strong {
  font-family: Manrope, sans-serif;
  font-size: 21px;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.crr-mega-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.crr-mega-links a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-radius: 15px;
  padding: 12px 14px;
}

.crr-mega-links a:hover,
.crr-mega-links a[aria-current="page"] {
  background: rgba(168, 217, 202, 0.22);
}

.crr-mega-links span {
  color: var(--crr-ink);
  font-size: 12px;
  font-weight: 800;
}

.crr-mega-links small {
  color: var(--crr-muted);
  font-size: 10px;
  line-height: 1.4;
}

.crr-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.crr-book-short {
  display: none;
}

.crr-header-map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(35, 107, 88, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #245e50;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.crr-header-map-link:hover,
.crr-header-map-link[aria-current="page"] {
  border-color: rgba(35, 107, 88, 0.38);
  background: rgba(214, 235, 228, 0.76);
  transform: translateY(-1px);
}

.crr-header-map-link svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.crr-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border: 1px solid rgba(35, 107, 88, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.crr-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--crr-ink);
  transition: transform 160ms ease;
}

.crr-header.is-open .crr-menu-button span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.crr-header.is-open .crr-menu-button span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Shared page utilities */

.crr-page-hero {
  padding-bottom: 52px;
}

.crr-page-hero .v2-inner-copy h1 {
  max-width: 720px;
}

.crr-hero-actions,
.crr-final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.crr-section {
  padding: 112px 0;
}

.crr-section-soft {
  background:
    radial-gradient(circle at 100% 0, rgba(156, 210, 194, 0.25), transparent 28rem),
    linear-gradient(180deg, #f5f9f8, #eaf2ef);
}

.crr-section-dark {
  background:
    radial-gradient(circle at 78% 20%, rgba(121, 177, 160, 0.2), transparent 30rem),
    linear-gradient(135deg, #173d34, #0d241e 74%);
  color: #fff;
}

.crr-section-dark .v2-eyebrow {
  color: #c8e9df;
}

.crr-section-dark h2,
.crr-section-dark h3 {
  color: #fff;
}

.crr-section-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.crr-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.crr-two-column.is-reversed > :first-child {
  order: 2;
}

.crr-two-column.is-reversed > :last-child {
  order: 1;
}

.crr-copy h2 {
  margin-bottom: 24px;
}

.crr-copy > p:not(.v2-eyebrow) {
  max-width: 620px;
  color: var(--crr-muted);
  font-size: 17px;
  line-height: 1.72;
}

.crr-copy > p + p {
  margin-top: 16px;
}

.crr-copy ul,
.crr-copy ol {
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.crr-copy li {
  border-top: 1px solid var(--crr-line);
  padding-top: 10px;
  color: #304842;
  font-size: 14px;
}

.crr-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 32px;
  box-shadow: 0 30px 74px rgba(17, 53, 44, 0.16);
}

.crr-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.crr-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 16px;
  background: rgba(13, 36, 30, 0.52);
  color: #fff;
  padding: 13px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.crr-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.crr-glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  background: var(--crr-glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 20px 48px rgba(17, 53, 44, 0.08);
  padding: 28px;
  backdrop-filter: blur(20px) saturate(120%);
}

.crr-glass-card > span:first-child {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(178, 223, 210, 0.92), rgba(92, 153, 134, 0.46));
  color: #174f40;
  font-size: 20px;
}

.crr-glass-card h3 {
  margin-bottom: 12px;
}

.crr-glass-card p {
  color: var(--crr-muted);
  font-size: 13px;
  line-height: 1.62;
}

.crr-glass-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--crr-forest);
  font-size: 12px;
  font-weight: 800;
}

.crr-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.crr-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: var(--crr-glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 20px 48px rgba(17, 53, 44, 0.08);
  padding: clamp(26px, 4vw, 42px);
  backdrop-filter: blur(20px) saturate(120%);
}

.crr-detail-card > small {
  display: block;
  margin-bottom: 24px;
  color: var(--crr-forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.crr-detail-card h3 {
  margin-bottom: 14px;
}

.crr-detail-card p {
  color: var(--crr-muted);
  line-height: 1.7;
}

.crr-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.crr-detail-card li {
  border-top: 1px solid var(--crr-line);
  padding-top: 10px;
  color: #304842;
  font-size: 13px;
}

.crr-management-note {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-top: -24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(240, 248, 245, 0.88);
  box-shadow: 0 18px 44px rgba(17, 53, 44, 0.09);
  padding: 24px 28px;
  backdrop-filter: blur(20px);
}

.crr-management-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--crr-ink);
  font-size: 14px;
}

.crr-management-note p {
  color: var(--crr-muted);
  font-size: 12px;
  line-height: 1.55;
}

.crr-management-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  white-space: nowrap;
}

.crr-management-actions a {
  color: var(--crr-forest);
  font-size: 12px;
  font-weight: 800;
}

.crr-steps {
  display: grid;
  counter-reset: crr-step;
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.crr-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  border-top: 1px solid var(--crr-line);
  padding-top: 18px;
}

.crr-steps li::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(178, 223, 210, 0.92), rgba(92, 153, 134, 0.46));
  color: var(--crr-forest);
  content: counter(crr-step, decimal-leading-zero);
  counter-increment: crr-step;
  font-size: 10px;
  font-weight: 800;
}

.crr-steps strong {
  display: block;
  margin-bottom: 5px;
  color: var(--crr-ink);
}

.crr-steps p {
  color: var(--crr-muted);
  font-size: 13px;
  line-height: 1.6;
}

.crr-form-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background: rgba(247, 251, 249, 0.9);
  box-shadow: var(--crr-shadow);
  backdrop-filter: blur(24px);
}

.crr-form-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(168, 217, 202, 0.24), transparent 18rem),
    linear-gradient(135deg, #173d34, #0d241e);
  color: #fff;
  padding: clamp(30px, 5vw, 56px);
}

.crr-form-heading h2 {
  color: #fff;
}

.crr-form-heading p {
  align-self: end;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.crr-form {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 5vw, 56px);
}

.crr-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--crr-line);
  padding: 28px 0 0;
}

.crr-form legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--crr-forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.crr-form label {
  display: grid;
  gap: 8px;
  color: var(--crr-ink);
  font-size: 12px;
  font-weight: 700;
}

.crr-form label.is-wide,
.crr-form .crr-form-check,
.crr-form button {
  grid-column: 1 / -1;
}

.crr-form input,
.crr-form select,
.crr-form textarea {
  width: 100%;
  border: 1px solid rgba(29, 67, 58, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--crr-ink);
  padding: 13px 14px;
  font: inherit;
  font-weight: 500;
}

.crr-form textarea {
  min-height: 120px;
  resize: vertical;
}

.crr-form .crr-form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  border-radius: 18px;
  background: rgba(168, 217, 202, 0.16);
  padding: 18px;
  line-height: 1.55;
}

.crr-form .crr-form-check input {
  width: auto;
  margin-top: 3px;
}

.crr-form button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--crr-forest);
  color: #fff;
  cursor: pointer;
  padding: 15px 24px;
  font-size: 12px;
  font-weight: 800;
}

.crr-live-panel,
.crr-map-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  background: rgba(247, 251, 249, 0.88);
  box-shadow: var(--crr-shadow);
  padding: clamp(18px, 3vw, 34px);
  backdrop-filter: blur(22px);
}

.crr-empty-state {
  border: 1px dashed rgba(35, 107, 88, 0.34);
  border-radius: 22px;
  background: rgba(223, 241, 235, 0.5);
  color: var(--crr-muted);
  padding: 42px;
  text-align: center;
}

.crr-empty-state h3 {
  margin-bottom: 10px;
}

.crr-empty-state a {
  color: var(--crr-forest);
  font-weight: 800;
}

.crr-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.crr-list-section + .crr-list-section {
  margin-top: 96px;
}

.crr-data-note {
  margin-top: 42px;
  color: var(--crr-muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.crr-map-panel .map-shell,
.crr-map-panel [data-google-map] {
  overflow: hidden;
  border-radius: 22px;
}

.crr-alert {
  border: 1px solid rgba(119, 95, 32, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 250, 227, 0.9), rgba(231, 242, 236, 0.78));
  color: #51482e;
  padding: 22px 24px;
}

.crr-alert strong {
  display: block;
  margin-bottom: 10px;
  color: var(--crr-ink);
}

.crr-alert div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.crr-alert span {
  border: 1px solid rgba(119, 95, 32, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 10px;
  font-size: 11px;
}

.crr-event-filter {
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: var(--crr-glass);
  box-shadow: 0 18px 42px rgba(17, 53, 44, 0.07);
  padding: 10px 20px 20px;
  backdrop-filter: blur(18px);
}

.crr-event-filter .crr-filter-row {
  padding-inline: 0;
}

.crr-event-dates {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
}

.crr-event-dates label {
  display: grid;
  gap: 7px;
  color: var(--crr-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crr-event-dates input,
.crr-event-dates button {
  border: 1px solid rgba(35, 107, 88, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--crr-ink);
  padding: 10px 12px;
  font: inherit;
  font-size: 12px;
}

.crr-event-dates button {
  cursor: pointer;
  font-weight: 800;
}

.crr-event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.crr-event-recurring {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(168, 217, 202, 0.2);
  color: var(--crr-forest);
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 800;
}

.crr-site-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: clamp(38px, 7vw, 96px);
  margin-top: 32px;
}

.crr-site-sidebar {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 25px;
  background: var(--crr-glass);
  box-shadow: 0 18px 46px rgba(17, 53, 44, 0.08);
  padding: 28px;
  backdrop-filter: blur(18px);
}

.crr-site-sidebar dl {
  margin: 20px 0 26px;
}

.crr-site-sidebar dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--crr-line);
  padding: 10px 0;
}

.crr-site-sidebar dt {
  color: var(--crr-muted);
}

.crr-site-sidebar dd {
  margin: 0;
  color: var(--crr-ink);
  font-weight: 800;
  text-align: right;
}

.crr-site-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.crr-site-photo-grid a {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(17, 53, 44, 0.08);
}

.crr-site-photo-grid a:first-child:nth-last-child(odd) {
  grid-column: 1 / -1;
}

.crr-site-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.crr-policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.crr-policy-nav a {
  border: 1px solid rgba(35, 107, 88, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--crr-forest);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
}

.crr-policy-list {
  display: grid;
  gap: 12px;
}

.crr-policy-list details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: var(--crr-glass);
  box-shadow: 0 14px 38px rgba(17, 53, 44, 0.06);
  backdrop-filter: blur(18px);
}

.crr-policy-list summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--crr-ink);
  padding: 22px 24px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.crr-policy-list summary::-webkit-details-marker {
  display: none;
}

.crr-policy-list summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(168, 217, 202, 0.24);
  color: var(--crr-forest);
  content: "+";
}

.crr-policy-list details[open] summary::after {
  content: "–";
}

.crr-policy-body {
  border-top: 1px solid var(--crr-line);
  color: var(--crr-muted);
  padding: 22px 24px 26px;
  line-height: 1.75;
}

.crr-policy-body p + p,
.crr-policy-body ul + p,
.crr-policy-body p + ul {
  margin-top: 14px;
}

.crr-policy-body ul {
  padding-left: 20px;
}

.crr-legal-shell {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
}

.crr-legal-aside {
  align-self: start;
  position: sticky;
  min-width: 0;
  top: 130px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: var(--crr-glass);
  padding: 22px;
  backdrop-filter: blur(18px);
}

.crr-legal-aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--crr-ink);
}

.crr-legal-aside p,
.crr-legal-aside a {
  color: var(--crr-muted);
  font-size: 12px;
  line-height: 1.6;
}

.crr-legal-aside a {
  display: inline-block;
  margin-top: 14px;
  color: var(--crr-forest);
  font-weight: 800;
}

.crr-list-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 25px;
  background: var(--crr-glass);
  box-shadow: 0 18px 46px rgba(17, 53, 44, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(18px);
}

.crr-list-card:hover,
.crr-list-card:focus-visible {
  box-shadow: 0 24px 58px rgba(17, 53, 44, 0.14);
  transform: translateY(-4px);
}

.crr-list-card-visual {
  position: relative;
  height: 230px;
  min-height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, #cfe5de, #7eaa9b);
}

.crr-list-card-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.crr-list-card-visual.is-photo-loaded img {
  opacity: 1;
}

.crr-photo-placeholder {
  position: absolute;
  z-index: 0;
  inset: 50% auto auto 50%;
  color: rgba(13, 55, 44, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.crr-google-place-photo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.54), transparent 11rem),
    linear-gradient(135deg, #cfe5de, #7eaa9b);
}

.crr-google-place-photo-hero {
  width: 100%;
  height: 100%;
}

.crr-google-place-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.crr-google-place-photo.is-photo-loaded img {
  opacity: 1;
}

.crr-google-photo-attribution {
  position: absolute;
  z-index: 4;
  right: 10px;
  bottom: 10px;
  left: 10px;
  width: fit-content;
  max-width: calc(100% - 20px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(9, 35, 28, 0.76);
  box-shadow: 0 10px 24px rgba(7, 27, 22, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 9px;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.25;
  backdrop-filter: blur(14px);
}

.crr-google-photo-attribution a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 2px;
}

.v2-inner-image .crr-google-photo-attribution {
  top: 16px;
  right: auto;
  bottom: auto;
  left: 16px;
  max-width: calc(100% - 32px);
}

.crr-list-card-badge {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(13, 36, 30, 0.58);
  color: #fff;
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.crr-list-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.crr-list-card-body > small {
  margin-bottom: 12px;
  color: var(--crr-forest);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crr-list-card-body h3 {
  margin-bottom: 11px;
}

.crr-list-card-body p {
  color: var(--crr-muted);
  font-size: 13px;
  line-height: 1.6;
}

.crr-list-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.crr-list-card-meta span {
  border-radius: 999px;
  background: rgba(168, 217, 202, 0.22);
  color: #31584d;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 700;
}

.crr-filter-bar {
  position: sticky;
  z-index: 40;
  top: 78px;
  border-block: 1px solid var(--crr-line);
  background: rgba(247, 251, 249, 0.9);
  backdrop-filter: blur(22px);
}

.crr-filter-row {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 16px 0;
  scrollbar-width: thin;
}

.crr-filter-row button {
  flex: none;
  cursor: pointer;
  border: 1px solid rgba(35, 107, 88, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #31584d;
  padding: 9px 14px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}

.crr-filter-row button[aria-pressed="true"] {
  border-color: var(--crr-forest);
  background: var(--crr-forest);
  color: #fff;
}

.crr-prose {
  max-width: 800px;
  color: var(--crr-muted);
  font-size: 16px;
  line-height: 1.8;
}

.crr-prose h2,
.crr-prose h3,
.crr-prose strong {
  color: var(--crr-ink);
}

.crr-prose h2,
.crr-prose h3 {
  margin: 1.7em 0 0.55em;
}

.crr-prose p + p,
.crr-prose ul + p,
.crr-prose p + ul {
  margin-top: 1em;
}

.crr-prose ul,
.crr-prose ol {
  padding-left: 1.25em;
}

.crr-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.crr-stat {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  background: var(--crr-glass);
  box-shadow: 0 14px 38px rgba(17, 53, 44, 0.07);
  padding: 20px;
  backdrop-filter: blur(18px);
}

.crr-stat small {
  display: block;
  margin-bottom: 7px;
  color: var(--crr-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crr-stat strong {
  color: var(--crr-ink);
  font-family: Manrope, sans-serif;
  font-size: 18px;
}

.crr-confidence-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.crr-confidence-card {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  background: var(--crr-glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 20px 48px rgba(17, 53, 44, 0.08);
  padding: 30px;
  backdrop-filter: blur(20px);
}

.crr-confidence-card > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 64px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(178, 223, 210, 0.92), rgba(92, 153, 134, 0.46));
  color: var(--crr-forest);
  font-size: 20px;
  font-weight: 800;
}

.crr-confidence-card h3 {
  margin-bottom: 14px;
}

.crr-confidence-card p {
  color: var(--crr-muted);
  font-size: 13px;
  line-height: 1.6;
}

.crr-confidence-card strong {
  margin-top: auto;
  color: var(--crr-forest);
  font-size: 12px;
}

.crr-confidence-card-photo {
  min-height: 520px;
  padding: 0;
  color: #fff;
}

.crr-confidence-card-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crr-confidence-card-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 25, 20, 0.08), rgba(7, 25, 20, 0.86));
  content: "";
}

.crr-confidence-card-photo > div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  align-items: flex-start;
  flex-direction: column;
  padding: 30px;
}

.crr-confidence-card-photo span {
  color: #c8e9df;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crr-confidence-card-photo h3 {
  margin-top: auto;
  color: #fff;
}

.crr-confidence-card-photo p {
  color: rgba(255, 255, 255, 0.72);
}

.crr-confidence-card-photo strong {
  margin-top: 18px;
  color: #c8e9df;
}

.crr-site-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.crr-site-gallery figure {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(17, 53, 44, 0.08);
}

.crr-site-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.crr-site-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  background: rgba(12, 39, 32, 0.52);
  color: #fff;
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.crr-fact-strip {
  border-block: 1px solid rgba(29, 67, 58, 0.12);
  background: rgba(238, 246, 243, 0.76);
  backdrop-filter: blur(18px);
}

.crr-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
}

.crr-fact-grid > div {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(29, 67, 58, 0.12);
  padding: 0 24px;
}

.crr-fact-grid > div:first-child {
  padding-left: 0;
}

.crr-fact-grid strong {
  font-size: 13px;
}

.crr-fact-grid span {
  color: var(--crr-muted);
  font-size: 10px;
}

.crr-fact-grid > a {
  margin-left: 26px;
  color: var(--crr-forest);
  font-size: 12px;
  font-weight: 800;
}

/* Image stack retained from V1 */

.crr-photo-story {
  position: relative;
  min-height: 690px;
}

.crr-photo-story figure {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--crr-shadow);
}

.crr-photo-story figure:first-child {
  inset: 0 22% 7% 0;
}

.crr-photo-story figure:nth-child(2) {
  top: 5%;
  right: 0;
  width: 36%;
  height: 38%;
  transform: rotate(2deg);
}

.crr-photo-story figure:nth-child(3) {
  right: 3%;
  bottom: 0;
  width: 40%;
  height: 42%;
  transform: rotate(-2deg);
}

.crr-photo-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crr-photo-story figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 13px;
  background: rgba(12, 39, 32, 0.52);
  color: #fff;
  padding: 10px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.crr-photo-story figure:first-child figcaption {
  right: 32%;
}

/* Search-friendly breadcrumbs */

.crr-breadcrumbs {
  position: relative;
  z-index: 8;
  border-top: 1px solid rgba(23, 79, 66, 0.06);
  border-bottom: 1px solid rgba(23, 79, 66, 0.09);
  background: rgba(244, 248, 246, 0.94);
}

.crr-breadcrumbs ol {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  color: var(--crr-muted);
  font-size: 11px;
  font-weight: 700;
  list-style: none;
  scrollbar-width: none;
  white-space: nowrap;
}

.crr-breadcrumbs ol::-webkit-scrollbar {
  display: none;
}

.crr-breadcrumbs li {
  display: flex;
  align-items: center;
}

.crr-breadcrumbs li + li::before {
  margin: 0 9px;
  color: rgba(23, 79, 66, 0.36);
  content: "/";
}

.crr-breadcrumbs a {
  color: #2f6f60;
  text-decoration: none;
}

.crr-breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.crr-breadcrumbs [aria-current="page"] {
  color: var(--crr-ink);
}

.crr-google-maps-label {
  color: #5e5e5e;
  font-family: Roboto, Arial, sans-serif;
  font-size: max(12px, 1em);
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  white-space: nowrap;
}

/* Reviews */

.crr-reviews {
  padding: 112px 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(168, 217, 202, 0.28), transparent 24rem),
    linear-gradient(180deg, #eef5f2, #f7faf9);
}

.crr-review-intro > p {
  margin-bottom: 22px;
  color: var(--crr-muted);
}

.crr-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.crr-review-grid-fallback {
  display: block;
}

.crr-review-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 27px;
  background: var(--crr-glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 22px 54px rgba(17, 53, 44, 0.08);
  padding: 30px;
  backdrop-filter: blur(20px);
}

.crr-review-stars {
  margin-bottom: 38px;
  color: #2f7563;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.crr-review-card blockquote {
  margin: 0 0 30px;
  color: var(--crr-ink);
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.48;
}

.crr-review-card blockquote p {
  margin: 0;
}

.crr-review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
}

.crr-review-author img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(47, 117, 99, 0.14);
  border-radius: 50%;
  object-fit: cover;
}

.crr-review-author a {
  display: block;
  color: var(--crr-ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.crr-review-author a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.crr-review-author small {
  display: block;
  margin-top: 4px;
  color: var(--crr-muted);
  font-size: 10px;
}

.crr-review-actions {
  margin-top: 18px;
  color: var(--crr-muted);
  font-size: 10px;
}

.crr-review-actions a {
  color: inherit;
  text-underline-offset: 3px;
}

.crr-review-status,
.crr-review-fallback {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 27px;
  background: var(--crr-glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 22px 54px rgba(17, 53, 44, 0.08);
  padding: 34px;
  backdrop-filter: blur(20px);
}

.crr-review-status {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--crr-muted);
}

.crr-review-status p,
.crr-review-fallback p {
  margin: 0;
}

.crr-review-loader {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(47, 117, 99, 0.2);
  border-top-color: #2f7563;
  border-radius: 50%;
  animation: crr-review-spin 0.8s linear infinite;
}

.crr-review-fallback {
  max-width: 720px;
}

.crr-review-fallback strong {
  display: block;
  margin-bottom: 8px;
  font-family: Manrope, sans-serif;
  font-size: 20px;
}

.crr-review-fallback p {
  margin-bottom: 22px;
  color: var(--crr-muted);
}

.crr-review-attribution,
.crr-review-noscript {
  margin: 18px 0 0;
  color: #5e5e5e;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.crr-review-noscript a {
  color: inherit;
}

@keyframes crr-review-spin {
  to { transform: rotate(360deg); }
}

/* Tables and practical content */

.crr-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  background: rgba(239, 247, 244, 0.1);
  box-shadow: 0 28px 68px rgba(4, 20, 16, 0.26);
  backdrop-filter: blur(18px);
}

.crr-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.crr-table th,
.crr-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
  text-align: left;
}

.crr-table th {
  color: #c8e9df;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crr-table td {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.crr-table tbody th {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.crr-table a {
  color: #bfe7da;
  font-weight: 800;
}

.crr-rate-note {
  max-width: 920px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.crr-prose {
  min-width: 0;
  max-width: 820px;
  margin-inline: auto;
  color: #304842;
  font-size: 16px;
  line-height: 1.78;
}

.crr-prose h2 {
  margin: 54px 0 18px;
  color: var(--crr-ink);
  font-size: clamp(30px, 4vw, 52px);
}

.crr-prose h3 {
  margin: 34px 0 12px;
  color: var(--crr-ink);
  font-size: 22px;
}

.crr-prose p,
.crr-prose ul {
  margin-bottom: 18px;
}

.crr-prose ul {
  padding-left: 24px;
}

.crr-prose a {
  color: var(--crr-forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.crr-prose code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.crr-note {
  border: 1px solid rgba(35, 107, 88, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  padding: 24px;
  color: #304842;
  backdrop-filter: blur(16px);
}

/* Dynamic map/list compatibility */

.crr-site .av-tool {
  --av-green: #2f7563;
  --rust: #2f7563;
  --rust-dark: #174f40;
  --cream: #eef5f2;
  --sand: #e1ece8;
  --muted: #687b76;
  --dark: #10221e;
  --sans: Inter, sans-serif;
  --serif: Manrope, sans-serif;
}

.crr-site .av-wrap,
.crr-site .park-map-wrap,
.crr-site .map-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 26px 64px rgba(17, 53, 44, 0.12);
}

.crr-region-map-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 26px 64px rgba(17, 53, 44, 0.12);
  padding: 14px;
  backdrop-filter: blur(20px);
}

.crr-region-map-shell .crr-region-map-wrap {
  border-radius: 20px !important;
}

.crr-region-map-shell .crr-region-filter {
  border-color: rgba(35, 107, 88, 0.22) !important;
  color: var(--crr-forest) !important;
}

.crr-region-map-shell .crr-region-filter[aria-pressed="true"] {
  background: var(--crr-forest) !important;
  color: #fff !important;
}

.crr-site .ex-grid,
.crr-site .things-grid {
  gap: 18px !important;
}

.crr-site .ex-card,
.crr-site .thing-card,
.crr-site .events-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
  border-radius: 24px !important;
  background: var(--crr-glass) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 44px rgba(17, 53, 44, 0.07);
}

/* Final conversion section */

.crr-final-cta .v2-ready-inner > p:not(.v2-eyebrow) {
  max-width: 620px;
  margin: -12px 0 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.crr-light-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
}

/* Flexible Area Guide choices */

.crr-itinerary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 14px;
}

.v2-itinerary-list .crr-itinerary-links a {
  border-bottom: 1px solid rgba(199, 236, 224, 0.42);
  color: #c7ece0;
  padding-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
}

.v2-itinerary-list .crr-itinerary-links a:hover {
  border-color: #fff;
  color: #fff;
}

/* Footer */

.crr-footer {
  background:
    radial-gradient(circle at 10% 10%, rgba(108, 163, 146, 0.16), transparent 26rem),
    #0a1d18;
  color: #fff;
  padding: 88px 0 26px;
}

.crr-footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 8vw;
}

.crr-brand-footer .crr-brand-mark {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, #a8d9ca, #6ead99);
  color: #0d241e;
}

.crr-brand-footer strong {
  color: #fff;
}

.crr-brand-footer small {
  color: rgba(255, 255, 255, 0.62);
}

.crr-footer-lead h2 {
  margin: 42px 0 34px;
  font-size: clamp(38px, 4vw, 64px);
}

.crr-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.crr-footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.crr-footer-links small {
  margin-bottom: 14px;
  color: #bde4d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.crr-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.crr-footer-links a:hover {
  color: #fff;
}

.crr-footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.crr-footer-bottom a:hover {
  color: #fff;
}

.crr-mobile-book {
  position: fixed;
  z-index: 220;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, #276f5d, #164d3f);
  box-shadow: 0 20px 48px rgba(17, 53, 44, 0.3);
  color: #fff;
  opacity: 0;
  padding: 0 20px;
  pointer-events: none;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(76px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease;
}

.crr-mobile-book.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

@media (max-width: 1120px) {
  .crr-header-inner {
    gap: 24px;
  }

  .crr-nav {
    gap: 20px;
  }

  .crr-header-actions .v2-book-button {
    padding-inline: 16px;
  }

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

  .crr-confidence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .crr-confidence-card-photo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .crr-detail-grid,
  .crr-event-grid,
  .crr-form-heading,
  .crr-form fieldset,
  .crr-legal-shell,
  .crr-site-detail-grid {
    grid-template-columns: 1fr;
  }

  .crr-management-note {
    grid-template-columns: 1fr;
  }

  .crr-management-actions {
    white-space: normal;
  }

  .crr-site-photo-grid {
    grid-template-columns: 1fr;
  }

  .crr-site-photo-grid a:first-child:nth-last-child(odd) {
    grid-column: auto;
  }

  .crr-legal-aside {
    position: static;
  }

  .crr-utility {
    display: none;
  }

  .crr-header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .crr-menu-button {
    display: block;
  }

  .crr-header-actions .v2-book-button {
    display: inline-flex;
    min-height: 44px;
    padding-inline: 15px;
  }

  .crr-book-wide {
    display: none;
  }

  .crr-book-short {
    display: inline;
  }

  .crr-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    max-height: calc(100vh - 100px);
    align-items: stretch;
    flex-direction: column;
    overflow-y: auto;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 25px;
    background: rgba(247, 251, 249, 0.97);
    box-shadow: 0 26px 66px rgba(17, 53, 44, 0.18);
    padding: 14px;
    backdrop-filter: blur(26px);
  }

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

  .crr-nav > a,
  .crr-nav-group > button {
    width: 100%;
    justify-content: space-between;
    border-radius: 14px;
    padding: 13px 14px;
    text-align: left;
  }

  .crr-nav > a:hover,
  .crr-nav > a[aria-current="page"],
  .crr-nav-group > button:hover {
    background: rgba(168, 217, 202, 0.2);
  }

  .crr-nav > a::after,
  .crr-nav-group > button::after {
    display: none;
  }

  .crr-mega {
    position: static;
    width: auto;
    grid-template-columns: 1fr;
    margin: 2px 6px 10px;
    border: 0;
    border-radius: 18px;
    box-shadow: none;
    padding: 8px;
    transform: none;
  }

  .crr-mega-heading {
    display: none;
  }

  .crr-mega-links {
    grid-template-columns: 1fr 1fr;
  }

  .crr-two-column,
  .crr-two-column.is-reversed {
    grid-template-columns: 1fr;
  }

  .crr-two-column.is-reversed > :first-child,
  .crr-two-column.is-reversed > :last-child {
    order: initial;
  }

  .crr-photo-story {
    min-height: 610px;
  }

  .crr-review-grid {
    grid-template-columns: 1fr;
  }

  .crr-site-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .crr-review-card {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .crr-brand strong {
    font-size: 13px;
  }

  .v3-page .v2-experience,
  .v3-page .v2-experience-wide {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    background: #eef6f2;
  }

  .v3-page .v2-experience img,
  .v3-page .v2-experience-wide img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: clamp(240px, 68vw, 330px);
    min-height: 0;
    border-radius: 27px 27px 0 0;
    grid-column: 1;
    grid-row: 1;
    object-fit: cover;
  }

  .v3-page .v2-experience::after {
    z-index: 1;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), transparent 34%);
  }

  .v3-page .v2-experience > div {
    position: relative;
    z-index: 2;
    min-height: 238px;
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 45%),
      linear-gradient(145deg, rgba(244, 250, 247, 0.98), rgba(220, 237, 230, 0.98));
    padding: 24px;
    grid-column: 1;
    grid-row: 2;
    backdrop-filter: blur(22px) saturate(120%);
  }

  .v3-page .v2-experience span {
    margin-bottom: 16px;
    color: #246c59;
    font-size: 10px;
  }

  .v3-page .v2-experience h3 {
    margin-bottom: 12px;
    color: #0b2b22;
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.04;
  }

  .v3-page .v2-experience p {
    color: #405b52;
    font-size: 15px;
    line-height: 1.55;
  }

  .v3-page .v2-experience a {
    margin-top: 22px;
    color: #155b49;
    font-size: 13px;
  }

  .crr-list-card-visual {
    height: clamp(240px, 68vw, 300px);
    min-height: clamp(240px, 68vw, 300px);
  }

  .crr-list-card-visual img {
    min-height: 0;
  }

  .crr-brand-logo {
    width: 54px;
  }

  .crr-brand-mark {
    width: 38px;
    height: 38px;
  }

  .crr-header-actions {
    gap: 8px;
  }

  .crr-header-map-link {
    min-height: 40px;
    padding-inline: 11px;
  }

  .crr-nav {
    right: 10px;
    left: 10px;
  }

  .crr-mega-links {
    grid-template-columns: 1fr;
  }

  .crr-section,
  .crr-reviews {
    padding: 78px 0;
  }

  .crr-glass-grid {
    grid-template-columns: 1fr;
  }

  .crr-confidence-grid {
    grid-template-columns: 1fr;
  }

  .crr-confidence-card-photo {
    grid-column: auto;
  }

  .crr-site-gallery {
    grid-template-columns: 1fr;
  }

  .crr-media,
  .crr-media img {
    min-height: 410px;
  }

  .crr-fact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .crr-fact-grid > div {
    min-height: 76px;
    border-bottom: 1px solid var(--crr-line);
    padding: 0 12px;
  }

  .crr-fact-grid > a {
    grid-column: 1 / -1;
    margin: 0;
    padding: 18px 12px;
  }

  .crr-photo-story {
    min-height: 520px;
  }

  .crr-photo-story figure:first-child {
    inset: 0 12% 14% 0;
  }

  .crr-photo-story figure:nth-child(2) {
    width: 38%;
    height: 34%;
  }

  .crr-photo-story figure:nth-child(3) {
    width: 44%;
    height: 38%;
  }

  .crr-photo-story figure:first-child figcaption {
    right: 42%;
  }

  .crr-footer-grid {
    grid-template-columns: 1fr;
  }

  .crr-footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
  }

  .crr-footer-bottom {
    flex-direction: column;
  }

  .crr-mobile-book {
    display: flex;
  }
}

@media (max-width: 520px) {
  .crr-brand > span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .crr-site .v2-reveal,
  .crr-mobile-book {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
