:root {
  --bg: #efe8d8;
  --paper: #f7f1e7;
  --paper-strong: #fffaf2;
  --ink: #18251f;
  --muted: #667166;
  --forest: #244635;
  --forest-deep: #13261d;
  --sage: #9fb29c;
  --sand: #d8bc88;
  --sun: #efb357;
  --line: rgba(24, 37, 31, 0.1);
  --shadow: 0 28px 70px rgba(21, 31, 27, 0.12);
  --shadow-soft: 0 18px 44px rgba(21, 31, 27, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(239, 179, 87, 0.18), transparent 24%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 86px
    ),
    radial-gradient(circle at top right, rgba(36, 70, 53, 0.1), transparent 26%),
    linear-gradient(180deg, #efe8d8 0%, #f6f0e4 100%);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

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

.page-shell {
  padding: 0 24px 32px;
}

.has-footer-at-bottom {
  padding-bottom: 0;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto 26px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: rgba(247, 241, 231, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}

.section > * {
  position: relative;
  z-index: 1;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .reveal[data-reveal="card"] {
  transform: translateY(18px) scale(0.985);
}

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

@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .review-track {
    animation: none;
  }
}

.hero {
  width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  padding: 28px 24px 52px;
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 20, 16, 0.2), rgba(9, 20, 16, 0.58)),
    radial-gradient(circle at top right, rgba(239, 179, 87, 0.18), transparent 24%),
    url("assets/images/river-dock.jpg") center/cover;
  border-radius: 0 0 42px 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 22, 17, 0.58) 0%, rgba(11, 22, 17, 0.26) 48%, rgba(11, 22, 17, 0.08) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(9, 20, 16, 0.28), transparent);
  pointer-events: none;
}

