/* ============================================================
   Comercial Imam — Landing Novy
   Identidad unificada con la web madre (estilos.css):
   misma paleta, mismas tipografías (Fraunces + Hanken Grotesk),
   ribetes ikurriña. Estructura editorial propia de la landing.
   ============================================================ */

/* ---------- Reset y variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }

:root {
  /* Paleta oficial Comercial Imam (idéntica a la web madre) */
  --slate:#2C3E50;        /* color principal */
  --slate-deep:#22303F;
  --verde:#1F6B43;
  --verde-deep:#14532F;
  --granate:#7B1E2D;      /* la C del logo / rojo ikurriña */
  --dorado:#B8924A;       /* ribete dorado */
  --negro:#1A1A1A;
  --base:#F5EFE3;         /* fondo cálido beige */
  --panel:#EFE6D4;        /* beige más hondo, secciones alternas */
  --card:#FBF8F1;         /* hueso suave */
  --line:#E4DAC8;
  --text:#2C3E50;
  --text-soft:#5C6B78;

  --serif:'Fraunces',Georgia,'Times New Roman',serif;
  --sans:'Hanken Grotesk',system-ui,-apple-system,sans-serif;

  --max: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

body {
  font-family: var(--sans);
  background: var(--base);
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* grano sutil, igual que la web madre */
body::before{
  content:'';position:fixed;inset:0;z-index:9999;pointer-events:none;opacity:.03;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Ribetes ikurriña (firma de marca) ---------- */
.ribbon-flag{height:4px;width:100%;background:linear-gradient(to right,var(--granate) 0 50%,var(--verde) 50% 100%);}
.ribbon-gold{height:4px;width:100%;background:var(--dorado);}

/* ---------- Top bar ---------- */
.topbar {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--base);
  z-index: 10;
}
.topbar__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0.7rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
  text-transform: none;
  color: var(--negro);
}
.topbar__brand .c{color:var(--granate);}
.topbar__brand .i{color:var(--verde);}
.topbar__logo { width: 28px; height: 28px; display: block; flex-shrink: 0; }
.topbar__right { display: none; }
@media (min-width: 720px) { .topbar__right { display: inline; } }
.topbar__right a { color: var(--text-soft); border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color .25s, border-color .25s; }
.topbar__right a:hover { color: var(--verde); border-color: var(--verde); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--negro);
  color: var(--base);
  overflow: hidden;
}
.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 92vh;
}
@media (min-width: 720px) {
  .hero__media { aspect-ratio: 16 / 10; max-height: 88vh; }
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0;
  animation: fadeImg 1.4s ease-out 0.1s forwards;
}
@media (min-width: 720px) {
  .hero__media img { object-position: center; }
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}
@media (min-width: 720px) {
  .hero__media::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 100%);
  }
}
@keyframes fadeImg { to { opacity: 1; } }

.hero__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--gutter);
  max-width: var(--max);
  margin-inline: auto;
}
.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  animation: rise 0.9s cubic-bezier(.2,.7,.2,1) 0.3s both;
}
.hero__eyebrow::before {
  content: '';
  width: 2.2rem;
  height: 2px;
  background: var(--dorado);
  display: inline-block;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 8.5vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.018em;
  max-width: 14ch;
  animation: rise 1s cubic-bezier(.2,.7,.2,1) 0.5s both;
}
.hero__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  color: #E9D9B8;
}
.hero__sub {
  margin-top: 1.4rem;
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  max-width: 42ch;
  opacity: 0.92;
  animation: rise 1s cubic-bezier(.2,.7,.2,1) 0.7s both;
}
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: var(--gutter);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  writing-mode: vertical-rl;
  animation: rise 1s ease 1s both, bob 2.4s ease-in-out 1.4s infinite;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ---------- Section utilities ---------- */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}
.section--alt { background: var(--panel); }
.section--ink { background: var(--slate); color: var(--base); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}
.eyebrow::before {
  content: '';
  width: 2.2rem;
  height: 3px;
  background: var(--verde);
  flex-shrink: 0;
}
.section--ink .eyebrow { color: rgba(245,239,227,0.8); }
.section--ink .eyebrow::before { background: var(--dorado); }

