:root {
  --bg: #f5efe4;
  --bg-strong: #111111;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #1e1c18;
  --text: #171411;
  --text-inverse: #f6f3ee;
  --muted: #6c655f;
  --line: rgba(23, 20, 17, 0.12);
  --accent: #d6a420;
  --accent-strong: #f0be3d;
  --shadow: 0 24px 60px rgba(34, 25, 14, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 164, 32, 0.22), transparent 24%),
    radial-gradient(circle at right 20%, rgba(23, 20, 17, 0.08), transparent 18%),
    linear-gradient(180deg, #f8f2e9 0%, #f1e8dc 100%);
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(47, 36, 21, 0.92)),
    #111;
  color: var(--text-inverse);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -30% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 164, 32, 0.55), rgba(214, 164, 32, 0));
  pointer-events: none;
}

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

.detail-topbar .brand-mark {
  color: var(--text);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Montserrat", "Pretendard", sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 170px;
  height: 52px;
  object-fit: contain;
  object-position: center;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.youtube-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.youtube-link svg {
  display: block;
  width: 25px;
  height: 25px;
}

.youtube-shape {
  fill: #ff0033;
}

.youtube-play {
  fill: #ffffff;
}

.brand-mark {
  color: #fff;
}

.brand-text {
  color: var(--accent);
}

.topbar-links {
  display: flex;
  gap: 18px;
  color: rgba(246, 243, 238, 0.78);
}

.topbar-links a {
  transition: color 0.2s ease;
}

.topbar-links a:hover,
.topbar-links a:focus-visible {
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.8fr);
  gap: 28px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero-lead,
.section-caption,
.spec-note,
.empty-state p {
  line-height: 1.7;
  color: var(--muted);
}

.hero-copy .hero-lead {
  margin: 22px 0 0;
  max-width: 56ch;
  color: rgba(246, 243, 238, 0.84);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.contact-action,
.spec-chip {
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible,
.inventory-card:hover,
.inventory-card:focus-visible,
.thumb-button:hover,
.thumb-button:focus-visible,
.contact-action:hover,
.contact-action:focus-visible,
.contact-fab:hover,
.contact-fab:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #111;
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.detail-summary .button-secondary {
  border-color: var(--line);
  color: var(--text);
}

.hero-panel,
.promise-card,
.inventory-card,
.detail-summary,
.spec-card,
.gallery-panel,
.contact-panel,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
}

.hero-panel-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(214, 164, 32, 0.2);
  color: #fff4cb;
  font-weight: 700;
}

.hero-points {
  padding-left: 20px;
  margin: 18px 0 22px;
  line-height: 1.8;
  color: rgba(246, 243, 238, 0.84);
}

.hero-contact {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-contact dt {
  font-size: 0.88rem;
  color: rgba(246, 243, 238, 0.64);
}

.hero-contact dd {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.promise,
.inventory-section {
  margin-top: 44px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.section-heading-split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

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

.promise-card {
  padding: 24px;
}

.promise-card h3,
.detail-summary h1,
.gallery-copy h2,
.empty-state h1 {
  margin: 0;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.promise-card p,
.inventory-meta p,
.contact-action span {
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

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

.inventory-card {
  overflow: hidden;
  display: block;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.inventory-card:hover,
.inventory-card:focus-visible {
  border-color: rgba(214, 164, 32, 0.38);
}

.inventory-image-wrap,
.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 4px);
}

.inventory-image,
.gallery-main img,
.thumb-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-youtube {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
}

.inventory-image-wrap {
  aspect-ratio: 4 / 3;
}

.inventory-card-body {
  padding: 18px 18px 20px;
}

.inventory-card-body h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.inventory-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(214, 164, 32, 0.12);
  color: #6f4d00;
  font-size: 0.92rem;
  font-weight: 700;
}

.detail-shell {
  padding-top: 18px;
}

.detail-topbar {
  padding: 0 24px;
}

.back-link {
  color: var(--muted);
  font-weight: 700;
}

.detail-layout {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
}

.gallery-panel,
.detail-summary,
.spec-card,
.empty-state {
  padding: 22px;
}

.gallery-panel {
  overflow: hidden;
}

.gallery-main {
  aspect-ratio: 16 / 10;
  background: #ddd1be;
}

.gallery-main img {
  transition: transform 0.3s ease;
}

.gallery-main:hover img {
  transform: scale(1.02);
}

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

.gallery-thumbnails {
  padding: 14px 22px 22px;
}

.thumb-button {
  position: relative;
  overflow: hidden;
  padding: 0;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.thumb-button.is-active {
  border-color: var(--accent);
}

.thumb-caption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(23, 21, 18, 0.88);
  color: #f2c230;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.youtube-thumb {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(23, 21, 18, 0.88), rgba(23, 21, 18, 0.72)),
    #201b17;
}

.youtube-thumb svg {
  width: 30px;
  height: 30px;
}

.gallery-copy {
  margin-top: 16px;
}

.gallery-copy p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.detail-summary h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
}

.summary-price {
  margin: 16px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
}

.summary-description {
  margin: 14px 0 0;
  line-height: 1.8;
  color: var(--muted);
}

.summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.spec-item {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(17, 17, 17, 0.04);
}

.spec-item dt {
  font-size: 0.88rem;
  color: var(--muted);
}

.spec-item dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.spec-note {
  margin: 18px 0 0;
}

.accordion-card {
  padding: 0;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.accordion-title {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.accordion-icon {
  flex: 0 0 auto;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--muted);
}

.accordion-panel {
  padding: 0 22px 22px;
}

.accordion-panel .spec-grid,
.accordion-panel .option-grid {
  margin-top: 0;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(8px);
}

.media-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 24px;
}

.media-lightbox-image {
  display: block;
  max-width: min(100vw - 48px, 1600px);
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.media-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

.contact-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  min-width: 120px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #181512, #3a2b17);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.35);
  transition: transform 0.2s ease;
}

.contact-sheet[hidden] {
  display: none;
}

.contact-sheet {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(6px);
}

.contact-panel {
  position: absolute;
  right: 20px;
  bottom: 92px;
  width: min(calc(100% - 24px), 360px);
  padding: 24px;
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
}

.contact-panel h2 {
  margin: 0;
  padding-right: 34px;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-action {
  display: block;
  padding: 18px 20px;
  width: 100%;
  border: 0;
  background: rgba(17, 17, 17, 0.04);
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.contact-action-button {
  appearance: none;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-inverse);
}

.contact-action strong {
  display: block;
  font-size: 1rem;
}

.empty-state {
  text-align: center;
}

.coming-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(219, 171, 41, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #191512 0%, #0f0d0b 100%);
}

.coming-card {
  width: min(100%, 760px);
  padding: 56px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(46, 37, 30, 0.88), rgba(20, 17, 14, 0.96)),
    #171311;
  color: var(--text-inverse);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.coming-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  margin-bottom: 24px;
  padding: 12px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.coming-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.coming-kicker {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: #dcb041;
}

.coming-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.coming-copy {
  width: min(100%, 44ch);
  margin: 18px auto 0;
  line-height: 1.8;
  color: rgba(246, 243, 238, 0.76);
}

.coming-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.coming-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  text-align: left;
}

.coming-contact div {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.coming-contact dt {
  font-size: 0.86rem;
  color: rgba(246, 243, 238, 0.56);
}

.coming-contact dd {
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.coming-footnote {
  margin: 28px 0 0;
  color: #dcb041;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .detail-grid,
  .promise-grid,
  .inventory-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-split,
  .topbar,
  .detail-topbar {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-bottom: 92px;
  }

  .hero,
  .gallery-panel,
  .detail-summary,
  .spec-card,
  .empty-state {
    padding: 18px;
    border-radius: 28px;
  }

  .hero-copy h1,
  .detail-summary h1 {
    max-width: none;
  }

  .topbar-links,
  .hero-cta,
  .summary-actions {
    width: 100%;
  }

  .button,
  .summary-actions .button {
    width: 100%;
  }

  .contact-panel {
    left: 12px;
    right: 12px;
    bottom: 86px;
    width: auto;
  }

  .coming-card {
    padding: 42px 20px 28px;
    border-radius: 28px;
  }

  .coming-logo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 24px;
  }

  .coming-actions .button,
  .coming-contact {
    width: 100%;
  }

  .coming-contact {
    grid-template-columns: 1fr;
  }

  body.showroom-theme .hero-copy h1 {
    font-size: 2.3rem;
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  body.showroom-theme .hero-copy .hero-lead {
    margin-top: 16px;
  }
}

body.showroom-theme {
  --surface: rgba(17, 26, 39, 0.84);
  --surface-strong: #121a26;
  --text: #e8eef8;
  --text-inverse: #f6f9ff;
  --muted: #94a8c0;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #d8b164;
  --accent-strong: #f2d28d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(circle at top right, rgba(72, 120, 220, 0.18), transparent 22%),
    radial-gradient(circle at 12% 18%, rgba(216, 177, 100, 0.12), transparent 18%),
    linear-gradient(180deg, #0a1017 0%, #101925 48%, #0b1118 100%);
}

body.showroom-theme .topbar-links {
  color: rgba(232, 238, 248, 0.72);
}

body.showroom-theme .hero {
  border-color: rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(8, 14, 24, 0.96), rgba(18, 33, 54, 0.92)),
    #0d1520;
}

body.showroom-theme .hero::after {
  inset: auto -8% -24% auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(64, 118, 232, 0.42), rgba(64, 118, 232, 0));
}

body.showroom-theme .hero-copy .hero-lead {
  color: rgba(230, 238, 250, 0.82);
}

body.showroom-theme .button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

body.showroom-theme .hero-panel,
body.showroom-theme .promise-card,
body.showroom-theme .inventory-card,
body.showroom-theme .detail-summary,
body.showroom-theme .spec-card,
body.showroom-theme .gallery-panel,
body.showroom-theme .contact-panel,
body.showroom-theme .empty-state {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(20, 31, 47, 0.88), rgba(13, 20, 30, 0.86)),
    rgba(17, 26, 39, 0.84);
  backdrop-filter: blur(12px);
}

body.showroom-theme .hero-panel {
  background:
    linear-gradient(180deg, rgba(18, 33, 54, 0.72), rgba(13, 20, 30, 0.82)),
    rgba(17, 26, 39, 0.84);
}

body.showroom-theme .section-caption,
body.showroom-theme .promise-card p,
body.showroom-theme .inventory-meta p,
body.showroom-theme .gallery-copy p,
body.showroom-theme .summary-description,
body.showroom-theme .spec-note,
body.showroom-theme .contact-action span {
  color: #9bb0ca;
}

body.showroom-theme .inventory-card {
  position: relative;
}

body.showroom-theme .inventory-card:hover,
body.showroom-theme .inventory-card:focus-visible {
  border-color: rgba(97, 148, 255, 0.46);
}

body.showroom-theme .inventory-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 24, 0) 28%, rgba(7, 14, 24, 0.18) 56%, rgba(7, 14, 24, 0.56) 100%);
}