.hero > * {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 88px;
  padding: 16px 18px;
  border-radius: 22px 22px 28px 22px;
  background: rgba(14, 28, 22, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.32rem;
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.brand-mark {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.brand-label {
  display: inline-block;
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.topbar-links a[aria-current="page"] {
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(239, 179, 87, 0.92);
}

.hero-content {
  max-width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.subhero {
  min-height: 56vh;
  padding-bottom: 42px;
  background:
    linear-gradient(180deg, rgba(9, 20, 16, 0.18), rgba(9, 20, 16, 0.62)),
    radial-gradient(circle at top right, rgba(239, 179, 87, 0.18), transparent 24%),
    var(--subhero-image, url("assets/images/facade.jpg")) center/cover;
}

.subhero::before {
  background:
    linear-gradient(90deg, rgba(11, 22, 17, 0.66) 0%, rgba(11, 22, 17, 0.34) 52%, rgba(11, 22, 17, 0.12) 100%);
}

.subhero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

h1,
h2,
h3,
.brand {
  line-height: 1.02;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 4.55vw, 5.1rem);
  max-width: 24ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.7rem);
  max-width: 18ch;
}

h3 {
  font-size: 1.45rem;
}

.hero-copy,
.intro-text p,
.rules-card p,
.price-card-alt,
.experience-copy p,
.contact-note,
.highlight-list p,
.placeholder-note,
.plan-grid p {
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-copy {
  max-width: 72ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 100%;
}

.hero-meta-card {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.16), rgba(255, 250, 242, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

a.hero-meta-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 179, 87, 0.44);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.24), rgba(255, 250, 242, 0.12));
}

.hero-meta-card p:last-child {
  margin: 0;
  line-height: 1.6;
  font-weight: 600;
}

.hero-meta-label {
  color: rgba(255, 255, 255, 0.82);
}

.reviews-strip {
  width: 100vw;
  margin: 0 0 26px;
  margin-left: calc(50% - 50vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(247, 241, 231, 0.94), rgba(247, 241, 231, 0.78)),
    var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.review-summary {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 6px 8px 16px;
}

.review-summary .eyebrow,
.review-summary p {
  margin: 0;
}

.review-summary p:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.review-score {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  box-shadow: 0 14px 28px rgba(19, 38, 29, 0.16);
  font-weight: 900;
}

.review-score span:first-child {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.score-star {
  color: var(--sun);
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.review-marquee {
  margin-inline: -18px;
  padding: 4px 0 2px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.review-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviewMarquee 92s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-pill {
  display: grid;
  align-content: space-between;
  gap: 14px;
  width: clamp(360px, 42vw, 560px);
  min-height: 238px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(36, 70, 53, 0.1);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  line-height: 1.56;
  font-weight: 800;
  white-space: normal;
}

.review-pill p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.review-stars {
  color: var(--sun);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(33, 24, 14, 0.12);
}

.review-pill span {
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 900;
}

.review-pill span::before {
  content: "— ";
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  background: var(--sun);
  color: #21180e;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.renewal-strip {
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.renewal-card,
.highlight-list article,
.price-card,
.rules-card,
.contact-card,
.plan-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.renewal-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: stretch;
  gap: 26px;
  padding: 26px;
  position: relative;
}

.renewal-card-image {
  min-height: 260px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.renewal-card-copy {
  display: grid;
  align-content: center;
}

.hero-card-label,
.price-card-type,
.contact-name,
.hours-label,
.gallery-kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.renewal-card-lead {
  margin: 0 0 16px;
  max-width: 56ch;
  line-height: 1.7;
  font-size: 1.06rem;
  font-weight: 600;
}

.renewal-list,
.rules-card ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.rental-terms-list {
  line-height: 2.05;
}

.renewal-list {
  columns: 2;
  column-gap: 28px;
  margin-bottom: 12px;
}

.hero-card-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.intro {
  --mobile-section-photo: url("assets/images/boats-yard.jpg");
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.96) 0%, rgba(247, 241, 231, 0.89) 54%, rgba(247, 241, 231, 0.72) 100%),
    url("assets/images/boats-yard.jpg") center / cover no-repeat,
    var(--paper);
}

.intro-grid,
.pricing-grid,
.rules-grid,
.experience-layout,
.education-grid,
.storage-grid,
.tips-grid,
.contact {
  display: grid;
  gap: 24px;
}

.intro-grid,
.experience-layout {
  grid-template-columns: 1.18fr 0.82fr;
}

.intro-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

.intro-text {
  max-width: 72ch;
}

.highlight-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.highlight-list article {
  min-height: 210px;
}

.highlight-list article,
.education-grid article,
.storage-grid article,
.price-card,
.rules-card,
.contact-card,
.plan-grid article {
  padding: 24px;
}

.placeholder-note {
  color: var(--muted);
  font-weight: 700;
}

.overview {
  background:
    linear-gradient(135deg, rgba(247, 241, 231, 0.97), rgba(247, 241, 231, 0.88)),
    var(--paper);
}

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

.overview-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.overview-card p,
.overview-card h3 {
  margin: 0;
}

.overview-card p:not(.hero-card-label) {
  line-height: 1.7;
}

.overview-button {
  width: fit-content;
  margin-top: auto;
  background: rgba(36, 70, 53, 0.1);
  color: var(--forest);
  border-color: rgba(36, 70, 53, 0.16);
}

.gallery-showcase {
  display: grid;
  gap: 28px;
  background:
    linear-gradient(180deg, rgba(247, 241, 231, 0.92), rgba(247, 241, 231, 0.98)),
    url("assets/images/river-view.jpg") center top / cover no-repeat,
    var(--paper);
}

.gallery-heading {
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: end;
}

.gallery-intro {
  margin: 0;
  color: var(--muted);
}

.gallery-tile {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-tile img,
.experience-photo img {
  height: 100%;
  object-fit: cover;
}

.gallery-mosaic {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
}

.gallery-toggle {
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.gallery-tile {
  position: relative;
  margin: 0;
}

.gallery-tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 9px 13px;
  border-radius: 14px;
  background: rgba(14, 28, 22, 0.68);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  backdrop-filter: blur(8px);
}

.gallery-extra {
  margin-top: 18px;
}

.gallery-extra[hidden] {
  display: none;
}

.gallery-tile.tall {
  grid-row: span 2;
}

.gallery-tile.wide {
  grid-column: span 2;
}

.gallery-tile:nth-child(5),
.gallery-tile:nth-child(8) {
  grid-row: span 2;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-bottom: 24px;
}

.pricing {
  --mobile-section-photo: url("assets/images/storage-interior.jpg");
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.96) 0%, rgba(247, 241, 231, 0.9) 58%, rgba(247, 241, 231, 0.76) 100%),
    url("assets/images/storage-interior.jpg") center / cover no-repeat,
    var(--paper);
}

.price-card-price {
  margin: 0 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 2rem;
}

.price-card-alt {
  margin: 0;
  color: var(--muted);
}

.price-card.accent {
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: #fff;
}

.price-card.accent .price-card-alt {
  color: rgba(255, 255, 255, 0.84);
}

.rules-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.inline-link,
.contact-phone {
  color: var(--forest);
  font-weight: 800;
}

.booking-phone {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.15;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: 0.01em;
}

.plan-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.steps {
  --mobile-section-photo: url("assets/images/garden.jpg");
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.96) 0%, rgba(247, 241, 231, 0.9) 62%, rgba(247, 241, 231, 0.76) 100%),
    url("assets/images/garden.jpg") center / cover no-repeat,
    var(--paper);
}

.opening-hours {
  --mobile-section-photo: url("assets/images/river-dock.jpg");
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.97) 0%, rgba(247, 241, 231, 0.9) 58%, rgba(247, 241, 231, 0.76) 100%),
    url("assets/images/river-dock.jpg") center / cover no-repeat,
    var(--paper);
}

