/* ========================================
   greenbean AI — styles.css
   Theme system via CSS Custom Properties
   ======================================== */

/* --- Self-hosted Fonts --- */
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Serif';
  src: url('assets/fonts/instrument-serif-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Serif';
  src: url('assets/fonts/instrument-serif-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('assets/fonts/jetbrains-mono-400.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

/* --- Theme: Emerald (default) --- */
:root,
[data-theme="emerald"] {
  --primary: #10B981;
  --primary-dim: #059669;
  --primary-glow: rgba(16, 185, 129, 0.15);
  --primary-glow-strong: rgba(16, 185, 129, 0.25);
  --accent: #DAAD4A;
  --accent-glow: rgba(218, 173, 74, 0.15);
  --bg: #0A0A0A;
  --bg-card: #111111;
  --bg-subtle: #1a1a1a;
  --text: #E5E5E5;
  --text-muted: #8a8a8a;
  --border: rgba(115, 115, 115, 0.12);
  --border-hover: rgba(115, 115, 115, 0.3);
}

/* --- Theme: Teal --- */
[data-theme="teal"] {
  --primary: #14B8A6;
  --primary-dim: #0D9488;
  --primary-glow: rgba(20, 184, 166, 0.15);
  --primary-glow-strong: rgba(20, 184, 166, 0.25);
  --accent: #DAAD4A;
  --accent-glow: rgba(218, 173, 74, 0.15);
  --bg: #111318;
  --bg-card: #191C22;
  --bg-subtle: #1e2128;
  --text: #E2E8F0;
  --text-muted: #8a94a8;
  --border: rgba(100, 116, 139, 0.12);
  --border-hover: rgba(100, 116, 139, 0.3);
}

/* --- Theme: Lime --- */
[data-theme="lime"] {
  --primary: #84CC16;
  --primary-dim: #65A30D;
  --primary-glow: rgba(132, 204, 22, 0.15);
  --primary-glow-strong: rgba(132, 204, 22, 0.25);
  --accent: #DAAD4A;
  --accent-glow: rgba(218, 173, 74, 0.15);
  --bg: #09090B;
  --bg-card: #18181B;
  --bg-subtle: #1c1c20;
  --text: #FAFAFA;
  --text-muted: #8a8a92;
  --border: rgba(113, 113, 122, 0.12);
  --border-hover: rgba(113, 113, 122, 0.3);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* --- Fixed Background Glow (3-layer: glow → content → blurred nav) --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60vh;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, var(--primary-glow) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 85% 5%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* --- Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* --- Selection --- */
::selection {
  background: var(--primary);
  color: var(--bg);
}

/* --- Touch --- */
a, button {
  touch-action: manipulation;
}

/* --- Skip Link --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
  border-radius: 6px;
  z-index: 9999;
}

/* --- Typography --- */
h1, h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  text-wrap: balance;
}

h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(1.375rem, 1rem + 1.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 2rem + 5vw, 6.5rem);
}

h2 {
  font-size: clamp(2.25rem, 1.5rem + 3vw, 4rem);
}

p {
  color: var(--text-muted);
  font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.25rem);
  line-height: 1.65;
}

/* --- Section Label (mono, uppercase) --- */
.section-label {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
  max-width: 200px;
}

/* --- Layout --- */
.section {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-divider {
  display: none;
}

.section-wrap {
  border-top: 1px solid var(--border);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 300% at 50% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 70%),
    rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow-strong);
  animation: pulse-dot 3s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 12px var(--primary-glow-strong); }
  50% { box-shadow: 0 0 20px var(--primary-glow-strong), 0 0 4px var(--primary); }
}

.nav__name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.nav__cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5625rem 1.375rem;
  border: none;
  border-radius: 6px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.nav__cta:hover {
  box-shadow: 0 0 20px var(--accent-glow);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;

}

.hero__mesh {
  display: none;
}

/* SVG grid pattern behind hero */
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
}

.hero__headline {
  margin-bottom: 1.75rem;
  max-width: 700px;
}

.hero__headline em {
  font-style: italic;
  color: var(--primary);
}

.hero__subline {
  font-size: clamp(1.1875rem, 1rem + 0.5vw, 1.375rem);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Hero stagger entrance */
.hero__headline,
.hero__subline,
.hero__ctas {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__headline { animation-delay: 0.1s; }
.hero__subline  { animation-delay: 0.25s; }
.hero__ctas     { animation-delay: 0.4s; }

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Focus states */
.btn:focus-visible,
.nav__cta:focus-visible,
.nav__brand:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow), 0 0 0 1px var(--accent);
}

.btn--secondary {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--primary-dim);
  color: var(--text);
  box-shadow: 0 0 30px var(--primary-glow), inset 0 0 30px var(--primary-glow);
}

