:root {
  --color-paper: #faf9f7;
  --color-surface: #ffffff;
  --color-cream: #f3ede4;
  --color-cream-deep: #e8dfd3;
  --color-ink: #141a20;
  --color-ink-soft: #3d444b;
  --color-muted: #75716c;
  --color-line: #e5e0d9;
  --color-night: #0c1c2b;
  --color-night-deep: #07131f;
  --color-gold: #9b6b32;
  --color-gold-dark: #8f632e;
  --color-alert: #b5222b;
  --color-app: #087f96;
  --font-display: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", serif;
  --font-body: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --shell: 1120px;
  --hero-shell: 940px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --shadow-panel: 0 18px 48px rgba(5, 16, 27, 0.18);
  --shadow-card: 0 10px 30px rgba(16, 22, 29, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
select {
  cursor: pointer;
}

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

button {
  border: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
p {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid rgba(183, 131, 63, 0.62);
  outline-offset: 4px;
}

.shell,
.content-shell {
  width: min(86vw, var(--shell));
  margin-inline: auto;
}

.hero-shell {
  width: min(76vw, var(--hero-shell));
  margin-inline: auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.only-mobile {
  display: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  background: var(--color-ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 92px;
  border-bottom: 1px solid rgba(20, 26, 32, 0.06);
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  width: min(86vw, var(--shell));
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand__tagline {
  margin-top: 11px;
  color: var(--color-ink-soft);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  color: var(--color-ink-soft);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.header-action--favorite .icon {
  transition: color 180ms ease, fill 180ms ease, transform 180ms ease;
}

.header-action--favorite.is-active .icon {
  color: var(--color-gold-dark);
  fill: var(--color-gold);
  transform: scale(1.08);
}

.site-menu {
  position: relative;
}

.site-menu__trigger {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 10px;
  place-content: center;
  gap: 5px;
  list-style: none;
}

.site-menu__trigger::-webkit-details-marker {
  display: none;
}

.site-menu__trigger span {
  display: block;
  width: 21px;
  height: 1.5px;
  background: var(--color-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-menu[open] .site-menu__trigger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-menu[open] .site-menu__trigger span:nth-child(2) {
  opacity: 0;
}

.site-menu[open] .site-menu__trigger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-menu__panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 260px;
  padding: 12px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.site-menu__panel nav {
  display: grid;
}

.site-menu__panel a {
  padding: 12px 14px;
  border-radius: 7px;
  font-size: 13px;
}

.site-menu__panel a:hover {
  background: var(--color-cream);
}

.hero {
  position: relative;
  min-height: 390px;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(4, 15, 26, 0.76) 0%, rgba(4, 15, 26, 0.42) 46%, rgba(4, 15, 26, 0.2) 78%), linear-gradient(0deg, rgba(4, 15, 26, 0.28), rgba(4, 15, 26, 0.05)), url("../images/hero-tokyo.jpg");
  background-position: center, center, 72% 55%;
  background-size: cover;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 205, 124, 0.72), transparent);
  content: "";
}

.hero__inner {
  position: relative;
  width: min(86vw, var(--shell));
  min-height: 390px;
  padding-top: 44px;
}

.hero__copy {
  animation: hero-arrive 740ms cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

.hero__eyebrow,
.closing-cta__eyebrow {
  margin-bottom: 8px;
  color: #f0c27c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.hero h1 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.1vw, 48px);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0.09em;
  text-wrap: balance;
}

.hero__copy > p:last-child {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.search-panel {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 174px;
  align-items: end;
  gap: 20px;
  min-height: 105px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(10px);
}

.search-panel.is-genre-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr)) 174px;
}

.field-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.field-control {
  position: relative;
  display: flex;
  min-height: 47px;
  align-items: center;
  border: 1px solid #dcdde0;
  border-radius: 7px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field-control:focus-within {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(183, 131, 63, 0.14);
}

.field-control--with-icon .icon {
  margin-left: 14px;
  color: #7d8388;
}

.field-control input,
.field-control select {
  width: 100%;
  min-width: 0;
  height: 45px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.field-control--with-icon input {
  padding-left: 10px;
}

.field-control select {
  cursor: pointer;
}

.field-control input::placeholder {
  color: #9a9da1;
}

.search-button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 7px;
  color: #fff;
  background: var(--color-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 160ms ease, transform 160ms ease;
}

.search-button:hover {
  background: #26323c;
  transform: translateY(-1px);
}

.search-panel__status {
  grid-column: 1/-1;
  height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--color-gold-dark);
  font-size: 11px;
  opacity: 0;
  transition: height 180ms ease, opacity 180ms ease;
}

.search-panel__status.is-visible {
  height: 1.7em;
  opacity: 1;
}

.content-shell {
  padding-top: 28px;
  padding-bottom: 42px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.promo-card {
  position: relative;
  display: flex;
  min-height: 210px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px;
  border: 1px solid rgba(20, 26, 32, 0.08);
  border-radius: 12px;
  background: var(--color-cream);
  box-shadow: 0 4px 18px rgba(19, 24, 29, 0.035);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.promo-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.promo-card--concierge {
  background-image: linear-gradient(90deg, rgba(245, 238, 230, 0.98) 0%, rgba(245, 238, 230, 0.9) 42%, rgba(245, 238, 230, 0.05) 75%), url("../images/concierge.jpg");
  background-position: center, 78% center;
  background-size: cover;
}

.promo-card--night {
  color: #fff;
  background-image: linear-gradient(90deg, rgba(4, 16, 29, 0.88), rgba(4, 16, 29, 0.28)), url("../images/hero-tokyo.jpg");
  background-position: center, 72% center;
  background-size: cover;
}

.promo-card--nearby {
  background-color: #f0e8dc;
  background-image: radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.7) 0 3px, transparent 4px), repeating-linear-gradient(28deg, transparent 0 28px, rgba(160, 139, 111, 0.13) 29px 31px, transparent 32px 58px), repeating-linear-gradient(112deg, transparent 0 37px, rgba(160, 139, 111, 0.11) 38px 40px, transparent 41px 68px);
}

.promo-card--nearby::after {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 75%;
  height: 120%;
  border: 1px solid rgba(151, 127, 96, 0.16);
  border-radius: 48% 52% 58% 42%;
  content: "";
  transform: rotate(16deg);
}

.promo-card--app {
  color: #fff;
  background: radial-gradient(circle at 72% 72%, rgba(183, 131, 63, 0.42), transparent 33%), linear-gradient(135deg, #151715 0%, #080b0d 75%);
}

.promo-card--app::before {
  position: absolute;
  top: -42px;
  right: 24px;
  width: 90px;
  height: 290px;
  border-right: 1px solid rgba(223, 169, 91, 0.8);
  border-radius: 50%;
  content: "";
  transform: rotate(28deg);
}

.promo-card__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.promo-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.promo-card__text {
  font-size: 11px;
  line-height: 1.75;
}

.promo-card__kicker,
.promo-card__pin {
  position: relative;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  place-items: center;
  color: #efc780;
  font-size: 24px;
}

.promo-card__pin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-gold);
  font-size: 15px;
}

.round-arrow {
  position: absolute;
  z-index: 3;
  bottom: 17px;
  left: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  place-items: center;
  transition: transform 180ms ease;
}

.promo-card:hover .round-arrow {
  transform: translateX(3px);
}

.round-arrow .icon {
  width: 16px;
  height: 16px;
}

.round-arrow--dark {
  border-color: var(--color-ink);
  color: #fff;
  background: var(--color-ink);
}

.round-arrow--light {
  border-color: rgba(20, 26, 32, 0.36);
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.82);
}

.app-phone {
  position: absolute;
  right: -18px;
  bottom: -30px;
  display: grid;
  width: 112px;
  height: 205px;
  border: 2px solid #b68a4c;
  border-radius: 20px;
  place-items: center;
  color: var(--color-ink);
  background: #050608;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.48);
  transform: rotate(18deg);
}

.app-phone span {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  place-items: center;
  color: var(--color-gold-dark);
  background: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

.discovery-section {
  padding-top: 42px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.3vw, 27px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section-heading a {
  flex: 0 0 auto;
  color: var(--color-ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.section-heading a span {
  margin-left: 7px;
  color: var(--color-gold);
  font-size: 20px;
  vertical-align: -1px;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.discovery-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.discovery-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 9px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.discovery-card:hover {
  border-color: #d2c6b6;
  box-shadow: 0 9px 24px rgba(17, 24, 31, 0.08);
  transform: translateY(-2px);
}

.discovery-card__media {
  display: block;
  aspect-ratio: 1.48/1;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background-color: #d4c7b6;
  transition: filter 180ms ease;
}

.discovery-card:hover .discovery-card__media {
  filter: saturate(1.06) contrast(1.02);
}

.catalog-sprite {
  background-image: url("../images/catalog-grid.jpg"), linear-gradient(135deg, #7c6246, #d7b178);
  background-position: var(--sprite-x) var(--sprite-y), center;
  background-size: 300% auto, cover;
}

.catalog-sprite--1 {
  --sprite-x: 0%;
  --sprite-y: 1.6%;
}

.catalog-sprite--2 {
  --sprite-x: 50%;
  --sprite-y: 1.6%;
}

.catalog-sprite--3 {
  --sprite-x: 100%;
  --sprite-y: 1.6%;
}

.catalog-sprite--4 {
  --sprite-x: 0%;
  --sprite-y: 33.9%;
}

.catalog-sprite--5 {
  --sprite-x: 50%;
  --sprite-y: 33.9%;
}

.catalog-sprite--6 {
  --sprite-x: 100%;
  --sprite-y: 33.9%;
}

.catalog-sprite--7 {
  --sprite-x: 0%;
  --sprite-y: 66.1%;
}

.catalog-sprite--8 {
  --sprite-x: 50%;
  --sprite-y: 66.1%;
}

.catalog-sprite--9 {
  --sprite-x: 100%;
  --sprite-y: 66.1%;
}

.catalog-sprite--10 {
  --sprite-x: 0%;
  --sprite-y: 98.4%;
}

.catalog-sprite--11 {
  --sprite-x: 50%;
  --sprite-y: 98.4%;
}

.catalog-sprite--12 {
  --sprite-x: 100%;
  --sprite-y: 98.4%;
}

.discovery-card__media--nightview {
  background-image: linear-gradient(180deg, rgba(7, 22, 35, 0.04), rgba(7, 22, 35, 0.2)), url("../images/hero-tokyo.jpg");
  background-position: center, 72% center;
  background-size: cover;
}

.area-sprite {
  aspect-ratio: 2/1;
  background-image: url("../images/areas-grid.jpg"), url("../images/hero-tokyo.jpg");
  background-position: var(--sprite-x) var(--sprite-y), 72% center;
  background-size: 300% auto, cover;
}

.area-sprite--1 {
  --sprite-x: 0%;
  --sprite-y: 16.667%;
}

.area-sprite--2 {
  --sprite-x: 50%;
  --sprite-y: 16.667%;
}

.area-sprite--3 {
  --sprite-x: 100%;
  --sprite-y: 16.667%;
}

.area-sprite--4 {
  --sprite-x: 0%;
  --sprite-y: 83.333%;
}

.area-sprite--5 {
  --sprite-x: 50%;
  --sprite-y: 83.333%;
}

.area-sprite--6 {
  --sprite-x: 100%;
  --sprite-y: 83.333%;
}

.discovery-card__body {
  display: grid;
  min-height: 66px;
  align-content: center;
  justify-items: center;
  padding: 8px 6px 9px;
  text-align: center;
}

.discovery-card__body strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.discovery-card__body small {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 10px;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 235px;
  background: linear-gradient(110deg, #f7f0e7, #fff);
}

.closing-cta__image {
  min-height: 235px;
  background-image: linear-gradient(rgba(44, 25, 8, 0.04), rgba(44, 25, 8, 0.04)), url("../images/closing-dinner.jpg"), url("../images/hero-tokyo.jpg");
  background-position: center;
  background-size: cover;
}

.closing-cta__content {
  display: flex;
  max-width: 610px;
  flex-direction: column;
  justify-content: center;
  padding: 36px clamp(28px, 5vw, 72px);
}

.closing-cta__eyebrow {
  color: var(--color-gold-dark);
}

.closing-cta h2 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 500;
  letter-spacing: 0.07em;
}

.closing-cta__content > p:not(.closing-cta__eyebrow) {
  margin-bottom: 18px;
  color: var(--color-ink-soft);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.85;
}

.closing-cta__actions {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 24px;
  border: 1px solid var(--color-ink);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--gold {
  border-color: var(--color-gold);
  color: #fff;
  background: var(--color-gold);
}

.button--gold:hover {
  background: var(--color-gold-dark);
}

.button--outline {
  background: rgba(255, 255, 255, 0.62);
}

.button--outline:hover {
  color: #fff;
  background: var(--color-ink);
}

.site-footer {
  padding-top: 34px;
  background: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.9fr;
  gap: 48px;
  padding-bottom: 28px;
}

.site-footer__brand .brand__name {
  font-size: 25px;
}

.site-footer__brand p {
  margin: 7px 0 0;
  color: var(--color-ink-soft);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.site-footer__brand .site-footer__description {
  margin-top: 16px;
  font-family: var(--font-body);
  line-height: 1.8;
}

.footer-nav,
.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav h2,
.social-links h2 {
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer-nav a {
  padding: 2px 0;
  font-size: 10px;
}

.social-links > div {
  display: flex;
  gap: 13px;
}

.social-links a {
  display: grid;
  width: 35px;
  height: 35px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 9px;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal nav {
  display: flex;
  gap: 34px;
}

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.screen-reader-text {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 249, 247, 0.985);
  box-shadow: 0 8px 32px rgba(6, 18, 29, 0.08);
}

.night-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  overflow: hidden;
  height: 2px;
  pointer-events: none;
}

.night-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6f461e, #e1b56b 62%, #fff2c3);
  box-shadow: 0 0 14px rgba(211, 160, 81, 0.58);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-menu__list,
.footer-nav__list {
  display: grid;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu__list li,
.footer-nav__list li {
  margin: 0;
}

.hero {
  --hero-shift: 0px;
  --spot-x: 72%;
  --spot-y: 44%;
  overflow: hidden;
  background-position: center, center, 72% calc(55% + var(--hero-shift));
}

.hero__inner {
  z-index: 1;
}

.hero__glow {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 207, 126, 0.24), transparent 13%), linear-gradient(112deg, transparent 42%, rgba(248, 208, 139, 0.08) 49%, transparent 56%);
  mix-blend-mode: screen;
  opacity: 0.82;
  pointer-events: none;
  transition: background-position 220ms ease, opacity 220ms ease;
}

.search-panel {
  animation: search-arrive 820ms 120ms cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms cubic-bezier(0.2, 0.72, 0.25, 1), transform 680ms cubic-bezier(0.2, 0.72, 0.25, 1);
  transition-delay: calc(var(--reveal-order, 0) * 65ms);
}

.has-motion [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-hint {
  display: none;
}

html.dialog-open {
  overflow: hidden;
}

.finder-dialog {
  width: min(100% - 32px, 900px);
  max-width: none;
  height: min(100dvh - 56px, 760px);
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  color: var(--color-ink);
  background: var(--color-surface);
  box-shadow: 0 30px 90px rgba(2, 11, 19, 0.38);
}

.finder-dialog[open] {
  animation: dialog-arrive 320ms cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

.finder-dialog::backdrop {
  background: rgba(3, 11, 18, 0.76);
  backdrop-filter: blur(5px);
}

.finder-dialog__shell {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.finder-dialog__header {
  position: relative;
  flex: 0 0 auto;
  padding: 24px 34px 20px;
  color: #fff;
  background: radial-gradient(circle at 82% -80%, rgba(233, 189, 116, 0.36), transparent 43%), var(--color-night);
}

.finder-dialog--night .finder-dialog__header {
  background: radial-gradient(circle at 82% -80%, rgba(147, 112, 207, 0.38), transparent 43%), #101426;
}

.finder-dialog__eyebrow {
  margin: 0 0 4px;
  color: #e5bc79;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.finder-dialog__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.finder-dialog__close {
  position: absolute;
  top: 20px;
  right: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  place-items: center;
  font-size: 25px;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease;
}

.finder-dialog__close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(6deg);
}

.finder-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0 190px 0 0;
  list-style: none;
}

.finder-progress li {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: 8px;
}

.finder-progress li:not(:last-child)::after {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.finder-progress button {
  display: inline-flex;
  min-width: 46px;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: rgba(255, 255, 255, 0.46);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
}

.finder-progress button span {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-family: Arial, sans-serif;
}

.finder-progress button.is-current,
.finder-progress button.is-complete {
  color: #e8bd78;
}

.finder-dialog--night .finder-progress button.is-current,
.finder-dialog--night .finder-progress button.is-complete {
  color: #c9b4f4;
}

.finder-progress button:disabled {
  cursor: not-allowed;
}

.finder-count {
  position: absolute;
  right: 34px;
  bottom: 19px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.finder-count strong {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 25px;
  line-height: 1;
}

.finder-count small {
  margin-left: 3px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
}

.finder-dialog__body {
  flex: 1 1 auto;
  padding: 32px 36px 38px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), radial-gradient(circle at 100% 0, rgba(155, 107, 50, 0.14), transparent 32%), var(--color-paper);
}

.finder-message {
  min-height: 1.6em;
  margin: -10px 0 8px;
  color: var(--color-alert);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.finder-step {
  width: min(100%, 720px);
  margin-inline: auto;
  animation: step-arrive 280ms ease both;
}

.finder-step__number {
  margin: 0 0 7px;
  color: var(--color-gold-dark);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}

.finder-dialog--night .finder-step__number {
  color: #65508c;
}

.finder-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 3.4vw, 30px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-align: center;
}

.finder-step__lead {
  margin: 7px 0 25px;
  color: var(--color-muted);
  font-size: 12px;
  text-align: center;
}

.finder-select-wrap {
  width: min(100%, 430px);
  margin: 0 auto;
}

.finder-select-wrap label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.finder-select-wrap select {
  width: 100%;
  min-height: 54px;
  padding: 12px 45px 12px 15px;
  border: 1px solid #cfc8be;
  border-radius: 9px;
  background: #fff;
  font-size: 15px;
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.finder-options--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.finder-option {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--color-line);
  border-radius: 9px;
  color: var(--color-ink-soft);
  background: #fff;
  box-shadow: 0 4px 15px rgba(15, 21, 27, 0.04);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.finder-option:hover,
.finder-option.is-selected,
.finder-option--check:has(input:checked) {
  border-color: var(--color-gold);
  color: #70481f;
  background: #fbf5eb;
  transform: translateY(-1px);
}

.finder-dialog--night .finder-option:hover,
.finder-dialog--night .finder-option.is-selected,
.finder-dialog--night .finder-option--check:has(input:checked) {
  border-color: #7860a4;
  color: #4e3b70;
  background: #f6f2fc;
}

.finder-option--check {
  cursor: pointer;
}

.finder-option--check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.finder-option--check input:focus-visible + span {
  outline: 3px solid rgba(183, 131, 63, 0.62);
  outline-offset: 5px;
}

.finder-step__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.finder-step__actions--end {
  justify-content: flex-end;
  width: min(100%, 430px);
  margin-inline: auto;
}

.finder-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.finder-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.finder-button--back {
  border-color: #d4cec6;
  background: #fff;
}

.finder-button--primary,
.finder-button--result {
  color: #fff;
  background: var(--color-night);
}

.finder-button--night,
.finder-button--result-night {
  color: #fff;
  background: #26213f;
}

.finder-button--result .icon {
  width: 18px;
  height: 18px;
}

.finder-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.footer-nav a,
.footer-nav__list a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  font-size: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
}

.site-footer__legal {
  font-size: 11px;
}

@media (hover: none) {
  .promo-card:active,
  .discovery-card:active,
  .button:active,
  .inquiry-cta__button:active,
  .store-badge:active,
  .finder-option:active,
  .finder-button:active:not(:disabled) {
    transform: scale(0.985);
  }
}
@keyframes search-arrive {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes dialog-arrive {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes step-arrive {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.bg-primary {
  color: #fff;
}

.site-header__actions {
  gap: 20px;
}

.header-contact-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 17px;
  border: 1px solid var(--color-gold);
  border-radius: 5px;
  color: #fff;
  background: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-contact-cta:hover {
  border-color: var(--color-gold-dark);
  background: var(--color-gold-dark);
  transform: translateY(-1px);
}

.header-contact-cta .icon {
  width: 17px;
  height: 17px;
}

.site-menu__panel a.site-menu__contact {
  margin-top: 6px;
  color: #fff;
  background: var(--color-ink);
}

.site-menu__panel a.site-menu__contact:hover {
  background: #26323c;
}

.inquiry-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 18% 130%, rgba(155, 107, 50, 0.35), transparent 32%), var(--color-night-deep);
}

.inquiry-cta::after {
  position: absolute;
  top: -120px;
  right: 5vw;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(240, 194, 124, 0.18);
  border-radius: 50%;
  content: "";
}

.inquiry-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding-block: 42px;
}

.inquiry-cta__eyebrow,
.app-download__eyebrow,
.contact-guide__eyebrow,
.subpage-hero__eyebrow {
  margin-bottom: 8px;
  color: #f0c27c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.inquiry-cta h2 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.7vw, 34px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.inquiry-cta__inner > div > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.inquiry-cta__button {
  display: inline-flex;
  min-width: 235px;
  min-height: 56px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 23px;
  border: 1px solid rgba(240, 194, 124, 0.72);
  border-radius: 5px;
  color: var(--color-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.inquiry-cta__button:hover {
  color: #fff;
  background: var(--color-gold);
  transform: translateY(-2px);
}

.inquiry-cta__button .icon:last-child {
  width: 17px;
  height: 17px;
}

.safety-banner {
  color: #fff;
  background: var(--color-alert);
  text-align: center;
}

.safety-banner__inner {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 44px;
}

.safety-banner__eyebrow {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.safety-banner h2 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.safety-banner__inner > p:not(.safety-banner__eyebrow) {
  margin-bottom: 15px;
  font-size: clamp(14px, 1.6vw, 18px);
}

.safety-banner a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 8px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.safety-banner a span {
  transition: transform 180ms ease;
}

.safety-banner a:hover span {
  transform: translateY(3px);
}

.app-download {
  background: #faf4ee;
}

.app-download__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(38px, 5vw, 68px);
  padding-block: clamp(62px, 7vw, 88px);
}

.app-download__image {
  aspect-ratio: 16/10;
  border-radius: 16px;
  background-color: #6b4930;
  background-image: url("../images/catalog-grid.jpg");
  background-position: 100% 66%;
  background-size: 300% auto;
  box-shadow: 0 18px 45px rgba(59, 34, 17, 0.14);
}

.app-download__eyebrow {
  color: var(--color-gold-dark);
}

.app-download h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.app-download__content > p:not(.app-download__eyebrow, .app-download__status) {
  margin-bottom: 24px;
  color: var(--color-ink-soft);
  font-size: 14px;
  line-height: 1.95;
}

.store-badges {
  display: flex;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  min-width: 176px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 9px 17px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 9px 20px rgba(20, 26, 32, 0.12);
  text-align: left;
  transition: filter 160ms ease, transform 160ms ease;
}

.store-badge:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.store-badge--apple {
  background: #050505;
}

.store-badge--google {
  background: var(--color-app);
}

.store-badge .icon {
  width: 23px;
  height: 23px;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.store-badge small {
  margin-bottom: 2px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.76;
}

.app-download__status {
  min-height: 1.7em;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 10px;
}

.subpage-hero {
  color: #fff;
  background-image: linear-gradient(90deg, rgba(4, 15, 26, 0.88), rgba(4, 15, 26, 0.52)), url("../images/hero-tokyo.jpg");
  background-position: center, 72% 53%;
  background-size: cover;
}

.subpage-hero__inner {
  min-height: 300px;
  padding-block: 36px 56px;
}

.subpage-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
}

.subpage-hero__breadcrumb a:hover {
  color: #fff;
}

.subpage-hero h1 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.subpage-hero__lead {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.contact-page {
  padding-block: 62px 86px;
}

.contact-notice {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 42px;
  padding: 18px 22px;
  border: 1px solid #dfcfbb;
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
  background: #f8f1e8;
}

.contact-notice > .icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--color-gold-dark);
}

.contact-notice h2 {
  margin-bottom: 2px;
  font-size: 14px;
}

.contact-notice p {
  margin-bottom: 0;
  color: var(--color-ink-soft);
  font-size: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 5vw, 64px);
}

.contact-guide {
  position: sticky;
  top: 126px;
}

.contact-guide__eyebrow {
  color: var(--color-gold-dark);
}

.contact-guide h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.contact-guide > p:not(.contact-guide__eyebrow) {
  margin-bottom: 24px;
  color: var(--color-ink-soft);
  font-size: 13px;
}

.contact-guide__list {
  margin-bottom: 30px;
  border-top: 1px solid var(--color-line);
}

.contact-guide__list li {
  position: relative;
  padding: 13px 4px 13px 18px;
  border-bottom: 1px solid var(--color-line);
  font-size: 12px;
}

.contact-guide__list li::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  content: "";
  transform: translateY(-50%);
}

.contact-guide__back .icon {
  transform: rotate(180deg);
}

.contact-form-section {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 38px rgba(18, 25, 31, 0.06);
}

.contact-form-section__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.contact-form-section__heading h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.contact-form-section__heading p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 10px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.contact-field--wide {
  grid-column: 1/-1;
}

.contact-field__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--color-ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.contact-field__required,
.contact-field__optional {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  padding: 2px 7px;
  border-radius: 3px;
  color: #fff;
  background: var(--color-alert);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.contact-field__optional {
  color: var(--color-ink-soft);
  background: #e8e5e0;
}

.contact-field__control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d9d8d5;
  border-radius: 7px;
  outline: 0;
  background: #fcfbf9;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

select.contact-field__control {
  padding-right: 36px;
}

.contact-field__control:focus {
  border-color: var(--color-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(155, 107, 50, 0.14);
}

.contact-field__control[aria-invalid=true],
.contact-consent input[aria-invalid=true] {
  border-color: var(--color-alert);
  box-shadow: 0 0 0 3px rgba(181, 34, 43, 0.12);
}

.contact-field__control::placeholder {
  color: #999b9d;
}

.contact-field__control--textarea {
  min-height: 210px;
  resize: vertical;
  line-height: 1.8;
}

.contact-field__hint {
  margin: 5px 0 0;
  color: var(--color-muted);
  font-size: 10px;
  text-align: right;
}

.contact-consent {
  padding: 16px 18px;
  border-radius: 7px;
  background: var(--color-paper);
}

.contact-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 12px;
  cursor: pointer;
}

.contact-consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--color-gold-dark);
}

.contact-consent .contact-field__required {
  margin-left: auto;
  flex: 0 0 auto;
}

.contact-form__actions {
  display: grid;
  justify-items: center;
  padding-top: 8px;
  text-align: center;
}

.contact-form__demo-note {
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 10px;
}

.contact-form__submit {
  min-width: 290px;
  min-height: 54px;
}

.contact-form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.contact-form__status {
  min-height: 1.8em;
  margin: 13px 0 0;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 700;
}

.contact-form__status.is-error,
.contact-form__noscript {
  color: var(--color-alert);
}

.contact-form__noscript {
  margin: 8px 0 0;
  font-size: 11px;
}

@media (max-width: 980px) {
  .app-download__inner {
    gap: 34px;
  }
  .store-badges {
    align-items: stretch;
    flex-direction: column;
  }
  .store-badge {
    width: 100%;
  }
  .contact-layout {
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 32px;
  }
}
@media (max-width: 720px) {
  .header-contact-cta {
    min-width: 108px;
    padding-inline: 12px;
  }
  .inquiry-cta__inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    padding-block: 38px;
  }
  .inquiry-cta__button {
    width: 100%;
  }
  .safety-banner__inner {
    min-height: 0;
    padding-block: 40px;
  }
  .safety-banner h2 {
    font-size: 28px;
  }
  .app-download__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 44px 52px;
  }
  .app-download__image {
    border-radius: 12px;
  }
  .app-download h2 {
    font-size: 27px;
  }
  .subpage-hero__inner {
    min-height: 255px;
    padding-block: 26px 42px;
  }
  .subpage-hero__breadcrumb {
    margin-bottom: 30px;
  }
  .contact-page {
    padding-block: 32px 56px;
  }
  .contact-notice {
    margin-bottom: 30px;
    padding: 15px 16px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .contact-guide {
    position: static;
  }
  .contact-guide__back {
    width: auto;
  }
  .contact-form-section {
    padding: 23px 18px 28px;
  }
  .contact-form-section__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-field--wide {
    grid-column: auto;
  }
  .contact-form__submit {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 390px) {
  .header-action--favorite {
    display: none;
  }
  .header-contact-cta {
    min-width: 101px;
    font-size: 11px;
  }
  .header-contact-cta .icon {
    display: none;
  }
  .contact-consent__label {
    flex-wrap: wrap;
  }
  .contact-consent .contact-field__required {
    margin-left: 31px;
  }
}
@media (max-width: 980px) {
  .site-header__actions {
    gap: 20px;
  }
  .search-panel,
  .search-panel.is-genre-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .search-button {
    grid-column: 1/-1;
  }
  .search-panel.is-genre-expanded .search-button {
    grid-column: auto;
  }
  .hero,
  .hero__inner {
    min-height: 465px;
  }
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .promo-card {
    min-height: 200px;
  }
  .discovery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .site-footer__inner {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 36px;
  }
  .social-links {
    grid-column: 2/-1;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 72px;
  }
  .shell,
  .content-shell,
  .hero-shell {
    width: min(100% - 32px, var(--shell));
  }
  .only-mobile {
    display: block;
  }
  .site-header {
    height: 72px;
  }
  .brand__name {
    font-size: 24px;
  }
  .brand__tagline {
    display: none;
  }
  .site-header__actions {
    gap: 8px;
  }
  .header-action--about,
  .header-action--favorite span {
    display: none;
  }
  .header-action--favorite {
    width: 44px;
    justify-content: center;
  }
  .header-action--favorite .icon {
    width: 22px;
    height: 22px;
  }
  .site-menu__panel {
    position: fixed;
    top: 66px;
    right: 16px;
    left: 16px;
    width: auto;
  }
  .hero {
    min-height: auto;
    background-position: center, center, 68% center;
  }
  .hero__inner {
    min-height: 650px;
    padding-top: 46px;
    padding-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(32px, 10.5vw, 42px);
  }
  .hero__copy > p:last-child {
    line-height: 1.9;
  }
  .search-panel,
  .search-panel.is-genre-expanded {
    right: 0;
    bottom: 22px;
    left: 0;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 17px;
  }
  .search-button,
  .search-panel__status {
    grid-column: auto;
  }
  .content-shell {
    width: 100%;
    padding-top: 22px;
    padding-bottom: 34px;
  }
  .promo-section,
  .discovery-section {
    padding-inline: 16px;
  }
  .promo-grid,
  .discovery-grid {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    padding: 2px 2px 16px;
    scroll-padding-left: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .promo-grid {
    grid-template-columns: none;
    grid-auto-columns: min(82vw, 320px);
    gap: 12px;
  }
  .promo-card {
    min-height: 210px;
    scroll-snap-align: start;
  }
  .discovery-section {
    padding-top: 30px;
  }
  .section-heading {
    margin-bottom: 12px;
  }
  .section-heading h2 {
    font-size: 20px;
  }
  .discovery-grid {
    grid-template-columns: none;
    grid-auto-columns: min(43vw, 170px);
    gap: 12px;
  }
  .discovery-grid li {
    scroll-snap-align: start;
  }
  .discovery-card__body {
    min-height: 67px;
  }
  .closing-cta {
    grid-template-columns: 1fr;
  }
  .closing-cta__image {
    min-height: 240px;
  }
  .closing-cta__content {
    padding: 32px 20px 38px;
  }
  .closing-cta__actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
  .site-footer__brand,
  .social-links {
    grid-column: 1/-1;
  }
  .social-links {
    align-items: flex-start;
  }
  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }
  .site-footer__legal nav {
    gap: 20px;
  }
}
@media (max-width: 390px) {
  .hero__inner {
    min-height: 610px;
  }
  .hero__eyebrow {
    font-size: 8px;
  }
  .section-heading a {
    font-size: 10px;
  }
  .discovery-grid {
    grid-auto-columns: 46vw;
  }
  .header-action--favorite {
    display: inline-flex;
  }
}
@media (max-width: 980px) {
  .finder-options--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .header-contact-cta {
    width: 44px;
    min-width: 44px;
    padding: 0;
  }
  .header-contact-cta span {
    display: none;
  }
  .header-contact-cta .icon {
    display: block;
  }
  .hero {
    background-position: center, center, 68% calc(50% + var(--hero-shift));
  }
  .hero__glow {
    background: radial-gradient(circle at 67% 25%, rgba(255, 207, 126, 0.2), transparent 19%), linear-gradient(112deg, transparent 42%, rgba(248, 208, 139, 0.06) 49%, transparent 56%);
  }
  .has-motion [data-reveal] {
    transform: translateY(17px);
    transition-delay: calc(var(--reveal-order, 0) * 42ms);
  }
  .has-motion [data-reveal].is-revealed {
    transform: translateY(0);
  }
  .scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: -7px 2px 0 0;
    color: var(--color-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .scroll-hint span {
    position: relative;
    display: block;
    overflow: hidden;
    width: 34px;
    height: 1px;
    background: var(--color-line);
  }
  .scroll-hint span::after {
    position: absolute;
    inset: 0;
    background: var(--color-gold);
    content: "";
    animation: swipe-hint 1.8s ease-in-out infinite;
    transform: translateX(-100%);
  }
  [data-drag-scroll].has-scrolled + .scroll-hint,
  [data-drag-scroll].is-at-end + .scroll-hint {
    opacity: 0.38;
  }
  .finder-dialog {
    width: calc(100% - 16px);
    height: calc(100dvh - 16px);
    border-radius: 14px;
  }
  .finder-dialog__header {
    padding: 20px 18px 16px;
  }
  .finder-dialog__eyebrow {
    padding-right: 48px;
    font-size: 8px;
  }
  .finder-dialog__header h2 {
    padding-right: 48px;
    font-size: 22px;
  }
  .finder-dialog__close {
    top: 14px;
    right: 14px;
  }
  .finder-progress {
    gap: 4px;
    margin-top: 13px;
    padding-right: 0;
  }
  .finder-progress li {
    gap: 4px;
  }
  .finder-progress button {
    min-width: 32px;
    min-height: 34px;
  }
  .finder-progress button span {
    width: 28px;
    height: 28px;
  }
  .finder-progress button small {
    display: none;
  }
  .finder-count {
    position: static;
    justify-content: space-between;
    margin-top: 9px;
    padding-top: 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .finder-dialog__body {
    display: flex;
    flex-direction: column;
    padding: 23px 16px 28px;
  }
  .finder-message {
    margin-top: -5px;
  }
  .finder-step h3 {
    font-size: 23px;
  }
  .finder-step:not([hidden]) {
    display: flex;
    min-height: 100%;
    flex: 1 0 auto;
    flex-direction: column;
  }
  .finder-step__lead {
    margin-bottom: 20px;
  }
  .finder-options,
  .finder-options--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .finder-option {
    min-height: 52px;
    padding: 9px 8px;
    font-size: 12px;
  }
  .finder-step__actions {
    position: sticky;
    z-index: 2;
    bottom: -28px;
    margin: auto -16px -28px;
    padding: 14px 16px max(14px, env(safe-area-inset-bottom));
    background: linear-gradient(0deg, #fff 76%, rgba(255, 255, 255, 0));
  }
  .finder-step__actions--end {
    width: auto;
  }
  .finder-button {
    min-height: 48px;
    flex: 1 1 0;
    padding-inline: 15px;
  }
}
@media (max-width: 360px) {
  .brand__tagline {
    display: none;
  }
  .brand__name {
    font-size: 22px;
  }
  .header-contact-cta {
    width: 44px;
    min-width: 44px;
    padding: 0;
  }
  .header-contact-cta span {
    display: none;
  }
  .header-contact-cta .icon {
    display: block;
  }
  .finder-dialog__header h2 {
    font-size: 20px;
  }
  .finder-dialog__body {
    padding-inline: 12px;
  }
  .finder-step__actions {
    margin-right: -12px;
    margin-left: -12px;
    padding-inline: 12px;
  }
}
@media (max-height: 600px) and (orientation: landscape) {
  .finder-dialog {
    height: calc(100dvh - 12px);
  }
  .finder-dialog__header {
    padding-block: 13px 10px;
  }
  .finder-dialog__eyebrow {
    display: none;
  }
  .finder-dialog__header h2 {
    font-size: 20px;
  }
  .finder-progress {
    position: absolute;
    top: 9px;
    right: 70px;
    width: 38%;
    margin: 0;
  }
  .finder-count {
    margin-top: 7px;
    padding-top: 7px;
  }
  .finder-dialog__body {
    padding-block: 15px 20px;
  }
}
@keyframes swipe-hint {
  0%, 18% {
    transform: translateX(-100%);
  }
  70%, 100% {
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .hero__copy,
  .search-panel {
    opacity: 1 !important;
    transform: none !important;
  }
}