.h-display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.h-display em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--granate);
}
.section--ink .h-display em { color: #E9D9B8; }
.h-section {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---------- Welcome (Quiénes somos) ---------- */
.welcome {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.welcome__title { margin-bottom: 1.6rem; }
.welcome__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 3.2rem;
  max-width: 56ch;
  margin-inline: auto;
}
.welcome__lede strong { font-weight: 700; color: var(--text); }
.welcome__signatures {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
.sig { display: flex; flex-direction: column; align-items: center; }
.sig__name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
}
.sig__role {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.3rem;
}
.sig__sep {
  font-family: var(--serif);
  color: var(--dorado);
  font-style: italic;
  font-size: 1.5rem;
  align-self: center;
}
@media (max-width: 540px) { .sig__sep { display: none; } }

/* ---------- About (la marca) ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 880px) {
  .about__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(3rem, 6vw, 6rem);
  }
}
.about__lede p { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--text-soft); margin-bottom: 1rem; }
.about__lede p:first-of-type::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.6em;
  float: left;
  line-height: 0.85;
  padding-right: 0.12em;
  padding-top: 0.05em;
  font-weight: 600;
  color: var(--granate);
}
.about__facts {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.about__facts dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}
.about__facts dt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--slate);
}
.about__facts dd {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* ---------- Categorías ---------- */
.cats__title { margin-bottom: 3rem; max-width: 22ch; }
.cats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px)  { .cats__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .cats__grid { grid-template-columns: repeat(4, 1fr); } }
.cat {
  padding: 1.6rem 0.4rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 8rem;
  transition: background 0.4s ease;
}
.cat:nth-child(2n) { border-right: none; }
@media (min-width: 720px) {
  .cat:nth-child(2n) { border-right: 1px solid var(--line); }
  .cat:nth-child(3n) { border-right: none; }
}
@media (min-width: 1100px) {
  .cat:nth-child(3n) { border-right: 1px solid var(--line); }
  .cat:nth-child(4n) { border-right: none; }
}
.cat:hover { background: var(--card); }
.cat__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--granate);
}
.cat__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: auto;
  color: var(--text);
}
.cat__desc {
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ---------- Productos destacados ---------- */
.products { padding-top: 0; }
.product {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}
.product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .product__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
  }
  .product--reverse .product__media { order: 2; }
}
.product__media {
  position: relative;
  overflow: hidden;
  background: var(--negro);
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.product:hover .product__media img { transform: scale(1.03); }

.product__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--dorado);
  letter-spacing: -0.02em;
}
.product__cat {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-soft);
  margin: 1.2rem 0 0.8rem;
}
.product__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
  color: var(--text);
}
.product__name em { font-style: italic; font-variation-settings: "opsz" 144; color: var(--granate); }
.product__desc {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 42ch;
  margin-bottom: 1.6rem;
}
.product__features {
  list-style: none;
  border-top: 1px solid var(--line);
}
.product__features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  display: flex;
  gap: 1rem;
  color: var(--text-soft);
}
.product__features li::before {
  content: '+';
  font-family: var(--serif);
  color: var(--verde);
  flex-shrink: 0;
  width: 1ch;
  font-weight: 600;
}

/* ---------- Confianza / Trust ---------- */
.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245,239,227,0.18);
  border: 1px solid rgba(245,239,227,0.18);
  margin-top: 3rem;
}
@media (min-width: 880px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__cell {
  background: var(--slate);
  padding: 2.5rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.trust__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  color: #E9D9B8;
}
.trust__label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.75);
  margin-top: 0.5rem;
  font-weight: 700;
}
.trust__desc {
  font-size: 0.92rem;
  color: rgba(245,239,227,0.85);
  margin-top: 0.6rem;
}

/* ---------- Solicitar catálogo (antes Download) ---------- */
.request {
  background: var(--panel);
}
.request__inner {
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(4rem, 10vw, 7rem) var(--gutter);
  text-align: center;
}
.request__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.request__title em { font-style: italic; font-variation-settings: "opsz" 144; color: var(--granate); }
.request__sub {
  color: var(--text-soft);
  max-width: 52ch;
  margin: 0 auto 2.4rem;
  font-size: 1.05rem;
}
.request__meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  flex-wrap: wrap;
}
.request__meta span strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: var(--slate);
  margin-bottom: 0.2rem;
  text-transform: none;
  font-weight: 600;
}

/* Formulario propio (sin Brevo, listo para PHP) */
.request__form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  text-align: left;
  max-width: 620px;
  margin-inline: auto;
}
.request__form .field { margin-bottom: 1rem; }
.request__form .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) { .request__form .row { grid-template-columns: 1fr 1fr; } }
.request__form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.request__form input,
.request__form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--base);
  color: var(--text);
}
.request__form input:focus,
.request__form textarea:focus { outline: none; border-color: var(--verde); }
.request__form textarea { min-height: 90px; resize: vertical; }
.request__check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 0.6rem 0 1.2rem;
  font-size: 0.84rem;
  color: var(--text-soft);
}
.request__check input { width: auto; margin-top: 0.25rem; flex-shrink: 0; }
.request__check a { color: var(--slate); border-bottom: 1px solid var(--line); }
.request__check a:hover { color: var(--verde); border-color: var(--verde); }

