/* Final cross-page refinement: type, room rhythm, imagery and responsive QA. */

body[data-page="home"] .reference-hero-copy h1 {
  max-width: 15ch;
  margin-inline: auto;
  font-weight: 400;
  letter-spacing: -.025em;
  -webkit-text-stroke-width: .1px;
  paint-order: normal;
  text-shadow: 0 3px 22px rgba(3, 10, 16, .26);
}

/* Content remains readable even if animation support is unavailable. Motion
   is applied with the Web Animations API only when an element enters view. */
.reveal,
.reveal-image,
.reveal.visible,
.reveal-image.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-image > img,
.reveal-image.visible > img {
  transform: none;
}

.lightbox img { will-change: auto; }
.lightbox.open img { will-change: opacity, transform; }

#welcome,
#private-events,
#buffets,
#high-tea { scroll-margin-top: 112px; }

.footer-brand img {
  width: 132px;
  height: 92px;
  object-fit: contain;
  object-position: left center;
}

body[data-page="home"] .reference-booking {
  grid-template-columns: 1.05fr 1.05fr 1.3fr .62fr 1.08fr .62fr 1.15fr;
}

body[data-page="home"] .reference-booking input[type="tel"]::placeholder {
  color: #817c73;
  opacity: 1;
}

/* Shared split-heading grid: the label sits above the title while the title
   and supporting copy always begin together, regardless of text wrapping. */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  grid-template-areas:
    "label ."
    "title lead";
  column-gap: clamp(42px, 6vw, 92px);
  row-gap: 28px;
  align-items: start;
  margin-bottom: clamp(64px, 6vw, 88px);
}

.section-heading > div { display: contents; }

.section-heading .section-label {
  grid-area: label;
  margin: 0;
}

.section-heading .display {
  grid-area: title;
  max-width: 12ch;
}

.section-heading > .lead {
  grid-area: lead;
  align-self: start;
  max-width: 48ch;
  margin: 0;
  padding-top: 4px;
}

.room-list {
  gap: clamp(64px, 8vw, 118px);
}

.room-detail,
.room-detail.reverse {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: stretch;
  padding-bottom: clamp(64px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
}

.room-detail:last-child { border-bottom: 0; }
.room-detail.reverse img { order: 0; }

.room-detail > img {
  width: 100%;
  height: clamp(520px, 45vw, 660px);
  object-fit: cover;
  object-position: center;
}

.room-detail > div {
  display: grid;
  grid-template-rows: auto minmax(5.4em, auto) auto auto;
  align-content: center;
}

.room-detail h2 { margin: 0 0 18px; line-height: 1.02; }
.room-detail p { max-width: 48ch; margin: 0; }
.room-detail ul { margin: 30px 0 34px; }
.room-detail .primary-btn { justify-self: start; align-self: end; margin: 0; }

.map-split iframe,
.contact-map iframe,
.reference-location iframe {
  filter: none !important;
}

.contact-hero .subhero-media img {
  object-position: center 48%;
  transform: scale(1);
  animation: contact-hero-zoom-out 14s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes contact-hero-zoom-out {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

.gallery-hero .subhero-media {
  box-shadow: none;
}

.gallery-hero .subhero-media img {
  filter: none;
  object-position: center 52%;
}

.gallery-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 13, 21, .7) 0%, rgba(5, 13, 21, .2) 62%, rgba(5, 13, 21, .08) 100%),
    linear-gradient(0deg, rgba(5, 13, 21, .5), transparent 58%);
}

body[data-page="gallery"] .gallery-grid-hd {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(190px, 18vw, 300px);
  gap: clamp(10px, 1.1vw, 18px);
}

body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(n) {
  grid-column: span 4;
  grid-row: span 1;
  min-height: 0;
  aspect-ratio: auto;
  content-visibility: auto;
  contain-intrinsic-size: 480px 320px;
}

body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(5n + 1) {
  grid-column: span 8;
  grid-row: span 2;
}

body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(5n + 2) {
  grid-column: span 4;
  grid-row: span 2;
}

body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(21) {
  grid-column: 1 / -1;
  grid-row: span 1;
}