body.showroom-theme .spec-chip {
  background: rgba(97, 148, 255, 0.16);
  color: #dbe8ff;
}

body.showroom-theme .back-link {
  color: #9bb0ca;
}

body.showroom-theme .gallery-main {
  background: #09111b;
}

body.showroom-theme .thumb-button {
  border-color: rgba(255, 255, 255, 0.06);
}

body.showroom-theme .spec-item {
  background: rgba(255, 255, 255, 0.04);
}

body.showroom-theme .contact-fab {
  background: linear-gradient(135deg, #152132, #274572);
  color: #f5f8ff;
}

body.showroom-theme .contact-action {
  background: rgba(255, 255, 255, 0.05);
  color: #eef4ff;
}

body.showroom-theme {
  --surface: #ffffff;
  --surface-strong: #f8fafc;
  --text: #171512;
  --text-inverse: #ffffff;
  --muted: #5f6f7f;
  --line: #dde6ee;
  --accent: #f2c230;
  --accent-strong: #d8a600;
  --shadow: 0 20px 58px rgba(31, 45, 61, 0.12);
  background:
    linear-gradient(180deg, rgba(23, 21, 18, 0.04), rgba(23, 21, 18, 0) 160px),
    linear-gradient(180deg, #f8fbfd 0%, #edf3f8 100%);
  color: var(--text);
}

body.showroom-theme .site-shell {
  width: min(calc(100% - 32px), 1180px);
}

body.showroom-theme .brand {
  letter-spacing: 0;
}

body.showroom-theme .brand-logo {
  width: 202px;
  height: 52px;
  box-shadow: none;
}

body.showroom-theme .brand-mark {
  color: #171512;
}

body.showroom-theme .brand-text {
  color: var(--accent);
}

body.showroom-theme .topbar-links,
body.showroom-theme .back-link {
  color: #5d574f;
}

body.showroom-theme .topbar {
  margin: -24px -24px 0;
  padding: 14px 16px;
  border-radius: 16px 16px 0 0;
  background: #201b17;
  box-shadow: 0 18px 42px rgba(32, 27, 23, 0.16);
}

body.showroom-theme .topbar-links {
  color: #f2c230;
}

body.showroom-theme .youtube-link {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

body.showroom-theme .youtube-link:hover,
body.showroom-theme .youtube-link:focus-visible {
  background: #ff0033;
  color: #ffffff;
}

body.showroom-theme .topbar-links a:hover,
body.showroom-theme .topbar-links a:focus-visible,
body.showroom-theme .back-link:hover,
body.showroom-theme .back-link:focus-visible {
  color: var(--accent);
}

body.showroom-theme .topbar-links .youtube-link:hover,
body.showroom-theme .topbar-links .youtube-link:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
}

body.showroom-theme .topbar-links .youtube-link:hover svg,
body.showroom-theme .topbar-links .youtube-link:focus-visible svg {
  fill: #ffffff;
}

body.showroom-theme .hero {
  padding: 24px;
  border-color: var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow);
}

body.showroom-theme .hero::after {
  display: none;
}

body.showroom-theme .hero-grid {
  align-items: stretch;
  margin-top: 34px;
}

body.showroom-theme .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 20px 0;
}

