/* ════════════════════════════════════════════════
   MARION AGENCY — Stylesheet
   ════════════════════════════════════════════════ */

/* ─── RESET & BASE ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --deep:       #122F2B;
  --teal:       #33BAB4;
  --teal-dark:  #007D73;
  --terra:      #DBAD8D;
  --white:      #FFFFFF;
  --muted:      #4A5F5C;
  --teal-light: #F4EDE3;
  --ff: 'Open Sans', sans-serif;
  --ff-display: 'Montserrat', sans-serif;
}

body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--deep);
  overflow-x: hidden;
}

/* ─── FILM GRAIN ─────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
}

/* ─── SOCIAL BAR FIJA ────────────────────────── */
.social-bar {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.social-bar::before, .social-bar::after {
  content: '';
  display: block;
  width: 1px; height: 30px;
  background: rgba(18,47,43,0.2);
}
.s-link {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(18,47,43,0.18);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  text-decoration: none;
  transition: all 0.25s;
}
.s-link:hover {
  background: var(--deep);
  border-color: var(--deep);
  color: #fff;
  transform: scale(1.1);
}

/* ─── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 2rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  padding: 1rem 5vw;
  box-shadow: 0 1px 0 rgba(18,47,43,0.07);
}
.nav-logo {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s;
}
nav.scrolled .nav-logo { opacity: 1; }

/* Logo "I" como tres círculos */
.ni {
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; gap: calc(1cap / 7);
  height: 1cap; padding: 0 calc(1cap * 0.16);
  position: relative; overflow: visible;
}
.nd { display: block; border-radius: 50%; flex-shrink: 0; }
.nd1 {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: calc(-1cap / 2.6 - 1cap / 7);
  width: calc(1cap / 2.6); height: calc(1cap / 2.6);
  background: var(--terra);
}
.nd2 { width: calc(1cap / 2.6); height: calc(1cap / 2.6); background: var(--teal); }
.nd3 { width: calc(1cap / 2.6); height: calc(1cap / 2.6); background: #7ACDC9; }

.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ───────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 6rem;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
#hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.0)  0%,
    rgba(255,255,255,0.05) 40%,
    rgba(255,255,255,0.75) 78%,
    rgba(255,255,255,1)    100%);
  pointer-events: none;
}
.hero-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 2rem;
}
.hero-wordmark {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(3rem, 12vw, 12rem);
  line-height: 0.85;
  letter-spacing: -0.025em;
  color: #000;
  display: inline-flex;
  align-items: last baseline;
}
.hwi {
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; gap: calc(1cap / 7);
  height: 1cap; padding: 0 calc(1cap * 0.16);
  position: relative; overflow: visible;
}
.hwd { display: block; border-radius: 50%; flex-shrink: 0; }
.hwd1 {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: calc(-1cap / 2.6 - 1cap / 7);
  width: calc(1cap / 2.6); height: calc(1cap / 2.6);
  background: var(--terra);
}
.hwd2 { width: calc(1cap / 2.6); height: calc(1cap / 2.6); background: var(--teal); }
.hwd3 { width: calc(1cap / 2.6); height: calc(1cap / 2.6); background: #7ACDC9; }

.hero-sub {
  font-size: clamp(0.6rem, 1.1vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
}
.hero-bottom {
  position: relative; z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--deep);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hs-line  { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--teal), transparent); animation: pulse 2s ease-in-out infinite; }
.hs-label { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }

/* ─── ANIMACIONES ────────────────────────────── */
@keyframes pulse  { 0%,100%{ opacity:.4 } 50%{ opacity:1 } }
@keyframes tick   { 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }

/* ─── LOGO SCROLLER ──────────────────────────── */
.logo-scroller { background: var(--teal-light); overflow: hidden; padding: 1.6rem 0; border-top: 1px solid rgba(18,47,43,0.08); border-bottom: 1px solid rgba(18,47,43,0.08); }
.ls-track {
  display: flex; align-items: center; gap: 3rem;
  white-space: nowrap;
  animation: tick 40s linear infinite;
}
.logo-scroller:hover .ls-track { animation-play-state: paused; }
.ls-item {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  opacity: 0.85;
  transition: opacity 0.25s;
}
.ls-item:hover { opacity: 1; }
.ls-item img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

/* ─── STATEMENT ──────────────────────────────── */
#statement { background: var(--teal-light); padding: 8rem 5vw; overflow: hidden; }
.statement-wrap { max-width: 1300px; margin: 0 auto; }
.st-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--teal-dark);
  margin-bottom: 2.5rem; display: block;
}
.st-h {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 5rem);
  font-weight: 400; line-height: 0.9; letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--deep);
}
.st-h span { color: var(--teal-dark); }
.st-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 4rem; gap: 4rem;
}
.st-copy { font-size: 1rem; font-weight: 400; line-height: 1.8; color: var(--muted); }
.st-pills { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.st-pill {
  padding: 0.55rem 1.3rem;
  border: 1.5px solid rgba(18,47,43,0.2);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--deep); background: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.st-pill:hover { background: var(--deep); color: #fff; border-color: var(--deep); }

/* ─── CLIENTES / MARCAS ──────────────────────── */
#portfolio { background: #000; padding: 8rem 5vw; }
.port-wrap { max-width: 1300px; margin: 0 auto; }
.port-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem;
}
.port-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  font-weight: 400; letter-spacing: 0.02em; line-height: 0.9; text-transform: uppercase;
  color: #fff;
}
.port-sub {
  font-size: 0.92rem; font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,0.5); text-align: right;
}

