:root {
  --bg: #f8f8f8;
  --bg-deep: #efefef;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --panel-dark: rgba(17, 17, 17, 0.84);
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.16);
  --ink: #111111;
  --muted: #666666;
  --gold: #bb9361;
  --gold-deep: #777777;
  --olive: #8d9681;
  --white: #ffffff;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
  --shadow-soft: 0 6px 14px rgba(0, 0, 0, 0.025);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --serif: "Cormorant Garamond", "Source Han Serif SC", "Songti SC", Georgia, serif;
  --sans: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --pc-banner-height: clamp(128px, 10.5vw, 200px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--sans);
}

button,
input,
a {
  font: inherit;
}

button {
  border: none;
  background: none;
}

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

img {
  max-width: 100%;
}

.hidden {
  display: none !important;
}

.shell-page {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 10px 24px 36px;
}

body[data-view="h5"] .shell-page {
  max-width: 760px;
}

.ambient {
  display: none;
}

.ambient--gold {
  top: 48px;
  right: 32px;
  width: 240px;
  height: 240px;
  background: rgba(195, 155, 103, 0.28);
}

.ambient--olive {
  left: 18px;
  bottom: 100px;
  width: 190px;
  height: 190px;
  background: rgba(141, 150, 129, 0.22);
}

.glass-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.page-stack {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.custom-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.custom-topbar--minimal {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.custom-topbar--minimal.custom-topbar--has-banner {
  grid-template-columns: minmax(0, 1fr);
}

body[data-view="pc"] .custom-topbar--minimal {
  position: sticky;
  top: 0;
  z-index: 48;
  padding: 8px 24px 6px;
  margin: -10px -24px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  backdrop-filter: none;
  transition: background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body[data-view="pc"] .custom-topbar--minimal.custom-topbar--stuck {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.pc-header-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, min(1000px, 54vw)) minmax(0, 1fr);
  width: 100%;
  height: var(--pc-banner-height);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  border: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(101, 73, 37, 0.08);
}

.pc-header-banner__panel {
  display: block;
  min-width: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.pc-header-banner__panel--left {
  background-image:
    linear-gradient(90deg, rgba(255, 248, 238, 0.22), rgba(255, 248, 238, 0)),
    var(--pc-banner-left-image, var(--pc-banner-image));
  background-position: left center;
  filter: saturate(0.96) brightness(1.04);
}

.pc-header-banner__panel--right {
  background-image:
    linear-gradient(270deg, rgba(255, 248, 238, 0.22), rgba(255, 248, 238, 0)),
    var(--pc-banner-right-image, var(--pc-banner-image));
  background-position: right center;
  filter: saturate(0.96) brightness(1.04);
}

.pc-header-banner__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 10px 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  color: #4c4740;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.promise-bar--inline {
  position: relative;
  top: auto;
  z-index: auto;
  flex: 1;
  min-width: 0;
  min-height: 0;
  margin-top: 0;
  padding: 0 2px 0 8px;
  border: none;
  background: transparent;
  backdrop-filter: none;
  justify-content: flex-start;
  gap: 0;
}

.promise-bar__item {
  position: relative;
  padding: 0 2px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.promise-bar__item + .promise-bar__item::before {
  content: "|";
  margin-right: 16px;
  color: rgba(17, 17, 17, 0.24);
}

.custom-topbar--mobile {
  align-items: stretch;
}

.custom-topbar__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 14px;
  border-radius: 14px;
  background: #111111;
  color: #ffffff;
  box-shadow: none;
  flex-shrink: 0;
}

.custom-topbar__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: pre-line;
  text-align: center;
  font-size: 11px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.custom-topbar__name {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.custom-topbar__meta,
.custom-topbar__hint {
  color: var(--gold-deep);
  font-size: 14px;
  line-height: 1.7;
}

.custom-topbar__brand .custom-topbar__meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.custom-topbar__hint {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  white-space: nowrap;
  font-size: 12px;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #555555;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-nav a {
  opacity: 0.9;
}

.topbar-nav a:hover {
  opacity: 1;
}

.topbar-actions,
.hero-actions,
.mode-tabs,
.tag-row,
.card-actions,
.detail-meta-row,
.split-toolbar,
.lock-card__focus,
.lock-card__actions,
.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow {
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-title,
.section-title,
.featured-case-card__body h3,
.case-card__title,
.detail-title,
.split-pane__title,
.lock-card__title,
.showroom-card__title,
.hero-editorial__title,
.hotel-cover__title,
.featured-cover__title,
.case-cover__title,
.lock-cover__title,
.showroom-cover__title {
  font-family: var(--sans);
}

.primary-button,
.ghost-button,
.filter-chip,
.detail-entry-card,
.thumb-button,
.mini-case-card {
  appearance: none;
  border-radius: 999px;
  padding: 13px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

.ghost-button,
.filter-chip,
.detail-entry-card,
.thumb-button,
.mini-case-card {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.primary-button:hover,
.ghost-button:hover,
.filter-chip:hover,
.detail-entry-card:hover,
.thumb-button:hover,
.mini-case-card:hover,
.case-card:hover,
.hotel-feed-card:hover,
.featured-case-card__button:hover {
  transform: translateY(-2px);
}

.filter-chip--active,
.thumb-button--active {
  background: linear-gradient(180deg, #d9a258 0%, #ca8e42 100%);
  color: #ffffff;
  border-color: rgba(201, 141, 66, 0.55);
  box-shadow: 0 8px 18px rgba(201, 141, 66, 0.18);
}

.filter-chip {
  flex: 0 0 auto;
  min-width: 64px;
  height: 29px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  border-color: rgba(17, 17, 17, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.hero-panel,
.section-panel,
.overlay-panel {
  padding: 24px;
}

.hero-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
}

.hero-panel--mobile {
  grid-template-columns: 1fr;
}

.hero-panel__copy,
.hero-panel__stage {
  display: grid;
  gap: 14px;
}

.hero-title {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-description,
.section-intro,
.hotel-feed-intro,
.case-card__intro,
.featured-case-card__body p,
.contact-card__detail,
.service-card__text,
.detail-intro,
.split-pane__intro p,
.lock-card__text,
.showroom-card__text,
.note-card p,
.media-card__body span,
.stat-card__label,
.quote-card__text,
.trust-card p {
  color: var(--muted);
  line-height: 1.85;
}

.hero-description {
  margin: 0;
  font-size: 14px;
  max-width: 620px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

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

.stats-grid--mobile {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.stat-card__value {
  font-size: 30px;
  font-weight: 700;
}

.stat-card__label {
  margin-top: 6px;
  font-size: 13px;
}

.hero-editorial,
.hotel-cover,
.featured-cover,
.case-cover,
.lock-cover,
.showroom-cover,
.detail-cover {
  position: relative;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f1f1;
  background-size: cover;
  background-position: center;
}

.hotel-cover,
.featured-cover {
  min-height: 220px;
}

.hotel-cover {
  min-height: 185px;
}

.case-cover {
  min-height: auto;
  height: 100%;
}

.lock-cover {
  min-height: 260px;
}

.hero-editorial__overlay,
.hotel-cover__overlay,
.featured-cover__overlay,
.case-cover__overlay,
.lock-cover__overlay,
.showroom-cover__overlay,
.detail-cover__overlay {
  min-height: 100%;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.14) 38%, rgba(0, 0, 0, 0.55) 76%, rgba(0, 0, 0, 0.78) 100%);
  color: var(--white);
}

.hotel-cover__overlay {
  align-content: space-between;
}

.hero-editorial__overlay--placeholder,
.hotel-cover__overlay--placeholder,
.featured-cover__overlay--placeholder,
.case-cover__overlay--placeholder,
.lock-cover__overlay--placeholder,
.showroom-cover__overlay--placeholder,
.detail-cover__overlay--placeholder {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.88), rgba(70, 70, 70, 0.84));
}

.hero-editorial__title,
.hotel-cover__title,
.featured-cover__title,
.case-cover__title,
.lock-cover__title,
.showroom-cover__title,
.detail-cover__title {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.06;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.hero-editorial .eyebrow,
.hotel-cover .eyebrow,
.featured-cover .eyebrow,
.case-cover .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.44);
}

.hero-editorial__hint,
.hotel-cover__hint,
.featured-cover__hint,
.case-cover__hint,
.lock-cover__hint,
.showroom-cover__hint,
.detail-cover__hint {
  margin: 0;
  color: rgba(255, 250, 244, 0.88);
  line-height: 1.8;
}

.hero-mini-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-mini-feed--mobile {
  grid-template-columns: 1fr;
}

.mini-case-card {
  display: grid;
  gap: 6px;
  text-align: left;
  padding: 18px;
  border-radius: 24px;
}

.mini-case-card strong {
  font-size: 16px;
}

.mini-case-card span,
.mini-case-card small {
  color: var(--muted);
}

.mode-tabs {
  grid-column: 1 / -1;
}

.mode-tab {
  flex: 1;
  min-width: 0;
  padding: 16px 14px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 249, 242, 0.92);
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease;
}

.mode-tab--active {
  background: linear-gradient(135deg, #261b15 0%, #6b4830 100%);
  color: #fff8ef;
  border-color: rgba(34, 23, 16, 0.1);
}

.section-title-wrap {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}

body[data-view="pc"] .section-title-wrap > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 30px;
}

body[data-view="pc"] .section-title-wrap .eyebrow {
  display: none;
}

.section-title {
  margin: 2px 0 0;
  font-size: clamp(24px, 1.7vw, 31px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.section-subtitle {
  margin: 0;
  color: #9a968f;
  font-size: 13px;
  font-weight: 500;
}

.section-title--detail {
  font-size: clamp(26px, 2vw, 34px);
}

.section-side-note {
  color: #8b857c;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.section-panel--catalog {
  padding: 10px 20px 10px;
  background: linear-gradient(180deg, #ffffff 0%, #fffefe 100%);
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.055);
}

body[data-view="pc"] .section-panel--catalog {
  position: relative;
  z-index: 1;
  border-radius: 0 0 18px 18px;
}

body[data-view="pc"] .section-panel--catalog {
  padding-top: var(--fixed-filter-offset, 156px);
}

body[data-view="pc"] .search-panel {
  position: fixed;
  top: calc(var(--pc-banner-height) + 14px);
  left: 24px;
  right: 24px;
  z-index: 47;
  padding: 5px 14px;
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.055);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.055);
  backdrop-filter: blur(14px);
}

.search-panel {
  display: grid;
  gap: 4px;
  margin-bottom: 4px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.search-panel--mobile {
  padding: 18px;
}

.filter-toolbar {
  display: grid;
  grid-template-columns: minmax(360px, 540px) minmax(220px, 270px);
  justify-content: start;
  gap: 8px;
  align-items: center;
  margin-top: 0;
  margin-left: 32px;
}

.search-field {
  display: block;
  position: relative;
}

.search-field::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #8f969f;
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}

.search-field::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 17px;
  width: 6px;
  height: 2px;
  border-radius: 999px;
  background: #8f969f;
  transform: rotate(45deg);
  pointer-events: none;
}

.search-field--compact {
  align-self: end;
}

.search-field--title {
  width: min(58vw, 260px);
  justify-self: end;
}

.search-field input {
  width: 100%;
  height: 24px;
  padding: 0 12px 0 36px;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: #ffffff;
  outline: none;
  color: #2c2c2c;
  font-size: 11px;
}

.search-field input::placeholder {
  color: #9aa0a6;
}

.filter-stack {
  display: grid;
  gap: 3px;
}

.filter-stack--compact {
  gap: 3px;
  margin-top: 0;
}

.filter-group {
  display: grid;
  gap: 4px;
}

.filter-group--compact {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
}

.filter-group--hotel {
  min-width: 0;
}

.filter-group__label {
  color: #7f796f;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: none;
  font-weight: 700;
}

.hotel-select {
  position: relative;
}

.hotel-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  height: 24px;
  padding: 0 9px;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: #ffffff;
  color: var(--ink);
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  text-align: left;
}

.hotel-select__trigger span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-select__caret {
  flex: 0 0 auto;
  color: #8a837a;
  font-size: 13px;
  transition: transform 0.2s ease;
}

.hotel-select--open .hotel-select__caret {
  transform: rotate(180deg);
}

.hotel-select__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.08);
  z-index: 30;
}

.hotel-select__search {
  display: block;
  margin-bottom: 10px;
}

.hotel-select__search input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fbfaf8;
  outline: none;
}

