/* ==========================================================================
   Vine Tree / Blodeuo
   Global site.css
   Clean full rewrite
   ========================================================================== */

/* ==========================================================================
   01. Design tokens
   ========================================================================== */

:root {
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --colour-white: #ffffff;
  --colour-off-white: #f8f6f2;
  --colour-charcoal: #3a3a3a;
  --colour-brown: #4b2b20;
  --colour-border: rgba(75, 43, 32, 0.12);

  --brand-blodeuo-primary: #7a4900;
  --brand-vinetree-primary: #212920;

  --layout-max-width: 1280px;
  --layout-gutter: clamp(1.25rem, 4vw, 4.25rem);

  --header-logo-width: clamp(150px, 16vw, 280px);
  --header-logo-height: clamp(42px, 5vw, 76px);

  --header-logo-scrolled-width: clamp(115px, 12vw, 210px);
  --header-logo-scrolled-height: clamp(34px, 4vw, 58px);

  --header-logo-mobile-width: clamp(110px, 30vw, 190px);
  --header-logo-mobile-height: 52px;

  --header-logo-mobile-scrolled-width: clamp(90px, 24vw, 150px);
  --header-logo-mobile-scrolled-height: 40px;
}

/* ==========================================================================
   02. Reset
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-sans);
  color: var(--colour-charcoal);
  background: var(--colour-white);
  line-height: 1.5;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--colour-white);
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ==========================================================================
   03. Base layout
   ========================================================================== */

.site-page {
  width: 100%;
  min-height: 100vh;

  display: flex;
  flex-direction: column;

  overflow-x: hidden;
  background: var(--colour-white);
}

.site-main {
  flex: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(7rem, 7.5vw, 8.5rem) 0 0;

  background: var(--colour-white);
}

body[data-page-uid="1"] .site-main,
body.home .site-main,
body.page-home .site-main {
  padding-top: clamp(8.25rem, 9vw, 10rem);
}

.site-shell {
  width: min(100% - (var(--layout-gutter) * 2), var(--layout-max-width));
  margin-inline: auto;
}

/* ==========================================================================
   04. TYPO3 defaults
   ========================================================================== */

.frame,
.frame-container,
.frame-inner {
  margin-top: 0;
}

.frame {
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.site-main > .frame,
.site-main .frame {
  width: 100%;
  max-width: none;
}

.frame-header > * {
  margin-top: 0;
}

.ce-bodytext {
  max-width: 70ch;
}

.ce-gallery {
  margin-block: 1.5rem;
}

.site-main .ce-bodytext {
  margin-inline: auto;
}

/* ==========================================================================
   05. Header
   ========================================================================== */

.global-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;

  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;

  background: rgba(255, 255, 255, 0.74) !important;
  color: var(--colour-brown) !important;
  border-bottom: 1px solid rgba(75, 43, 32, 0.08) !important;
  box-shadow: none !important;

  backdrop-filter: blur(14px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.08) !important;

  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease !important;
}

.global-header,
.global-header a,
.global-header p {
  color: var(--colour-brown) !important;
  font-size: 0.74rem !important;
  line-height: 1.35 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.global-header a:hover,
.global-header a:focus-visible {
  color: var(--colour-brown) !important;
  text-decoration: underline !important;
  text-underline-offset: 0.25em !important;
}

.global-header .frame,
.global-header .frame-container,
.global-header .frame-inner,
.global-header .ce-bodytext,
.global-header p,
.global-header figure {
  margin: 0 !important;
  padding: 0 !important;
}

/* --------------------------------------------------------------------------
   Header top row
   -------------------------------------------------------------------------- */

.global-header__top {
  width: 100% !important;
  max-width: none !important;
  min-height: 76px !important;
  margin: 0 !important;
  padding: 0.7rem clamp(1.5rem, 4vw, 4.25rem) !important;

  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 300px) minmax(220px, 1fr) !important;
  align-items: center !important;
  column-gap: 2rem !important;

  background: transparent !important;

  transition:
    min-height 260ms ease,
    padding 260ms ease !important;
}

.global-header__address {
  justify-self: start !important;
  text-align: left !important;
}

.global-header__right {
  justify-self: end !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 2.25rem !important;

  text-align: right !important;
}

/* --------------------------------------------------------------------------
   Header logo
   -------------------------------------------------------------------------- */

