/* ── FONTS ──────────────────────────────────────────── */
@font-face {
  font-family: 'LType';
  src: url('../../brand/typography/LTYPEB.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LType';
  src: url('../../brand/typography/LTYPE.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LType';
  src: url('../../brand/typography/LTYPEBO.TTF') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'LSans';
  src: url('../../brand/typography/LSANS.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LSans';
  src: url('../../brand/typography/LSANSD.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LSans';
  src: url('../../brand/typography/LSANSI.TTF') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --color-primary:  #2AB5B5;
  --color-light:    #7ED8D8;
  --color-dark:     #1A8F8F;
  --color-black:    #1A1A1A;
  --color-white:    #FFFFFF;
  --color-bg-alt:   #F5F5F5;
  --color-border:   #E0E0E0;
  --font-display:   'LType', system-ui, sans-serif;
  --font-body:      'LSans', system-ui, sans-serif;
  --nav-h:          180px;
  --section-pad:    96px 0;
  --radius:         6px;
  --shadow-sm:      0 2px 12px rgba(0,0,0,.08);
  --shadow-md:      0 8px 32px rgba(0,0,0,.12);
  --transition:     .25s ease;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITIES ──────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-black);
  margin-bottom: 20px;
}
.section-title.white { color: var(--color-white); }
.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
  margin-bottom: 56px;
}
.section-subtitle.white { color: rgba(255,255,255,.85); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: var(--transition);
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,181,181,.35);
}
.btn-outline {
  border: 2px solid var(--color-white);
  color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ── SCROLL ANIMATION ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── WAVE SVG DIVIDER ───────────────────────────────── */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--color-white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}
.nav-logo img { height: 150px; width: auto; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-black);
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.lang-selector {
  display: flex;
  gap: 4px;
  margin-left: 24px;
  border-left: 1px solid var(--color-border);
  padding-left: 24px;
}
.lang-btn {
  padding: 5px 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  border-radius: 4px;
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  color: var(--color-primary);
  background: rgba(42,181,181,.08);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-black);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-bg-alt);
  color: var(--color-black);
}
.mobile-lang {
  display: flex;
  gap: 8px;
  padding-top: 8px;
}

/* ── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/home_hero.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,30,40,.72) 0%,
    rgba(26,143,143,.45) 60%,
    rgba(0,20,30,.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px 80px;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,181,181,.2);
  border: 1px solid rgba(42,181,181,.5);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 100px;
  color: var(--color-light);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeDown .8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  animation: fadeUp .8s ease .15s both;
}
.hero-title span { color: var(--color-light); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 auto 40px;
  animation: fadeUp .8s ease .3s both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .45s both;
}
.hero-wave {
  position: absolute;
  bottom: -10px; left: 0; right: 0;
  z-index: 3;
}
.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeUp 1s ease .8s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 1.8s ease infinite;
}

/* ── SOBRE NOSALTRES ────────────────────────────────── */
#about {
  padding: var(--section-pad);
  background: var(--color-white);
  padding-top: 220px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 24px rgba(42,181,181,.12);
  transform: translateX(4px);
}
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(42,181,181,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.feature-desc { font-size: .9rem; color: #666; }

/* ── PRODUCTES ──────────────────────────────────────── */
#products {
  padding: var(--section-pad);
  background: var(--color-bg-alt);
  padding-top: 220px;
}
#products .section-header { text-align: center; }
#products .section-subtitle { margin-left: auto; margin-right: auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card--family .product-img { height: 260px; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-wrap { overflow: hidden; }
.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-desc {
  font-size: .9rem;
  color: #666;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: rgba(42,181,181,.1);
  color: var(--color-primary);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: var(--transition);
  align-self: flex-start;
}
.product-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ── WHY US ─────────────────────────────────────────── */
#why {
  padding: var(--section-pad);
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
.why-pattern {
  position: absolute;
  inset: 0;
  opacity: 15;
  /*background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 Q45 15 30 30 Q15 45 30 60 Q45 45 60 30 Q45 15 30 0Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-image: url('../images/onada2.png');*/
  background-size: 60px;
}
#why .section-header { text-align: center; position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.why-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-white);
}
.why-icon svg { width: 30px; height: 30px; }
.why-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}
.why-desc { font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.7; }