.hotel-select__options {
  display: grid;
  gap: 5px;
  max-height: 280px;
  overflow: auto;
}

.hotel-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.hotel-option small {
  color: #989188;
  font-size: 12px;
  font-weight: 600;
}

.hotel-option:hover,
.hotel-option--active {
  background: #f6f3ee;
}

.filter-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.view-size-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 22px;
  padding: 2px;
  margin-left: 4px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: #f7f4ef;
}

.view-size-toggle__button {
  height: 18px;
  min-width: 40px;
  padding: 0 8px;
  border-radius: 999px;
  color: #746b60;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.view-size-toggle__button--active {
  background: #ffffff;
  color: #9b682c;
  box-shadow: 0 3px 9px rgba(17, 17, 17, 0.06);
}

.clear-filters-button {
  flex: 0 0 auto;
  height: 22px;
  padding: 0 10px;
  margin-left: 2px;
  border-radius: 999px;
  background: #2f2b27;
  color: #ffffff;
  border: 1px solid rgba(47, 43, 39, 0.9);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.1);
}

.clear-filters-button:hover {
  background: #1f1c19;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-stack--compact .filter-group--compact::before {
  color: #2f2f2f;
  font-size: 11px;
  font-weight: 800;
  content: "";
}

.filter-stack--compact .filter-group--compact:nth-child(1)::before {
  content: "\989C\8272:";
}

