:root {
  --ink: #15110f;
  --paper: #fff8ef;
  --surface: #fff;
  --muted: #766a62;
  --line: rgba(39, 29, 24, 0.14);
  --gold: #f3cf72;
  --red: #be102f;
  --red-deep: #8f0c24;
  --shadow: 0 26px 70px rgba(25, 16, 10, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-header {
  position: absolute;
  z-index: 10;
  top: env(safe-area-inset-top, 0);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 48px) clamp(28px, 5vw, 64px) 0;
  color: #fff;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.44);
}
.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}
.brand-sub {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(18px, 2.4vw, 28px);
}
.menu-button {
  display: grid;
  gap: 8px;
  width: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.42);
}
.global-menu {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(0,0,0,.54);
}
.global-menu[hidden] { display: none; }
.global-menu__panel {
  position: absolute;
  top: 22px;
  right: clamp(18px, 4vw, 54px);
  width: min(360px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(243, 207, 114, .42);
  border-radius: 14px;
  background: rgba(20, 14, 12, .96);
  color: #fff;
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
}
.global-menu__panel a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-weight: 800;
}
.global-menu__panel a:last-child { border-bottom: 0; }
.global-menu__panel a:hover { color: var(--gold); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #070504;
  color: #fff;
}
.hero-bg,
.hero-bg img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  object-fit: cover;
  object-position: 50% 52%;
}
.hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.08) 34%, rgba(0,0,0,.16) 58%, rgba(0,0,0,.88) 100%),
    radial-gradient(circle at 50% 56%, rgba(184, 8, 35, .16), transparent 28%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding-top: clamp(150px, 24svh, 240px);
  text-align: center;
  text-shadow: 0 14px 36px rgba(0,0,0,.7);
}
.hero-proof {
  margin: 0 0 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 3.6vw, 38px);
  font-weight: 700;
}
.hero h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(40px, 6.9vw, 84px);
  line-height: 1.18;
}
.mobile-break { display: none; }
.hero-bottom {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: max(42px, env(safe-area-inset-bottom));
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  width: min(100% - 32px, 840px);
  margin: 0 auto;
}
.feature-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-pills li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 9px 14px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
  color: var(--gold);
  font-size: clamp(13px, 1.7vw, 18px);
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}
.feature-pills svg,
.type-badge svg,
.appeal-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.feature-pills svg { width: 28px; height: 28px; }
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(58px, 6vw, 72px);
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  background: linear-gradient(135deg, #ce1236, #b30d2f 54%, #990821);
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 700;
  box-shadow: 0 22px 50px rgba(152, 8, 34, .44);
}

.lead-section,
.proof-section,
.plans-section,
.voice-section {
  padding: clamp(82px, 10vw, 132px) 0;
}
.lead-section {
  background: linear-gradient(180deg, #fff8ef 0%, #fff2e5 100%);
}
.lead-head {
  max-width: 880px;
  margin-bottom: clamp(34px, 6vw, 64px);
}
.kicker,
.mini-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 4.1vw, 52px);
  line-height: 1.36;
}
.lead-head p:not(.kicker),
.proof-copy > p,
.section-lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.illustration-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 clamp(34px, 5vw, 58px);
}
.illustration-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(39, 29, 24, .12);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: 0 16px 44px rgba(25, 16, 10, 0.08);
}
.illustration-strip img {
  width: 100%;
  aspect-ratio: 4 / 2.65;
  object-fit: contain;
  background: #fff;
}
.illustration-strip figcaption {
  padding: 0 18px 16px;
  color: var(--red-deep);
  font-weight: 900;
}
.concierge-showcase {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
}
.concierge-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.concierge-flow article {
  position: relative;
  min-height: 158px;
  padding: 26px 28px 26px 92px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 48px rgba(25, 16, 10, 0.08);
}
.concierge-flow span {
  position: absolute;
  top: 26px;
  left: 28px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.concierge-flow h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}