body.showroom-theme .eyebrow {
  letter-spacing: 0.08em;
  color: var(--accent);
}

body.showroom-theme .hero-copy h1,
body.showroom-theme .section-heading h2,
body.showroom-theme .detail-summary h1,
body.showroom-theme .gallery-copy h2,
body.showroom-theme .empty-state h1,
body.showroom-theme .hero-showcase-content h2,
body.showroom-theme .spec-card h2 {
  letter-spacing: 0;
  word-break: keep-all;
}

body.showroom-theme .hero-copy h1 {
  max-width: 13.5ch;
  font-size: 4.15rem;
  line-height: 1.02;
}

body.showroom-theme .hero-copy .hero-lead,
body.showroom-theme .section-caption,
body.showroom-theme .promise-card p,
body.showroom-theme .inventory-location,
body.showroom-theme .gallery-copy p,
body.showroom-theme .summary-description,
body.showroom-theme .spec-note,
body.showroom-theme .contact-action span {
  color: var(--muted);
}

body.showroom-theme .hero-copy .hero-lead {
  max-width: 58ch;
  font-size: 1.06rem;
}

body.showroom-theme .button {
  min-height: 48px;
  border-radius: 8px;
}

body.showroom-theme .button-primary {
  background: #171512;
  color: #ffffff;
}