.filter-stack--compact .filter-group--compact:nth-child(2)::before {
  content: "\9884\7B97:";
}

.filter-stack--compact .filter-group--compact:nth-child(3)::before {
  content: "\7C7B\578B:";
}

.hotel-feed,
.case-grid,
.section-columns,
.contact-stack,
.service-stack,
.quote-stack,
.trust-list {
  display: grid;
  gap: 18px;
}

.hotel-feed {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 12px;
  margin-top: 0;
}

.case-grid--small {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
}

.case-grid--mobile,
.contact-stack,
.service-stack,
.quote-stack,
.trust-list--mobile {
  grid-template-columns: 1fr;
}

.section-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hotel-feed-card,
.case-card,
.featured-case-card__button,
.quote-card,
.contact-card,
.service-card,
.trust-card,
.media-card,
.media-empty-card,
.note-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.hotel-feed-card,
.case-card {
  overflow: hidden;
}

.case-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.22s ease, box-shadow 0.24s ease;
}

.case-card__cover {
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
  border: 1px solid rgba(17, 17, 17, 0.055);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.04);
}

.hotel-feed-card--button,
.case-card--button {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.hotel-feed-card--button {
  background: #fcfcfc;
}

.hotel-feed-card--active {
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow: none;
}

.hotel-feed-card__body,
.case-card__body,
.quote-card,
.contact-card,
.service-card,
.trust-card,
.media-card__body,
.media-empty-card,
.note-card,
.featured-case-card__body {
  padding: 18px;
}

.hotel-feed-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.hotel-feed-name,
.contact-card__value,
.service-card__title,
.media-card__body strong {
  font-family: var(--serif);
}

.hotel-feed-name {
  font-size: 18px;
  line-height: 1.12;
}

.hotel-feed-meta,
.contact-card__label,
.quote-card__index {
  color: #777777;
  font-weight: 700;
  font-size: 12px;
}

.hotel-feed-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
}