/* ── CONTACTE ───────────────────────────────────────── */
#contact {
  padding: var(--section-pad);
  background: var(--color-white);
  padding-top: 220px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-info p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(42,181,181,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: .75rem; color: #999; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-item-value { font-size: .95rem; font-weight: 700; color: var(--color-black); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-black);
  background: var(--color-white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(42,181,181,.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: var(--transition);
}
.form-submit:hover {
  background: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,181,181,.3);
}
.form-note { font-size: .8rem; color: #aaa; text-align: center; }
.form-note a {
  color: var(--color-primary);
  font-weight: 700;
}
.form-note a:hover { color: var(--color-dark); }
.form-privacy-note { line-height: 1.5; }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none !important; }

/* ── FORM VALIDATION ────────────────────────────────── */
.form-error {
  font-size: .78rem;
  color: #e53e3e;
  margin-top: 2px;
}
.input-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229,62,62,.1) !important;
}
.form-feedback {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 600;
  text-align: center;
}
.form-feedback--error {
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #fed7d7;
}
.form-feedback--success {
  background: #f0fff4;
  color: #276749;
  border: 1px solid #9ae6b4;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background-image: url('../images/footer_bg.png');
  /* color: rgba(255,255,255,.65); */
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-logo { height: 100px; border-radius: 8px; padding-left: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: white;font-size: .85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--color-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { color: white; font-size: .82rem; }
.footer-contact { font-size: .82rem; }
.footer-contact a { color: var(--color-light); }

/* ── LEGAL PAGES ───────────────────────────────────── */
.legal-body {
  background: var(--color-bg-alt);
}
.legal-main {
  padding-top: var(--nav-h);
}
.legal-hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92)),
    url('../images/onada2.png');
  background-size: auto, 180px;
  border-bottom: 1px solid var(--color-border);
  padding: 76px 0 48px;
}
.legal-hero-inner {
  max-width: 860px;
}
.legal-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 18px;
}
.legal-intro {
  max-width: 720px;
  color: #555;
  font-size: 1.04rem;
  line-height: 1.8;
}
.legal-shell {
  padding: 56px 0 96px;
}
.legal-document {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.legal-panel[hidden] {
  display: none;
}
.legal-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.legal-panel h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 30px 0 10px;
}
.legal-panel p,
.legal-panel li {
  color: #505050;
  line-height: 1.8;
}
.legal-panel p + p {
  margin-top: 12px;
}
.legal-panel ul,
.legal-panel ol {
  margin: 12px 0 0 20px;
}
.legal-panel li + li {
  margin-top: 8px;
}
.legal-meta {
  color: #777;
  font-size: .9rem;
  margin-bottom: 28px;
}
.legal-card {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid rgba(42,181,181,.22);
  border-radius: var(--radius);
  background: rgba(42,181,181,.06);
}
.legal-card p,
.legal-card li {
  color: #3f5555;
}
.legal-table-wrap {
  margin: 18px 0 8px;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--color-white);
}
.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
  font-size: .92rem;
}
.legal-table th {
  color: var(--color-black);
  background: var(--color-bg-alt);
  font-weight: 700;
}
.legal-table tr:last-child td {
  border-bottom: none;
}
.legal-contact-list {
  list-style: none;
  margin-left: 0 !important;
}
.legal-contact-list li {
  padding: 5px 0;
}
.legal-divider {
  height: 1px;
  background: var(--color-border);
  margin: 32px 0;
}

/* ── KEYFRAMES ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.2); }
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .nav-links, .lang-selector { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .legal-hero { padding: 48px 0 34px; }
  .legal-shell { padding: 34px 0 64px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}