.global-header__brand {
  justify-self: center !important;
  text-align: center !important;

  width: var(--header-logo-width) !important;
  max-width: var(--header-logo-width) !important;
  height: var(--header-logo-height) !important;
  max-height: var(--header-logo-height) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.global-header__brand-link {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;

  color: inherit !important;
  text-decoration: none !important;
  overflow: visible !important;
}

.global-header__brand img,
.global-header__brand-logo,
.global-header__brand img.global-header__brand-logo,
.global-header__brand-link img.global-header__brand-logo {
  display: block !important;

  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;

  object-fit: contain !important;
  object-position: center center !important;

  margin: 0 auto !important;
  padding: 0 !important;

  opacity: 1 !important;
  visibility: visible !important;
}

.global-header__brand .frame,
.global-header__brand .frame-container,
.global-header__brand .frame-inner,
.global-header__brand .ce-gallery,
.global-header__brand .ce-row,
.global-header__brand .ce-column,
.global-header__brand figure,
.global-header__brand picture {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: visible !important;
}

.global-header__brand .ce-gallery {
  margin-block: 0 !important;
}

/* --------------------------------------------------------------------------
   Secondary desktop nav
   -------------------------------------------------------------------------- */

.global-header__secondary {
  width: 100% !important;
  padding: 0.55rem clamp(1.5rem, 4vw, 4.25rem) 0.6rem !important;

  background: transparent !important;
  color: var(--colour-brown) !important;
  border-top: 1px solid rgba(75, 43, 32, 0.06) !important;

  text-align: center !important;

  transition:
    padding 260ms ease,
    border-color 260ms ease !important;
}

.global-header__secondary .frame,
.global-header__secondary .frame-container,
.global-header__secondary .frame-inner,
.global-header__secondary .ce-bodytext,
.global-header__secondary p {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.global-header__secondary ul,
.global-header__mobile-menu ul {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(1.5rem, 3vw, 2.75rem) !important;

  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.global-header__secondary li,
.global-header__mobile-menu li {
  margin: 0 !important;
  padding: 0 !important;
}

.global-header__secondary a,
.global-header__mobile-menu a {
  display: inline-block !important;
  position: relative !important;
  padding: 0 0 0.38rem !important;

  color: var(--colour-brown) !important;
  background: transparent !important;

  font-size: 0.72rem !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.global-header__secondary a::after,
.global-header__mobile-menu a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  height: 1px !important;
  background: currentColor !important;

  transform: scaleX(0) !important;
  transform-origin: center !important;
  transition: transform 260ms ease !important;
}

.global-header__secondary a:hover::after,
.global-header__secondary a:focus-visible::after,
.global-header__secondary li.active > a::after,
.global-header__secondary li.current > a::after,
.global-header__secondary li.act > a::after,
.global-header__secondary li.cur > a::after,
.global-header__mobile-menu a:hover::after,
.global-header__mobile-menu a:focus-visible::after,
.global-header__mobile-menu li.active > a::after,
.global-header__mobile-menu li.current > a::after,
.global-header__mobile-menu li.act > a::after,
.global-header__mobile-menu li.cur > a::after {
  transform: scaleX(1) !important;
}

body[data-page-uid="1"] .global-header__secondary,
body.home .global-header__secondary,
body.page-home .global-header__secondary {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Compact scroll state
   -------------------------------------------------------------------------- */

.global-header.global-header--scrolled {
  background: rgba(255, 255, 255, 0.58) !important;
  border-bottom-color: rgba(75, 43, 32, 0.12) !important;
  box-shadow: 0 0.6rem 1.8rem rgba(75, 43, 32, 0.055) !important;
}

.global-header.global-header--scrolled .global-header__top {
  min-height: 60px !important;
  padding-top: 0.35rem !important;
  padding-bottom: 0.35rem !important;
}

.global-header.global-header--scrolled .global-header__brand {
  width: var(--header-logo-scrolled-width) !important;
  max-width: var(--header-logo-scrolled-width) !important;
  height: var(--header-logo-scrolled-height) !important;
  max-height: var(--header-logo-scrolled-height) !important;
}

.global-header.global-header--scrolled .global-header__brand img,
.global-header.global-header--scrolled .global-header__brand-logo {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  opacity: 0.92 !important;
}

.global-header.global-header--scrolled .global-header__secondary {
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
  border-top-color: rgba(75, 43, 32, 0.05) !important;
}

.global-header.global-header--scrolled,
.global-header.global-header--scrolled a,
.global-header.global-header--scrolled p {
  font-size: 0.66rem !important;
  letter-spacing: 0.2em !important;
}

.global-header.global-header--scrolled .global-header__secondary a {
  padding-bottom: 0.25rem !important;
}

/* --------------------------------------------------------------------------
   Mobile header
   -------------------------------------------------------------------------- */

.global-header__menu-toggle {
  display: none;
}

.global-header__mobile-menu {
  display: none;
}

@media (max-width: 1024px) {
  .site-main {
    padding-top: 72px !important;
  }

  .global-header__top {
    grid-template-columns: 1fr minmax(110px, 200px) 1fr !important;
    min-height: 72px !important;
    padding: 0.55rem 1.25rem !important;
  }

  .global-header__address {
    display: none !important;
  }

  .global-header__brand {
    width: var(--header-logo-mobile-width) !important;
    max-width: var(--header-logo-mobile-width) !important;
    height: var(--header-logo-mobile-height) !important;
    max-height: var(--header-logo-mobile-height) !important;
  }

  .global-header__right {
    justify-self: end !important;
  }

  .global-header__right .frame:not(:last-child),
  .global-header__right .global-header__phone {
    display: none !important;
  }

  .global-header__secondary {
    display: none !important;
  }

  .global-header__menu-toggle {
    position: relative !important;
    z-index: 10001 !important;

    justify-self: start !important;

    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: 0 !important;

    background: transparent !important;
    color: var(--colour-brown) !important;
    cursor: pointer !important;

    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
  }

  .global-header__menu-toggle-line {
    display: block !important;
    width: 22px !important;
    height: 1px !important;
    background: currentColor !important;
    transform-origin: center !important;

    transition:
      transform 320ms cubic-bezier(0.19, 1, 0.22, 1),
      opacity 220ms ease !important;
  }

  .global-header__menu-toggle-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
  }

  .global-header__menu-toggle[aria-expanded="true"] .global-header__menu-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }

  .global-header__menu-toggle[aria-expanded="true"] .global-header__menu-toggle-line:nth-child(2) {
    opacity: 0 !important;
  }

  .global-header__menu-toggle[aria-expanded="true"] .global-header__menu-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  .global-header__mobile-menu {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 10000 !important;

    width: min(84vw, 380px) !important;
    height: 100vh !important;
    height: 100dvh !important;

    padding: 6rem 1.5rem 2rem !important;

    background: #ffffff !important;
    color: var(--colour-brown) !important;
    border-right: 1px solid rgba(75, 43, 32, 0.12) !important;
    box-shadow: 18px 0 48px rgba(0, 0, 0, 0.14) !important;

    overflow-y: auto !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(-102%, 0, 0) !important;
    opacity: 0.98 !important;

    transition:
      transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
      visibility 0s linear 520ms !important;

    will-change: transform !important;
    backface-visibility: hidden !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .global-header__mobile-menu[hidden] {
    display: block !important;
  }

  body.global-mobile-menu-open .global-header__mobile-menu,
  .global-header__mobile-menu:not([hidden]) {
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;

    transition:
      transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
      visibility 0s linear 0s !important;
  }

  .global-header__mobile-menu ul {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 1.15rem !important;

    width: 100% !important;

    opacity: 0 !important;
    transform: translate3d(-10px, 0, 0) !important;

    transition:
      opacity 360ms ease 120ms,
      transform 420ms cubic-bezier(0.19, 1, 0.22, 1) 120ms !important;
  }

  body.global-mobile-menu-open .global-header__mobile-menu ul,
  .global-header__mobile-menu:not([hidden]) ul {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .global-header__mobile-menu li {
    width: 100% !important;
  }

  .global-header__mobile-menu a {
    width: auto !important;
    padding-bottom: 0.4rem !important;

    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    letter-spacing: 0.22em !important;
    text-align: left !important;
  }

  body::before {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 9998 !important;

    background: rgba(0, 0, 0, 0.24) !important;
    opacity: 0 !important;
    pointer-events: none !important;

    transition: opacity 360ms ease !important;
  }

  body.global-mobile-menu-open::before {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.global-mobile-menu-open {
    overflow: hidden !important;
  }

  .global-header.global-header--scrolled .global-header__top {
    min-height: 60px !important;
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }

  .global-header.global-header--scrolled .global-header__brand {
    width: var(--header-logo-mobile-scrolled-width) !important;
    max-width: var(--header-logo-mobile-scrolled-width) !important;
    height: var(--header-logo-mobile-scrolled-height) !important;
    max-height: var(--header-logo-mobile-scrolled-height) !important;
  }
}

@media (max-width: 700px) {
  .site-main {
    padding-top: 68px !important;
  }

  .global-header__top {
    grid-template-columns: 1fr minmax(100px, 170px) 1fr !important;
    min-height: 66px !important;
  }

  .global-header__brand {
    width: clamp(100px, 34vw, 170px) !important;
    max-width: clamp(100px, 34vw, 170px) !important;
    height: 48px !important;
    max-height: 48px !important;
  }

  .global-header.global-header--scrolled .global-header__top {
    min-height: 58px !important;
  }

  .global-header.global-header--scrolled .global-header__brand {
    width: clamp(84px, 28vw, 135px) !important;
    max-width: clamp(84px, 28vw, 135px) !important;
    height: 38px !important;
    max-height: 38px !important;
  }
}

/* ==========================================================================
   06. Footer
   ========================================================================== */

.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;

  background: var(--colour-white);
  color: var(--colour-brown);
  border-top: 1px solid rgba(75, 43, 32, 0.1);
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.site-footer .frame,
.site-footer .frame-container,
.site-footer .frame-inner,
.site-footer .ce-bodytext,
.site-footer p,
.site-footer ul,
.site-footer ol,
.site-footer figure {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.site-footer .frame,
.site-footer .frame-container,
.site-footer .frame-inner,
.site-footer .ce-bodytext {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}

/* --------------------------------------------------------------------------
   Upper footer links row
   -------------------------------------------------------------------------- */

.site-footer__top-links {
  width: 100%;
  padding: 1rem var(--layout-gutter);

  border-bottom: 1px solid rgba(75, 43, 32, 0.09);
  background: #ffffff;

  text-align: center;
}

.site-footer__top-links ul {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.85rem clamp(2rem, 4vw, 4rem) !important;

  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;
}

.site-footer__top-links li {
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer__top-links a {
  display: inline-block !important;

  color: var(--colour-brown) !important;

  font-size: 0.66rem !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

/* --------------------------------------------------------------------------
   Main footer
   -------------------------------------------------------------------------- */

.site-footer__main {
  width: min(100% - 3rem, 1320px) !important;
  max-width: 1320px !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: minmax(220px, 0.9fr) minmax(420px, 1.25fr) minmax(220px, 0.9fr) !important;
  align-items: start !important;
  gap: clamp(2rem, 4vw, 5rem) !important;

  padding: clamp(2.4rem, 4vw, 4rem) 0 !important;

  background: transparent !important;
  border-bottom: 0 !important;
}

.site-footer__column {
  min-width: 0 !important;
}

.site-footer__column:nth-child(1) {
  text-align: left !important;
}

.site-footer__column:nth-child(2) {
  text-align: center !important;
}

.site-footer__column:nth-child(3) {
  text-align: right !important;
}

/* --------------------------------------------------------------------------
   Footer type
   -------------------------------------------------------------------------- */

.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer .frame-header h1,
.site-footer .frame-header h2,
.site-footer .frame-header h3 {
  margin: 0 0 0.7rem !important;
  padding: 0 !important;

  color: var(--colour-brown) !important;

  font-size: 0.7rem !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
}

.site-footer h3 {
  margin-bottom: 0.45rem !important;

  font-size: 0.62rem !important;
  letter-spacing: 0.18em !important;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--colour-brown) !important;

  font-size: 0.72rem !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

.site-footer p {
  margin: 0 0 0.85rem !important;
}

.site-footer p:last-child {
  margin-bottom: 0 !important;
}

.site-footer strong {
  color: var(--colour-brown) !important;
  font-weight: 700 !important;
}

.site-footer ul,
.site-footer ol {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* --------------------------------------------------------------------------
   Centre opening times
   -------------------------------------------------------------------------- */

.footer-hours-compact {
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.75rem !important;

  text-align: center !important;
}

.footer-hours-compact > div {
  min-width: 0 !important;
}

.footer-hours-compact > div + div {
  padding-left: 1.75rem !important;
  border-left: 1px solid rgba(75, 43, 32, 0.14) !important;
}

.footer-hours-compact p {
  font-size: 0.72rem !important;
  line-height: 1.55 !important;
}

/* --------------------------------------------------------------------------
   Right footer links
   -------------------------------------------------------------------------- */

.site-footer__column:nth-child(3) ul {
  display: block !important;
  margin: 1rem 0 0 !important;
  padding: 0 !important;

  list-style: none !important;
  text-align: right !important;
}

.site-footer__column:nth-child(3) li {
  display: block !important;
  margin: 0 0 0.35rem !important;
  padding: 0 !important;
}

.site-footer__column:nth-child(3) a {
  display: inline-block !important;

  font-size: 0.78rem !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* --------------------------------------------------------------------------
   Hide lower footer row
   -------------------------------------------------------------------------- */

.site-footer__lower,
.footer-lower,
.site-footer .footer-lower {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Bottom credit strip
   -------------------------------------------------------------------------- */

.site-footer__bottom {
  width: 100% !important;
  max-width: none !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 1rem var(--layout-gutter) !important;

  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 2rem !important;

  background: var(--colour-brown) !important;
  color: var(--colour-white) !important;
}

.site-footer__bottom-left {
  grid-column: 1 !important;
  justify-self: start !important;
  text-align: left !important;
}

.site-footer__bottom-right {
  grid-column: 3 !important;
  justify-self: end !important;
  text-align: right !important;
}

.site-footer__bottom,
.site-footer__bottom a,
.site-footer__bottom p,
.site-footer__bottom li {
  color: var(--colour-white) !important;
}

.site-footer__bottom a,
.site-footer__bottom p,
.site-footer__bottom li {
  font-size: 0.66rem !important;
  line-height: 1.3 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

/* --------------------------------------------------------------------------
   Mobile footer
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .site-footer__top-links {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .site-footer__top-links ul {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .site-footer__main {
    width: min(100% - 2.5rem, 520px) !important;
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
    padding: 3rem 0 !important;
    text-align: center !important;
  }

  .site-footer__column,
  .site-footer__column:nth-child(1),
  .site-footer__column:nth-child(2),
  .site-footer__column:nth-child(3) {
    text-align: center !important;
  }

  .footer-hours-compact {
    max-width: 420px !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .footer-hours-compact > div + div {
    padding-left: 0 !important;
    padding-top: 1.25rem !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(75, 43, 32, 0.14) !important;
  }

  .site-footer__column:nth-child(3) ul {
    text-align: center !important;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    text-align: center !important;
  }

  .site-footer__bottom-left,
  .site-footer__bottom-right {
    grid-column: auto !important;
    justify-self: center !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   07. Booking modal overlay
   ========================================================================== */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;

  display: none;
  align-items: center;
  justify-content: center;

  padding: clamp(1rem, 3vw, 2.5rem);
}

.booking-modal--open {
  display: flex;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;

  width: min(100%, 720px);
  max-height: min(900px, 92vh);

  background: #ffffff;
  border: 1px solid rgba(75, 43, 32, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);

  overflow: hidden;
}

.booking-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;

  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(75, 43, 32, 0.18);
  border-radius: 999px;

  background: #ffffff;
  color: var(--colour-brown);

  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.booking-modal__close:hover,
.booking-modal__close:focus-visible {
  background: var(--colour-brown);
  color: #ffffff;
}

.booking-modal__frame-wrap {
  width: 100%;
  height: min(760px, 86vh);
  padding: 0;
}

.booking-modal__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 710px;
  border: 0;
}

body.booking-modal-open {
  overflow: hidden !important;
}

@media (max-width: 700px) {
  .booking-modal {
    padding: 0;
  }

  .booking-modal__dialog {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .booking-modal__frame-wrap {
    height: 100vh;
    height: 100dvh;
    padding-top: 3.75rem;
  }

  .booking-modal__iframe {
    min-height: 100%;
  }

  .booking-modal__close {
    top: 0.65rem;
    right: 0.65rem;
  }
}

/* ==========================================================================
   08. Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behaviour: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}