.featured-case-card {
  margin-bottom: 16px;
}

.featured-case-card__button {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.featured-case-card__body h3,
.case-card__title,
.detail-title,
.split-pane__title,
.lock-card__title,
.showroom-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.featured-case-card__action {
  color: var(--ink);
  font-weight: 700;
}

.featured-case-card__action--muted {
  color: var(--muted);
  font-weight: 500;
}

.case-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.empty-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.78);
  border: 1px dashed var(--line-strong);
}

.quote-card__index {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-card__title {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.08;
}

.contact-card__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card__value {
  margin-top: 12px;
  font-size: 28px;
  line-height: 1.08;
}

.service-card__step {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f3f3;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
}

.service-card__title {
  margin-top: 12px;
  font-size: 26px;
  line-height: 1.04;
}

.trust-card p,
.note-card p {
  margin: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  padding: 22px;
  background: rgba(0, 0, 0, 0.22);
}

.overlay-panel {
  position: relative;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.overlay-panel--detail,
.overlay-panel--lock {
  background: #ffffff;
  border: 1px solid var(--line);
}

.overlay-panel--showroom,
.overlay-panel--viewer {
  background: rgba(11, 8, 7, 0.95);
  color: var(--white);
}

.overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  cursor: pointer;
}

.detail-shell,
.lock-shell {
  height: 100%;
  overflow: auto;
  padding: 28px;
}

.detail-default,
.detail-default__copy,
.detail-gallery-section,
.media-section {
  display: grid;
  gap: 18px;
}

.detail-default__summary {
  display: grid;
  gap: 18px;
}

.detail-default__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.98fr);
  gap: 18px;
  align-items: start;
}