.concierge-flow p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.concierge-voices {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(39, 29, 24, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,248,239,.94)), var(--surface);
  box-shadow: var(--shadow);
}
.concierge-voices h3 {
  margin: 0 0 20px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.35;
}
.stars {
  color: #b48a4a;
  font-size: 14px;
  letter-spacing: 0;
}
blockquote {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.text-link {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.review-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.review-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #17110f;
  color: #fff;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 30px rgba(25, 16, 10, .14);
}
.review-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.review-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 32%, rgba(0,0,0,.78) 100%);
}
.review-tile:hover img { transform: scale(1.04); }
.review-tile .stars,
.review-tile strong {
  position: absolute;
  z-index: 2;
  left: 10px;
  right: 10px;
}
.review-tile .stars {
  bottom: 36px;
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
}
.review-tile strong {
  bottom: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

.proof-section {
  background: #17110f;
  color: #fff;
  overflow: hidden;
}
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.proof-copy .kicker { color: var(--gold); }
.proof-copy p { color: rgba(255,255,255,.72); }
.proof-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.proof-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.proof-list span {
  display: inline-flex;
  min-width: 54px;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: #17110f;
  font-size: 12px;
  font-weight: 900;
}
.proof-mosaic {
  position: relative;
  min-height: 520px;
}
.proof-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0,0,0,.36);
}
.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-photo--1 { left: 6%; top: 0; width: 54%; height: 48%; }
.proof-photo--2 { right: 0; top: 10%; width: 42%; height: 34%; }
.proof-photo--3 { left: 0; bottom: 4%; width: 40%; height: 38%; }
.proof-photo--4 { left: 34%; bottom: 0; width: 48%; height: 44%; }
.proof-photo--5 { right: 6%; bottom: 22%; width: 28%; height: 26%; }

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-band div {
  padding: clamp(24px, 4vw, 42px);
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-band strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}
.trust-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 900;
}

.section-head {
  margin-bottom: 28px;
  text-align: center;
}
.voice-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  text-align: left;
}
.voice-head .section-lead {
  max-width: 470px;
  margin: 0;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}
.filter {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}
.filter.is-active {
  background: var(--ink);
  color: #fff;
}
.count {
  margin: 0 0 24px;
  color: var(--muted);
  text-align: center;
  font-weight: 900;
}
.plan-grid {
  display: grid;
  gap: 16px;
}
.plan-group-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 0 2px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(39, 29, 24, .18);
}
.plan-group-title:first-child { margin-top: 0; }
.plan-group-title span {
  order: 2;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.plan-group-title h3 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
}
.plan-card {
  display: grid;
  grid-template-columns: minmax(500px, 1.08fr) minmax(0, .92fr) 240px;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 44px rgba(25, 16, 10, 0.11);
}
.card-gallery {
  position: relative;
  background: #170f0c;
}
.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.plan-card .card-image {
  height: 100%;
  min-height: 390px;
  aspect-ratio: auto;
}
.slide-btn {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.slide-btn--prev { left: 10px; }
.slide-btn--next { right: 10px; }
.slide-count {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.thumb-strip {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
}
.thumb-button {
  position: relative;
  height: 58px;
  padding: 0;
  border: 0;
  background: rgba(0,0,0,.4);
  cursor: pointer;
  overflow: hidden;
}
.thumb-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
}
.thumb-button.is-active::after { border-color: var(--gold); }
.thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}
.thumb-button.is-active img { opacity: 1; }
.card-body {
  padding: 34px 34px;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.type-badge,
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}
.type-badge svg {
  width: 18px;
  height: 18px;
}
.type-badge--hotel { background: #17110f; color: #fff; }
.type-badge--restaurant { background: #7b1020; color: #fff; }
.area-badge { background: #f4e7df; color: var(--red); }
.plan-card h3,
.voice-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.45;
}
.catch {
  margin: 10px 0 0;
  color: var(--red-deep);
  font-weight: 900;
}
.desc,
.voice-card blockquote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}
.price-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 30px 26px;
  border-left: 1px solid var(--line);
  background: #fffaf3;
  text-align: right;
}
.price-note {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
}
.price-panel strong {
  font-size: 30px;
  line-height: 1.2;
}
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 10px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.voice-section {
  background: #f6eee6;
}
.voice-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x mandatory;
}
.voice-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 14px 42px rgba(25, 16, 10, 0.12);
  scroll-snap-align: start;
}
.voice-card .card-image { height: 220px; }
.voice-card .card-body { padding: 20px; }

.site-footer {
  padding: 34px 0 38px;
  background: #0f0b0a;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  flex: 0 0 auto;
}
.footer-brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}
.footer-brand small {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}
.footer-links a {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
}
.footer-links a:hover { color: var(--gold); }