/* Botón (estilo web madre: pill slate) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.95rem 2rem;
  background: var(--slate);
  color: var(--base);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--slate-deep); transform: translateY(-2px); }
.request__feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.2em;
}
.request__feedback.ok { color: var(--verde); font-weight: 600; }
.request__feedback.err { color: var(--granate); font-weight: 600; }
.request__note {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}
.request__official {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.request__official a {
  color: var(--slate);
  border-bottom: 1px solid var(--slate);
  padding-bottom: 1px;
  font-weight: 600;
  transition: color 0.25s, border-color 0.25s;
}
.request__official a:hover { color: var(--verde); border-color: var(--verde); }

/* ---------- Contacto (Hablemos) ---------- */
.contact__title { max-width: 18ch; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(245,239,227,0.18);
  border: 1px solid rgba(245,239,227,0.18);
  margin-top: 3rem;
}
@media (min-width: 720px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--slate);
  padding: 2.5rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card__role {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.6);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.contact-card__name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--base);
  margin-bottom: 0.6rem;
}
.contact-card ul { list-style: none; }
.contact-card ul li { padding: 0.35rem 0; font-size: 0.95rem; }
.contact-card ul a {
  color: rgba(245,239,227,0.9);
  border-bottom: 1px solid rgba(245,239,227,0.25);
  transition: color 0.25s ease, border-color 0.25s ease;
  padding-bottom: 1px;
}
.contact-card ul a:hover { color: #E9D9B8; border-color: #E9D9B8; }

/* ---------- Footer ---------- */
.footer {
  background: var(--slate);
  color: rgba(245,239,227,0.85);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.55);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer__brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--base);
  margin-bottom: 0.6rem;
}
.footer__brand .c{color:#D98A96;}
.footer__brand .i{color:#46A877;}
.footer__tag {
  color: rgba(245,239,227,0.65);
  max-width: 36ch;
}
.footer ul { list-style: none; }
.footer ul li { padding: 0.25rem 0; }
.footer ul a:hover { color: #46A877; transition: color 0.25s ease; }
.footer__legal-info {
  margin-top: 1.2rem;
  color: rgba(245,239,227,0.5);
  font-size: 0.78rem;
  line-height: 1.7;
  max-width: 38ch;
}
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(245,239,227,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.45);
}
.footer__legal-nav { display: inline-flex; gap: 1.5rem; }
.footer__legal-nav a {
  color: rgba(245,239,227,0.55);
  transition: color 0.25s ease;
}
.footer__legal-nav a:hover { color: #46A877; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- A11y ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===========================================================
   NOVY · Mineral Black — acabado real de la marca
   Sustituye el azul slate en los bloques oscuros.
   =========================================================== */
:root{ --novy-mineral:#38383C; }
.section--ink, .trust__cell, .contact-card{
  background-color:#2d2d31;
  background-image:
    radial-gradient(135% 95% at 20% 6%, rgba(122,123,128,.30), rgba(60,60,66,0) 46%),
    linear-gradient(135deg, rgba(94,94,98,.16), rgba(45,45,50,0) 40%, rgba(18,17,22,.5) 100%),
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27140%27%20height%3D%27140%27%3E%3Cfilter%20id%3D%27g%27%3E%3CfeTurbulence%20type%3D%27fractalNoise%27%20baseFrequency%3D%270.8%27%20numOctaves%3D%272%27%20stitchTiles%3D%27stitch%27%20result%3D%27n%27%2F%3E%3CfeColorMatrix%20in%3D%27n%27%20type%3D%27matrix%27%20values%3D%270%200%200%200%201%20%200%200%200%200%201%20%200%200%200%200%201%20%200.16%200%200%200%200%27%2F%3E%3C%2Ffilter%3E%3Crect%20width%3D%27140%27%20height%3D%27140%27%20filter%3D%22url%28%23g%29%22%2F%3E%3C%2Fsvg%3E");
  background-size:cover, cover, 140px 140px;
  color:#EDEAE3;
}
.trust__cell, .contact-card{ border:1px solid rgba(122,123,128,.22); }
.btn{ background: var(--novy-mineral); }
.btn:hover{ background:#2d2d31; }