.detail-default__copy {
  align-content: start;
  gap: 12px;
  padding: 6px 4px 0;
}

.detail-default__cover {
  height: clamp(320px, 44vh, 460px);
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #f4f3ef;
  border: 1px solid #efe9e0;
}

.detail-default__cover,
.case-card__cover,
.media-card__visual,
.split-stage__visual,
.thumb-button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  text-align: left;
  cursor: pointer;
}

.detail-default__cover,
.case-card__cover,
.media-card__visual,
.split-stage__visual {
  overflow: hidden;
  border-radius: 8px;
}

.case-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: #e9e6e1;
  isolation: isolate;
}

.case-card__visual {
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition: transform 0.38s ease;
}

.case-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-card__visual--placeholder {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.18) 100%);
}

.case-card__media::after {
  display: none;
}

.case-card__overlay {
  display: none;
}

.case-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 8px 12px;
  color: #352f29;
  background: rgba(255, 252, 247, 0.98);
  border-top: 1px solid rgba(205, 159, 96, 0.12);
}

.case-card__info-item {
  min-width: 0;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.case-grid--small .case-card__media {
  aspect-ratio: 16 / 9;
}

.case-grid--small .case-card__info {
  min-height: 34px;
  padding: 6px 9px;
}

.case-grid--small .case-card__info-item {
  font-size: 12px;
}

.case-grid--small .case-card__info-item--budget {
  padding: 3px 8px;
  font-size: 11px;
}

.case-card__info-item--hotel {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  padding-left: 0;
}

.case-card__info-item--hotel::before {
  content: "\00B7";
  position: static;
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 6px;
  color: #d19a4e;
  background: transparent;
  transform: none;
}

.case-card__info-item--budget {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f7ead9;
  color: #a16b2e;
  border: 1px solid rgba(207, 148, 72, 0.2);
  font-size: 12px;
  font-weight: 800;
}

.case-card__copy {
  display: grid;
  gap: 6px;
  max-width: 92%;
}

.case-card__title {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.case-card__overlay .case-card__title {
  color: #ffffff;
}

.case-card__venue-line {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.case-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.case-card__meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.case-card__hover {
  display: none;
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.1);
}

.case-card:hover .case-card__visual,
.case-card:focus-within .case-card__visual {
  transform: scale(1.015);
}

.case-card:hover .case-card__hover,
.case-card:focus-within .case-card__hover {
  display: none;
}

.detail-default__cover img,
.media-card__visual img,
.showroom-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-default__cover img {
  object-fit: contain;
  background: #f4f3ef;
}

.split-stage__visual img,
.thumb-button img {
  width: 100%;
  height: 100%;
  display: block;
}

.split-stage__visual img {
  object-fit: contain;
  background: #111111;
}

.split-stage__visual--landscape img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.split-stage__visual--portrait img,
.split-stage__visual--square img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.thumb-button img {
  object-fit: cover;
}

.detail-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-entry-card {
  border-radius: 18px;
  text-align: left;
  display: grid;
  gap: 7px;
  padding: 20px 20px 18px;
  background: #ffffff;
  border: 1px solid #ece8e0;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.025);
}

.detail-entry-card strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.detail-entry-card span {
  color: #66615a;
  font-size: 13px;
  line-height: 1.7;
}

.detail-gallery-grid {
  display: grid;
  gap: 16px;
}

.detail-gallery-grid .media-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.detail-gallery-grid .media-card {
  border-radius: 20px;
}

.detail-gallery-grid .media-card__visual {
  aspect-ratio: 16 / 10;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #f4f3ef;
}

.detail-gallery-grid .media-card__visual img {
  object-fit: contain;
  background: #f4f3ef;
}

.detail-gallery-grid .media-card__body {
  display: none;
}

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

.media-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #efe9e0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.media-card__visual {
  min-height: 220px;
  background: #f2f2f2;
}

.media-card__visual--pdf {
  text-decoration: none;
}

.media-card__visual--pdf-preview {
  position: relative;
  min-height: 220px;
  background: #111;
}

.media-card__visual--pdf-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #111;
}