/* Grilla masonry de clientes */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.ccard {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.ccard:hover {
  box-shadow: 0 8px 32px rgba(18,47,43,0.18);
  transform: scale(1.025);
}
.ccard.wide { grid-column: span 2; }
.ccard.tall { grid-row: span 2; }

.ccard-logo {
  flex: 1; display: flex;
  align-items: center; justify-content: center;
  width: 100%;
}
.ccard-logo img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.ccard.wide .ccard-logo img { width: 90px; height: 90px; }
.ccard.tall .ccard-logo img { width: 100px; height: 100px; }

.ccard-info {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.2rem; margin-top: 1rem; text-align: center;
}
.ccard-name {
  font-size: 0.8rem; font-weight: 600;
  color: var(--deep); letter-spacing: 0.02em;
}
.ccard-handle {
  font-size: 0.7rem; color: var(--muted);
}
.ccard-ig-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-top: 0.35rem;
  opacity: 0; transform: translateY(4px);
  transition: all 0.25s;
}
.ccard:hover .ccard-ig-link { opacity: 1; transform: translateY(0); }

/* ─── SERVICIOS ──────────────────────────────── */
#servicios { background: var(--teal-dark); padding: 8rem 5vw; }
.svc-wrap {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 8rem; align-items: start;
}
.svc-left {
  display: flex; flex-direction: column; gap: 2.5rem;
  position: sticky; top: 6rem;
}
.svc-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 6rem);
  font-weight: 400; letter-spacing: 0.02em; line-height: 0.88; text-transform: uppercase; color: #fff;
}
.svc-intro {
  font-size: 0.95rem; font-weight: 400; line-height: 1.75;
  color: #fff;
}
.svc-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 2rem; align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.svc-row:first-child { border-top: 1px solid rgba(255,255,255,0.2); }
.svc-n {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85); padding-top: 0.25rem;
}
.svc-body { display: flex; flex-direction: column; gap: 0.5rem; }
.svc-name {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 600; letter-spacing: -0.01em; color: #fff;
}
.svc-desc-text {
  font-size: 0.875rem; font-weight: 400; line-height: 1.75;
  color: #fff;
}
.svc-tag-chip {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  white-space: nowrap; padding-top: 0.3rem;
}

/* ─── NOSOTRAS ────────────────────────────────── */
#nosotras { background: var(--teal-light); }

.nos-header {
  padding: 5rem 5vw 3.5rem;
}
.nos-header-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--teal-dark);
  display: block; margin-bottom: 0.8rem;
}
.nos-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  font-weight: 400; letter-spacing: 0.02em; line-height: 0.9; text-transform: uppercase;
  color: var(--deep);
}
.nos-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: var(--muted); margin-top: 1.5rem;
}

.nos-team-block { background: var(--teal-light); }
.nos-list-wrap {
  max-width: 1300px; margin: 0 auto;
  padding: 0 5vw;
}
.nos-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: start;
  border-bottom: 1px solid rgba(18,47,43,0.08);
  padding: 3rem 0;
}
.nos-row:last-child { border-bottom: none; }