body[data-page="gallery"] .gallery-grid-hd .gallery-item img {
  transform: none;
  transition: transform .72s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

body[data-page="gallery"] .gallery-grid-hd .gallery-item:hover img {
  transform: scale(1.045);
}

.review-note.is-google {
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}

.review-note.is-google .review-source span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.review-note.is-google .review-source span b {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(217, 189, 134, .72);
  border-radius: 50%;
  color: #f8f4eb;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.review-note.is-google .review-source > strong {
  width: auto;
  height: auto;
  color: #d9bd86;
  background: transparent;
  font-size: 13px;
  letter-spacing: .08em;
}

.review-note.is-google blockquote {
  font-size: clamp(22px, 1.8vw, 28px);
}

.about-story .story-copy p + p { margin-top: 22px; }

:where(a, button, input, select):focus-visible {
  outline: 2px solid #c9ad77;
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .section-heading {
    grid-template-columns: 1fr;
    grid-template-areas: "label" "title" "lead";
    row-gap: 22px;
    margin-bottom: 64px;
  }

  .section-heading > .lead {
    max-width: 62ch;
    padding-top: 2px;
  }

  body[data-page="home"] .reference-booking {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .room-detail,
  .room-detail.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .room-detail > img { height: min(68vw, 660px); }
  .room-detail > div { grid-template-rows: auto; }
  .room-detail p { min-height: 0; }

  body[data-page="gallery"] .gallery-grid-hd {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(210px, 34vw, 360px);
  }

  body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(n) {
    grid-column: span 3;
    grid-row: span 1;
  }

  body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(5n + 1),
  body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(21) {
    grid-column: 1 / -1;
  }

  body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(5n + 2) {
    grid-column: span 3;
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .section-heading {
    row-gap: 18px;
    margin-bottom: 52px;
  }

  body[data-page="home"] .reference-hero-copy h1 {
    font-weight: 400;
    letter-spacing: -.02em;
    -webkit-text-stroke-width: .06px;
  }

  .footer-brand img { width: 124px; height: 86px; }

  body[data-page="home"] .reference-booking {
    grid-template-columns: 1fr 1fr;
  }

  .room-detail,
  .room-detail.reverse {
    display: grid;
    padding-bottom: 68px;
  }

  .room-detail > img { height: 78vw; min-height: 310px; max-height: 470px; }
  .room-detail > div { padding-top: 0; }
  .room-detail h2 { margin-bottom: 14px; }
  .room-detail ul { margin: 24px 0 28px; }
  .room-detail .primary-btn { width: 100%; justify-content: center; }

  .contact-hero .subhero-media img { object-position: center 48%; }

  body[data-page="gallery"] .gallery-grid-hd {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 8px;
  }

  body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(5n + 1),
  body[data-page="gallery"] .gallery-grid-hd .gallery-item:nth-child(21) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .review-note.is-google blockquote { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="gallery"] .gallery-grid-hd .gallery-item img {
    transition: none;
  }
}

/* Public Google reviews — recognizable source hierarchy with MK Colombo restraint. */
.google-review-feed {
  grid-auto-columns: minmax(350px, 31vw);
  gap: clamp(14px, 1.4vw, 22px);
  padding-bottom: 22px;
}

.review-note.google-review-card {
  min-height: 372px;
  padding: clamp(24px, 2.2vw, 32px);
  border: 0;
  border-radius: 14px;
  color: #202124;
  background: #fbfaf7;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1), background-color .2s ease;
}

.review-note.google-review-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .21);
}

.google-review-author {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
}

.google-review-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: #8b7350;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

.google-review-avatar::before { content: attr(data-initials); }
.google-review-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.google-review-avatar.avatar-charlotte { background: #668893; }
.google-review-avatar.avatar-alexandra { background: #527782; }

.google-review-identity { display: grid; gap: 3px; min-width: 0; }
.google-review-identity strong {
  overflow: hidden;
  color: #202124;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.google-review-identity small { color: #6d7278; font-size: 12px; line-height: 1.35; }
.google-review-mark {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.google-review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #6d7278;
  font-size: 12px;
}
.google-review-stars { color: #f9ab00; font-size: 16px; line-height: 1; letter-spacing: 1px; }
.google-review-trip {
  align-self: start;
  margin-top: 9px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #53606a;
  background: #eef0f1;
  font-size: 11px;
  font-weight: 500;
}
.google-review-text {
  max-width: 44ch;
  margin: 25px 0 30px;
  color: #303236;
  font-size: 15px;
  line-height: 1.68;
}

.review-note .google-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid #e0e2e3;
  color: #777c82;
  font-size: 10px;
}
.review-note .google-review-footer > span { letter-spacing: .08em; text-transform: uppercase; }
.review-note .google-review-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a73e8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.google-review-footer a svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s ease; }
.google-review-footer a:hover svg { transform: translateX(3px); }

.review-feed-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.review-feed-note p { max-width: 68ch; margin: 0; color: rgba(248,244,235,.56); font-size: 11px; line-height: 1.6; }
.review-feed-note a { display: inline-flex; gap: 10px; flex: 0 0 auto; color: #f8f4eb; font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.review-feed-note a span { color: #d9bd86; transition: transform .2s ease; }
.review-feed-note a:hover span { transform: translateX(3px); }

@media (max-width: 1100px) {
  .google-review-feed { grid-auto-columns: minmax(330px, 48vw); }
}

@media (max-width: 680px) {
  .review-feed-heading { align-items: end; }
  .review-feed-heading h3 { max-width: 10ch; }
  .google-review-feed { grid-auto-columns: minmax(292px, 88vw); }
  .review-note.google-review-card { min-height: 390px; padding: 24px; }
  .google-review-text { font-size: 14px; }
  .review-feed-note { display: grid; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .review-note.google-review-card,
  .google-review-footer a svg,
  .review-feed-note a span { transition: none; }
  .review-note.google-review-card:hover { transform: none; }
}

/* 08 Aug refinement — shared alignment, trust composition and source-true reviews. */
.brand {
  display: grid;
  grid-template-columns: minmax(0, 250px) 54px;
  gap: 14px;
  align-items: center;
  width: clamp(278px, 22vw, 324px);
  height: 66px;
}

.brand::after {
  content: "";
  display: block;
  width: 54px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='12' viewBox='0 0 54 12'%3E%3Cpath fill='%23C9AD77' d='M6 .8l1.6 3.25 3.59.52-2.6 2.54.61 3.58L6 9 2.79 10.69l.61-3.58L.8 4.57l3.59-.52L6 .8Z'/%3E%3Cpath fill='%23C9AD77' d='M20 .8l1.6 3.25 3.59.52-2.6 2.54.61 3.58L20 9l-3.21 1.69.61-3.58-2.6-2.54 3.59-.52L20 .8Z'/%3E%3Cpath fill='%23C9AD77' d='M34 .8l1.6 3.25 3.59.52-2.6 2.54.61 3.58L34 9l-3.21 1.69.61-3.58-2.6-2.54 3.59-.52L34 .8Z'/%3E%3Cpath fill='%23C9AD77' d='M48 .8l1.6 3.25 3.59.52-2.6 2.54.61 3.58L48 9l-3.21 1.69.61-3.58-2.6-2.54 3.59-.52L48 .8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.brand img,
.site-header.scrolled .brand img {
  grid-column: 1;
  min-width: 0;
}

.subhero-copy {
  width: min(1080px, 100%);
  max-width: none;
  padding-left: clamp(84px, 10.5vw, 215px);
  padding-right: clamp(34px, 6vw, 100px);
}

.subhero-copy .split-title {
  max-width: 11ch;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -.025em;
}

.subhero-copy .hero-text {
  max-width: 60ch;
  margin-top: 26px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

.guest-proof {
  padding: clamp(104px, 9vw, 150px) clamp(28px, 6.5vw, 120px);
}

.guest-proof-summary,
.review-feed-heading,
.google-review-feed,
.review-feed-note,
.rating-disclaimer {
  width: min(1500px, 100%);
  margin-inline: auto;
}

.guest-proof-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(54px, 6vw, 88px);
}

.guest-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  grid-template-areas: "title copy";
  column-gap: clamp(58px, 8vw, 132px);
  align-items: end;
}

.guest-proof-heading h2 {
  grid-area: title;
  max-width: 12ch;
  margin: 0;
  font-size: clamp(58px, 5.4vw, 86px);
  line-height: .96;
  letter-spacing: -.025em;
}

.guest-proof-heading h2 span,
.guest-proof-heading h2 em { display: block; }

.guest-proof-heading > p {
  grid-area: copy;
  max-width: 48ch;
  margin: 0 0 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
  color: rgba(248,244,235,.72);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
}

.rating-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.rating-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 210px;
  padding: 28px clamp(26px, 3vw, 48px) 30px;
  border-bottom: 0;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: background-color 220ms ease, color 220ms ease;
}

.rating-entry:first-child { padding-left: 0; }
.rating-entry:last-child { padding-right: 0; border-right: 0; }
.rating-entry:is(a):hover { background: rgba(255,255,255,.035); }

.rating-entry > span,
.rating-entry em,
.rating-entry strong {
  align-self: auto;
}

.rating-entry > .rating-source {
  grid-column: 1;
  grid-row: 1;
  color: rgba(248,244,235,.82);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rating-entry em {
  grid-column: 1;
  grid-row: 3;
  color: rgba(248,244,235,.58);
  font-size: 11px;
  font-style: normal;
}

.rating-entry strong {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  align-items: baseline;
  align-self: end;
  justify-self: start;
  min-width: 0;
  color: #f8f4eb;
  font-family: var(--serif);
  font-size: clamp(54px, 4.8vw, 76px);
  font-weight: 400;
  line-height: .9;
  text-align: left;
  font-variant-numeric: tabular-nums;
}

.rating-entry strong small {
  margin-left: 4px;
  color: rgba(248,244,235,.48);
  font: 500 11px var(--sans);
}

.rating-number {
  display: inline-block;
  min-width: 1.7em;
  transform-origin: 0 70%;
}

.rating-number.is-counting {
  animation: rating-settle 900ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes rating-settle {
  from { opacity: .52; filter: blur(2px); transform: translateY(-.14em); }
  to { opacity: 1; filter: blur(0); transform: none; }
}

.review-feed-heading {
  margin-top: clamp(82px, 8vw, 112px);
  margin-bottom: 28px;
}

.review-feed-heading h3 {
  font-size: clamp(34px, 3vw, 46px);
  letter-spacing: -.02em;
}

.review-feed-heading p {
  max-width: 62ch;
  margin-top: 10px;
  color: rgba(248,244,235,.66);
  line-height: 1.6;
}

.review-feed-controls { display: none; }

.google-review-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: initial;
  grid-auto-columns: auto;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 56px rgba(0,0,0,.2);
  scroll-snap-type: none;
}

.review-note.google-review-card {
  min-height: 378px;
  padding: clamp(26px, 2.2vw, 34px);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transition: background-color .2s ease;
}

.review-note.google-review-card:not(:last-child) {
  border-right: 1px solid #e2e5e8;
}

.review-note.google-review-card:hover {
  transform: none;
  background: #fafafa;
  box-shadow: none;
}

.google-review-author {
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  gap: 13px;
}

.google-review-avatar {
  width: 48px;
  height: 48px;
  box-shadow: inset 0 0 0 1px rgba(32,33,36,.08);
}

.google-review-avatar img {
  image-rendering: auto;
}

.google-review-identity strong { font-size: 14px; }
.google-review-identity small { color: #6a7077; font-size: 11px; }
.google-review-mark { width: 24px; height: 24px; }

.google-review-meta {
  margin-top: 24px;
  font-size: 11px;
}

.google-review-stars {
  font-size: 15px;
  letter-spacing: .5px;
}

.google-review-trip {
  margin-top: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
}

.review-note blockquote.google-review-text {
  max-width: 30ch;
  margin: 28px 0 32px;
  color: #2f3337;
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
}

.review-note .google-review-footer {
  padding-top: 18px;
  border-top-color: #e2e5e8;
}

.review-feed-note {
  margin-top: 18px;
  padding-top: 18px;
}

@media (max-width: 1240px) {
  .brand {
    grid-template-columns: minmax(0, 205px) 47px;
    gap: 11px;
    width: 263px;
  }
  .brand::after { width: 47px; }
}

@media (max-width: 1100px) {
  .brand {
    grid-template-columns: minmax(0, 168px) 42px;
    gap: 9px;
    width: 219px;
    height: 54px;
  }
  .brand::after { width: 42px; height: 10px; }
  .subhero-copy { padding-left: clamp(42px, 8vw, 88px); }
  .guest-proof-summary {
    gap: 48px;
  }
  .guest-proof-heading {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "copy";
    row-gap: 26px;
  }
  .guest-proof-heading > p { max-width: 62ch; }
  .rating-ledger { width: 100%; }
}

@media (max-width: 820px) {
  .guest-proof { padding-block: 88px; }
  .rating-ledger { grid-template-columns: 1fr; }
  .rating-entry,
  .rating-entry:first-child,
  .rating-entry:last-child {
    grid-template-columns: minmax(105px, .8fr) minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 16px;
    min-height: 100px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .rating-entry:last-child { border-bottom: 0; }
  .rating-entry strong { align-self: center; justify-self: end; font-size: 46px; }
  .rating-entry > .rating-source { grid-column: 1; grid-row: 1; }
  .rating-entry em { grid-column: 2; grid-row: 1; }
  .rating-entry strong { grid-column: 3; grid-row: 1; }
  .rating-entry em { align-self: center; }
  .google-review-feed {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(310px, 82vw);
    gap: 12px;
    overflow-x: auto;
    padding: 1px 1px 20px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-type: x mandatory;
  }
  .review-note.google-review-card {
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(0,0,0,.18);
  }
  .review-note.google-review-card:not(:last-child) { border-right: 0; }
  .review-feed-controls { display: flex; }
}

@media (max-width: 680px) {
  .subhero-copy {
    padding-left: 24px;
    padding-right: 24px;
  }
  .subhero-copy .split-title {
    max-width: 10ch;
    font-size: clamp(48px, 15vw, 68px);
  }
  .guest-proof-heading { row-gap: 22px; }
  .guest-proof-heading h2 { font-size: clamp(46px, 13vw, 58px); }
  .guest-proof-heading > p { padding-top: 20px; font-size: 14px; }
  .rating-entry {
    grid-template-columns: minmax(88px, .7fr) minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 94px;
    padding: 20px 0;
  }
  .rating-entry strong { min-width: 0; font-size: 40px; }
  .rating-entry em { font-size: 10px; }
  .review-feed-heading { align-items: flex-end; }
  .review-feed-heading h3 { max-width: 12ch; }
  .google-review-feed { grid-auto-columns: minmax(286px, 88vw); }
  .review-note.google-review-card { min-height: 370px; }
}

@media (prefers-reduced-motion: reduce) {
  .rating-number { animation: none !important; filter: none !important; transform: none !important; }
  .contact-hero .subhero-media img {
    animation: none;
    transform: none;
  }
}

/* Homepage location — live map only; the panoramic asset is retained for later. */
.reference-location {
  grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr);
  min-height: 640px;
}

.reference-location > .reference-location-media {
  display: block;
  min-width: 0;
  padding: 0;
  background: rgba(255,255,255,.14);
}

.reference-map-frame {
  height: 100%;
  min-height: 640px;
  overflow: hidden;
}

.reference-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .reference-location { grid-template-columns: 1fr; }
  .reference-map-frame { min-height: 460px; }
}

@media (max-width: 560px) {
  .reference-map-frame { min-height: 380px; }
}
.footer-bottom {
  flex-wrap: wrap;
}

.footer-credit {
  flex: 0 0 100%;
  grid-column: 1 / -1;
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .3);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: none;
  transition: color 180ms ease;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: rgba(255, 255, 255, .68);
}

@media (max-width: 720px) {
  .footer-bottom {
    justify-content: stretch;
  }
}
