* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: var(--color-accent);
}

.site-header__inner,
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.site-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.site-logo img {
  display: block;
  width: auto;
  height: 120px;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle__bar + .nav-toggle__bar {
  margin-top: 5px;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
}

.site-nav__facebook {
  display: flex;
  align-items: center;
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .site-header__bar {
    justify-content: space-between;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 0.75rem;
  }

  .site-nav li {
    width: 100%;
    border-top: 1px solid var(--color-border);
  }

  .site-nav a {
    display: block;
  }

  .site-nav a.is-active,
  .site-nav a:hover {
    border-bottom: 0;
    background: #f4f6f7;
  }

  .lang-switch {
    justify-content: center;
    border-top: 1px solid var(--color-border);
    padding-top: 0.6rem;
    margin: 0;
  }

  .site-nav__facebook {
    justify-content: center;
    padding: 0.7rem 0;
  }
}

.lang-switch {
  display: flex;
  align-items: center;
}

.lang-switch a {
  display: flex;
  line-height: 0;
  border-radius: 3px;
  opacity: 0.6;
}

.lang-switch a:hover {
  opacity: 1;
}

.lang-switch a.is-active {
  opacity: 1;
}

.site-footer {
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--color-text);
  color: #fff;
  border: 0;
  font-size: 1.1rem;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
}

.back-to-top.is-visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--color-primary-dark);
}

.site-footer__link-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.cookie-dialog {
  width: min(680px, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 24px 70px rgba(22, 39, 49, 0.28);
}

.cookie-dialog::backdrop {
  background: rgba(15, 28, 36, 0.72);
  backdrop-filter: blur(3px);
}

.cookie-dialog__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: var(--color-surface, #f3f5f6);
  color: var(--color-text);
  cursor: pointer;
  font: 1.5rem/1 sans-serif;
}

.cookie-dialog__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-dialog h2 {
  max-width: 18ch;
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.08;
  text-wrap: balance;
}

.cookie-dialog__intro > p:not(.cookie-dialog__eyebrow) {
  max-width: 62ch;
  line-height: 1.65;
}

.cookie-dialog__choices {
  margin: 1.5rem 0;
  border-top: 1px solid var(--color-border);
}

.cookie-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-choice p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-choice > span {
  flex: 0 0 auto;
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.cookie-choice input {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  accent-color: var(--color-primary);
}

.cookie-dialog__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cookie-dialog__button {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease;
}

.cookie-dialog__button:active {
  transform: translateY(1px);
}

.cookie-dialog__button--primary {
  background: var(--color-primary);
  color: #fff;
}

.cookie-dialog__button--primary:hover {
  background: var(--color-primary-dark);
}

.cookie-dialog__button--secondary {
  grid-column: 1 / -1;
  background: #fff;
  color: var(--color-primary-dark);
}

.cookie-dialog__button--secondary:hover {
  background: var(--color-surface, #f3f5f6);
}

.cookie-dialog__button:focus-visible,
.cookie-dialog__close:focus-visible,
.site-footer__link-button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.map-consent-placeholder {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 2rem;
  background: var(--color-surface, #eef2f3);
  text-align: center;
}

.map-consent-placeholder[hidden],
.map-embed iframe[hidden],
.cookie-dialog [hidden] {
  display: none;
}

.map-consent-placeholder p {
  max-width: 48ch;
}

.form-privacy-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.privacy-page {
  max-width: 900px;
}

.privacy-page__header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.privacy-page__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

.privacy-page__lead {
  max-width: 60ch;
  font-size: 1.1rem;
  line-height: 1.7;
}

.privacy-controller {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--color-accent);
  background: var(--color-surface, #f3f5f6);
}

.privacy-controller h2,
.privacy-controller p {
  margin-top: 0;
}

.privacy-controller p:last-child {
  margin-bottom: 0;
}

.privacy-page__body {
  max-width: 72ch;
}

.privacy-page__body h2 {
  margin-top: 2.25rem;
}

@media (max-width: 640px) {
  .cookie-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100dvh - 1rem);
    padding: 1.25rem;
  }

  .cookie-dialog__actions {
    grid-template-columns: 1fr;
  }

  .cookie-dialog__button--secondary {
    grid-column: auto;
  }
}

/* Shared page-title treatment */
.page h1 {
  margin-top: 0;
  text-align: center;
  position: relative;
}

.page h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--color-accent);
}

