/* =========================================================
   Diver Down — 爬虫類販売カタログサイト
   Design system — Monochrome / Modern / Elegant
   ========================================================= */

:root {
  --ink:      #0A0A0A;   /* near-black */
  --ink-2:    #1C1C1C;
  --bg:       #FFFFFF;
  --paper:    #FFFFFF;
  --gray-90:  #111111;
  --gray-70:  #3D3D3D;
  --gray-50:  #6B6B6B;   /* muted text */
  --gray-30:  #A6A6A6;
  --gray-15:  #D8D8D8;
  --gray-08:  #ECECEC;
  --gray-04:  #F5F5F5;   /* section tint */
  --line:     #E6E6E6;

  --maxw: 1120px;
  --radius: 2px;
  --radius-lg: 4px;
  --shadow:    0 24px 60px -34px rgba(0,0,0,.4);
  --shadow-sm: 0 10px 30px -20px rgba(0,0,0,.5);

  --serif-latin: "Cormorant Garamond", "Shippori Mincho", serif;
  --serif-jp:    "Shippori Mincho", "Cormorant Garamond", serif;
  --sans:        "Noto Sans JP", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .012em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-weight: 600; line-height: 1.35; margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }

.eyebrow {
  font-family: var(--serif-latin);
  font-size: .82rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gray-50); font-weight: 600; margin: 0 0 16px;
}