.media-card__pdf-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.72);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.media-card__pdf {
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(36, 31, 28, 0.92), rgba(82, 60, 39, 0.96));
  color: #fff8ef;
}

.media-card__pdf span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.media-card__pdf small {
  font-size: 0.82rem;
  line-height: 1.7;
}

.media-card__body {
  padding: 18px 20px 20px;
}

.media-card__body strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.media-empty-card h4 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 28px;
}

.media-empty-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.media-section__title {
  color: #777777;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

.video-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #efe9e0;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #090706;
}

.video-card__body {
  padding: 18px 20px 22px;
}

.video-card__body strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 22px;
}

.video-card__body span {
  color: var(--muted);
  line-height: 1.8;
}

.video-placeholder {
  position: relative;
  min-height: 320px;
  background: linear-gradient(145deg, #202020 0%, #505050 100%);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.62;
}

.video-placeholder__copy {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.56) 100%);
}

.video-placeholder__copy strong {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.video-placeholder__copy span {
  line-height: 1.8;
}

.note-list {
  display: grid;
  gap: 14px;
}

.detail-split {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 18px;
  height: calc(100vh - 116px);
}

.split-stage,
.split-pane {
  min-height: 0;
  height: 100%;
  overflow: auto;
  padding-right: 4px;
}

.split-stage {
  display: grid;
  gap: 12px;
  align-content: start;
}

.split-stage__header {
  display: grid;
  gap: 6px;
}

.split-stage__eyebrow {
  letter-spacing: 0.16em;
}

.split-stage__summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.split-stage__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.08;
  flex: 1;
  min-width: 0;
}

.split-stage__meta {
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.split-stage__visual {
  height: calc(100vh - 260px);
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #111111;
  border: 1px solid var(--line);
}

.split-stage__visual--landscape {
  width: 100%;
}

.split-stage__visual--portrait {
  width: min(64%, 520px);
  max-width: 100%;
  justify-self: center;
}

.split-stage__visual--square {
  width: min(78%, 680px);
  max-width: 100%;
  justify-self: center;
}

.split-stage__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}

.thumb-button {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 116px;
  display: grid;
  place-items: center;
  background: #f4f3ef;
}

.thumb-button img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f4f3ef;
}

.split-pane {
  display: grid;
  gap: 16px;
}

.split-pane__title {
  font-size: 30px;
}

.split-pane__intro p {
  margin: 8px 0 0;
}

.split-toolbar {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.split-toolbar__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  flex: 1;
}

.split-toolbar__back {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.split-toolbar__back span {
  font-size: 22px;
  line-height: 1;
}

.detail-default__copy .pill,
.split-stage__meta .pill {
  padding: 10px 15px;
  background: #f7f6f3;
  border-color: #e9e4dc;
}

.detail-default .detail-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
}