/* --- Proof Bar --- */
.proof {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  animation: hero-enter 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.proof__track {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.proof__track:hover {
  animation-play-state: paused;
}

.proof__item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.proof__separator {
  color: var(--primary);
  opacity: 0.3;
  font-size: 0.5rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Pain Points ("Kennen Sie das?") --- */
.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.pain__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain__card:hover {
  border-color: var(--primary-dim);
  box-shadow: 0 0 30px var(--primary-glow), inset 0 0 30px var(--primary-glow);
  transform: translateX(4px);
}

.pain__card p {
  font-size: inherit;
}

.pain__icon {
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.6;
}

/* --- Angebote --- */
.offers__grid {
  display: grid;
  gap: 1rem;
}

.offer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer:hover {
  border-color: var(--primary-dim);
  box-shadow: 0 0 30px var(--primary-glow), inset 0 0 30px var(--primary-glow);
  transform: translateX(4px);
}

.offer__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.offer__title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  letter-spacing: -0.02em;
}

.offer__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.35rem 0.875rem;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid rgba(218, 173, 74, 0.12);
}

.offer__desc {
  font-size: inherit;
  margin-bottom: 1.5rem;
  max-width: 50ch;
}

.offer__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  opacity: 0.7;
}

.offers__footnote {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2rem;
  opacity: 0.7;
}


/* --- Für wen --- */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.audience__item h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  margin-bottom: 0.75rem;
  color: var(--text);
}

.audience__item p {
  font-size: inherit;
}

/* --- So arbeite ich --- */
.method__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.method__block {
  position: relative;
}

.method__block h3 {
  color: var(--text);
  margin-bottom: 0.75rem;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
}

.method__block p {
  font-size: inherit;
}

/* --- Tool Logos --- */
.tools__track {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.tools__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tools__item:hover {
  transform: translateY(-3px);
}

.tools__item:hover .tools__logo {
  opacity: 0.8;
  filter: grayscale(0.2) brightness(1.5);
}

.tools__item:hover .tools__name {
  color: var(--primary);
}

.tools__item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}

.tools__logo {
  height: 44px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(1) brightness(2);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tools__name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

/* --- Über --- */
.about__content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.about__photo-link {
  flex-shrink: 0;
  border-radius: 12px;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__photo-link:hover {
  box-shadow: 0 0 30px var(--primary-glow), 0 0 0 1px var(--primary-dim);
}

.about__photo-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.about__photo {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: block;
}

.about__text {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  max-width: 55ch;
  line-height: 1.75;
}

.about__text strong {
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 767px) {
  .about__content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about__photo {
    width: 140px;
    height: 140px;
  }
}

/* --- CTA / Booking --- */
.booking {
  text-align: center;
  padding: 8rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.booking h2 {
  margin-bottom: 1.25rem;
  position: relative;
}

.booking__subline {
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.booking .btn {
  position: relative;
}

.booking__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  letter-spacing: 0.03em;
  opacity: 0.6;
  position: relative;
}

/* --- Legal Pages --- */
.legal__content {
  max-width: 65ch;
}

.legal__content h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.legal__content h3:first-child {
  margin-top: 0;
}

.legal__content p {
  margin-bottom: 1rem;
}

.legal__content a {
  color: var(--primary);
  text-decoration: none;
}

.legal__content a:hover {
  text-decoration: underline;
}

.legal__updated {
  margin-top: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  opacity: 0.5;
}

/* --- Footer --- */
.footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--primary);
}

.footer__text {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside visible sections */
.fade-in.visible .pain__card,
.fade-in.visible .offer,
.fade-in.visible .audience__item,
.fade-in.visible .method__block {
  opacity: 0;
  transform: translateY(16px);
  animation: stagger-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in.visible .pain__card:nth-child(1),
.fade-in.visible .offer:nth-child(1),
.fade-in.visible .audience__item:nth-child(1),
.fade-in.visible .method__block:nth-child(1) { animation-delay: 0.05s; }

.fade-in.visible .pain__card:nth-child(2),
.fade-in.visible .offer:nth-child(2),
.fade-in.visible .audience__item:nth-child(2),
.fade-in.visible .method__block:nth-child(2) { animation-delay: 0.12s; }

.fade-in.visible .pain__card:nth-child(3),
.fade-in.visible .offer:nth-child(3),
.fade-in.visible .audience__item:nth-child(3),
.fade-in.visible .method__block:nth-child(3) { animation-delay: 0.19s; }

.fade-in.visible .pain__card:nth-child(4),
.fade-in.visible .offer:nth-child(4),
.fade-in.visible .audience__item:nth-child(4),
.fade-in.visible .method__block:nth-child(4) { animation-delay: 0.26s; }

@keyframes stagger-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (min-width: 768px) {
  .section {
    padding: 7rem 3rem;
  }

  .hero {
    padding: 10rem 3rem 7rem;
  }

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

  .nav {
    padding: 1rem 3rem;
  }

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

@media (min-width: 1024px) {
  .section {
    padding: 8rem 2rem;
  }

  .hero {
    padding: 0 2rem;
    min-height: 100vh;
    min-height: 100svh;
  }
}

@media (max-width: 767px) {
  .audience__grid,
  .method__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .offer__header {
    flex-direction: column;
  }

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