.section { padding: 100px 0; }
.section--tight { padding: 68px 0; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-family: var(--serif-jp); font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: .045em; }
.section-lead { color: var(--gray-50); margin-top: 16px; font-size: .98rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 500; font-size: .9rem; letter-spacing: .06em;
  padding: 13px 30px; border-radius: 100px; border: 1px solid var(--ink); cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--sm { padding: 9px 22px; font-size: .82rem; }
.btn--line { background: var(--ink); color: #fff; }
.btn--line:hover { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* =========================================================
   Header / nav — minimal monochrome
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 34px; width: 34px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); background:#fff; }
.brand__name { font-family: var(--serif-latin); font-size: 1.3rem; letter-spacing: .08em; font-weight: 600; line-height: 1; }
.brand__sub { display:block; font-family: var(--sans); font-size:.54rem; letter-spacing:.36em; color: var(--gray-50); margin-top:4px; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .88rem; letter-spacing: .07em; color: var(--gray-70); position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0; background: var(--ink); transition: width .3s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* language switcher */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 100px; padding: 2px; }
.lang-switch button { font-family: var(--sans); font-size: .72rem; letter-spacing: .03em; padding: 5px 11px; border: 0; background: transparent; color: var(--gray-50); cursor: pointer; border-radius: 100px; transition: background .2s, color .2s; line-height: 1; }
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.is-active { background: var(--ink); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; width: 44px; height: 44px; }
.nav-toggle span { display:block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px auto; transition: .3s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   X-style profile header (home hero)
   ========================================================= */
.x-header { border-bottom: 1px solid var(--line); }
.x-banner {
  position: relative; width: 100%; aspect-ratio: 3 / 1; overflow: hidden; background: #0A0A0A;
  max-height: 460px;
}
.x-banner img { width: 100%; height: 100%; object-fit: cover; }

.x-body { position: relative; }
.x-role { font-family: var(--serif-jp); color: var(--ink); font-size: 1.02rem; letter-spacing: .06em; margin-top: 6px; }
.x-topline { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.x-avatar {
  width: 140px; height: 140px; border-radius: 50%; overflow: hidden;
  border: 5px solid #fff; background: #fff; margin-top: -72px; flex: 0 0 auto;
  box-shadow: var(--shadow-sm);
}
.x-avatar img { width: 100%; height: 100%; object-fit: cover; }
.x-actions { display: flex; gap: 12px; padding-bottom: 6px; flex-wrap: wrap; }

.x-identity { padding-top: 34px; }
.x-name { font-family: var(--serif-jp); font-size: clamp(1.7rem, 3.2vw, 2.3rem); letter-spacing: .05em; display: flex; align-items: center; gap: 10px; }
.x-check { width: 22px; height: 22px; color: var(--ink); }
.x-handle { color: var(--gray-50); font-size: .95rem; letter-spacing: .04em; margin-top: 2px; }
.x-bio { margin-top: 18px; max-width: 62ch; color: var(--gray-70); font-size: 1rem; }
.x-meta { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 18px; color: var(--gray-50); font-size: .9rem; }
.x-meta span { display: inline-flex; align-items: center; gap: 7px; }
.x-meta a:hover { color: var(--ink); border-bottom: 1px solid var(--ink); }
.x-meta svg { width: 16px; height: 16px; opacity: .7; }
.x-stats { display: flex; gap: 28px; margin-top: 16px; font-size: .92rem; }
.x-stats b { font-family: var(--serif-latin); font-weight: 600; font-size: 1.05rem; }
.x-stats span { color: var(--gray-50); }

/* =========================================================
   Flyer-style hero (logo + tagline + snake band)
   ========================================================= */
.flyer-top { text-align: center; padding: 56px 28px 40px; }
.flyer-logo { height: clamp(58px, 9vw, 96px); width: auto; margin: 0 auto 22px; }
.tagline {
  font-family: var(--serif-jp); letter-spacing: .16em; color: var(--ink);
  display: flex; align-items: center; justify-content: center; gap: clamp(14px,3vw,26px);
  font-size: clamp(1rem, 2.4vw, 1.35rem); font-weight: 600;
}
.tagline::before, .tagline::after { content:""; width: clamp(28px,8vw,96px); height: 1px; background: var(--ink); }

.flyer-band {
  position: relative; width: 100%; aspect-ratio: 5 / 2; max-height: 540px;
  overflow: hidden; background: #000;
}
.flyer-band img { width: 100%; height: 100%; object-fit: cover; }
.flyer-band::after { content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15) 45%, rgba(0,0,0,.5)); }
.flyer-band__inner {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center; padding: 0 24px; gap: 18px;
}
.flyer-band__title {
  color: #fff; font-family: var(--serif-jp); font-weight: 700;
  font-size: clamp(2rem, 6.6vw, 4.6rem); letter-spacing: .1em; line-height: 1.3;
  text-shadow: 0 4px 40px rgba(0,0,0,.7);
}
.flyer-band__sub { color: rgba(255,255,255,.9); letter-spacing: .3em; font-size: clamp(.8rem,2vw,1rem); text-transform: uppercase; font-family: var(--serif-latin); }
.flyer-band__chips { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:6px; }
.chip {
  border: 1px solid rgba(255,255,255,.75); color:#fff; border-radius: 100px;
  padding: 8px 20px; font-size: .82rem; letter-spacing: .14em; backdrop-filter: blur(3px);
  background: rgba(0,0,0,.2);
}
.flyer-band__actions { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top: 10px; }
.flyer-band .btn { border-color:#fff; }
.flyer-band .btn--primary { background:#fff; color:var(--ink); }
.flyer-band .btn--primary:hover { background:transparent; color:#fff; }
.flyer-band .btn--ghost { color:#fff; }
.flyer-band .btn--ghost:hover { background:#fff; color:var(--ink); }

/* =========================================================
   Medallions — flyer-style black circular badges
   ========================================================= */
.medallions {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  max-width: 940px; margin: 0 auto;
}
.medallion {
  aspect-ratio: 1; border-radius: 50%; background: var(--ink); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 18px; gap: 6px; transition: transform .3s ease;
  border: 1px solid var(--ink);
}
.medallion:hover { transform: translateY(-6px) scale(1.02); }
.medallion__top { font-size: .68rem; letter-spacing: .06em; color: rgba(255,255,255,.75); line-height: 1.5; }
.medallion__main { font-family: var(--serif-jp); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.55rem); letter-spacing: .06em; }
.medallion__note { font-size: .64rem; letter-spacing: .08em; color: rgba(255,255,255,.6); }
.medallion__main .yen { font-family: var(--serif-latin); }
@media (max-width: 720px){ .medallions { grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 460px; } }

/* photo strip (flyer middle row) */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.photo-strip .ph { aspect-ratio: 1; }
@media (max-width: 640px){ .photo-strip { grid-template-columns: repeat(3,1fr); } }

/* =========================================================
   Monochrome scale-pattern placeholder
   ========================================================= */
.ph {
  position: relative; width: 100%; height: 100%;
  background:
    radial-gradient(circle at 50% 12%, #cfcfcf 0 40%, transparent 42%),
    linear-gradient(135deg, #E4E4E4, #BFBFBF 55%, #8f8f8f);
  background-size: 26px 26px, cover; background-position: 0 0, center;
}
.ph::after {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 50% 12%, rgba(255,255,255,.35) 0 40%, transparent 42%);
  background-size: 26px 26px; background-position: 13px 13px; mix-blend-mode: overlay;
}
.ph--mid  { background: linear-gradient(135deg, #b8b8b8, #8f8f8f 60%, #6a6a6a); }
.ph--dark { background: linear-gradient(135deg, #4a4a4a, #262626 60%, #121212); }
.ph__tag { position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  font-family: var(--serif-latin); letter-spacing:.26em; color: rgba(255,255,255,.72); font-size:.8rem; text-transform: uppercase; z-index:1; }

/* =========================================================
   Cards grid
   ========================================================= */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gray-30); }
.card__media { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.card__media .ph { transition: transform .5s ease; }
.card:hover .card__media .ph { transform: scale(1.05); }
.card__cat { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,.94); color: var(--ink);
  font-size: .66rem; letter-spacing: .14em; padding: 5px 12px; border-radius: 100px; text-transform: uppercase; }
.card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__name { font-family: var(--serif-jp); font-size: 1.14rem; letter-spacing: .02em; }
.card__sci { font-family: var(--serif-latin); font-style: italic; color: var(--gray-50); font-size: .86rem; }
.card__desc { color: var(--gray-50); font-size: .88rem; flex: 1; }
.card__foot { display:flex; align-items:center; justify-content: space-between; margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.card__price { font-family: var(--serif-latin); font-size: 1.2rem; letter-spacing:.02em; }
.card__price small { font-family: var(--sans); font-size: .66rem; color: var(--gray-50); display:block; letter-spacing:.08em; }
.tag-status { font-size: .68rem; letter-spacing: .12em; padding: 4px 11px; border-radius: 100px; border: 1px solid var(--line); }
.tag-status--available { background: var(--ink); color: #fff; border-color: var(--ink); }
.tag-status--reserved  { background: #fff; color: var(--ink); }
.tag-status--sold      { background: var(--gray-08); color: var(--gray-50); }

/* filters */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { font-family: var(--sans); font-size: .84rem; letter-spacing: .06em; padding: 9px 20px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--paper); color: var(--gray-50); cursor: pointer; transition: .25s; }
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* =========================================================
   Split / features / info
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media { aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border:1px solid var(--line); }
.split__media img { width:100%; height:100%; object-fit:cover; }
.prose p { color: var(--gray-50); }
.prose p + p { margin-top: 16px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; transition: .3s; }
.feature:hover { border-color: var(--gray-30); transform: translateY(-3px); }
.feature__num { font-family: var(--serif-latin); font-size: 1rem; color: var(--gray-30); letter-spacing: .22em; }
.feature h3 { font-family: var(--serif-jp); font-size: 1.14rem; margin: 12px 0 10px; letter-spacing:.02em; }
.feature p { color: var(--gray-50); font-size: .9rem; margin: 0; }

.info-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.info-list li { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.info-list .k { font-family: var(--serif-jp); letter-spacing: .06em; font-size: .95rem; }
.info-list .v { color: var(--gray-50); }
@media (max-width: 640px){ .info-list li { grid-template-columns: 1fr; gap: 4px; } }

/* contact channels */
.channels { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.channel { display:flex; gap:16px; align-items:flex-start; padding: 26px; border:1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); transition: .3s; }
.channel:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--gray-30); }
.channel__ic { width:46px; height:46px; border-radius: 50%; display:grid; place-items:center; background: var(--ink); color: #fff; flex:0 0 auto; }
.channel__ic svg { width: 20px; height: 20px; }
.channel h3 { font-family: var(--serif-jp); font-size: 1.06rem; margin-bottom: 4px; }
.channel p { margin: 0; color: var(--gray-50); font-size: .88rem; }

/* =========================================================
   CTA band — inverted (black)
   ========================================================= */
.cta-band { background: var(--ink); color: #fff; }
.cta-band .wrap { text-align: center; padding: 92px 28px; }
.cta-band h2 { font-family: var(--serif-jp); font-size: clamp(1.8rem,4vw,2.6rem); letter-spacing:.045em; }
.cta-band p { color: rgba(255,255,255,.66); max-width: 52ch; margin: 18px auto 32px; }
.cta-band .btn { border-color: #fff; }
.cta-band .btn--primary { background: #fff; color: var(--ink); }
.cta-band .btn--primary:hover { background: transparent; color: #fff; }
.cta-band .btn--ghost { color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--ink); }

/* =========================================================
   Interior page hero
   ========================================================= */
.page-hero { padding: 80px 0 22px; text-align: center; }
.page-hero .eyebrow { text-align: center; }
.page-hero h1 { font-family: var(--serif-jp); font-size: clamp(2rem,4.5vw,3rem); letter-spacing:.055em; }
.page-hero p { color: var(--gray-50); max-width: 56ch; margin: 18px auto 0; }
.breadcrumb { font-size:.78rem; letter-spacing:.1em; color: var(--gray-50); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--ink); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.site-footer .brand__name { color: #fff; }
.site-footer p { font-size: .88rem; max-width: 38ch; }
.footer-col h4 { font-family: var(--serif-jp); color: #fff; font-size: .98rem; letter-spacing:.08em; margin-bottom: 16px; }
.footer-col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer-col a { font-size:.88rem; opacity:.75; transition:.2s; }
.footer-col a:hover { opacity:1; }
.footer-bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display:flex; justify-content: space-between; gap:16px; flex-wrap:wrap; font-size:.78rem; opacity:.6; }

/* notice */
.notice { border: 1px solid var(--line); border-left: 3px solid var(--ink); background: var(--gray-04);
  border-radius: var(--radius); padding: 18px 22px; font-size: .9rem; color: var(--gray-70); }

/* action rows (centered button groups) */
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Post carousel (marquee) — 4-across, auto-flowing */
.marquee { position: relative; overflow: hidden; padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.marquee__track { display: flex; gap: 20px; width: max-content; animation: marquee-scroll 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex: 0 0 auto; width: clamp(210px, 23vw, 280px); }
.marquee__card { display:block; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper); transition: transform .3s ease, box-shadow .3s ease; }
.marquee__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.marquee__media { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.marquee__media img { width: 100%; height: 100%; object-fit: cover; }
.marquee__cap { padding: 12px 15px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.marquee__cap b { font-family: var(--serif-jp); font-weight: 600; font-size: .9rem; letter-spacing: .02em; }
.marquee__cap span { font-size: .68rem; color: var(--gray-50); white-space: nowrap; }
@keyframes marquee-scroll { to { transform: translateX(calc(-50% - 10px)); } }
@media (prefers-reduced-motion: reduce){ .marquee__track { animation: none; } }

/* X (Twitter) embedded timeline — auto-updates from posts */
.x-embed { max-width: 600px; margin: 0 auto; min-height: 200px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-04); }
.x-embed .twitter-timeline { width: 100% !important; }
.x-embed__fallback { display: block; padding: 40px 28px; text-align: center; color: var(--gray-50); font-size: .92rem; }
.x-embed__fallback b { color: var(--ink); font-family: var(--serif-jp); }
.x-embed--tweet { background: transparent; border: 0; min-height: 0; display: flex; justify-content: center; }
.x-embed--tweet .twitter-tweet { margin: 0 auto !important; }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity:1; transform:none; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 940px){
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .grid--3 { grid-template-columns: repeat(2,1fr); }
  .split, .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .features { grid-template-columns: 1fr; }
  .channels { grid-template-columns: 1fr; }
}
@media (max-width: 780px){
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px 28px 24px;
  }
  .site-header.open .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .section { padding: 68px 0; }
  .x-topline { flex-direction: column; align-items: flex-start; }
  .x-avatar { width: 112px; height: 112px; margin-top: -60px; }
  .x-actions { padding-top: 6px; }
}
@media (max-width: 520px){
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}
