:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-soft: #eee8dd;
  --text: #171717;
  --text-soft: #34302b;
  --muted: #746f66;
  --brick: #8f3f2a;
  --line: rgba(23, 23, 23, 0.12);
  --line-soft: rgba(23, 23, 23, 0.08);
  --shadow: 0 18px 46px rgba(25, 22, 18, 0.08);
  --container: 1100px;
  --page-pad: 18px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

body,
main,
section,
header,
footer,
div,
article,
nav {
  max-width: 100%;
}

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

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 16px var(--page-pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(246, 243, 238, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 23, 23, 0.22);
  background:
    linear-gradient(135deg, transparent 0 45%, var(--brick) 46% 54%, transparent 55%),
    #151515;
}

.brand strong {
  display: block;
  font-size: clamp(20px, 6vw, 27px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  color: var(--text-soft);
  font-size: clamp(13px, 4vw, 16px);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
}

.nav a {
  min-width: 0;
  padding: 4px 0;
}

.nav a:hover {
  color: var(--brick);
}

.hero,
.shop-hero,
.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.hero,
.shop-hero {
  display: grid;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 64px;
}

.hero-visual {
  order: -1;
  overflow: hidden;
  border-radius: 18px;
  background: #e8e1d6;
  box-shadow: var(--shadow);
}

.shop-hero .hero-visual {
  order: 0;
}

.hero-lifestyle {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #e8e1d6;
}

.hero-lifestyle img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 58%;
}

.hero-lifestyle figcaption {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-lifestyle strong,
.hero-lifestyle span {
  display: block;
  overflow-wrap: anywhere;
}

.hero-lifestyle strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.hero-lifestyle span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-carousel,
.hero-slide,
.hero-slide picture {
  width: 100%;
}

.hero-slide {
  margin: 0;
}

.hero-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.hero-slide figcaption {
  display: none;
}

.hero-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.hero-note {
  max-width: 620px;
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
}

.hero-product-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: #fff;
}

.hero-product-stack a {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #f4f1ec;
}

.hero-product-stack a:first-child {
  grid-column: 1 / -1;
}

.hero-product-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.hero-product-stack span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
}

.hero-product-stack a:hover img {
  transform: scale(1.025);
}

.eyebrow {
  margin: 0;
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 8vw, 32px);
  line-height: 1.16;
  font-weight: 900;
}

.line-keep {
  white-space: nowrap;
}

.lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 10px;
}

.btn,
.product-cta,
.product-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid #171717;
  border-radius: 10px;
  background: #171717;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.product-cta:hover,
.product-consult:hover {
  border-color: var(--brick);
  background: var(--brick);
}

.btn:active,
.product-cta:active,
.product-consult:active {
  transform: translateY(1px);
}

.btn-secondary,
.btn-mail,
.product-consult {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

.btn-line,
.btn-phone {
  background: #171717;
  color: #fff;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-warm {
  width: 100%;
  max-width: none;
  background: #fff;
}

.section-warm > * {
  width: min(100%, var(--container));
  margin-right: auto;
  margin-left: auto;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 8vw, 32px);
  line-height: 1.2;
  font-weight: 900;
}