/* Home and Opening Hours heroes are now the real, vendored Slider
   Revolution engine (public_html/assets/vendor/revslider/rs6.css handles
   all layer positioning/animation) -- see templates/home.php and
   templates/hours.php for the <rs-module-wrap> markup. Nothing to style
   here anymore. */

/* Defense-in-depth for the hero tagline layer (slider-1-slide-1-layer-6):
   its data-dim now bounds its width (see templates/home.php), but RevSlider
   sometimes forces nowrap on caption layers -- this makes sure admin-edited
   text of any length wraps instead of overflowing the slide. */
#rev_slider_1_1_wrapper rs-layer[id="slider-1-slide-1-layer-6"] {
  white-space: normal !important;
  word-break: break-word;
}

.units-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table.units-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}

table.units-table th,
table.units-table td {
  border: 1px solid var(--color-border);
  text-align: left;
}

.room-request-btn {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.35rem;
  cursor: pointer;
  color: var(--color-primary);
  display: inline-flex;
}

.room-request-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.room-request-btn svg {
  width: 18px;
  height: 18px;
}

.room-request-dialog {
  border: 0;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.room-request-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.room-request-dialog__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
}

.room-request-dialog__room-label {
  font-weight: 600;
  color: var(--color-primary);
}

.rooms-available-badge {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--color-primary);
}

.rooms-available-badge:hover {
  background: var(--color-primary);
  color: #fff;
}

.rooms-available-dialog {
  border: 0;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.rooms-available-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.rooms-available-dialog__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
}

.rooms-available-dialog table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.rooms-available-dialog th,
.rooms-available-dialog td {
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.6rem;
  text-align: left;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  display: block;
}

.gallery-grid__link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 3rem 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
  color: #fff;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  text-align: center;
  max-width: 60ch;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 4rem 0.5rem;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox__nav--prev {
    left: 0.25rem;
  }

  .lightbox__nav--next {
    right: 0.25rem;
  }
}

.map-embed iframe {
  width: 100%;
  border: 0;
}

.contact-form label {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font: inherit;
}

.contact-form button,
.btn {
  margin-top: 1rem;
  padding: 0.6rem 1.25rem;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  display: inline-block;
}

.contact-form button:hover,
.btn:hover {
  background: var(--color-primary-dark);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-success {
  padding: 0.75rem 1rem;
  background: #e6f4ea;
  border: 1px solid #b7dfc2;
  border-radius: 4px;
}

.form-error {
  padding: 0.75rem 1rem;
  background: #fbe9e7;
  border: 1px solid #f0b8ae;
  border-radius: 4px;
}

/* Homepage sections below the hero -- feature grid, trailer teaser,
   "Personerne Bag" bio -- restored to match the real site (mockups/home.png). */
.home-intro {
  text-align: center;
}

.home-intro h2,
.team-section h2,
.hours-about h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.home-intro h2::after,
.team-section h2::after,
.hours-about h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--color-accent);
}

.home-intro p {
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  text-align: center;
}

.feature-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.feature-grid__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trailer-teaser {
  flex-wrap: wrap;
}

.trailer-teaser__photo {
  flex: 1 1 260px;
}

.trailer-teaser__text {
  flex: 2 1 320px;
}

.team-section {
  text-align: center;
}

.team-section__people {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.team-section__person {
  margin: 0;
}

.team-section__person img {
  display: block;
}

.team-section__intro {
  font-weight: 700;
}

.home-facebook-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
}

.home-facebook-cta__link:hover {
  color: var(--color-accent);
}

/* Rooms & Prices sidebar -- room photo, space calculator, discount banner,
   restored to match mockups/opbevarings-rum-og-priser.png. */
.rooms-layout {
  display: grid;
  align-items: start;
}

