/* ===================================================
   ABRUZZO — Style System
   Aesthetic: Earthy editorial / Mountain magazine
   =================================================== */

:root {
  --rust:        #B5452A;
  --rust-light:  #D4623E;
  --rust-dark:   #8C3420;
  --cream:       #F5EFE4;
  --cream-dark:  #EDE4D4;
  --parchment:   #DDD3BF;
  --forest:      #2D5A3D;
  --forest-light:#3E7A54;
  --stone:       #4A4540;
  --stone-light: #7A736A;
  --sky:         #5D8FAB;
  --sky-light:   #8CB4CC;
  --ink:         #1A1410;
  --white:       #FDFAF6;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Crimson Pro', Georgia, serif;
  --ff-mono:    'DM Mono', monospace;

  --nav-h: 68px;
  --radius: 4px;
  --shadow: 0 2px 20px rgba(26,20,16,.1);
  --shadow-lg: 0 8px 48px rgba(26,20,16,.15);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 19px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(245,239,228,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--parchment);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--rust);
  text-decoration: none;
}
.logo-icon { font-size: 1.5rem; line-height: 1; }
.nav-menu {
  display: flex; align-items: center; gap: 6px;
}
.nav-menu a {
  font-family: var(--ff-body);
  font-size: 1rem; font-weight: 400;
  color: var(--stone);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  letter-spacing: .02em;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--rust);
  background: rgba(181,69,42,.07);
}
.nav-menu a.active { font-weight: 600; }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--stone);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, background .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--ink);
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(26,20,16,.6) 0%, rgba(45,90,61,.4) 50%, rgba(181,69,42,.3) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%232D5A3D'/%3E%3Cstop offset='.5' stop-color='%234A4540'/%3E%3Cstop offset='1' stop-color='%23B5452A'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='800' height='600'/%3E%3C/svg%3E");
  background-size: cover; background-position: center;
}
/* Mountain silhouette SVG layer */
.hero-mountains {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 45%;
  opacity: .25;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800; line-height: 1.0;
  color: var(--cream);
  letter-spacing: -.02em;
  margin-bottom: 10px;
  opacity: 0; animation: fadeUp .8s .4s forwards;
}
.hero h1 em {
  font-style: italic; color: var(--rust-light);
}
.hero-subtitle {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic; color: var(--parchment);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s .6s forwards;
}
.hero-desc {
  font-size: 1.15rem; color: rgba(245,239,228,.8);
  max-width: 560px; margin: 0 auto 40px;
  opacity: 0; animation: fadeUp .8s .75s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 1rem; font-weight: 600;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background .2s, transform .2s;
  opacity: 0; animation: fadeUp .8s .9s forwards;
}
.hero-cta:hover { background: var(--rust-dark); transform: translateY(-2px); }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(245,239,228,.5);
  animation: bounce 2s 2s infinite;
}
.scroll-hint svg { width: 20px; opacity: .5; }

/* ── Page Hero (secondary pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 24px 60px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--stone) 60%, var(--rust-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,.01) 40px, rgba(255,255,255,.01) 80px
  );
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero .eyebrow {
  font-family: var(--ff-mono); font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rust-light); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.05;
  color: var(--cream); letter-spacing: -.02em;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--rust-light); }
.page-hero p {
  font-size: 1.15rem; font-style: italic;
  color: var(--parchment); max-width: 540px; margin: 0 auto;
}

/* ── Layout / Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--cream-dark); }
.section-dark { background: var(--stone); color: var(--cream); }

/* ── Section Headings ── */
.section-label {
  font-family: var(--ff-mono); font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.1;
  color: var(--ink); letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--rust); }
