:root {
  --ink: #121212;
  --muted: #67635d;
  --paper: #f7f3eb;
  --paper-2: #efe8dc;
  --card: #fffdf8;
  --white: #fff;
  --dark: #111318;
  --accent: #e5e400;
  --accent-dark: #a6a500;
  --line: #ddd7cc;
  --shadow: 0 18px 48px rgba(29, 27, 23, .07);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: 12px; z-index: 100; padding: 10px 14px; border-radius: 8px; background: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 210, 199, .78);
  background: rgba(247, 243, 235, .94);
  backdrop-filter: blur(14px);
}
.nav-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 26px;
}
.brand { width: 110px; }
.brand img { width: 100%; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(24px, 4vw, 58px); }
.desktop-nav a { text-decoration: none; font-weight: 760; font-size: .98rem; }
.desktop-nav a:hover { opacity: .62; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--accent); color: #111; box-shadow: 0 10px 22px rgba(185, 184, 0, .16); }
.button-accent:hover { background: #f0ef00; }
.button-outline { border: 1.5px solid #77716a; background: transparent; }
.button-dark { background: var(--dark); color: #fff; }

.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 50%; background: #fff; flex-direction: column; justify-content: center; gap: 5px; }
.menu-button span { display: block; width: 100%; height: 2px; background: #111; }
.mobile-menu { padding: 12px 24px 24px; background: var(--paper); border-top: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 12px 4px; text-decoration: none; font-weight: 750; }
.mobile-menu .button { margin-top: 10px; text-align: center; }

.hero { padding: 22px 0 42px; }
.hero-photo {
  height: clamp(390px, 34vw, 510px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ddd;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero-copy { width: 100%; max-width: 1400px; margin: 0 auto; padding: 30px 14px 0; text-align: center; }
.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4.15vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.hero-copy > p { max-width: 1040px; margin: 18px auto 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.22rem); }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 25px; }
.hero-proof { max-width: 660px; margin: 20px auto 0; padding-top: 18px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-proof span { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 3px 20px; font-weight: 760; font-size: .9rem; }
.hero-proof span + span { border-left: 1px solid var(--line); }
.hero-proof svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.section { padding: 82px 0; }
.eyebrow { margin: 0 0 8px; color: var(--accent-dark); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
h2, h3 { margin: 0; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.05rem, 3.4vw, 3.6rem); font-weight: 500; line-height: 1.08; letter-spacing: -.025em; }
h3 { font-size: 1.38rem; line-height: 1.2; }
.section-intro { margin-bottom: 34px; }
.section-intro-left { max-width: 760px; }
.section-intro-left > p:last-child { color: var(--muted); }
.section-intro-split { display: flex; align-items: end; justify-content: space-between; gap: 36px; }

.locations { padding-top: 34px; }
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 30px);
}
.location-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid rgba(216, 208, 197, .82);
  box-shadow: 0 18px 44px rgba(31, 28, 24, .075);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.location-card:hover {
  transform: translateY(-2px);
  border-color: rgba(190, 183, 173, .95);
  box-shadow: 0 24px 54px rgba(31, 28, 24, .11);
}
.location-image {
  display: block;
  height: clamp(290px, 25vw, 350px);
  overflow: hidden;
  background: #ddd;
}
.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.2,.7,.2,1);
}
.location-card:first-child .location-image img { object-position: 50% 48%; }
.location-card:nth-child(2) .location-image img { object-position: 50% 53%; }
.location-card:hover .location-image img { transform: scale(1.018); }
.location-footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px 19px 22px;
}
.location-footer > div { min-width: 0; }
.location-footer h3 {
  margin-bottom: 5px;
  font-size: clamp(1.24rem, 1.6vw, 1.48rem);
}
.location-footer p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.4;
}
.round-link {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #cbc4b9;
  background: transparent;
  color: var(--dark);
  text-decoration: none;
  font-size: 1.25rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.location-card:hover .round-link {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  transform: translateX(2px);
}

.overview-grid { margin-top: 24px; display: grid; grid-template-columns: .9fr 1.25fr 1.25fr 1.05fr; gap: 18px; }
.overview-card { min-height: 250px; padding: 24px; border: 1px solid rgba(216, 208, 197, .86); border-radius: 17px; background: rgba(255, 253, 248, .82); box-shadow: 0 14px 35px rgba(31, 28, 24, .045); }
.card-kicker { margin: 0 0 18px; font-weight: 900; }
.stars { color: #dfbf00; letter-spacing: .12em; }
.review-summary blockquote { margin: 14px 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; line-height: 1.42; }
.review-credit { margin: 0; color: var(--muted); font-size: .86rem; }
.tick-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.tick-list li { position: relative; padding-left: 25px; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; top: .03em; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #111; font-size: .7rem; font-weight: 900; }
.stay-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stay-type-grid > div { text-align: center; }
.stay-type-grid svg { width: 34px; height: 34px; margin: 0 auto 10px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.stay-type-grid strong, .stay-type-grid span { display: block; }
.stay-type-grid strong { font-size: .88rem; }
.stay-type-grid span { margin-top: 7px; color: var(--muted); font-size: .75rem; line-height: 1.35; }
.faq-summary details { border-top: 1px solid var(--line); }
.faq-summary details:last-child { border-bottom: 1px solid var(--line); }
.faq-summary summary { position: relative; padding: 10px 26px 10px 0; cursor: pointer; list-style: none; font-weight: 750; font-size: .86rem; }
.faq-summary summary::-webkit-details-marker { display: none; }
.faq-summary summary::after { content: "+"; position: absolute; right: 2px; }
.faq-summary details[open] summary::after { content: "−"; }
.faq-summary details p { margin: 0 0 12px; color: var(--muted); font-size: .8rem; }

.audience-section { background: #f1eadf; }
.audience-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 7vw, 90px); align-items: start; }
.audience-intro { position: sticky; top: 120px; }
.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.audience-card {
  position: relative;
  min-height: 164px;
  padding: 23px 58px 23px 23px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: space-between;
  border-radius: 17px;
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(214, 205, 193, .92);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(31, 28, 24, .035);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.audience-card:hover {
  background: #fffefa;
  border-color: #cfc5b6;
  box-shadow: 0 14px 34px rgba(31, 28, 24, .07);
}
.audience-card:focus-visible { outline: 3px solid rgba(222, 219, 24, .45); outline-offset: 3px; }
.audience-icon {
  width: 42px;
  height: 42px;
  margin: 0 0 25px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(228, 228, 0, .18);
  color: #292900;
}
.audience-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.audience-copy { display: block; margin: 0; }
.audience-copy strong { display: block; color: var(--ink); font-size: 1.12rem; line-height: 1.25; }
.audience-copy > span { display: block; max-width: 31ch; min-height: 2.7em; margin-top: 8px; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.audience-arrow {
  position: absolute;
  right: 22px;
  bottom: 24px;
  margin: 0;
  color: #77716a;
  font-size: 1.2rem;
  transition: transform .18s ease, color .18s ease;
}
.audience-card:hover .audience-arrow { transform: translateX(3px); color: var(--ink); }

.accommodation-section { background: var(--paper); }
.text-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 850; }
.text-link span { font-size: 1.25rem; transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }
.stay-showcase { display:grid; grid-template-columns:.68fr 1.32fr; gap:clamp(42px,6vw,78px); align-items:center; padding:clamp(34px,4.5vw,56px); border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.stay-showcase + .stay-showcase { margin-top: 26px; }
.stay-showcase-reading { background: var(--paper-2); }
.location-label { margin: 0 0 8px; color: var(--accent-dark); font-size: .78rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.stay-copy h3 { margin-bottom: 14px; font-size: clamp(1.75rem, 2.4vw, 2.35rem); }
.stay-copy > p:not(.location-label) { color: var(--muted); }
.compact-list { margin: 24px 0 28px; }
.photo-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 210px); gap: 12px; }
.photo-grid figure { margin: 0; overflow: hidden; border-radius: 14px; background: #ddd; }
.photo-grid .photo-main { grid-row: 1 / span 2; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid-beeston .photo-main img { object-position: 55% 50%; }
.photo-grid-beeston figure:nth-child(2) img { object-position: 55% 60%; }
.photo-grid-beeston figure:nth-child(3) img { object-position: 50% 52%; }
.photo-grid-reading .photo-main img { object-position: 58% 50%; }
.photo-grid-reading figure:nth-child(2) img { object-position: 54% 50%; }
.photo-grid-reading figure:nth-child(3) img { object-position: 50% 54%; }

.links-section { background: #f1eadf; }
.links-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 8vw, 100px); align-items: start; }
.link-list { display: grid; border-top: 1px solid var(--line); }
.link-list a { display: flex; justify-content: space-between; gap: 25px; align-items: center; padding: 20px 4px; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 800; }
.link-list b { font-size: 1.22rem; transition: transform .18s ease; }
.link-list a:hover b { transform: translateX(4px); }

.availability-section { background: var(--paper); }
.form-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 7vw, 90px); padding: clamp(34px, 5vw, 66px); border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-intro p { color: var(--muted); }
.availability-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.availability-form label { display: grid; gap: 7px; color: #34383e; font-size: .88rem; font-weight: 800; }
.availability-form label > span { color: #8e8b00; }
.availability-form input, .availability-form select { width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid #cec6ba; border-radius: 11px; background: #fff; color: var(--ink); }
.availability-form input:focus, .availability-form select:focus { outline: 3px solid rgba(222,219,24,.28); border-color: #a3a000; }
.form-wide, .form-submit, .form-status { grid-column: 1 / -1; }
.form-submit { justify-self: start; margin-top: 4px; }
.form-status { min-height: 24px; margin: 0; color: var(--muted); }

.site-footer { padding: 64px 0 24px; background: var(--dark); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
.footer-brand img { width: 118px; margin-bottom: 22px; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.62); }
.footer-grid nav { display: flex; flex-direction: column; gap: 11px; }
.footer-grid nav strong { margin-bottom: 7px; }
.footer-grid nav a { color: rgba(255,255,255,.68); text-decoration: none; }
.footer-grid nav a:hover { color: #fff; }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.46); font-size: .86rem; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto auto; }
  .menu-button { display: flex; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-layout { grid-template-columns: 1fr; }
  .audience-intro { position: static; }
  .stay-showcase { grid-template-columns: 1fr; }
  .stay-copy { max-width: 720px; }
}

@media (max-width: 760px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 62px 0; }
  .nav-shell { min-height: 60px; gap: 12px; }
  .brand { width: 88px; }
  .desktop-cta { display: none; }
  .menu-button { width: 40px; height: 40px; }
  .hero { padding: 10px 0 32px; }
  .hero-photo { height: 240px; border-radius: 20px; }
  .hero-photo img { object-position: 50% 50%; }
  .hero-copy { padding: 24px 8px 0; }
  .hero-copy h1 { font-size: clamp(2.15rem, 10.8vw, 3.05rem); }
  .hero-copy > p { margin-top: 14px; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; max-width: 360px; margin-top: 17px; padding-top: 12px; }
  .hero-proof span { justify-content: flex-start; padding: 7px 10px; }
  .hero-proof span + span { border-left: 0; border-top: 1px solid var(--line); }
  .section-intro-split { display: block; }
  .section-intro-split .text-link { margin-top: 18px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-image { height: 250px; }
  .location-footer { min-height: 104px; padding: 17px 18px 18px; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-card { min-height: auto; }
  .stay-type-grid { gap: 8px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 125px; }
  .stay-showcase { padding: 22px; border-radius: 22px; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 235px 135px; }
  .photo-grid .photo-main { grid-column: 1 / -1; grid-row: auto; }
  .links-layout, .form-shell { grid-template-columns: 1fr; }
  .form-shell { padding: 28px 22px; border-radius: 22px; }
  .availability-form { grid-template-columns: 1fr; }
  .form-wide, .form-submit, .form-status { grid-column: auto; }
  .form-submit { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 470px) {
  .stay-type-grid { grid-template-columns: 1fr; text-align: left; }
  .stay-type-grid > div { display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; column-gap: 10px; text-align: left; }
  .stay-type-grid svg { grid-row: 1 / 3; margin: 0; }
  .stay-type-grid span { margin-top: 2px; }
  .photo-grid { grid-template-rows: 210px 125px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* v4.5 hero carousel: fixed Reading frames with image-only zoom */
.hero-photo {
  position: relative;
  isolation: isolate;
  background: #e7e0d5;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.85s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-media,
.hero-split {
  width: 100%;
  height: 100%;
}
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slide-beeston .hero-media {
  object-fit: cover;
  object-position: 50% 48%;
}
.hero-slide-reading {
  padding: clamp(18px, 2.1vw, 26px);
}
.hero-split-reading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}
.hero-split-panel {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(16px, 1.4vw, 20px);
  background: #f6f2eb;
  clip-path: inset(0 round clamp(16px, 1.4vw, 20px));
}
.hero-split-panel img {
  object-fit: cover;
}
.hero-split-panel-bedroom img {
  object-position: 51% 44%;
}
.hero-split-panel-living img {
  object-position: 50% 50%;
}
.hero-slide-beeston.is-active .hero-media {
  animation: heroZoomBeeston 6s linear forwards;
}
.hero-slide-reading.is-active .hero-split-panel img {
  animation: heroZoomReading 6s linear forwards;
  transform-origin: center center;
}
@keyframes heroZoomBeeston {
  from { transform: scale(1.022); }
  to { transform: scale(1); }
}
@keyframes heroZoomReading {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@media (max-width: 760px) {
  .hero-slide-reading {
    padding: 12px;
  }
  .hero-split-reading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero-split-panel {
    border-radius: 14px;
  }
  .hero-split-panel-bedroom img {
    object-position: 49% 44%;
  }
  .hero-split-panel-living img {
    object-position: 52% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none !important;
  }
  .hero-slide-beeston .hero-media,
  .hero-slide-reading .hero-split-panel img {
    animation: none !important;
    transform: none !important;
  }
}

/* v4.4 text and audience-card alignment refinements */
@media (min-width: 761px) {
  .hero-copy h1 { max-width: 1360px; margin-inline: auto; }
  .audience-card span { min-height: 2.9em; }
}

/* v4.6: stronger Reading image zoom-out while keeping frames fixed */


/* v4.10 accommodation polish */
.photo-grid{display:grid;grid-template-columns:2fr 1fr;grid-template-rows:180px 180px;gap:14px}
.photo-grid .photo-main{grid-row:1/span 2}
.photo-grid figure{margin:0;overflow:hidden;border-radius:18px}
.photo-grid img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.stay-showcase:hover .photo-grid img{transform:scale(1.02)}
.stay-copy .tick-list.compact-list{display:grid;grid-template-columns:1fr;gap:8px;margin:20px 0 28px}
.stay-copy .button{margin-top:8px}
.location-label{letter-spacing:.1em}


/* v4.11 closing CTA and refined footer */
.closing-cta {
  padding: 76px 0;
  background: #f1eadf;
}
.closing-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.closing-cta-shell > div { max-width: 850px; }
.closing-cta-shell h2 { max-width: 820px; }
.closing-cta-shell > div > p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}
.closing-cta-button { white-space: nowrap; }

.site-footer {
  padding: 72px 0 24px;
  background: #242720;
}
.footer-grid-refined {
  grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(34px, 5vw, 70px);
}
.footer-positioning {
  max-width: 390px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.65;
}
.footer-contact {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.56);
  font-size: .9rem;
}
.footer-contact a {
  width: fit-content;
  margin-top: 6px;
  color: #f0ef00;
  text-decoration: none;
  font-weight: 850;
}
.footer-contact a:hover { color: #fff; }
.footer-grid-refined nav strong {
  color: #fff;
  font-size: .92rem;
}
.footer-grid-refined nav a { line-height: 1.45; }
.footer-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  font-weight: 760;
  text-align: center;
}
.footer-trust-row span + span { border-left: 1px solid rgba(255,255,255,.12); }
.footer-bottom { margin-top: 0; border-top: 0; }

@media (max-width: 900px) {
  .closing-cta-shell { grid-template-columns: 1fr; }
  .closing-cta-button { justify-self: start; }
  .footer-grid-refined { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .closing-cta { padding: 58px 0; }
  .closing-cta-shell { padding: 30px 22px; border-radius: 22px; }
  .closing-cta-button { width: 100%; }
  .footer-grid-refined { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-trust-row { grid-template-columns: 1fr; text-align: left; }
  .footer-trust-row span { padding: 4px 0; }
  .footer-trust-row span + span { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; }
}

@media (max-width: 520px) {
  .footer-grid-refined { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}


/* v4.12 form date reassurance */
.date-guidance {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  padding: 14px 16px;
  border: 1px solid rgba(198, 191, 0, .35);
  border-radius: 12px;
  background: rgba(238, 235, 0, .09);
  color: #44413b;
  font-size: .9rem;
  line-height: 1.45;
}
.date-guidance strong { color: var(--ink); }
.availability-form label small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 500;
}


/* v5.1 connected enquiry form */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-submit:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}
.form-privacy {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}
.form-status {
  min-height: 24px;
  padding: 0;
  font-weight: 700;
}
.form-status.is-success {
  padding: 13px 15px;
  border: 1px solid rgba(46, 125, 50, .3);
  border-radius: 11px;
  background: rgba(46, 125, 50, .08);
  color: #225f27;
}
.form-status.is-error {
  padding: 13px 15px;
  border: 1px solid rgba(171, 45, 45, .3);
  border-radius: 11px;
  background: rgba(171, 45, 45, .07);
  color: #8b2525;
}