.detail-default .detail-intro {
  margin: 0;
  color: #5e5852;
  font-size: 16px;
  line-height: 1.9;
  max-width: 46ch;
}

.detail-default .detail-meta-row {
  gap: 10px;
}

.detail-default .eyebrow {
  color: #8a837a;
  letter-spacing: 0.12em;
}

.detail-default__summary .detail-entry-grid {
  margin-top: 2px;
}

.gallery-wall {
  display: grid;
  gap: 12px;
}

.gallery-wall__grid {
  column-count: 3;
  column-gap: 16px;
}

.gallery-wall__item {
  break-inside: avoid;
  margin: 0 0 16px;
}

.gallery-wall__button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #f4f3ef;
  cursor: pointer;
}

.gallery-wall__button img {
  display: block;
  width: 100%;
  height: auto;
}

.split-pane__intro {
  display: grid;
  gap: 8px;
  padding-bottom: 4px;
}

.split-pane .media-section__title {
  color: #92887d;
  letter-spacing: 0.08em;
}

.split-pane .note-card {
  border-radius: 18px;
  border: 1px solid #efe9e0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.03);
}

.split-pane .note-card p {
  margin: 0;
  color: #5f5952;
}

.split-pane__section {
  display: grid;
  gap: 16px;
}

.split-pane__section--quote .media-grid {
  grid-template-columns: 1fr;
}

.split-pane__section--quote .media-card {
  border-radius: 22px;
  border-color: #ebe4d9;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.05);
}

.split-pane__section--quote .media-card__visual {
  min-height: 320px;
}

.split-pane__section--quote .media-card__body {
  padding: 22px 24px 24px;
}

.split-pane__section--quote .media-card__body strong {
  font-size: 22px;
}

.split-pane__section--quote .split-pane__intro {
  padding: 4px 2px 10px;
  border-bottom: 1px solid #f0ebe4;
}

.split-pane__section--quote .split-pane__intro p {
  color: #635d56;
  max-width: 34ch;
  line-height: 1.9;
}

.split-pane__section--quote .note-list {
  gap: 16px;
}

.split-pane__section--quote .note-card {
  border-radius: 22px;
  padding: 20px 24px;
}

.lock-card {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 22px;
}

body[data-view="h5"] .gallery-wall__grid {
  column-count: 1;
}

.lock-card__body {
  display: grid;
  align-content: center;
  gap: 18px;
}

.lock-card__title {
  font-size: 42px;
}

.showroom-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 0;
}

.showroom-meta {
  text-align: center;
}

.showroom-meta span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 248, 238, 0.68);
}

.showroom-stage {
  height: calc(100% - 84px);
  padding: 18px 22px 22px;
}

