:root {
  --bg: #050505;
  --panel: #11100f;
  --panel-2: #191512;
  --text: #f7f2ea;
  --muted: #b2aaa2;
  --line: rgba(255, 76, 0, .2);
  --steel: #d9d3ca;
  --orange: #ff4b00;
  --orange-dark: #9f2d00;
  --orange-soft: #ff7a31;
  --accent: #0d7f86;
  --accent-dark: #07484d;
  --accent-soft: #6fb8bd;
  --red: var(--orange);
  --red-dark: var(--orange-dark);
  --tan: var(--orange-soft);
  --cream: #f6efe5;
  --shadow: 0 24px 80px rgba(0, 0, 0, .46);
  --display-h1-pc: clamp(32px, 3.1vw, 48px);
  --display-h1-mobile: clamp(20px, 6.2vw, 28px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 75, 0, .18) 0, rgba(255, 75, 0, 0) 28rem),
    radial-gradient(circle at 82% 18rem, rgba(13, 127, 134, .14) 0, rgba(13, 127, 134, 0) 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

body * {
  min-width: 0;
}

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

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

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

.announcement {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 8px 18px;
  background: var(--orange);
  color: #080605;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.announcement span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.edit-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
  padding: 4px 7px;
  background: rgba(255, 75, 0, .16);
  border: 1px solid rgba(255, 75, 0, .76);
  color: #ff8a4d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.edit-badge-inline {
  margin: 0;
  background: #090807;
  color: var(--cream);
}

.edit-badge-flow {
  margin-bottom: 10px;
}

.edit-badge-summary {
  margin: 0 12px 0 0;
  vertical-align: middle;
}

.edit-badge-nav {
  margin: 0 0 5px;
  padding: 3px 5px;
  font-size: 9px;
  letter-spacing: .08em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  padding: 18px clamp(18px, 5vw, 72px);
  background: #000;
  border-bottom: 1px solid rgba(255, 75, 0, .18);
}

.brand {
  grid-column: 1;
  width: clamp(208px, 24.8vw, 352px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  max-height: 92px;
  height: auto;
  object-fit: contain;
}

.nav {
  grid-column: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 26px);
  color: #c9c0b8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav a {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  transition: color .2s ease;
}

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

.language-switch {
  grid-column: 3;
  display: inline-flex;
  flex: 0 0 auto;
  justify-self: end;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 75, 0, .28);
}

.language-switch a {
  display: inline-flex;
  min-width: 28px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.language-switch a + a {
  border-left: 1px solid rgba(255, 75, 0, .28);
}

.language-switch a:hover,
.language-switch a.is-active {
  background: var(--orange);
  color: #080605;
}

.locale-gateway {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: #000;
}

.gateway-panel {
  display: grid;
  width: min(680px, 100%);
  gap: 18px;
  justify-items: center;
  padding: clamp(28px, 6vw, 56px);
  background: var(--panel);
  border: 1px solid rgba(255, 75, 0, .28);
  text-align: center;
  box-shadow: var(--shadow);
}

.gateway-panel img {
  width: min(420px, 100%);
}

.gateway-panel h1 {
  font-size: clamp(40px, 8vw, 72px);
}

.gateway-panel p {
  margin: 0;
  color: var(--muted);
}

.gateway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.gateway-note {
  font-size: 13px;
}

.brand-story-intro {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(480px, 1.12fr);
  column-gap: clamp(44px, 6vw, 88px);
  row-gap: clamp(24px, 4vw, 46px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 84px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 66px);
}

.brand-story-headline {
  grid-column: 1 / -1;
  max-width: 100%;
}

.brand-story-headline h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: var(--display-h1-pc);
  line-height: 1.16;
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: balance;
}

.brand-story-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.brand-story-copy p {
  max-width: 42rem;
  color: var(--muted);
}

.brand-lead {
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.55;
}

.brand-film {
  position: relative;
  z-index: 0;
  justify-self: stretch;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(255, 75, 0, .26);
  background:
    linear-gradient(135deg, rgba(255, 75, 0, .08), rgba(13, 127, 134, .12)),
    #050505;
  box-shadow: var(--shadow);
}

.brand-film-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

.brand-film figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid rgba(255, 75, 0, .18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) clamp(18px, 5vw, 72px) 34px;
}

.gallery {
  min-width: 0;
}