.rooms-request-intro {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.rooms-request-intro p {
  margin: 0;
}

.rooms-layout__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rooms-sidebar__photo {
  margin: 0;
}

.rooms-sidebar__photo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.rooms-calculator h2 {
  margin-top: 0;
}

.rooms-calculator form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rooms-calculator input {
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font: inherit;
}

.rooms-calculator__result {
  font-weight: 600;
  min-height: 1.5em;
}

.rooms-discount-banner {
  padding: 1.25rem;
  color: #fff;
  border-radius: 6px;
}

.rooms-discount-banner h3 {
  margin-top: 0;
}

/* Opening Hours page body -- restored to match mockups/abningstider-og-forhold.png:
   a 3-column flowing intro (two lead+paragraph blocks), an "Om Opbevaringsrum"
   section, then a 3-column Klima/Om vores rum/Om vores sted breakdown. */
.hours-columns {
  column-count: 3;
  column-gap: 2rem;
}

.hours-columns p {
  margin: 0 0 1rem;
}

.hours-columns p.lead {
  font-weight: 700;
}

.hours-about {
  text-align: center;
  max-width: 760px;
}

.hours-about p.lead {
  font-weight: 700;
}

.hours-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
}

.hours-details h3 {
  text-align: center;
}

.hours-details ul {
  margin: 0;
  padding-left: 1.25rem;
}

.hours-details li {
  margin-bottom: 0.5rem;
}

@media (max-width: 720px) {
  .hours-columns {
    column-count: 1;
  }

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

/* Public site palette and typography */
:root {
  --color-bg: #ffffff;
  --color-surface-soft: #f5f5f3;
  --color-text: #101010;
  --color-muted: #5f5f5a;
  --color-accent: #1689b2;
  --color-primary: #111111;
  --color-primary-dark: #343434;
  --color-border: #deded9;
  --shadow-soft: none;
  --max-width: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a,
button,
input,
select,
textarea {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(241, 168, 59, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: var(--color-text);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
}

.site-header__inner {
  min-height: 104px;
  padding: 1.1rem 1.5rem 0.9rem;
}

.site-nav ul {
  gap: 0.2rem;
}

.site-nav a {
  display: block;
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  border-bottom: 0;
  color: #34444b;
  font-size: 0.91rem;
  font-weight: 600;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--color-primary-dark);
  border-bottom: 0;
  background: var(--color-surface-soft);
}

.site-nav a:active,
.btn:active,
.contact-form button:active {
  transform: translateY(1px);
}

.lang-switch {
  gap: 0.2rem;
  margin-left: 0.45rem;
}

.lang-switch a {
  padding: 0.3rem;
  border: 1px solid transparent;
}

.lang-switch a.is-active {
  border-color: var(--color-border);
  background: #fff;
}

.page h1,
.page h2,
.page h3 {
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.page h1 {
  margin-bottom: 2.3rem;
  padding-bottom: 1rem;
  font-size: 2.55rem;
  font-weight: 700;
}

.page h1::after,
.home-intro h2::after,
.team-section h2::after,
.hours-about h2::after {
  width: 42px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-accent);
}

.page h2 {
  font-size: 1.65rem;
}

.page p,
.page li {
  text-wrap: pretty;
}

/* Quill uses <ol> internally for both list types. These rules keep content
   saved by older editor versions correct until it is edited and re-saved. */
li[data-list="bullet"] {
  list-style-type: disc;
}

li[data-list="ordered"] {
  list-style-type: decimal;
}

li[data-list] > .ql-ui {
  display: none;
}

.page__body,
.home-intro p,
.team-section > p,
.team-section > div:not(.team-section__people) {
  color: var(--color-muted);
}

/* Reserve the final hero dimensions before Slider Revolution initializes. */
#rev_slider_1_1_wrapper,
#rev_slider_1_1 {
  display: block;
  width: 100%;
  height: 600px;
  min-height: 600px;
}

#rev_slider_2_1_wrapper,
#rev_slider_2_1 {
  display: block;
  width: 100%;
  height: 400px;
  min-height: 400px;
}

#rev_slider_1_1_wrapper,
#rev_slider_2_1_wrapper {
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 1.5rem;
  isolation: isolate;
}

#rev_slider_1_1_wrapper rs-layer,
#rev_slider_2_1_wrapper rs-layer {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.home-intro {
  max-width: 780px;
  margin: 4.5rem auto 3rem;
}

