:root {
  color-scheme: light;
  --ink: #111318;
  --ink-soft: #272b32;
  --paper: #fbfaf7;
  --white: #ffffff;
  --mist: #eef5f4;
  --accent: #02aef0;
  --accent-dark: #037cad;
  --accent-soft: rgba(2, 174, 240, 0.14);
  --teal: var(--accent);
  --teal-dark: var(--accent-dark);
  --amber: #f4b740;
  --coral: #e85d4f;
  --muted: rgba(17, 19, 24, 0.7);
  --line: rgba(17, 19, 24, 0.14);
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
  border: 1px solid rgba(2, 174, 240, 0.36);
  border-radius: 10px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(2, 174, 240, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: rgba(17, 19, 24, 0.68);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 10px;
  border-radius: 999px;
  color: rgba(17, 19, 24, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(2, 174, 240, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.text-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(2, 174, 240, 0.35);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: var(--teal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--accent);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(2, 174, 240, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(2, 174, 240, 0.34);
}

.button-small {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.88rem;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 60svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/hero-desktop.png");
  background-position: center center;
  background-size: cover;
}

.hero::after {
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 13, 20, 0.88), rgba(8, 13, 20, 0.38) 62%, rgba(8, 13, 20, 0.08)),
    linear-gradient(0deg, rgba(8, 13, 20, 0.52), rgba(8, 13, 20, 0.02) 52%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-items: end;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-ink .eyebrow,
.section-contrast .eyebrow,
.hero .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 4.55rem;
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.7rem;
  line-height: 1.03;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.after-booking-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  width: min(var(--max), calc(100% - 48px));
  margin: 28px auto 0;
  padding: 28px 30px;
  border: 1px solid rgba(214, 219, 216, 0.86);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 238, 0.94));
  box-shadow: 0 28px 70px rgba(17, 19, 24, 0.16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.after-booking-band h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
  line-height: 1.08;
}

.after-booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.after-booking-steps a {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-height: 166px;
  padding: 16px;
  border: 1px solid rgba(214, 219, 216, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.after-booking-steps a::before {
  position: absolute;
  top: 35px;
  left: 58px;
  right: -12px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: rgba(2, 174, 240, 0.22);
}

.after-booking-steps li:nth-child(2) a::before {
  background: rgba(2, 174, 240, 0.3);
}

.after-booking-steps li:last-child a::before {
  display: none;
}

.after-booking-steps a:hover,
.after-booking-steps a:focus-visible {
  border-color: rgba(2, 174, 240, 0.3);
  background: var(--white);
  transform: translateY(-2px);
}

.step-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(2, 174, 240, 0.24);
}

.after-booking-steps li:nth-child(2) .step-marker {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(2, 174, 240, 0.26);
}

.after-booking-steps li:nth-child(3) .step-marker {
  background: var(--accent-dark);
  box-shadow: 0 10px 22px rgba(2, 174, 240, 0.22);
}

.step-copy,
.step-copy strong,
.step-copy span {
  display: block;
}

.step-copy {
  padding-top: 0;
}

.step-copy strong {
  color: var(--ink);
  font-size: 1rem;
}

.step-copy span {
  max-width: 24ch;
  margin-top: 6px;
  color: rgba(17, 19, 24, 0.68);
  font-size: 0.94rem;
  line-height: 1.35;
}

.hero-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(17, 19, 24, 0.68);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.hero-card h2 {
  margin-bottom: 18px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.hero-card-note {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.hero-card-stack {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-card-stack a {
  display: grid;
  gap: 4px;
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(244, 183, 64, 0.72);
}

.hero-card-stack strong {
  color: var(--white);
}

.hero-card-stack span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.45);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 48px));
  margin: -28px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.conversion-strip a {
  min-height: 112px;
  padding: 20px 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.conversion-strip a:nth-child(2) {
  background: var(--mist);
}

.conversion-strip a:last-child {
  border-right: 0;
}

.conversion-strip strong,
.conversion-strip span {
  display: block;
}

.conversion-strip strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.conversion-strip span {
  color: rgba(17, 19, 24, 0.72);
}

.first-visit-section {
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}

.first-visit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.first-visit-grid article {
  min-height: 272px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 19, 24, 0.08);
}

.first-visit-grid article:first-child {
  color: var(--white);
  background: var(--ink);
}

.first-visit-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--amber);
  font-weight: 950;
}

.first-visit-grid article:not(:first-child) span {
  color: var(--white);
  background: var(--teal-dark);
}

.first-visit-grid p {
  color: rgba(17, 19, 24, 0.68);
}

.first-visit-grid article:first-child p {
  color: rgba(255, 255, 255, 0.74);
}

.section,
.split-section,
.booking-section,
.visit-section {
  scroll-margin-top: 88px;
  padding: 92px 24px;
}

.section-light {
  background: var(--paper);
}

.section-white {
  background: var(--white);
}

.section-ink {
  color: var(--white);
  background: var(--ink);
}

.section-contrast {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 24, 0.96), rgba(12, 64, 62, 0.94)),
    url("assets/interior.jpg") center / cover;
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  width: min(var(--max), 100%);
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  color: rgba(17, 19, 24, 0.7);
  font-size: 1.08rem;
}