.section-dark .section-title { color: var(--cream); }
.section-lead {
  font-size: 1.2rem; color: var(--stone-light);
  max-width: 640px; margin-bottom: 48px;
  line-height: 1.75;
}
.section-dark .section-lead { color: var(--parchment); }

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--stone) 0%, var(--forest) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,.4) 0%, transparent 60%);
}
.card-body { padding: 20px 22px 24px; }
.card-tag {
  font-family: var(--ff-mono); font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 8px;
}
.card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--ink); margin-bottom: 10px;
  line-height: 1.25;
}
.card p { font-size: .975rem; color: var(--stone-light); line-height: 1.65; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: .9rem; font-weight: 600;
  color: var(--rust);
  transition: gap .2s;
}
.card-link:hover { gap: 10px; }

/* ── Feature sections ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-image {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.feature-image .img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.feature-image .img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(26,20,16,.6) 0%, transparent 100%);
  font-family: var(--ff-mono); font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,239,228,.8);
}
.feature-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.15;
  color: var(--ink); margin-bottom: 16px;
  letter-spacing: -.02em;
}
.feature-text h2 em { font-style: italic; color: var(--rust); }
.feature-text p {
  font-size: 1.1rem; color: var(--stone-light);
  line-height: 1.8; margin-bottom: 16px;
}
.feature-list { margin-top: 20px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1rem; color: var(--stone);
  margin-bottom: 10px; line-height: 1.5;
}
.feature-list li::before {
  content: '—'; color: var(--rust); flex-shrink: 0;
  margin-top: 2px; font-weight: 700;
}

/* ── Stat strip ── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--parchment);
  border-top: 1px solid var(--parchment);
  border-bottom: 1px solid var(--parchment);
}
.stat-item {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--rust);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--ff-mono); font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--stone-light);
}

/* ── Province nav ── */
.province-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.province-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color .2s, box-shadow .2s;
  cursor: default;
}
.province-card:hover { border-color: var(--rust); box-shadow: var(--shadow); }
.province-icon { font-size: 2rem; flex-shrink: 0; }
.province-info h3 {
  font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700;
  color: var(--ink); margin-bottom: 6px;
}
.province-info p { font-size: .9rem; color: var(--stone-light); line-height: 1.55; }

/* ── Aziende ── */
.aziende-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.azienda-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.azienda-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.azienda-header {
  padding: 24px 24px 0;
  display: flex; align-items: center; gap: 16px;
}
.azienda-logo {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.azienda-meta h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin-bottom: 2px;
}
.azienda-meta .settore {
  font-family: var(--ff-mono); font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--rust);
}
.azienda-body {
  padding: 16px 24px;
  flex: 1;
  font-size: .95rem; color: var(--stone-light); line-height: 1.65;
}
.azienda-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: var(--stone-light);
}
.azienda-footer .sede {
  display: flex; align-items: center; gap: 5px;
}
.badge {
  display: inline-block;
  font-family: var(--ff-mono); font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 20px;
}
.badge-forest { background: rgba(45,90,61,.1); color: var(--forest); }
.badge-rust   { background: rgba(181,69,42,.1); color: var(--rust); }
.badge-sky    { background: rgba(93,143,171,.1); color: var(--sky); }

/* ── Filters ── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px; align-items: center;
}
.filter-btn {
  font-family: var(--ff-mono); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 18px;
  border: 1.5px solid var(--parchment);
  border-radius: 20px;
  background: var(--white);
  color: var(--stone-light);
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--rust); color: var(--rust);
  background: rgba(181,69,42,.06);
}
.filter-search {
  margin-left: auto;
  font-family: var(--ff-body); font-size: 1rem;
  padding: 8px 16px;
  border: 1.5px solid var(--parchment);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  min-width: 200px;
  transition: border-color .2s;
}
.filter-search:focus { outline: none; border-color: var(--rust); }

/* ── Breadcrumb ── */
.breadcrumb {
  font-family: var(--ff-mono); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--stone-light); transition: color .2s; }
.breadcrumb a:hover { color: var(--rust); }
.breadcrumb span { margin: 0 6px; }