.main-frame {
  margin: 0;
  overflow: visible;
  background: #030303;
  border: 1px solid rgba(255, 75, 0, .22);
  box-shadow: var(--shadow);
}

.main-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #030303;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(8, minmax(72px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  position: relative;
  min-width: 0;
  height: 76px;
  padding: 0;
  overflow: hidden;
  background: #070706;
  border: 1px solid rgba(255, 75, 0, .16);
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .72;
  transition: opacity .2s ease, transform .2s ease;
}

.thumb-number {
  position: absolute;
  top: 6px;
  left: 6px;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  background: rgba(12, 12, 11, .84);
  border: 1px solid rgba(255, 75, 0, .72);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.thumb:hover img,
.thumb.is-active img {
  opacity: 1;
  transform: scale(1.04);
}

.thumb.is-active {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}

.purchase-panel {
  position: sticky;
  top: 118px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(25, 21, 18, .98), rgba(9, 9, 8, .98)),
    linear-gradient(135deg, rgba(255, 75, 0, .08), rgba(13, 127, 134, .08));
  border: 1px solid rgba(255, 75, 0, .24);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: 0;
}

.purchase-panel h1 {
  font-size: clamp(36px, 4.8vw, 64px);
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 8px 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 48rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.price-line {
  margin-top: 26px;
  color: var(--cream);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
}

.price-line span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.batch-card {
  display: grid;
  gap: 13px;
  margin-top: 26px;
  padding: 18px;
  background: rgba(255, 75, 0, .045);
  border: 1px solid rgba(255, 75, 0, .24);
}

.batch-card div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.batch-card span {
  color: var(--accent-soft);
  font-weight: 700;
}

.meter {
  height: 9px;
  overflow: hidden;
  background: #080706;
}

.meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #00f5ff 0%, #ff1744 100%);
  box-shadow: 0 0 18px rgba(255, 23, 68, .28);
}

.cta-row {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 12px;
  margin-top: 24px;
}

.cta-row.single {
  grid-template-columns: 1fr;
}

.purchase-panel .shopify-cart,
.purchase-panel [id^="product-component-1779973499553"] {
  width: 100%;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.purchase-panel .button.primary {
  font-size: 15px;
}

.button.primary {
  background: var(--orange);
  color: #fff;
}

.button.primary:hover {
  background: #ff6422;
}

.button.secondary {
  border-color: rgba(13, 127, 134, .72);
  color: var(--accent-soft);
}

.button.secondary:hover {
  border-color: var(--accent-soft);
  color: var(--text);
}

.button.wide {
  width: 100%;
}

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

.quick-specs div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 75, 0, .24);
}

dt {
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 700;
}

.section {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 75, 0, .2);
  border: 1px solid var(--line);
}

.feature-grid article {
  position: relative;
  min-height: 230px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(17, 16, 15, .98), rgba(10, 10, 9, .98));
}

.feature-grid span {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .14em;
}

.feature-grid .edit-badge {
  color: #ff8a4d;
  letter-spacing: .12em;
}

.feature-grid p,
.story p,
.shipping p,
.reserve-copy p,
.preorder p,
.faq p {
  color: var(--muted);
}

.specs-story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.spec-card,
.reservation-form,
.checkout-cart,
.preorder-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 75, 0, .2);
}

.spec-card {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
}

.spec-table {
  margin: 26px 0 0;
}

.spec-table div,
.preorder-panel dl div {
  display: grid;
  grid-template-columns: minmax(130px, .72fr) 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 75, 0, .2);
}

.story {
  position: relative;
  padding-top: 8px;
}

.engraving {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 28px 0 0;
  padding: 18px;
  background: rgba(13, 127, 134, .08);
  border: 1px solid rgba(13, 127, 134, .26);
}

.engraving-compact {
  width: 50%;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 0;
}

.engraving img {
  width: 100%;
  background: #f7f7f7;
}

.engraving-compact img {
  background: transparent;
}

.engraving figcaption {
  color: var(--muted);
  font-size: 13px;
}

.preorder {
  display: flex;
  justify-content: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 75, 0, .12), rgba(13, 127, 134, .08)),
    #070706;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.preorder-panel {
  position: relative;
  width: min(100%, 520px);
  padding: 24px;
}

.preorder-panel dl {
  margin: 0 0 22px;
}

.shipping {
  position: relative;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 52px);
}

.reserve-copy {
  position: relative;
}

.mypage-section {
  max-width: 980px;
}