.nos-photo {
  width: 160px; height: 160px;
  background: rgba(18,47,43,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
}
.nos-photo img { width: 100%; height: 100%; object-fit: cover; }
.nos-photo-ph {
  font-size: 1.8rem; font-weight: 300;
  color: var(--deep); letter-spacing: -0.03em;
}

.nos-info {
  padding: 0 0 0 2.5rem;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.nos-role {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--teal-dark);
}
.nos-name {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300; letter-spacing: -0.02em;
  color: var(--deep); line-height: 1.05;
}
.nos-cred {
  font-size: 0.82rem; color: var(--muted);
  border-bottom: 1px solid rgba(18,47,43,0.08);
  padding-bottom: 0.7rem;
}
.nos-bio {
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.82; color: var(--muted);
}

.nos-ext { background: var(--deep); padding: 3.5rem 5vw; }
.nos-ext-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2rem;
}
.nos-ext-label {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300; letter-spacing: -0.02em;
  color: #fff; line-height: 1.05;
}
.nos-ext-text {
  font-size: 1rem; font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,0.65);
}
.nos-ext-text strong { color: #fff; font-weight: 500; }

/* ─── VALORES ─────────────────────────────────── */
#valores { background: var(--teal-light); padding: 7rem 5vw; }
.val-wrap {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.val-item { padding: 3rem 3.5rem; border-right: 1px solid rgba(18,47,43,0.1); }
.val-item:last-child { border-right: none; }
.val-n    { display: none; }
.val-word { font-family: var(--ff-display); font-size: clamp(1.4rem, 2.5vw, 2.5rem); font-weight: 400; letter-spacing: 0.02em; text-transform: uppercase; color: var(--deep); margin-bottom: 1rem; line-height: 1; }
.val-item:nth-child(2) .val-word { color: var(--teal-dark); }
.val-item:nth-child(3) .val-word { color: var(--terra); }
.val-desc { font-size: 0.9rem; font-weight: 300; line-height: 1.8; color: var(--muted); }

/* ─── CONTACTO ───────────────────────────────── */
#contacto {
  position: relative; overflow: hidden;
  min-height: 80vh; display: flex; align-items: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1468581264429-2548ef9eb732?w=1600&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.88);
}
.cta-inner {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto;
  padding: 8rem 5vw; width: 100%;
  text-align: center;
}
.cta-h {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5.5vw, 6rem);
  font-weight: 400; letter-spacing: 0.02em; line-height: 0.9; text-transform: uppercase;
  color: var(--deep); margin-bottom: 2rem;
}
.cta-h em { font-style: normal; color: var(--teal-dark); }
.cta-sub  { font-size: 1.05rem; font-weight: 400; line-height: 1.7; color: var(--muted); margin-bottom: 3.5rem; }
.cta-row  { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cta-btn  {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2rem;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-decoration: none; border-radius: 6px; transition: all 0.3s;
}
.cta-btn.primary { background: var(--deep); color: #fff; border: 2px solid var(--deep); }
.cta-btn.primary:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(18,47,43,0.2); }
.cta-btn.outline { background: transparent; color: var(--deep); border: 2px solid rgba(18,47,43,0.25); }
.cta-btn.outline:hover { border-color: var(--deep); background: rgba(18,47,43,0.05); transform: translateY(-2px); }
.cta-btn svg { flex-shrink: 0; transition: color 0.3s; }
.cta-btn.primary:hover svg { color: var(--teal-light); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--deep); padding: 2.5rem 5vw;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.f-name { font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; color: #fff; display: inline-flex; align-items: last baseline; }
.f-name .ni { padding-right: calc(1cap * 0.16 + 0.1em); }
.f-tag  { font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.38); margin-top: 0.15rem; letter-spacing: 0.02em; }
.f-nav  { list-style: none; display: flex; gap: 2.2rem; }
.f-nav a { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.f-nav a:hover { color: var(--teal); }
.f-copy { font-size: 0.68rem; color: rgba(255,255,255,0.45); text-align: right; }


/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .social-bar   { display: none; }
  nav           { padding: 1.2rem 5vw; }
  nav.scrolled  { padding: 0.9rem 5vw; }
  .nav-links    { display: none; }
  .nav-toggle   { display: flex; }
  nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem 5vw 2rem;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(18,47,43,0.1);
    border-top: 1px solid rgba(18,47,43,0.07);
  }
  nav.open .nav-links a { font-size: 0.9rem; letter-spacing: 0.12em; }
  nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  #statement, #portfolio, #servicios, #valores { padding: 6rem 5vw; }

  .st-row       { flex-direction: column; gap: 2rem; }
  .port-header  { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .port-sub     { text-align: left; max-width: none; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .ccard.wide   { grid-column: span 2; }
  .ccard.tall   { grid-row: span 1; }
  .svc-wrap     { grid-template-columns: 1fr; gap: 3rem; }
  .svc-left     { position: static; }
  .svc-row      { grid-template-columns: 48px 1fr; gap: 1.2rem; }
  .svc-tag-chip { grid-column: 2; }
  .nos-row      { grid-template-columns: 120px 1fr; }
  .nos-photo    { width: 120px; height: 120px; }
  .val-wrap     { grid-template-columns: 1fr; }
  .val-item     { border-right: none; border-bottom: 1px solid rgba(18,47,43,0.1); }
  .val-item:last-child { border-bottom: none; }
  footer        { flex-direction: column; text-align: center; }
  .f-copy       { text-align: center; }
  .f-nav        { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
}

@media (max-width: 640px) {
  .hero-bottom  { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cta-h        { font-size: clamp(1.6rem, 8vw, 3rem); }
  .nos-title    { font-size: clamp(1.4rem, 7vw, 2.5rem); }
  .nos-row      { grid-template-columns: 1fr; }
  .nos-photo    { width: 120px; height: 120px; }
  .nos-info     { padding: 1.5rem 0 0; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .ccard.wide   { grid-column: span 2; }
  .ccard.tall   { grid-row: span 1; }
  .ls-item      { width: 38px; height: 38px; }
  .ls-item img  { width: 38px; height: 38px; }
}