body.showroom-theme .button-primary:hover,
body.showroom-theme .button-primary:focus-visible {
  background: #2a251e;
}

body.showroom-theme .button-secondary,
body.showroom-theme .detail-summary .button-secondary {
  border-color: #d9d0c2;
  background: #ffffff;
  color: #171512;
}

body.showroom-theme .hero-panel,
body.showroom-theme .promise-card,
body.showroom-theme .inventory-card,
body.showroom-theme .detail-summary,
body.showroom-theme .spec-card,
body.showroom-theme .gallery-panel,
body.showroom-theme .contact-panel,
body.showroom-theme .empty-state {
  border-color: var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(31, 45, 61, 0.08);
  backdrop-filter: none;
}

body.showroom-theme .hero-panel {
  overflow: hidden;
  padding: 0;
}

.hero-feature-trigger {
  appearance: none;
  display: block;
  width: 100%;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-feature-trigger:hover,
.hero-feature-trigger:focus-visible {
  border-color: rgba(242, 194, 48, 0.74);
  box-shadow: 0 22px 48px rgba(31, 45, 61, 0.14);
  transform: translateY(-2px);
}

.hero-feature-trigger.is-rotating .hero-showcase-image img,
.hero-feature-trigger.is-rotating .hero-showcase-content {
  animation: featured-panel-fade 0.48s ease;
}

@keyframes featured-panel-fade {
  0% {
    opacity: 0.2;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-showcase-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef4;
}

.hero-showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-showcase-image span,
.inventory-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(23, 21, 18, 0.9);
  color: #f8d755;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(31, 45, 61, 0.14);
}

.hero-showcase-content {
  padding: 22px 22px 24px;
}

.hero-showcase-content h2,
body.showroom-theme .spec-card h2 {
  margin: 0;
  color: #171512;
  font-size: 1.36rem;
  line-height: 1.25;
}

.hero-car-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.hero-car-facts div,
.summary-facts dl,
body.showroom-theme .spec-item {
  margin: 0;
  padding: 14px;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.hero-car-facts dt,
.summary-facts dt,
body.showroom-theme .spec-item dt {
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-car-facts dd,
.summary-facts dd,
body.showroom-theme .spec-item dd {
  margin: 6px 0 0;
  color: #171512;
  font-weight: 800;
}

body.showroom-theme .promise,
body.showroom-theme .inventory-section {
  margin-top: 48px;
}

body.showroom-theme .promise-card {
  padding: 22px;
}

body.showroom-theme .promise-card h3 {
  margin: 18px 0 0;
  font-size: 1.16rem;
}

.promise-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #201b17;
  color: #f2c230;
  font-family: "Montserrat", "Pretendard", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

body.showroom-theme .inventory-grid {
  gap: 18px;
}

body.showroom-theme .inventory-card {
  color: var(--text);
}

body.showroom-theme .inventory-card:hover,
body.showroom-theme .inventory-card:focus-visible,
body.showroom-theme .inventory-card.is-highlighted {
  border-color: rgba(242, 194, 48, 0.74);
  box-shadow: 0 20px 48px rgba(36, 30, 20, 0.14);
}

body.showroom-theme .inventory-card.is-highlighted {
  background: linear-gradient(180deg, #ffffff 0%, #fff9df 100%);
  outline: 3px solid rgba(242, 194, 48, 0.34);
  outline-offset: 4px;
}

body.showroom-theme .inventory-image-wrap {
  border-radius: 8px 8px 0 0;
  background: #e8eef4;
}

body.showroom-theme .inventory-image-wrap::after {
  display: none;
}

.inventory-title-row {
  display: grid;
  gap: 10px;
}

.inventory-title-row strong {
  color: #b98600;
  font-size: 1.22rem;
}

body.showroom-theme .inventory-card-body h3 {
  line-height: 1.32;
  letter-spacing: 0;
}

.inventory-location {
  margin: 12px 0 0;
  line-height: 1.55;
}

.inventory-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #edf2f6;
  color: #415569;
  font-size: 0.92rem;
  line-height: 1.45;
}

.inventory-action {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 800;
}

body.showroom-theme .spec-chip {
  min-height: 32px;
  border-radius: 999px;
  background: #fff3c4;
  color: #5a4300;
}

body.showroom-theme .detail-layout {
  margin-top: 24px;
}

body.showroom-theme .detail-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

body.showroom-theme .detail-stack {
  display: grid;
  gap: 18px;
}

body.showroom-theme .gallery-panel,
body.showroom-theme .detail-summary,
body.showroom-theme .spec-card,
body.showroom-theme .empty-state {
  padding: 22px;
}

body.showroom-theme .gallery-panel {
  padding: 0;
}

body.showroom-theme .gallery-main {
  border-radius: 8px;
  background: #e8eef4;
}

body.showroom-theme .thumb-button {
  border-color: #dce5ee;
  border-radius: 8px;
  background: #ffffff;
}

body.showroom-theme .gallery-thumbnails {
  padding: 14px 22px 22px;
}

body.showroom-theme .thumb-button.is-active {
  border-color: var(--accent);
}

body.showroom-theme .detail-summary h1 {
  font-size: 2.5rem;
  line-height: 1.12;
}

.summary-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.summary-price-row .summary-price {
  margin: 0;
  color: #b98600;
}

.summary-price-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff2d6;
  color: #8b5b00;
  font-size: 0.9rem;
  font-weight: 800;
}

.summary-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 14px 13px 38px;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #2c3b49;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 19px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.option-grid span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #171512;
  font-weight: 800;
  line-height: 1.35;
}

body.showroom-theme .contact-fab {
  min-width: 112px;
  min-height: 52px;
  border-radius: 8px;
  background: #171512;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(36, 30, 20, 0.22);
}

body.showroom-theme .contact-action {
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--text);
}