.section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.status-message {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-message.is-hidden {
  display: none;
}

.search-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.shop-search {
  display: grid;
  gap: 10px;
}

.shop-search input {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  outline: none;
  box-shadow: 0 8px 24px rgba(25, 22, 18, 0.04);
}

.shop-search input:focus {
  border-color: rgba(143, 63, 42, 0.48);
  box-shadow: 0 0 0 4px rgba(143, 63, 42, 0.08);
}

.shop-search p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-meta button,
.favorite-btn {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.search-meta button.is-active,
.favorite-btn[aria-pressed="true"] {
  border-color: rgba(143, 63, 42, 0.34);
  background: #fbf4ef;
  color: var(--brick);
}

.favorite-btn {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.favorite-btn:hover {
  border-color: rgba(143, 63, 42, 0.34);
  background: #fbfaf7;
}

.favorite-btn:active {
  transform: translateY(1px);
}

.detail-favorite {
  margin-bottom: 10px;
}

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

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

.category-card,
.maker-card {
  display: grid;
  gap: 8px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(25, 22, 18, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.category-card {
  position: relative;
  overflow: hidden;
  gap: 8px;
  min-height: 168px;
  padding: 0;
  border-radius: 16px;
  background: #171717;
  color: #fff;
  box-shadow: 0 12px 30px rgba(25, 22, 18, 0.07);
}

.category-card-large {
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
}

.category-card figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #ded6c9;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 36%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.category-card:hover,
.maker-card:hover,
.category-card.is-active {
  border-color: rgba(143, 63, 42, 0.4);
  box-shadow: 0 18px 38px rgba(25, 22, 18, 0.13);
  transform: translateY(-2px);
}

.category-card:hover img,
.category-card.is-active img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.category-card span,
.maker-card span {
  font-size: 15px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.category-card .category-label,
.category-card .category-name,
.category-card strong,
.category-card small {
  position: relative;
  z-index: 1;
  margin-right: 12px;
  margin-left: 12px;
}

.category-card .category-label {
  display: none;
}

.category-card .category-name {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.category-card strong,
.maker-card strong {
  color: var(--brick);
  font-size: 12px;
  font-weight: 900;
}

.category-card strong {
  width: fit-content;
  margin-bottom: 10px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #171717;
  font-size: 10px;
}

.category-card small {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  overflow: hidden;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lifestyle-scene-grid {
  display: grid;
  gap: 16px;
}

.lifestyle-scene-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(25, 22, 18, 0.06);
}

.lifestyle-scene-card figure {
  margin: 0;
  overflow: hidden;
  background: #e7e0d5;
}

.lifestyle-scene-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.lifestyle-scene-card > div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.lifestyle-scene-card h3,
.catalog-intro h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.lifestyle-scene-card p,
.catalog-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.scene-category-button {
  width: fit-content;
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #171717;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.lifestyle-scene-card:hover img {
  transform: scale(1.025);
}

.scene-category-button:hover {
  background: #2a241f;
  box-shadow: 0 10px 20px rgba(25, 22, 18, 0.12);
  transform: translateY(-1px);
}

.catalog-intro {
  grid-column: 1 / -1;
  padding: 24px 20px;
  border: 1px dashed rgba(25, 22, 18, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.scene-grid {
  display: grid;
  gap: 28px;
}

.scene-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.scene-photo {
  overflow: hidden;
  background: #f2eee6;
}

.scene-photo picture,
.scene-photo img {
  width: 100%;
}

.scene-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.scene-content {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 24px 20px 26px;
}

.scene-category,
.used-title,
.product-model {
  margin: 0;
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scene-content h3 {
  margin: 0;
  font-size: clamp(25px, 8vw, 32px);
  line-height: 1.22;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.scene-content > p:not(.scene-category) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.scene-content blockquote {
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 6vw, 26px);
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.used-products-block {
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.used-products {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.used-product {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.used-maker {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.used-product h4 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.used-price {
  margin: 0;
  color: var(--text-soft);
  font-weight: 900;
}

.used-product a,
.used-product span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid #171717;
  border-radius: 9px;
  background: #171717;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.used-product.is-coming span {
  border-color: var(--line);
  background: #f8f7f4;
  color: var(--muted);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 24px;
}

.category-strip span {
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.catalog-grid {
  display: grid;
  gap: 16px;
}

.catalog-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 22px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(25, 22, 18, 0.05);
}

.catalog-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.catalog-card p:not(.product-model) {
  margin: 0;
  color: var(--muted);
}

.catalog-specs,
.catalog-meta {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.catalog-specs span,
.catalog-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.catalog-specs strong,
.catalog-meta strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.catalog-actions {
  display: grid;
  gap: 10px;
}

.shop-card {
  min-width: 0;
}

.shop-card-inner {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(25, 22, 18, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.shop-card-inner:hover {
  border-color: rgba(143, 63, 42, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.shop-card-image {
  margin: 0;
  overflow: hidden;
  background: #f4f1ec;
}

.shop-card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  transition: transform 0.24s ease;
}

.shop-card-inner:hover .shop-card-image img {
  transform: scale(1.02);
}

.shop-card-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.shop-card-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.34;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.shop-card-maker {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.shop-card-price {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.shop-card-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.shop-card .product-cta,
.shop-card .product-consult {
  width: 100%;
  min-width: 0;
  margin-top: 6px;
}

.shop-card .product-consult {
  min-height: 44px;
}

.empty-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.quote-grid,
.story-grid,
.info-cards,
.faq-list {
  display: grid;
  gap: 16px;
}

.quote-grid p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: clamp(22px, 7vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

.contact-section {
  text-align: center;
}

.contact-section .section-head {
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  padding: 28px var(--page-pad) 44px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.detail-page {
  background: var(--bg);
}

.detail-hero {
  display: grid;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 28px var(--page-pad) 54px;
}

.detail-hero-copy {
  display: grid;
  gap: 12px;
}

.detail-hero-copy h1 {
  font-size: clamp(28px, 8vw, 32px);
}

.detail-hero-copy .lead {
  color: var(--muted);
}

.detail-hero-image {
  order: -1;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 18px;
  background: #f2eee6;
}

.detail-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-layout,
.detail-gallery,
.detail-specs {
  display: grid;
  gap: 18px;
}

.detail-panel,
.info-card,
.story-grid article,
.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--surface);
  padding: 22px 18px;
}

.detail-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: #fff;
}

.detail-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
}

.detail-specs {
  gap: 0;
  margin: 0 0 22px;
}

.detail-specs div {
  display: grid;
  grid-template-columns: minmax(88px, 0.35fr) minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
}

.detail-specs div:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.detail-specs dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-specs dd {
  min-width: 0;
  margin: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.compare-actions {
  display: grid;
  gap: 10px;
}

.compare-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.compare-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.compare-btn:hover {
  border-color: rgba(143, 63, 42, 0.38);
  background: #fbfaf7;
  transform: translateY(-1px);
}

@media (min-width: 720px) {
  :root {
    --page-pad: 28px;
  }

  .site-header {
    grid-template-columns: auto minmax(280px, 420px);
    align-items: center;
  }

  .hero,
  .shop-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 34px;
    padding-top: 46px;
    padding-bottom: 82px;
  }

  .shop-hero {
    width: min(100%, 1220px);
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.28fr);
    gap: 42px;
  }

  .hero-visual {
    order: 0;
  }

  .hero-lifestyle img {
    aspect-ratio: 16 / 11;
  }

  .hero-lifestyle figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100% - 36px));
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(25, 22, 18, 0.12);
  }

  .hero-lifestyle strong {
    font-size: 15px;
  }

  .hero-slide img {
    aspect-ratio: 4 / 3;
  }

  h1 {
    font-size: clamp(42px, 7vw, 56px);
  }

  .shop-hero h1 {
    max-width: 560px;
    font-size: clamp(40px, 4.4vw, 50px);
    line-height: 1.12;
  }

  .shop-hero .lead {
    max-width: 540px;
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .btn,
  .product-cta,
  .product-consult {
    width: auto;
    min-width: 180px;
  }

  .scene-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  }

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

  .scene-card:nth-child(even) .scene-photo {
    order: 2;
  }

  .scene-card:nth-child(even) .scene-content {
    order: 1;
  }

  .scene-photo img {
    height: 100%;
    min-height: 100%;
  }

  .used-product {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

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

  .category-grid,
  .maker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-card-large {
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
  }

  .category-card figure {
    grid-row: auto;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }

  .category-card {
    min-height: 184px;
  }

  .category-card .category-name {
    font-size: 19px;
  }

  .category-card small {
    font-size: 12px;
  }

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

  .compare-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 34px;
    padding-top: 46px;
  }

  .detail-hero-image {
    order: 0;
    margin-bottom: 0;
  }

  .detail-hero-copy h1 {
    font-size: clamp(40px, 6vw, 52px);
  }

  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

@media (min-width: 980px) {
  :root {
    --page-pad: 32px;
  }

  .site-header {
    padding-right: max(32px, calc((100vw - var(--container)) / 2 + 32px));
    padding-left: max(32px, calc((100vw - var(--container)) / 2 + 32px));
  }

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

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

  .category-card {
    min-height: 178px;
  }

  .lifestyle-scene-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lifestyle-scene-card img {
    aspect-ratio: 16 / 9;
  }
}