.section-ink .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.section-contrast .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.offer-card,
.price-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.offer-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  padding: 24px;
}

.offer-card-featured {
  color: var(--white);
  background: var(--ink);
}

.tag {
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card p {
  color: rgba(17, 19, 24, 0.68);
}

.offer-card-featured p {
  color: rgba(255, 255, 255, 0.74);
}

.offer-card a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.offer-card-featured a {
  color: var(--amber);
}

.local-search-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(2, 174, 240, 0.13), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(232, 93, 79, 0.12), transparent 28%),
    var(--white);
}

.search-intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.search-intent-grid article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 19, 24, 0.09);
}

.search-intent-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 950;
}

.search-intent-grid article:nth-child(2) span {
  background: var(--teal-dark);
}

.search-intent-grid article:nth-child(3) span {
  background: var(--coral);
}

.search-intent-grid article:nth-child(4) span {
  color: var(--ink);
  background: var(--amber);
}

.search-intent-grid p {
  color: rgba(17, 19, 24, 0.68);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: 48px;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.split-section#eye-tests {
  position: relative;
  padding-top: 104px;
}

.split-section#eye-tests::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  content: "";
  background:
    linear-gradient(180deg, rgba(248, 245, 238, 0.92) 0%, rgba(255, 255, 255, 0.98) 42%, var(--white) 100%);
}

.split-section-alt {
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.split-copy p:not(.eyebrow) {
  color: rgba(17, 19, 24, 0.72);
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  box-shadow: inset 0 0 0 4px var(--paper);
}

.image-panel {
  position: relative;
}

.image-panel img,
.image-collage img,
.frames-showcase img,
.visit-section img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-panel img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.stat-tile {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 178px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(17, 19, 24, 0.26);
}

.stat-tile strong,
.stat-tile span {
  display: block;
}

.stat-tile strong {
  color: var(--amber);
  font-size: 2.1rem;
  line-height: 1;
}

.strong {
  font-weight: 900;
}

.frames-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.frames-showcase img {
  height: 100%;
  min-height: 520px;
}

.brand-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brand-price-grid div {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.brand-price-grid strong {
  color: var(--white);
}

.brand-price-grid span {
  color: var(--amber);
  font-weight: 900;
}

.style-finder {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 20px;
  width: min(var(--max), 100%);
  margin: 28px auto 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.style-finder h3 {
  font-size: 1.65rem;
}

.style-finder p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.style-finder-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.style-finder-controls button {
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 950;
  cursor: pointer;
}

.style-finder-controls button:hover,
.style-finder-controls button:focus-visible,
.style-finder-controls button.is-selected {
  color: var(--ink);
  background: var(--amber);
}

.style-result {
  grid-column: 1 / -1;
  min-height: 74px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--amber);
  font-weight: 950;
}

.price-layout,
.review-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: 16px;
}

.price-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px;
}

.price {
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
}

.price-card p:not(.price) {
  color: rgba(17, 19, 24, 0.72);
}