.home-intro h1,
.home-intro h2 {
  font-size: 2.15rem;
}

.home-intro p {
  max-width: 66ch;
  font-size: 1.08rem;
  line-height: 1.75;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 3rem 0 5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.feature-grid__item {
  min-width: 0;
  padding: 2rem 1.25rem 2.15rem;
  gap: 0.7rem;
  border-right: 1px solid var(--color-border);
}

.feature-grid__item:last-child {
  border-right: 0;
}

.feature-grid__item:hover {
  color: var(--color-primary-dark);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-top: 1px solid var(--color-border);
}

.feature-grid__icon {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  color: var(--color-accent);
  background: #edf7fa;
}

.feature-grid__icon svg {
  width: 24px;
  height: 24px;
}

.feature-grid__title {
  font-size: 1.02rem;
  font-weight: 700;
}

.feature-grid__body {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.feature-grid__body p {
  margin: 0;
}

.trailer-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.trailer-teaser__text h2 {
  font-size: 2rem;
}

.trailer-teaser__text p {
  color: var(--color-muted);
}

.trailer-teaser__details {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.trailer-teaser__details > p:first-child {
  margin-top: 0;
}

.trailer-teaser__details ul,
.trailer-teaser__details ol {
  margin: 1rem 0 0;
  padding-left: 1.35rem;
}

.trailer-teaser__details li {
  padding: 0.25rem 0;
  border-bottom: 0;
  color: var(--color-text);
}

.trailer-teaser__details li::marker {
  color: var(--color-accent);
}

.trailer-teaser__details li::before {
  content: none;
}

.btn,
.contact-form button {
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: 4px;
  background: var(--color-primary);
  box-shadow: 0 6px 16px rgba(8, 100, 122, 0.2);
  font-weight: 700;
}

.btn:hover,
.contact-form button:hover {
  color: #fff;
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.team-section h2 {
  font-size: 2rem;
}

.team-section__person {
  position: relative;
  border-radius: 6px;
  box-shadow: none;
}

.home-facebook-cta__link {
  padding-bottom: 0.3rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.25rem 1.5rem 3.5rem;
}

.site-footer strong {
  color: var(--color-text);
  font-size: 1.15rem;
}

.site-footer p {
  margin: 0.45rem 0 0;
}

.site-footer a {
  color: var(--color-text);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-accent);
}

.site-footer__contact,
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer__links span {
  margin-top: 0.4rem;
  color: #7a7a74;
}

.units-table-wrap {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}

table.units-table {
  margin: 0;
}

table.units-table th,
table.units-table td {
  padding: 0.85rem 0.9rem;
  border-width: 0 0 1px;
}

table.units-table th {
  color: #425159;
  background: var(--color-surface-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

table.units-table tbody tr:last-child td {
  border-bottom: 0;
}

table.units-table tbody tr:hover {
  background: #f4f8f9;
}

.rooms-layout {
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.9fr);
  gap: 2.75rem;
}

.rooms-sidebar__photo img,
.trailer-photo,
.map-embed iframe {
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.rooms-calculator {
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
}

.rooms-calculator input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border-color: #cbd6da;
  border-radius: 4px;
  background: #fff;
}

.rooms-calculator input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(8, 127, 156, 0.12);
}

.rooms-discount-banner {
  background: #087f9c;
  box-shadow: none;
}

.gallery-grid figure {
  padding: 0.45rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.gallery-grid__link img {
  transition:
    transform 240ms ease,
    opacity 180ms ease;
}

.gallery-grid__link:hover img,
.gallery-grid__link:focus-visible img {
  opacity: 1;
  transform: scale(1.018);
}

.page--contact .contact-form {
  border-radius: 6px;
  background: #fff;
}

.hours-details__col {
  padding: 1.5rem 1.75rem 2rem;
  border-right: 1px solid var(--color-border);
}

.hours-details__col:last-child {
  border-right: 0;
}

.back-to-top {
  border-radius: 6px;
  box-shadow: 0 7px 20px rgba(25, 54, 64, 0.2);
}

@media (max-width: 1240px) and (min-width: 779px) {
  #rev_slider_1_1_wrapper,
  #rev_slider_1_1 {
    height: 500px;
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid__item:nth-child(2) {
    border-right: 0;
  }

  .feature-grid__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-border);
  }

  .trailer-teaser {
    grid-template-columns: 1fr 1fr;
  }

  .trailer-teaser__text {
    padding: 2.25rem 2.25rem 2.25rem 0;
  }
}

@media (max-width: 778px) {
  #rev_slider_1_1_wrapper,
  #rev_slider_1_1 {
    height: 400px;
    min-height: 400px;
  }

  .page h1 {
    font-size: 2.1rem;
  }

  .rooms-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 72px;
    padding: 0.75rem 1rem;
  }

  .site-logo {
    margin-bottom: 0rem;
  }

  .site-logo img {
    height: 42px;
  }

  .site-nav {
    margin-top: 0.4rem;
  }

  .site-nav li {
    text-align: left;
  }

  .site-nav a {
    padding: 0.75rem 0.65rem;
  }

  .site-main {
    padding: 0 1rem;
  }

  .page:not(.page--home):not(.page--hours) {
    padding-top: 2.25rem;
  }

  .home-intro {
    margin: 3.25rem auto 2.25rem;
  }

  .home-intro h1,
  .home-intro h2 {
    font-size: 1.8rem;
  }

  .feature-grid {
    margin-bottom: 3.5rem;
  }

  .feature-grid__item {
    padding: 1.5rem 0.75rem;
  }

  .trailer-teaser {
    grid-template-columns: 1fr;
  }

  .trailer-teaser__photo {
    max-height: 320px;
  }

  .trailer-teaser__text {
    padding: 1.75rem;
  }

  .team-section {
    margin: 3.5rem auto;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 1rem;
  }

  .hours-columns {
    padding: 1.25rem;
  }

  .hours-details {
    border-bottom: 0;
  }

  .hours-details__col {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Full-width public bands and editorial gallery */
.site-main {
  width: 100%;
  max-width: none;
  min-height: 55vh;
  margin: 0;
  padding: 0;
  overflow: clip;
}

.page {
  width: 100%;
}

.page:not(.page--home):not(.page--hours) {
  padding-top: 0;
}

.site-band {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #fff;
}

.site-band--soft {
  background: var(--color-surface-soft);
}

.site-band--intro {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.site-band--compact {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.site-band__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
}

#rev_slider_1_1_wrapper,
#rev_slider_2_1_wrapper {
  border-radius: 0;
}

.site-band .home-intro,
.site-band__inner.home-intro {
  max-width: 780px;
  margin: 0 auto;
}

.site-band--features {
  position: relative;
  z-index: 3;
  padding: 0 1.5rem 7rem;
}

.site-band--features .feature-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 16px 36px rgba(38, 48, 52, 0.09);
}

.site-band--features .feature-grid__item {
  min-height: 190px;
  justify-content: flex-start;
}

.site-band--features + .site-band--intro {
  padding-top: 8.5rem;
}

.trailer-teaser {
  margin: 0 auto;
  padding: 0;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.trailer-teaser__media {
  width: 100%;
  height: clamp(360px, 34vw, 460px);
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.trailer-teaser__photo {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 500ms ease;
}

.trailer-teaser:hover .trailer-teaser__photo {
  transform: scale(1.015);
}

.trailer-teaser__text {
  min-width: 0;
  padding: 2rem 0;
}

.trailer-teaser__text h2 {
  display: inline-block;
  position: relative;
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
}

.trailer-teaser__text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-accent);
}

.team-section {
  max-width: 920px;
  margin: 0 auto;
}

.team-section__people {
  gap: clamp(2rem, 7vw, 5.5rem);
  align-items: start;
  margin: 2.75rem 0 3rem;
}

.team-section__person {
  min-width: 0;
  width: min(100%, 280px);
  padding: 0;
  border: 0;
  background: transparent;
}

.team-section__person img {
  width: 260px;
  height: 260px;
  max-width: 100%;
  margin: 0 auto;
  border: 6px solid #fff;
  border-radius: 50%;
  object-fit: contain;
  box-shadow:
    0 0 0 1px var(--color-border),
    0 14px 32px rgba(38, 48, 52, 0.1);
}

.team-section__person figcaption {
  margin-top: 1rem;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 700;
}

.team-section__intro,
.team-section > p,
.team-section > div:not(.team-section__people) {
  max-width: 68ch;
  margin-right: auto;
  margin-left: auto;
}

.home-facebook-cta {
  margin: 0;
  text-align: center;
}

.home-facebook-cta__link {
  border-bottom: 0;
}

.hours-columns {
  max-width: 900px;
  margin: 3rem auto 0;
  border-bottom: 0;
  background: #fff;
}

.hours-about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 4.5rem;
  align-items: center;
  margin: 0 auto;
}