@media (max-width: 980px) {
  body.showroom-theme .hero-copy h1 {
    max-width: none;
    font-size: 3.1rem;
  }

  body.showroom-theme .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.showroom-theme .site-shell {
    width: min(calc(100% - 24px), 1180px);
    padding-top: 12px;
  }

  body.showroom-theme .hero,
  body.showroom-theme .gallery-panel,
  body.showroom-theme .detail-summary,
  body.showroom-theme .spec-card,
  body.showroom-theme .empty-state {
    border-radius: 8px;
  }

  body.showroom-theme .hero,
  body.showroom-theme .detail-summary,
  body.showroom-theme .spec-card,
  body.showroom-theme .empty-state {
    padding: 16px;
  }

  body.showroom-theme .gallery-panel {
    padding: 0;
  }

  body.showroom-theme .topbar {
    align-items: center;
    flex-direction: row;
    margin: -16px -16px 0;
    padding: 10px;
  }

  body.showroom-theme .brand-logo {
    width: 154px;
    height: 40px;
  }

  body.showroom-theme .hero-grid {
    gap: 20px;
    margin-top: 28px;
  }

  body.showroom-theme .hero-copy h1,
  body.showroom-theme .detail-summary h1 {
    font-size: 2.22rem;
    line-height: 1.16;
  }

  body.showroom-theme .section-heading h2 {
    font-size: 1.82rem;
    line-height: 1.18;
  }

  body.showroom-theme .hero-copy .hero-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .detail-topbar {
    padding: 0 16px;
  }

  .gallery-thumbnails {
    padding: 12px 16px 16px;
  }

  .accordion-trigger {
    padding: 18px 16px;
  }

  .accordion-panel {
    padding: 0 16px 16px;
  }

  .media-lightbox-panel {
    padding: 16px;
  }

  .media-lightbox-image {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
  }

  .hero-car-facts,
  .summary-facts,
  body.showroom-theme .spec-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .inventory-title-row {
    gap: 8px;
  }

  .inventory-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  body.showroom-theme .contact-fab {
    right: 12px;
    bottom: 12px;
  }
}

