:root {
  --ink: #18201c;
  --muted: #67716b;
  --line: #dfe5dc;
  --paper: #f7f5ef;
  --white: #ffffff;
  --forest: #234337;
  --moss: #7a8d59;
  --walnut: #8f5f36;
  --clay: #b87052;
  --shadow: 0 18px 48px rgba(25, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(24, 32, 28, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.88;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: 112px clamp(22px, 5vw, 72px) 72px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 20, 17, 0.82) 0%, rgba(14, 20, 17, 0.54) 42%, rgba(14, 20, 17, 0.14) 100%),
    linear-gradient(0deg, rgba(14, 20, 17, 0.22), rgba(14, 20, 17, 0.04));
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d6e3b4;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--forest);
}

.hero .button.primary {
  color: var(--ink);
  background: #f0e5cf;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics div {
  min-height: 134px;
  padding: 28px clamp(18px, 3vw, 36px);
  background: var(--white);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 1.1rem;
}

.metrics span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.section,
.band-inner,
.contact-section {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow),
.band p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

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

.product-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(24, 32, 28, 0.06);
}

.product-card > div:last-child {
  padding: 24px;
}

.product-card p {
  margin: 14px 0 18px;
  color: var(--muted);
  line-height: 1.62;
}

.product-card span {
  display: inline-flex;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

.product-visual {
  position: relative;
  isolation: isolate;
  background: #efe6d7;
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  content: "";
}

.side-table::before {
  left: 50%;
  top: 38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d2a66e, var(--walnut));
  transform: translateX(-50%);
}

.side-table::after {
  left: 50%;
  bottom: 22px;
  width: 68px;
  height: 88px;
  border-right: 10px solid #25231f;
  border-left: 10px solid #25231f;
  transform: translateX(-50%);
}

.coffee-table::before {
  left: 28px;
  right: 28px;
  top: 58px;
  height: 58px;
  border-radius: 34px;
  background: linear-gradient(90deg, #a3663f, #d6b078);
}

.coffee-table::after {
  left: 52px;
  right: 52px;
  bottom: 44px;
  height: 62px;
  border-right: 10px solid #2a2e2b;
  border-left: 10px solid #2a2e2b;
}

.cabinet::before {
  left: 34px;
  right: 34px;
  top: 42px;
  height: 106px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.38) 49% 51%, transparent 51%),
    linear-gradient(135deg, #6f4428, #b67a4d);
}

.cabinet::after {
  left: 54px;
  right: 54px;
  bottom: 24px;
  height: 40px;
  border-right: 8px solid #262521;
  border-left: 8px solid #262521;
}

.shelf::before {
  inset: 34px 46px 26px;
  border: 9px solid #2b322e;
  border-top-width: 12px;
}

.shelf::after {
  left: 48px;
  right: 48px;
  top: 82px;
  height: 12px;
  box-shadow: 0 42px 0 #8f5f36;
  background: #8f5f36;
}

.band {
  background: var(--forest);
  color: var(--white);
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(70px, 9vw, 110px) 0;
}

.band .eyebrow {
  color: #d3dda7;
}

.band p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 22px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.capability-list div {
  min-height: 190px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.capability-list p {
  margin-top: 12px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}

.section-heading.compact {
  display: block;
  margin: 0;
}

.section-heading.compact h2 {
  margin-bottom: 22px;
}

.check-panel {
  display: grid;
  gap: 14px;
}

.check-panel div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.check-panel span {
  grid-row: span 2;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 900;
}

.check-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.timeline div {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 480px);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  margin-bottom: 22px;
}

.contact-methods a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd7cf;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfbf8;
  font: inherit;
  resize: vertical;
}

.inquiry-form textarea {
  min-height: 130px;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #161b18;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer span {
  margin-top: 6px;
}

.catalog-page {
  background: #f7f5ef;
}

.catalog-header {
  position: sticky;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 58px;
}

.catalog-hero h1 {
  max-width: 13ch;
  color: var(--ink);
  font-size: clamp(2.7rem, 4.4vw, 4.6rem);
}

.catalog-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.catalog-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.catalog-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(3, 112px);
  gap: 12px;
}

.catalog-showcase img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(239, 230, 215, 0.6)),
    #f1eadf;
  box-shadow: 0 12px 30px rgba(24, 32, 28, 0.08);
}

.catalog-showcase .showcase-main {
  grid-row: span 3;
  padding: 26px;
}

.catalog-toolbar {
  position: sticky;
  top: 72px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 22px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 239, 0.94);
  backdrop-filter: blur(14px);
}

.catalog-toolbar strong,
.catalog-toolbar span {
  display: block;
}

.catalog-toolbar span {
  margin-top: 4px;
  color: var(--muted);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.catalog-filters span {
  margin: 0;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: clamp(70px, 9vw, 120px);
}

.catalog-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(24, 32, 28, 0.06);
}

.catalog-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 18px;
  background:
    linear-gradient(145deg, #fbfaf6, #eee4d6);
  border-bottom: 1px solid var(--line);
}

.catalog-card > div {
  display: grid;
  align-content: start;
  padding: 22px;
}

.catalog-tag {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--forest);
  background: #edf1e4;
  font-size: 0.75rem;
  font-weight: 900;
}