.price-cta {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(2, 174, 240, 0.35);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.lens-table-wrap {
  width: min(var(--max), 100%);
  margin: 28px auto 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.lens-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.lens-table caption {
  padding: 20px 20px 4px;
  text-align: left;
  font-weight: 950;
}

.lens-table th,
.lens-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.lens-table th {
  color: rgba(17, 19, 24, 0.64);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.lens-table tr:last-child td {
  border-bottom: 0;
}

.image-collage {
  position: relative;
  min-height: 520px;
}

.collage-main {
  height: 470px;
  box-shadow: var(--shadow);
}

.collage-small {
  position: absolute;
  right: 28px;
  bottom: 0;
  width: 220px;
  aspect-ratio: 1;
  border: 8px solid var(--paper);
  box-shadow: 0 20px 46px rgba(17, 19, 24, 0.22);
}

.tour-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(2, 174, 240, 0.1), transparent 28%),
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}

.tour-viewer {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.68fr);
  gap: 20px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.tour-stage {
  display: grid;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.tour-stage img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.tour-stage figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px 18px;
  align-items: center;
  padding: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(2, 174, 240, 0.08), transparent 58%),
    var(--white);
}

.tour-stage figcaption > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-stage h3 {
  margin: 0;
  font-size: 1.55rem;
}

.tour-stage p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.tour-stage .button {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
}