body.showroom-b-theme {
  --surface: #ffffff;
  --surface-strong: #f7fafc;
  --text: #16212b;
  --text-inverse: #ffffff;
  --muted: #647383;
  --line: #dce5ee;
  --accent: #0f7b69;
  --accent-strong: #0f7b69;
  --shadow: 0 18px 48px rgba(31, 45, 61, 0.1);
  background: linear-gradient(180deg, #f8fbfd 0%, #edf3f8 100%);
  color: var(--text);
}

body.showroom-b-theme .site-shell {
  width: min(calc(100% - 32px), 1180px);
}

body.showroom-b-theme .brand {
  letter-spacing: 0;
}

body.showroom-b-theme .brand-mark {
  color: #172331;
}

body.showroom-b-theme .brand-text,
body.showroom-b-theme .eyebrow,
body.showroom-b-theme .topbar-links a:hover,
body.showroom-b-theme .topbar-links a:focus-visible,
body.showroom-b-theme .back-link:hover,
body.showroom-b-theme .back-link:focus-visible {
  color: var(--accent);
}

body.showroom-b-theme .topbar-links,
body.showroom-b-theme .back-link {
  color: #415569;
}

body.showroom-b-theme .hero {
  padding: 24px;
  border-color: var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow);
}

body.showroom-b-theme .hero::after {
  display: none;
}

body.showroom-b-theme .hero-grid {
  align-items: stretch;
  margin-top: 44px;
}

body.showroom-b-theme .eyebrow {
  letter-spacing: 0.08em;
}

body.showroom-b-theme .hero-copy h1,
body.showroom-b-theme .section-heading h2,
body.showroom-b-theme .detail-summary h1,
body.showroom-b-theme .gallery-copy h2,
body.showroom-b-theme .empty-state h1,
body.showroom-b-theme .hero-showcase-content h2,
body.showroom-b-theme .spec-card h2 {
  letter-spacing: 0;
  word-break: keep-all;
}

body.showroom-b-theme .hero-copy h1 {
  max-width: 13.5ch;
  font-size: 4.15rem;
  line-height: 1.02;
}

body.showroom-b-theme .hero-copy .hero-lead,
body.showroom-b-theme .section-caption,
body.showroom-b-theme .promise-card p,
body.showroom-b-theme .inventory-location,
body.showroom-b-theme .gallery-copy p,
body.showroom-b-theme .summary-description,
body.showroom-b-theme .spec-note,
body.showroom-b-theme .contact-action span {
  color: var(--muted);
}

body.showroom-b-theme .hero-copy .hero-lead {
  max-width: 58ch;
  font-size: 1.06rem;
}

body.showroom-b-theme .button {
  min-height: 48px;
  border-radius: 8px;
}

body.showroom-b-theme .button-primary {
  background: var(--accent);
  color: #ffffff;
}

body.showroom-b-theme .button-primary:hover,
body.showroom-b-theme .button-primary:focus-visible {
  background: #0b6658;
}

body.showroom-b-theme .button-secondary,
body.showroom-b-theme .detail-summary .button-secondary {
  border-color: #c9d6e2;
  background: #ffffff;
  color: #172331;
}

body.showroom-b-theme .hero-panel,
body.showroom-b-theme .promise-card,
body.showroom-b-theme .inventory-card,
body.showroom-b-theme .detail-summary,
body.showroom-b-theme .spec-card,
body.showroom-b-theme .gallery-panel,
body.showroom-b-theme .contact-panel,
body.showroom-b-theme .empty-state {
  border-color: var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(31, 45, 61, 0.08);
  backdrop-filter: none;
}

body.showroom-b-theme .hero-panel {
  overflow: hidden;
  padding: 0;
}

body.showroom-b-theme .hero-showcase-image,
body.showroom-b-theme .gallery-main,
body.showroom-b-theme .inventory-image-wrap {
  background: #e8eef4;
}

body.showroom-b-theme .hero-showcase-image span,
body.showroom-b-theme .inventory-badge {
  background: rgba(255, 255, 255, 0.92);
  color: #172331;
}

body.showroom-b-theme .hero-showcase-content h2,
body.showroom-b-theme .spec-card h2 {
  color: #172331;
}

body.showroom-b-theme .hero-car-facts div,
body.showroom-b-theme .summary-facts dl,
body.showroom-b-theme .spec-item {
  border-color: #e0e8f0;
  background: #f8fafc;
}

body.showroom-b-theme .hero-car-facts dd,
body.showroom-b-theme .summary-facts dd,
body.showroom-b-theme .spec-item dd {
  color: #172331;
}

body.showroom-b-theme .promise,
body.showroom-b-theme .inventory-section {
  margin-top: 48px;
}

body.showroom-b-theme .promise-card {
  padding: 22px;
}

body.showroom-b-theme .promise-card h3 {
  margin: 0;
  font-size: 1.16rem;
}

body.showroom-b-theme .inventory-grid {
  gap: 18px;
}

body.showroom-b-theme .inventory-card {
  color: var(--text);
}

body.showroom-b-theme .inventory-card:hover,
body.showroom-b-theme .inventory-card:focus-visible {
  border-color: rgba(15, 123, 105, 0.42);
  box-shadow: 0 20px 48px rgba(31, 45, 61, 0.14);
}