.hours-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.hours-copy {
  display: grid;
  align-content: start;
}

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

.hours-grid article {
  display: grid;
  align-content: space-between;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hours-grid span {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hours-grid strong {
  margin-top: 22px;
  line-height: 1.35;
  font-size: 1.08rem;
}

.hours-grid article:nth-child(n + 2) {
  background: rgba(255, 250, 242, 0.9);
}

.hours-note {
  max-width: 72ch;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 700;
}

.hours-photo {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hours-photo img {
  height: 100%;
  object-fit: cover;
}

.hours-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(14, 28, 22, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.plan-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
}

.experience-photo {
  display: block;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-cta {
  width: fit-content;
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.check-list p {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--forest);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
}

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

.education-grid,
.storage-grid,
.tips-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.experience {
  --mobile-section-photo: url("assets/images/washroom-grill.jpg");
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.96) 0%, rgba(247, 241, 231, 0.9) 54%, rgba(247, 241, 231, 0.76) 100%),
    url("assets/images/washroom-grill.jpg") center / cover no-repeat,
    var(--paper);
}

.education {
  --mobile-section-photo: url("assets/images/boats-yard.jpg");
  background:
    linear-gradient(135deg, rgba(247, 241, 231, 0.97), rgba(247, 241, 231, 0.84)),
    url("assets/images/boats-yard.jpg") center / cover no-repeat,
    var(--paper);
}

.storage {
  --mobile-section-photo: url("assets/images/storage-interior.jpg");
  background:
    linear-gradient(135deg, rgba(247, 241, 231, 0.97), rgba(247, 241, 231, 0.84)),
    url("assets/images/storage-interior.jpg") center / cover no-repeat,
    var(--paper);
}

.faq {
  --mobile-section-photo: url("assets/images/facade.jpg");
  background:
    linear-gradient(135deg, rgba(247, 241, 231, 0.97), rgba(247, 241, 231, 0.82)),
    url("assets/images/facade.jpg") center / cover no-repeat,
    var(--paper);
}

.tips {
  --mobile-section-photo: url("assets/images/river-view.jpg");
  background:
    linear-gradient(135deg, rgba(247, 241, 231, 0.97), rgba(247, 241, 231, 0.84)),
    url("assets/images/river-view.jpg") center / cover no-repeat,
    var(--paper);
}

.contact {
  --mobile-section-photo: url("assets/images/river-view.jpg");
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.96) 0%, rgba(247, 241, 231, 0.9) 48%, rgba(247, 241, 231, 0.72) 100%),
    url("assets/images/river-view.jpg") center / cover no-repeat,
    var(--paper);
}

.contact > div:first-child {
  width: min(100%, 760px);
  max-width: 760px;
  justify-self: start;
  text-align: left;
}

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

.map-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
  min-height: 420px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.map-card-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
}

.map-card-copy h3,
.map-card-copy p {
  margin: 0;
}

.rating-badge {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-self: start;
  gap: 10px;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  box-shadow: 0 12px 24px rgba(19, 38, 29, 0.16);
  font-weight: 800;
}

.rating-badge span:first-child {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 384px;
  border: 0;
  border-radius: 20px;
  filter: saturate(0.92) contrast(0.98);
}

.contact-card {
  padding: 28px;
}

.page-footer {
  width: calc(100% + 48px);
  max-width: none;
  margin: 18px 0 0 -24px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(19, 38, 29, 0.96), rgba(36, 70, 53, 0.92)),
    var(--forest-deep);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 28px 28px 0 0;
}