.tour-room-list {
  display: grid;
  gap: 10px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

.tour-room-list button {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 7px 12px;
  align-items: center;
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.tour-room-list button::before {
  content: '';
  display: block;
  grid-row: 1 / span 2;
  width: 84px;
  height: 62px;
  border: 2px solid transparent;
  border-radius: 6px;
  background-image: var(--tour-thumb);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.1);
}

.tour-room-list button:hover,
.tour-room-list button:focus-visible,
.tour-room-list button.is-active {
  border-color: rgba(2, 174, 240, 0.35);
  background: var(--white);
  transform: translateY(-1px);
}

.tour-room-list button.is-active::before {
  border-color: var(--amber);
}

.tour-room-list span {
  display: inline-flex;
  width: max-content;
  min-height: 23px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(2, 174, 240, 0.12);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-room-list button.is-active span {
  color: var(--ink);
  background: var(--amber);
}

.tour-room-list strong {
  align-self: start;
  font-size: 0.98rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(960px, 100%);
  margin: 0 auto;
}

.comparison-column {
  padding: 28px;
  border-radius: var(--radius);
}

.comparison-column h3 {
  font-size: 1.45rem;
}

.comparison-column ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-column li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.comparison-column li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
}

.comparison-muted {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.comparison-muted li::before {
  background: rgba(255, 255, 255, 0.34);
}

.comparison-featured {
  color: var(--ink);
  background: var(--amber);
}

.comparison-featured li {
  color: rgba(17, 19, 24, 0.78);
  font-weight: 800;
}

.comparison-featured li::before {
  background: var(--teal-dark);
}

.review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card {
  min-height: 250px;
  margin: 0;
  padding: 24px;
  background: var(--paper);
}

.review-card blockquote {
  margin: 0 0 20px;
  color: rgba(17, 19, 24, 0.78);
  font-size: 1.04rem;
}

.review-card figcaption {
  color: var(--ink);
  font-weight: 950;
}

.reviews-engine {
  background: linear-gradient(180deg, var(--white) 0%, #f7f3ea 100%);
}

.reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: end;
  width: min(var(--max), 100%);
  margin: 0 auto 28px;
}

.reviews-hero h2 {
  max-width: 820px;
}

.reviews-hero p:not(.eyebrow),
.review-growth-panel p {
  color: rgba(17, 19, 24, 0.7);
  font-size: 1.06rem;
}

.review-score-card {
  padding: 24px;
  border: 1px solid rgba(244, 183, 64, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 247, 223, 0.96), rgba(255, 255, 255, 0.98));
  color: var(--ink);
  box-shadow: 0 22px 58px rgba(17, 19, 24, 0.12);
}

.review-score-card strong {
  display: block;
  margin: 18px 0 2px;
  color: var(--teal-dark);
  font-size: 4.2rem;
  line-height: 0.9;
}

.review-score-card p {
  margin: 8px 0 0;
  color: rgba(17, 19, 24, 0.68);
  font-weight: 800;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.live-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.star-row {
  color: var(--amber);
  font-size: 1.18rem;
  letter-spacing: 0;
}

.review-console {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(17, 19, 24, 0.1);
}

.review-console-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.review-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-tabs button {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(17, 19, 24, 0.72);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.review-tabs button:hover,
.review-tabs button:focus-visible,
.review-tabs button.is-selected {
  color: var(--white);
  background: var(--teal-dark);
}

.review-showing {
  margin: 0;
  color: rgba(17, 19, 24, 0.58);
  font-size: 0.9rem;
  font-weight: 850;
}

.review-source-note {
  margin: 0;
  color: rgba(17, 19, 24, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
}

.review-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.review-stat-grid div {
  min-height: 106px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.review-stat-grid strong,
.review-stat-grid span {
  display: block;
}

.review-stat-grid strong {
  color: var(--teal-dark);
  font-size: 1.75rem;
  line-height: 1;
}

.review-stat-grid span {
  margin-top: 10px;
  color: rgba(17, 19, 24, 0.66);
  font-weight: 800;
}

.live-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.live-review-grid.is-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(760px, 100%);
}

.live-review-card {
  display: grid;
  min-height: 252px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.live-review-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.reviewer {
  display: flex;
  gap: 10px;
  align-items: center;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(2, 174, 240, 0.22);
  color: var(--teal-dark);
  background: rgba(2, 174, 240, 0.14);
  font-size: 1rem;
  font-weight: 950;
}

.live-review-card:nth-child(3n + 2) .review-avatar {
  border-color: rgba(244, 183, 64, 0.42);
  color: #765006;
  background: rgba(244, 183, 64, 0.28);
}

.live-review-card:nth-child(3n + 3) .review-avatar {
  border-color: rgba(232, 93, 79, 0.32);
  color: #8d332a;
  background: rgba(232, 93, 79, 0.16);
}

.reviewer strong,
.reviewer > div > span,
.review-meta strong,
.review-meta span {
  display: block;
}

.reviewer > div > span,
.review-meta span {
  color: rgba(17, 19, 24, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
}

.review-meta {
  text-align: right;
}

.review-meta strong {
  color: var(--amber);
  font-size: 0.9rem;
}

.live-review-card blockquote {
  margin: 0;
  color: rgba(17, 19, 24, 0.78);
  font-size: 1rem;
}

.rating-only-copy {
  margin: 0;
  color: rgba(17, 19, 24, 0.64);
  font-size: 1rem;
  font-weight: 800;
}

.review-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  margin-top: auto;
  padding-top: 18px;
}

.review-chip {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(2, 174, 240, 0.12);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-card-footer a {
  color: var(--ink);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(2, 174, 240, 0.35);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.review-load-more-row {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.review-load-more[hidden] {
  display: none;
}

.review-load-more:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.review-growth-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 230px minmax(260px, 0.9fr);
  gap: 20px;
  align-items: center;
  width: min(var(--max), 100%);
  margin: 28px auto 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 24, 0.96), rgba(12, 64, 62, 0.94)),
    url("assets/team-mayor.jpg") center / cover;
}

.review-growth-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.review-growth-panel h3 {
  font-size: 1.75rem;
}

.review-qr-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.review-qr-card span {
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-qr-card a {
  color: var(--teal-dark);
  font-weight: 950;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(6, 13px);
  gap: 4px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
}

.qr-grid i {
  display: block;
  width: 13px;
  height: 13px;
  background: var(--ink);
}

.qr-grid i:nth-child(2n),
.qr-grid i:nth-child(5n),
.qr-grid i:nth-child(11),
.qr-grid i:nth-child(17),
.qr-grid i:nth-child(23),
.qr-grid i:nth-child(31) {
  background: var(--white);
}

.review-flow-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-flow-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.review-flow-list li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.faq-grid details {
  min-height: 72px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-grid details[open] {
  min-height: 150px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.faq-grid summary::marker {
  color: var(--teal-dark);
}

.faq-grid p {
  margin: 14px 0 0;
  color: rgba(17, 19, 24, 0.7);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  gap: 56px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 38%, rgba(2, 174, 240, 0.22), transparent 30%),
    linear-gradient(rgba(17, 19, 24, 0.86), rgba(17, 19, 24, 0.9)),
    url("assets/shop-night.jpg") center / cover;
}

.booking-copy,
.lead-form {
  width: min(560px, 100%);
}

.booking-copy {
  justify-self: end;
}

.booking-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.direct-contact a {
  color: var(--amber);
  font-size: 1.1rem;
  font-weight: 950;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 247, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.lead-form-header {
  display: grid;
  gap: 8px;
  padding-bottom: 6px;
}

.lead-form-header h3,
.lead-form-header p {
  margin: 0;
}

.lead-form-header h3 {
  font-size: 1.55rem;
}

.lead-form-header p {
  max-width: 48ch;
  color: rgba(17, 19, 24, 0.68);
}

.form-kicker {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-field-full {
  grid-column: 1 / -1;
}

.lead-form label,
.lead-form label span {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: rgba(17, 19, 24, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(17, 19, 24, 0.16);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  font-weight: 750;
}

.lead-form textarea {
  min-height: 104px;
  padding: 14px;
  line-height: 1.45;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(2, 174, 240, 0.62);
  outline: 3px solid rgba(2, 174, 240, 0.16);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(17, 19, 24, 0.44);
}

.lead-form select option {
  color: var(--ink);
}

.day-picker {
  position: relative;
  z-index: 8;
}

.day-picker summary {
  display: grid;
  gap: 8px;
  list-style: none;
  cursor: pointer;
}

.day-picker summary::-webkit-details-marker {
  display: none;
}

.day-picker summary > span {
  color: rgba(17, 19, 24, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
}

.day-picker summary strong {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(17, 19, 24, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-weight: 850;
}

.day-picker summary strong::after {
  position: absolute;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.day-picker[open] summary strong {
  border-color: rgba(2, 174, 240, 0.62);
  outline: 3px solid rgba(2, 174, 240, 0.16);
}

.day-picker[open] summary strong::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.day-picker-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 56px rgba(17, 19, 24, 0.18);
}

.day-picker-panel label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: var(--radius);
  color: rgba(17, 19, 24, 0.78);
  background: rgba(248, 245, 238, 0.72);
  font-size: 0.86rem;
  font-weight: 850;
}

.day-picker-panel label:first-child {
  grid-column: 1 / -1;
}

.day-picker-panel label:has(input:checked) {
  border-color: rgba(2, 174, 240, 0.38);
  color: var(--ink);
  background: rgba(2, 174, 240, 0.1);
}

.day-picker-panel input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--teal-dark);
}

.form-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: -2px 0 2px;
  padding: 0;
  list-style: none;
}

.form-assurance li {
  position: relative;
  padding: 10px 10px 10px 26px;
  border: 1px solid rgba(2, 174, 240, 0.16);
  border-radius: var(--radius);
  color: rgba(17, 19, 24, 0.74);
  background: rgba(2, 174, 240, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
}

.form-assurance li::before {
  position: absolute;
  top: 15px;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-dark);
  content: "";
}

.form-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: rgba(17, 19, 24, 0.76);
  background: rgba(251, 188, 64, 0.16);
  font-size: 0.9rem;
  font-weight: 750;
}

.form-note.is-success {
  color: #06483f;
  background: rgba(2, 174, 240, 0.16);
}

.privacy-note {
  margin: 0;
  color: rgba(17, 19, 24, 0.56);
  font-size: 0.78rem;
}

.privacy-note a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.visit-details p:not(.eyebrow) {
  color: rgba(17, 19, 24, 0.7);
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}

.transport-grid div {
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.transport-grid strong,
.transport-grid span {
  display: block;
}

.transport-grid span {
  margin-top: 8px;
  color: rgba(17, 19, 24, 0.68);
}

.visit-section img {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-hero {
  padding: 86px 24px 48px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 24, 0.96), rgba(12, 64, 62, 0.92)),
    url("assets/shop-front.jpg") center / cover;
}

.legal-hero-inner {
  width: min(940px, 100%);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 840px;
  font-size: 4rem;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.legal-meta span,
.legal-meta a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.42);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 850;
}

.legal-content {
  display: grid;
  gap: 18px;
  width: min(940px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 96px;
}

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 19, 24, 0.06);
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: 1.9rem;
}

.legal-card h3 {
  margin-top: 22px;
}

.legal-card p,
.legal-card li {
  color: rgba(17, 19, 24, 0.72);
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-callout {
  border-color: rgba(244, 183, 64, 0.58);
  background: #fff7df;
}

.mobile-booking-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.26);
}

.mobile-booking-bar a {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--ink);
  background: #e8f8ff;
  border-right: 1px solid rgba(2, 174, 240, 0.32);
  font-weight: 950;
}

.mobile-booking-bar a:nth-child(2) {
  color: var(--ink);
  background: var(--accent);
}

.mobile-booking-bar a:last-child {
  border-right: 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .site-header.is-open .site-nav {
    gap: 2px;
    padding-top: 8px;
  }

  .site-header.is-open .site-nav a {
    border-radius: var(--radius);
  }

  .site-header.is-open .header-actions {
    padding-bottom: 16px;
  }

  .legal-page .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 18px;
  }

  .legal-page .site-nav,
  .legal-page .header-actions {
    display: flex;
    grid-column: 1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .legal-page .header-actions .button {
    display: none;
  }

  .offer-grid,
  .first-visit-grid,
  .review-grid,
  .search-intent-grid,
  .live-review-grid,
  .review-stat-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content,
  .after-booking-band,
  .reviews-hero,
  .split-section,
  .split-section-alt,
  .frames-showcase,
  .style-finder,
  .tour-viewer,
  .comparison-grid,
  .review-growth-panel,
  .booking-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-media {
    background-image: url("assets/hero-mobile.png");
    background-position: center top;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(8, 13, 20, 0.22), rgba(8, 13, 20, 0.62) 44%, rgba(8, 13, 20, 0.86)),
      linear-gradient(90deg, rgba(8, 13, 20, 0.62), rgba(8, 13, 20, 0.2));
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    gap: 18px;
    padding: 34svh 0 112px;
  }

  .hero-card {
    padding: 18px;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-ghost {
    display: none;
  }

  .after-booking-band {
    width: min(100% - 32px, var(--max));
    margin-top: 22px;
    padding: 18px;
  }

  .after-booking-band h2 {
    font-size: 1.7rem;
  }

  .after-booking-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .after-booking-steps a {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .after-booking-steps a::before {
    display: none;
  }

  .step-copy {
    padding-top: 1px;
  }

  .step-copy span {
    max-width: none;
  }

  .conversion-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: -18px;
  }

  .conversion-strip a {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .split-section,
  .booking-section,
  .visit-section {
    scroll-margin-top: 76px;
    padding: 68px 16px;
  }

  .booking-section {
    gap: 28px;
  }

  .lead-form {
    padding: 18px;
  }

  .lead-field-grid,
  .form-assurance {
    grid-template-columns: 1fr;
  }

  .split-section#eye-tests {
    padding-top: 78px;
  }

  .split-section,
  .split-section-alt,
  .visit-section {
    width: min(100% - 28px, var(--max));
  }

  .offer-grid,
  .first-visit-grid,
  .price-layout,
  .review-grid,
  .transport-grid,
  .brand-price-grid,
  .search-intent-grid,
  .review-stat-grid,
  .live-review-grid,
  .style-finder-controls,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .review-console {
    padding: 14px;
  }

  .review-console-top {
    align-items: stretch;
    flex-direction: column;
  }

  .review-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-tabs button {
    border-radius: var(--radius);
  }

  .review-showing {
    font-size: 0.86rem;
  }

  .review-score-card strong {
    font-size: 3.1rem;
  }

  .live-review-grid.is-compact {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .live-review-card {
    min-height: auto;
  }

  .live-review-card header {
    flex-direction: column;
  }

  .review-meta {
    text-align: left;
  }

  .review-growth-panel {
    padding: 18px;
  }

  .review-qr-card {
    justify-items: start;
  }

  .search-intent-grid article,
  .first-visit-grid article {
    min-height: auto;
  }

  .search-intent-grid span,
  .first-visit-grid span {
    margin-bottom: 24px;
  }

  .style-finder {
    padding: 18px;
  }

  .frames-showcase img {
    min-height: 340px;
  }

  .tour-stage,
  .tour-stage img {
    min-height: 420px;
  }

  .tour-stage img {
    height: 420px;
  }

  .tour-stage figcaption {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tour-stage p,
  .tour-stage .button {
    grid-column: auto;
    grid-row: auto;
  }

  .tour-room-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding: 0 0 6px;
  }

  .tour-room-list button {
    min-width: 244px;
  }

  .image-collage {
    min-height: auto;
  }

  .collage-main {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .collage-small {
    position: static;
    width: 100%;
    margin-top: 14px;
    border: 0;
  }

  .stat-tile {
    right: 12px;
    bottom: 12px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 86px;
  }

  .footer-links {
    justify-content: start;
    flex-wrap: wrap;
  }

  .legal-hero {
    padding: 64px 16px 36px;
  }

  .legal-hero h1 {
    font-size: 2.7rem;
  }

  .legal-content {
    width: min(100% - 28px, var(--max));
    padding: 38px 0 86px;
  }

  .legal-card {
    padding: 20px;
  }

  .mobile-booking-bar {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.7rem;
  }

  .hero-proof span {
    width: 100%;
  }

  .stat-tile {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
}