.showroom-card {
  height: 100%;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

.showroom-card__cover {
  min-height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.showroom-card__body {
  display: grid;
  align-content: center;
  gap: 16px;
}

.showroom-card__title {
  font-size: clamp(46px, 4vw, 68px);
}

.showroom-card__text {
  color: rgba(255, 248, 238, 0.78);
}

.image-viewer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 0;
}

.image-viewer-counter {
  color: rgba(255, 248, 238, 0.68);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.image-viewer-stage {
  height: calc(100% - 78px);
  display: grid;
  place-items: center;
  padding: 8px 48px 16px;
}

.image-viewer-figure {
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  justify-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.image-viewer-canvas {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}

.image-viewer-canvas--zoomed {
  cursor: grab;
}

.image-viewer-canvas--dragging {
  cursor: grabbing;
}

.image-viewer-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  transition: transform 0.18s ease;
  will-change: transform;
}

.image-viewer-image--zoomed {
  cursor: zoom-out;
}

.image-viewer-caption {
  display: grid;
  gap: 4px;
  text-align: center;
}

.image-viewer-caption strong {
  font-family: var(--serif);
  font-size: 20px;
}

.image-viewer-caption span {
  color: rgba(255, 248, 238, 0.72);
}

.image-viewer-hint {
  color: rgba(255, 248, 238, 0.56);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.image-viewer-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.image-viewer-status__zoom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.image-viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.image-viewer-nav--prev {
  left: 22px;
}

.image-viewer-nav--next {
  right: 22px;
}

body[data-view="h5"] .hero-title {
  font-size: clamp(38px, 9vw, 58px);
}

body[data-view="h5"] .custom-topbar__hint {
  white-space: normal;
}

body[data-view="h5"] .custom-topbar__brand {
  padding: 8px 12px;
}

body[data-view="h5"] .custom-topbar__name {
  font-size: 22px;
}

body[data-view="h5"] .featured-case-card__button {
  grid-template-columns: 1fr;
}

body[data-view="h5"] .featured-case-card__button,
body[data-view="h5"] .lock-card {
  grid-template-columns: 1fr;
}

body[data-view="h5"] .section-title-wrap {
  display: grid;
  grid-template-columns: auto minmax(130px, 1fr);
  align-items: end;
  gap: 8px 12px;
}

body[data-view="h5"] .section-side-note {
  grid-column: 1 / -1;
}

body[data-view="h5"] .filter-toolbar .search-field--compact {
  display: none;
}

body[data-view="h5"] .case-card__media {
  aspect-ratio: 16 / 9;
}

body[data-view="h5"] .case-card__info {
  min-height: 34px;
  padding: 6px 10px;
}

body[data-view="h5"] .case-card__info-item {
  font-size: 12px;
}

body[data-view="h5"] .overlay {
  padding: 10px;
}

body[data-view="h5"] .detail-shell,
body[data-view="h5"] .lock-shell {
  padding: 12px;
}

body[data-view="h5"] .lock-card {
  gap: 12px;
}

body[data-view="h5"] .lock-card__body {
  gap: 10px;
  align-content: start;
}

body[data-view="h5"] .lock-card__title {
  font-size: 28px;
}

body[data-view="h5"] .lock-card__text {
  line-height: 1.55;
}

body[data-view="h5"] .lock-card__actions {
  gap: 8px;
}

@media (max-width: 1280px) {
  .custom-topbar--minimal {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .promise-bar--inline {
    padding: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-panel,
  .section-columns,
  .showroom-card,
  .detail-default__hero,
  .lock-card {
    grid-template-columns: 1fr;
  }

  .hero-mini-feed,
  .media-grid,
  .video-grid,
  .detail-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-wall__grid {
    column-count: 2;
  }

  .case-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }

  .featured-case-card__button {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .shell-page {
    padding: 18px 14px 36px;
  }

  .custom-topbar,
  .section-title-wrap,
  .showroom-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .topbar-nav {
    justify-content: flex-start;
  }

  .topbar-actions,
  .hero-actions,
  .mode-tabs,
  .card-actions,
  .lock-card__actions,
  .split-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel,
  .hero-mini-feed,
  .media-grid,
  .video-grid,
  .detail-entry-grid,
  .split-stage__thumbs,
  .stats-grid,
  .section-columns {
    grid-template-columns: 1fr;
  }

  .case-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .overlay {
    padding: 10px;
  }

  .hero-panel,
  .section-panel,
  .overlay-panel,
  .detail-shell,
  .lock-shell {
    padding: 20px;
  }

  .detail-split {
    grid-template-columns: 1fr;
    height: auto;
  }

  .split-stage,
  .split-pane {
    height: auto;
    overflow: visible;
  }

  .split-stage__visual {
    min-height: 360px;
    height: auto;
  }

  .gallery-wall__grid {
    column-count: 2;
  }

  .split-stage__summary {
    flex-direction: column;
  }

  .split-toolbar__tabs {
    justify-content: flex-start;
  }

  .showroom-stage {
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .custom-topbar__mark {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .custom-topbar__name {
    font-size: 22px;
  }

  .gallery-wall__grid {
    column-count: 1;
  }

  .hero-title {
    font-size: 42px;
  }

  .section-title,
  .case-card__title,
  .detail-title,
  .split-pane__title,
  .lock-card__title {
    font-size: 30px;
  }

  .image-viewer-stage {
    padding: 18px;
  }

  .image-viewer-nav {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 12px;
  }
}