.catalog-card h2 {
  max-width: none;
  font-size: 1.2rem;
  line-height: 1.22;
}

.catalog-card p {
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.catalog-card dl {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px 12px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid #e8ede6;
  border-radius: 8px;
  background: #fbfbf7;
  font-size: 0.88rem;
}

.catalog-card dt {
  color: var(--forest);
  font-weight: 900;
}

.catalog-card dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.catalog-card a {
  align-self: end;
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--forest);
  border-radius: 6px;
  color: var(--forest);
  font-weight: 900;
}

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

.catalog-actions a:first-child {
  color: var(--white);
  background: var(--forest);
}

.catalog-card.featured-card {
  grid-column: span 3;
  grid-template-columns: minmax(360px, 0.88fr) minmax(360px, 1fr);
  grid-template-rows: auto;
  min-height: 360px;
}

.catalog-card.featured-card img {
  height: 100%;
  min-height: 360px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.catalog-card.featured-card > div {
  padding: clamp(28px, 5vw, 48px);
}

.catalog-card.featured-card h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  max-width: 12ch;
}

.catalog-card.featured-card p {
  max-width: 620px;
  font-size: 1.04rem;
}

.catalog-card.featured-card dl {
  max-width: 620px;
}

.product-detail-page .site-header {
  position: sticky;
}

.detail-hero,
.detail-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(340px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 60px 0 52px;
}

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

.detail-main-image,
.detail-thumbs img,
.feature-band img,
.image-story img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  object-fit: cover;
}

.detail-main-image {
  aspect-ratio: 1 / 1;
}

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

.detail-thumbs img {
  aspect-ratio: 1 / 1;
}

.detail-summary {
  display: grid;
  align-content: center;
}

.breadcrumb {
  width: fit-content;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.detail-summary h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.6vw, 4.9rem);
}

.detail-summary p,
.detail-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.detail-highlights span,
.option-list span,
.detail-note span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font-weight: 850;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-section {
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.detail-split h2,
.detail-heading h2,
.inquiry-panel h2 {
  max-width: 13ch;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.detail-note,
.option-list {
  display: grid;
  gap: 10px;
}

.detail-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 32, 28, 0.06);
}

.detail-note strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.detail-heading {
  margin-bottom: 22px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.spec-grid div {
  min-height: 138px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-grid strong,
.spec-grid span {
  display: block;
}

.spec-grid strong {
  margin-bottom: 12px;
  color: var(--forest);
}

.spec-grid span {
  color: var(--muted);
  line-height: 1.5;
}

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

.feature-band > div {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-band img {
  aspect-ratio: 1 / 1;
}

.feature-band h3 {
  font-size: 1.25rem;
}

.feature-band p {
  margin: 0;
}

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

.image-story img {
  aspect-ratio: 3 / 4;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 70px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-toggle {
    display: block;
  }

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

  .section-heading,
  .band-inner,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .catalog-card.featured-card {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .catalog-card.featured-card img {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-hero,
  .detail-split,
  .inquiry-panel {
    grid-template-columns: 1fr;
  }

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

  .feature-band,
  .image-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 82vh;
    padding-inline: 20px;
  }

  h1 {
    max-width: 10ch;
  }

  .metrics,
  .product-grid,
  .capability-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 168px 1fr;
    min-height: auto;
  }

  .section,
  .band-inner,
  .contact-section {
    width: min(100% - 32px, 1180px);
  }

  .check-panel div {
    grid-template-columns: 1fr;
  }

  .check-panel span {
    grid-row: auto;
  }

  .site-footer {
    display: grid;
  }

  .catalog-hero,
  .catalog-toolbar,
  .catalog-grid {
    width: min(100% - 32px, 1180px);
  }

  .catalog-toolbar {
    position: static;
    display: grid;
  }

  .catalog-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 108px;
  }

  .catalog-hero {
    padding-top: 104px;
    padding-bottom: 36px;
  }

  .catalog-hero h1 {
    font-size: 2.08rem;
    max-width: 100%;
  }

  .catalog-hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .catalog-hero-actions .button {
    min-height: 44px;
    padding-inline: 16px;
  }

  .catalog-showcase .showcase-main {
    grid-column: span 2;
    grid-row: auto;
  }

  .catalog-showcase img:last-child {
    display: none;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card,
  .catalog-card.featured-card {
    grid-column: auto;
  }

  .catalog-card.featured-card h2 {
    font-size: 1.65rem;
  }

  .catalog-card.featured-card img {
    height: 260px;
    min-height: 0;
  }

  .catalog-card dl {
    grid-template-columns: 1fr;
  }

  .catalog-actions,
  .detail-highlights,
  .detail-thumbs,
  .spec-grid,
  .feature-band,
  .image-story {
    grid-template-columns: 1fr;
  }

  .detail-hero,
  .detail-section {
    width: min(100% - 32px, 1180px);
  }

  .detail-summary h1 {
    max-width: 100%;
    font-size: 2.15rem;
  }

  .detail-split h2,
  .detail-heading h2,
  .inquiry-panel h2 {
    max-width: 100%;
    font-size: 1.85rem;
  }

  .inquiry-panel {
    margin-bottom: 44px;
  }
}