.page-footer .rules-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.page-footer .rules-card p {
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
}

.footer-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.footer-logo {
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.contact-phone {
  display: inline-block;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.contact-note {
  margin: 0 0 18px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-details p {
  margin: 0;
  line-height: 1.6;
}

.hours-card {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(36, 70, 53, 0.07);
  border: 1px solid rgba(36, 70, 53, 0.08);
}

.hours-card p {
  margin: 0;
  line-height: 1.6;
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  width: 100%;
  padding: 18px 20px;
  background: rgba(239, 232, 216, 0.96);
  box-shadow: 0 -18px 38px rgba(21, 31, 27, 0.14);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(24, 37, 31, 0.08);
}

.consent-banner-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: center;
}

.consent-banner-copy {
  display: grid;
  gap: 8px;
}

.consent-banner-copy strong,
.consent-banner-copy p {
  margin: 0;
}

.consent-banner-copy strong {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--forest-deep);
}

.consent-banner-copy p {
  max-width: 56ch;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

.consent-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
}

.consent-banner-actions .button {
  min-width: 170px;
}

.consent-button-reject {
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest-deep);
  border-color: rgba(24, 37, 31, 0.08);
}

.consent-button-accept {
  border: 2px solid rgba(24, 37, 31, 0.9);
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .topbar {
    margin-bottom: 72px;
  }

  .renewal-card,
  .overview-grid,
  .gallery-heading,
  .gallery-mosaic,
  .pricing-grid,
  .hours-layout,
  .plan-grid,
  .education-grid,
  .storage-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

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

  .renewal-list {
    columns: 1;
  }

  .gallery-tile.tall,
  .gallery-tile.wide,
  .gallery-tile:nth-child(5),
  .gallery-tile:nth-child(8) {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .page-shell {
    padding: 0 16px 24px;
  }

  .has-footer-at-bottom {
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 20px 16px 34px;
    border-radius: 0 0 30px 30px;
  }

  .subhero {
    min-height: auto;
    padding-bottom: 30px;
  }

  .topbar {
    margin-bottom: 52px;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  .topbar-links {
    justify-content: flex-start;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .section {
    padding: 24px;
  }

  .page-footer {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 20px 16px;
    border-radius: 24px 24px 0 0;
  }

  .reviews-strip {
    padding: 16px;
  }

  .review-summary {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .intro,
  .pricing,
  .steps,
  .opening-hours,
  .experience,
  .education,
  .storage,
  .tips,
  .faq,
  .contact {
    background:
      linear-gradient(180deg, rgba(247, 241, 231, 0.97), rgba(247, 241, 231, 0.9)),
      var(--mobile-section-photo, none) center / cover no-repeat,
      var(--paper);
  }

  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-meta,
  .intro-grid,
  .overview-grid,
  .rules-grid,
  .experience-layout,
  .education-grid,
  .storage-grid,
  .tips-grid,
  .faq-grid,
  .hours-layout,
  .contact,
  .map-card {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    min-height: 320px;
  }

  h1 {
    font-size: clamp(2.6rem, 9vw, 4rem);
    max-width: 100%;
  }

  h2 {
    max-width: 100%;
  }

  .hero-copy {
    max-width: 60ch;
  }

  .renewal-strip {
    margin-top: 18px;
  }

  .renewal-card-image,
  .experience-photo {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: 28px;
  }

  .subhero-content {
    max-width: 100%;
  }

  .topbar {
    border-radius: 20px;
  }

  .brand {
    font-size: 1.16rem;
    gap: 10px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .button {
    width: 100%;
  }

  .review-pill {
    width: 340px;
    min-height: 260px;
  }

  .highlight-list {
    grid-template-columns: 1fr;
  }

  .overview-card {
    min-height: auto;
  }

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

  .hours-photo {
    min-height: 260px;
  }

  .highlight-list article {
    min-height: auto;
  }

  .map-cta {
    width: 100%;
  }

  .contact-card,
  .renewal-card,
  .map-card {
    padding: 20px;
  }

  .consent-banner {
    padding: 14px 16px;
  }

  .consent-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .consent-banner-actions {
    flex-wrap: wrap;
  }

  .consent-banner-actions .button {
    flex: 1 1 180px;
  }

  .renewal-card {
    gap: 18px;
  }

  .gallery-tile figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    font-size: 0.74rem;
  }
}