.mypage-section p {
  max-width: 48rem;
  color: var(--muted);
}

.system-note {
  color: var(--accent-soft);
  font-weight: 700;
}

.mypage-section .button {
  margin-top: 18px;
}

.reservation-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

.reservation-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.reservation-form label:nth-child(6),
.reservation-form .check,
.reservation-form button,
.form-message {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 75, 0, .22);
  background: #080807;
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent-soft);
}

.check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
}

.check input {
  min-height: 18px;
  margin-top: 2px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--accent-soft);
  font-weight: 700;
}

.checkout-cart {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
}

.cart-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 75, 0, .2);
}

.cart-line img {
  width: 92px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(255, 75, 0, .2);
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line strong,
.cart-price {
  font-weight: 800;
}

.cart-line span,
.cart-qty,
.cart-note {
  color: var(--muted);
}

.cart-summary {
  display: grid;
  gap: 10px;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 75, 0, .14);
}

.cart-summary span {
  color: var(--muted);
}

.cart-summary strong {
  text-align: right;
}

.cart-note {
  margin: 0;
  font-size: 13px;
}

.faq {
  max-width: 980px;
}

details {
  border-top: 1px solid rgba(255, 75, 0, .2);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 58px;
  padding: 17px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #0c0c0b;
  border-top: 1px solid rgba(255, 75, 0, .22);
  color: var(--muted);
}

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

.site-footer strong {
  color: var(--text);
  font-size: 18px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  font-size: 13px;
}

.subpage {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 96px) 0;
}

.subpage-hero {
  margin-bottom: clamp(24px, 5vw, 44px);
}

.subpage-hero h1 {
  font-size: var(--display-h1-pc);
  line-height: 1.16;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 48rem;
  color: var(--muted);
  font-size: 16px;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: min(100%, 882px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 36px);
  background: var(--panel);
  border: 1px solid rgba(255, 75, 0, .22);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form .button {
  width: min(260px, 100%);
}

.legal-list {
  display: grid;
  margin: 0;
  background: rgba(255, 75, 0, .14);
  border: 1px solid rgba(255, 75, 0, .22);
  gap: 1px;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr);
  gap: clamp(14px, 3vw, 28px);
  padding: clamp(16px, 3vw, 24px);
  background: var(--panel);
}

.legal-list dt {
  color: var(--orange);
  font-size: 13px;
}

.legal-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.legal-list a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Temporary production-preview mode: keep BLOCK markers in HTML, but hide them visually. */
.edit-badge {
  display: none !important;
}

@media (max-width: 1120px) {
  .announcement {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .site-header {
    position: sticky;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
  }

  .nav {
    width: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .language-switch {
    align-self: center;
  }

  .hero,
  .brand-story-intro,
  .specs-story,
  .preorder,
  .reserve-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .purchase-panel {
    position: static;
  }

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

@media (max-width: 680px) {
  .announcement {
    display: grid;
    justify-content: stretch;
    font-size: 10px;
    letter-spacing: .05em;
    line-height: 1.35;
  }

  .brand {
    width: clamp(112px, 36vw, 220px);
  }

  .site-header {
    padding: 12px 12px;
    gap: 6px;
  }

  .nav {
    gap: 6px 8px;
    font-size: 9px;
    letter-spacing: .04em;
  }

  .edit-badge-nav {
    margin-bottom: 3px;
    font-size: 8px;
  }

  .language-switch a {
    min-width: 22px;
    min-height: 21px;
    font-size: 8px;
  }

  .hero {
    padding-top: 22px;
  }

  .brand-story-intro {
    padding-top: 26px;
  }

  .brand-story-headline h1 {
    max-width: none;
    font-size: var(--display-h1-mobile);
    line-height: 1.34;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: auto;
    white-space: normal;
  }

  .thumbs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .thumb {
    width: 86px;
    flex: 0 0 86px;
  }

  .purchase-panel {
    padding: 22px;
  }

  h1 {
    font-size: 46px;
  }

  .cta-row,
  .quick-specs,
  .feature-grid,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .batch-card div:first-child,
  .site-footer {
    flex-direction: column;
  }

  .feature-grid article {
    min-height: 0;
  }

  .spec-table div,
  .preorder-panel dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cart-line {
    grid-template-columns: 82px 1fr;
  }

  .cart-qty,
  .cart-price {
    grid-column: 2;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .legal-list div {
    grid-template-columns: 1fr;
  }
}