/* ── Prose content ── */
.prose { max-width: 720px; }
.prose h2 {
  font-family: var(--ff-display); font-size: 1.9rem;
  font-weight: 700; color: var(--ink);
  margin: 48px 0 16px;
  letter-spacing: -.01em;
}
.prose h3 {
  font-family: var(--ff-display); font-size: 1.4rem;
  font-weight: 600; color: var(--stone);
  margin: 32px 0 12px;
}
.prose p { font-size: 1.1rem; line-height: 1.85; color: var(--stone); margin-bottom: 18px; }
.prose ul { margin: 0 0 18px 20px; }
.prose ul li { font-size: 1.05rem; color: var(--stone); margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.prose blockquote {
  border-left: 3px solid var(--rust);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(181,69,42,.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose blockquote p { font-style: italic; font-size: 1.2rem; color: var(--rust-dark); margin: 0; }

/* ── Highlight boxes ── */
.info-box {
  background: var(--cream-dark);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}
.info-box-title {
  font-family: var(--ff-mono); font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 10px;
}
.info-box p { font-size: 1rem; color: var(--stone); margin: 0; line-height: 1.7; }

/* ── Timeline ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 1px; background: var(--parchment);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--rust); border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--rust);
}
.timeline-year {
  font-family: var(--ff-mono); font-size: .7rem;
  letter-spacing: .15em; color: var(--rust); margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--ff-display); font-size: 1.15rem;
  font-weight: 700; color: var(--ink); margin-bottom: 6px;
}
.timeline-text { font-size: .975rem; color: var(--stone-light); line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--rust);
  padding: 64px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--cream);
  letter-spacing: -.02em; margin-bottom: 12px;
}
.cta-banner p { font-size: 1.1rem; color: rgba(245,239,228,.8); margin-bottom: 28px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(245,239,228,.6);
  color: var(--cream);
  font-family: var(--ff-body); font-size: 1rem; font-weight: 600;
  padding: 12px 28px; border-radius: 2px;
  transition: background .2s, border-color .2s;
  margin: 6px;
}
.btn-outline:hover { background: rgba(245,239,228,.1); border-color: var(--cream); }
.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); color: var(--rust);
  font-family: var(--ff-body); font-size: 1rem; font-weight: 700;
  padding: 12px 28px; border-radius: 2px;
  transition: background .2s; margin: 6px;
}
.btn-solid:hover { background: var(--parchment); }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: var(--parchment);
  padding: 56px 24px 36px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: start;
}
.footer-brand .logo-text { font-family: var(--ff-display); font-size: 1.2rem; color: var(--cream); }
.footer-brand p { font-size: .85rem; color: var(--stone-light); margin-top: 6px; font-style: italic; }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-nav a { font-size: .9rem; color: var(--stone-light); transition: color .2s; }
.footer-nav a:hover { color: var(--rust-light); }
.footer-credits { font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .1em; color: var(--stone-light); text-align: right; padding-top: 4px; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════
   MOBILE RESPONSIVE
══════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Navbar mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(245,239,228,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    padding: 40px 24px;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a {
    font-family: var(--ff-display);
    font-size: 1.6rem; font-weight: 600;
    padding: 14px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--parchment);
    display: block;
    color: var(--ink);
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-menu a:hover, .nav-menu a.active { background: none; color: var(--rust); }

  /* Hero */
  .hero h1 { font-size: 3.2rem; }
  .scroll-hint { display: none; }

  /* Layout */
  .feature-split, .feature-split.reverse {
    grid-template-columns: 1fr;
    direction: ltr; gap: 36px;
  }
  .feature-split.reverse .feature-image { order: -1; }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-credits { text-align: left; }

  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-search { margin-left: 0; min-width: auto; width: 100%; }

  .page-hero { padding: calc(var(--nav-h) + 40px) 24px 48px; }

  .section { padding: 56px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .aziende-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.6rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