body.showroom-b-theme .inventory-image-wrap {
  border-radius: 8px 8px 0 0;
}

body.showroom-b-theme .inventory-image-wrap::after {
  display: none;
}

body.showroom-b-theme .inventory-title-row strong,
body.showroom-b-theme .summary-price-row .summary-price,
body.showroom-b-theme .inventory-action {
  color: #0b6658;
}

body.showroom-b-theme .inventory-card-body h3 {
  line-height: 1.32;
  letter-spacing: 0;
}

body.showroom-b-theme .inventory-card-footer {
  border-top-color: #edf2f6;
  color: #415569;
}

body.showroom-b-theme .spec-chip {
  min-height: 32px;
  border-radius: 999px;
  background: #e8f4f1;
  color: #0b6658;
}

body.showroom-b-theme .detail-layout {
  margin-top: 24px;
}

body.showroom-b-theme .detail-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

body.showroom-b-theme .gallery-panel,
body.showroom-b-theme .detail-summary,
body.showroom-b-theme .spec-card,
body.showroom-b-theme .empty-state {
  padding: 22px;
}

body.showroom-b-theme .thumb-button {
  border-color: #dce5ee;
  border-radius: 8px;
  background: #ffffff;
}

body.showroom-b-theme .thumb-button.is-active {
  border-color: var(--accent);
}

body.showroom-b-theme .detail-summary h1 {
  font-size: 2.5rem;
  line-height: 1.12;
}

body.showroom-b-theme .summary-price-row span {
  background: #e8f4f1;
  color: #0b6658;
}

body.showroom-b-theme .check-list li {
  border-color: #e0e8f0;
  background: #f8fafc;
  color: #2c3b49;
}

body.showroom-b-theme .contact-fab {
  min-width: 112px;
  min-height: 52px;
  border-radius: 8px;
  background: #172331;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(31, 45, 61, 0.22);
}

body.showroom-b-theme .contact-action {
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--text);
}

@media (max-width: 980px) {
  body.showroom-b-theme .hero-copy h1 {
    max-width: none;
    font-size: 3.1rem;
  }

  body.showroom-b-theme .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.showroom-b-theme .site-shell {
    width: min(calc(100% - 24px), 1180px);
    padding-top: 12px;
  }

  body.showroom-b-theme .hero,
  body.showroom-b-theme .gallery-panel,
  body.showroom-b-theme .detail-summary,
  body.showroom-b-theme .spec-card,
  body.showroom-b-theme .empty-state {
    padding: 16px;
    border-radius: 8px;
  }

  body.showroom-b-theme .hero-grid {
    gap: 20px;
    margin-top: 34px;
  }

  body.showroom-b-theme .hero-copy h1,
  body.showroom-b-theme .detail-summary h1 {
    font-size: 2.22rem;
    line-height: 1.16;
  }

  body.showroom-b-theme .section-heading h2 {
    font-size: 1.82rem;
    line-height: 1.18;
  }

  body.showroom-b-theme .hero-copy .hero-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  body.showroom-b-theme .spec-grid {
    grid-template-columns: 1fr;
  }

  body.showroom-b-theme .contact-fab {
    right: 12px;
    bottom: 12px;
  }
}

body.showroom-c-theme {
  --surface: #ffffff;
  --surface-strong: #f8fafc;
  --text: #171512;
  --text-inverse: #ffffff;
  --muted: #5f6f7f;
  --line: #dde6ee;
  --accent: #f2c230;
  --accent-strong: #d8a600;
  --shadow: 0 20px 58px rgba(31, 45, 61, 0.12);
  background:
    linear-gradient(180deg, rgba(23, 21, 18, 0.04), rgba(23, 21, 18, 0) 160px),
    linear-gradient(180deg, #f8fbfd 0%, #edf3f8 100%);
  color: var(--text);
}

body.showroom-c-theme .site-shell {
  width: min(calc(100% - 32px), 1180px);
}

.showroom-c-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: #201b17;
  box-shadow: 0 18px 42px rgba(32, 27, 23, 0.16);
}

.showroom-c-header-inner {
  width: min(calc(100% - 32px), 1220px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

body.showroom-c-theme .brand-logo {
  width: 204px;
  height: 52px;
}

.showroom-c-header .topbar-links {
  color: #f2c230;
}

body.showroom-c-theme .youtube-link {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

body.showroom-c-theme .youtube-link:hover,
body.showroom-c-theme .youtube-link:focus-visible {
  background: #ff0033;
  color: #ffffff;
}

body.showroom-c-theme .topbar-links .youtube-link:hover,
body.showroom-c-theme .topbar-links .youtube-link:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
}

body.showroom-c-theme .topbar-links .youtube-link:hover svg,
body.showroom-c-theme .topbar-links .youtube-link:focus-visible svg {
  fill: #ffffff;
}

.showroom-c-shell {
  padding-top: 56px;
}

.showroom-c-emphasis {
  position: relative;
  display: inline-block;
  color: #171512;
}

.showroom-c-emphasis::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.28em;
  background: rgba(242, 194, 48, 0.38);
  border-radius: 999px;
  z-index: -1;
}

.showroom-c-footer {
  margin-top: 56px;
  padding: 20px 0 8px;
  border-top: 1px solid rgba(23, 21, 18, 0.08);
}

.showroom-c-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.showroom-c-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.showroom-c-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 20px 0;
}