.hours-about__media {
  min-height: 390px;
  overflow: hidden;
}

.hours-about__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.hours-about h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.hours-details {
  gap: 1.25rem;
  border: 0;
}

.hours-details__col,
.hours-details__col:last-child {
  min-width: 0;
  padding: 2rem;
  border: 1px solid var(--color-border);
  background: #fff;
}

.hours-details__col h3 {
  position: relative;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.hours-details__col h3::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  width: 32px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--color-accent);
}

.rooms-layout {
  margin: 0 auto;
}

.site-band--rooms {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

.rooms-intro {
  margin-bottom: 4rem;
}

.rooms-layout__main,
.rooms-layout__aside {
  min-width: 0;
}

.page--contact {
  max-width: none;
  margin: 0;
}

.page--contact h1 {
  text-align: center;
}

.page--contact h1::after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-overview {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
  max-width: 900px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.contact-overview__details {
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
}

.contact-overview .page__body p:first-child {
  margin-top: 0;
}

.site-band--map {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.map-embed iframe {
  height: 430px;
  border-radius: 0;
}

.contact-form-section {
  max-width: 760px;
}

.page--contact .contact-form {
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
}

.site-band--gallery {
  background: #fff;
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

.gallery-intro {
  margin-bottom: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 92px;
  gap: 0.75rem;
  margin: 0;
}

.gallery-grid figure,
.gallery-grid__item {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #dfe1df;
  overflow: hidden;
}

.gallery-grid .gallery-grid__item--wide {
  grid-column: span 8;
}

.gallery-grid .gallery-grid__item--tall {
  grid-row: span 6;
}

.gallery-grid .gallery-grid__item--large {
  grid-column: span 8;
  grid-row: span 6;
}

.gallery-grid__link,
.gallery-grid img {
  width: 100%;
  height: 100%;
}

.gallery-grid img {
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.41) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  pointer-events: none;
}

.page--404 .site-band__inner {
  max-width: 760px;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}

@media (max-width: 900px) {
  .site-band:not(.site-band--features) {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .site-band--features {
    padding-top: 0;
  }

  .site-band--features .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours-about {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 82px;
  }

  .gallery-grid .gallery-grid__item {
    grid-column: span 3;
  }

  .gallery-grid .gallery-grid__item--wide,
  .gallery-grid .gallery-grid__item--large {
    grid-column: span 6;
  }
}

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

  .site-band--features .feature-grid {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .site-band--features + .site-band--intro {
    padding-top: 5.5rem;
  }

  .site-band--features .feature-grid__item {
    min-height: 165px;
  }

  .team-section__people {
    gap: 2.5rem;
  }

  .team-section__person img {
    width: 230px;
    height: 230px;
  }

  .rooms-intro,
  .gallery-intro {
    margin-bottom: 3rem;
  }

  .trailer-teaser,
  .hours-about,
  .contact-overview {
    grid-template-columns: 1fr;
  }

  .trailer-teaser {
    gap: 0;
  }

  .trailer-teaser__media,
  .hours-about__media,
  .hours-about__media img {
    min-height: 260px;
    max-height: 320px;
  }

  .trailer-teaser__media {
    height: 280px;
  }

  .contact-overview {
    gap: 1.5rem;
  }

  .map-embed iframe {
    height: 340px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.85rem;
  }

  .gallery-grid .gallery-grid__item,
  .gallery-grid .gallery-grid__item--wide,
  .gallery-grid .gallery-grid__item--tall,
  .gallery-grid .gallery-grid__item--large {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trailer-teaser__photo {
    transition: none;
  }
}