.voice-modal {
  width: min(760px, calc(100% - 28px));
  max-height: min(760px, calc(100svh - 28px));
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0,0,0,.36);
}
.voice-modal::backdrop { background: rgba(0,0,0,.62); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}
.modal-content {
  overflow: auto;
  max-height: min(760px, calc(100svh - 28px));
}
.modal-content img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.modal-content .stars,
.modal-content p {
  margin-left: clamp(22px, 4vw, 42px);
  margin-right: clamp(22px, 4vw, 42px);
}
.modal-content .stars { margin-top: 28px; }
.modal-content p {
  margin-top: 12px;
  margin-bottom: 42px;
  color: var(--muted);
  font-weight: 700;
}

@media (min-width: 1100px) {
  .hero { min-height: 900px; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.36) 32%, rgba(0,0,0,.42) 58%, rgba(0,0,0,.9) 100%),
      radial-gradient(circle at 50% 48%, rgba(0, 0, 0, .38), rgba(0,0,0,.08) 26%, transparent 48%),
      radial-gradient(circle at 50% 56%, rgba(184, 8, 35, .16), transparent 28%);
  }
}

@media (max-width: 980px) {
  .concierge-showcase,
  .proof-layout,
  .illustration-strip {
    grid-template-columns: 1fr;
  }
  .concierge-flow {
    grid-template-columns: 1fr;
  }
  .proof-mosaic { min-height: 430px; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .plan-card {
    display: block;
    min-height: 0;
  }
  .plan-card .card-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .thumb-strip {
    position: static;
    padding: 5px;
    background: #17110f;
  }
  .thumb-button { height: 46px; }
  .price-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }
  .plan-group-title { display: block; }
  .plan-group-title span {
    display: block;
    margin-bottom: 8px;
  }
  .voice-head {
    display: block;
    text-align: center;
  }
  .voice-head .section-lead {
    max-width: none;
    margin-top: 16px;
  }
  .footer-layout {
    display: grid;
    gap: 22px;
  }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .hero-header {
    padding-left: 28px;
    padding-right: 28px;
  }
  .brand-main { font-size: 34px; }
  .brand-sub { font-size: 22px; }
  .menu-button {
    width: 42px;
    gap: 6px;
  }
  .menu-button span { height: 3px; }
  .hero-bg img { object-position: 50% 50%; }
  .hero-copy {
    width: calc(100% - 34px);
    padding-top: 20svh;
  }
  .mobile-break { display: inline; }
  .hero h1 { font-size: clamp(34px, 9vw, 46px); }
  .hero-proof { font-size: clamp(18px, 1vw, 30px); }
  .hero-bottom {
    width: calc(100% - 34px);
    bottom: 30px;
    gap: 18px;
  }
  .feature-pills { gap: 8px; }
  .feature-pills li {
    min-height: 54px;
    padding: 8px 6px;
    font-size: 12px;
    flex-direction: column;
    gap: 4px;
  }
  .feature-pills svg { width: 23px; height: 23px; }
  .hero-cta {
        min-height: 50px;
        max-width: 100%;
        font-size: 20px;
        border-radius: 10px;

  }
  .lead-section,
  .proof-section,
  .plans-section,
  .voice-section {
    padding: 70px 0;
  }
  .lead-head { margin-bottom: 28px; }
  .concierge-flow article {
    min-height: auto;
    padding: 22px 20px 22px 78px;
  }
  .concierge-flow span {
    left: 22px;
    font-size: 28px;
  }
  .concierge-voices {
    min-height: auto;
    padding: 18px;
  }
  .review-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 126px;
    gap: 7px;
  }
  .review-tile {
    aspect-ratio: auto;
  }
  .review-tile--1,
  .review-tile--4 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .review-tile--3 { grid-row: span 1; }
  .review-tile .stars {
    bottom: 42px;
    font-size: 10px;
  }
  .review-tile strong {
    bottom: 10px;
    font-size: 12px;
    line-height: 1.25;
  }
  .proof-mosaic { min-height: 360px; }
  .card-body { padding: 18px; }
  .price-panel { padding: 18px; }
  .price-panel strong { font-size: 25px; }
  .card-link { width: 100%; }
  .voice-carousel { grid-auto-columns: minmax(270px, 86vw); }
}