.showroom-c-hero-copy h1,
body.showroom-c-theme .section-heading h2,
body.showroom-c-theme .detail-summary h1,
body.showroom-c-theme .gallery-copy h2,
body.showroom-c-theme .empty-state h1,
body.showroom-c-theme .spec-card h2 {
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.showroom-c-hero-copy h1 {
  margin: 0;
  max-width: 13.5ch;
  font-size: 4.15rem;
  line-height: 1.02;
}

body.showroom-c-theme .hero-lead,
body.showroom-c-theme .section-caption,
body.showroom-c-theme .promise-card p,
body.showroom-c-theme .inventory-location,
body.showroom-c-theme .summary-description,
body.showroom-c-theme .contact-action span {
  color: var(--muted);
}

.showroom-c-hero-copy .hero-lead {
  max-width: 58ch;
  margin-top: 22px;
  font-size: 1.06rem;
}

body.showroom-c-theme .button-primary {
  background: #171512;
  color: #fffdf8;
}

body.showroom-c-theme .button-primary:hover,
body.showroom-c-theme .button-primary:focus-visible {
  background: #2a251e;
}

body.showroom-c-theme .button-secondary {
  border-color: #d9d0c2;
  background: #ffffff;
  color: #171512;
}

body.showroom-c-theme .hero-panel {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(31, 45, 61, 0.08);
  backdrop-filter: none;
  align-self: center;
}

body.showroom-c-theme .hero-showcase-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef4;
}

body.showroom-c-theme .hero-showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.showroom-c-theme .hero-showcase-image span {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(23, 21, 18, 0.9);
  color: #f8d755;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(31, 45, 61, 0.14);
}

body.showroom-c-theme .hero-showcase-content {
  padding: 24px 22px;
}

body.showroom-c-theme .hero-showcase-content h2 {
  margin: 0;
  color: #171512;
  font-size: 1.36rem;
  line-height: 1.25;
}

body.showroom-c-theme .promise,
body.showroom-c-theme .inventory-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(23, 21, 18, 0.08);
}

body.showroom-c-theme .promise-grid {
  gap: 18px;
}

body.showroom-c-theme .promise-card,
body.showroom-c-theme .inventory-card,
body.showroom-c-theme .detail-summary,
body.showroom-c-theme .spec-card,
body.showroom-c-theme .gallery-panel,
body.showroom-c-theme .contact-panel,
body.showroom-c-theme .empty-state {
  border-color: var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(31, 45, 61, 0.08);
}

body.showroom-c-theme .promise-card {
  padding: 22px;
}

body.showroom-c-theme .promise-card h3 {
  margin: 18px 0 0;
  font-size: 1.16rem;
}

body.showroom-c-theme .inventory-grid {
  gap: 18px;
}

body.showroom-c-theme .inventory-card:hover,
body.showroom-c-theme .inventory-card:focus-visible,
body.showroom-c-theme .inventory-card.is-highlighted {
  border-color: rgba(242, 194, 48, 0.74);
  box-shadow: 0 20px 48px rgba(36, 30, 20, 0.14);
}

body.showroom-c-theme .inventory-card.is-highlighted {
  background: linear-gradient(180deg, #ffffff 0%, #fff9df 100%);
  outline: 3px solid rgba(242, 194, 48, 0.34);
  outline-offset: 4px;
}

body.showroom-c-theme .inventory-image-wrap {
  border-radius: 8px 8px 0 0;
}

body.showroom-c-theme .spec-chip {
  background: rgba(242, 194, 48, 0.12);
  color: #6f4d00;
}

body.showroom-c-theme .promise-number {
  background: #171512;
  color: #f2c230;
}

body.showroom-c-theme .contact-fab {
  background: linear-gradient(135deg, #171512, #41352a);
  color: #ffffff;
}

@media (max-width: 1080px) {
  .showroom-c-header-inner {
    min-height: 76px;
  }
}

@media (max-width: 920px) {
  .showroom-c-hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 720px) {
  .showroom-c-header-inner {
    min-height: 72px;
  }

  .showroom-c-shell {
    padding-top: 26px;
  }

  .showroom-c-hero-copy h1 {
    max-width: none;
    font-size: 3.1rem;
  }
}
