/* =========================================================
   CANE — Centro de Aprendizaje Neuronal
   ========================================================= */

:root {
  --brand:        #2d7daa;     /* logo blue */
  --brand-deep:   #1f5d80;
  --brand-soft:   #c9e0ed;
  --brand-tint:   #eaf3f8;

  --accent:       #e08864;     /* warm coral - humanity */
  --accent-soft:  #f7e2d6;

  --ink:          #1a2733;
  --ink-2:        #4a5a68;
  --ink-3:        #7c8a96;

  --paper:        #faf8f4;     /* warm off-white */
  --paper-2:      #f3eee6;
  --line:         #e6dfd4;

  --rad:          14px;
  --rad-lg:       22px;

  --shadow-soft:  0 1px 2px rgba(31,93,128,.06), 0 8px 30px rgba(31,93,128,.06);
  --shadow-pop:   0 2px 4px rgba(31,93,128,.08), 0 24px 60px rgba(31,93,128,.12);

  --font-display: "Newsreader", ui-serif, Georgia, "Times New Roman", serif;
  --font-body:    "Manrope", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--brand-soft); color: var(--brand-deep); }

/* ---------- typography helpers ---------- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-wrap: balance;
}
em { font-style: italic; color: var(--brand-deep); font-weight: 500; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}
.kicker--light { color: var(--brand-soft); }
.kicker::before {
  content:"";
  width: 24px; height: 1px;
  background: currentColor;
  display: inline-block;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  margin: 0 0 22px;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45,125,170,.28);
}
.btn--primary:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--ghost-light { color: var(--paper); border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: var(--paper); color: var(--brand-deep); border-color: var(--paper); }
.btn--text {
  background: transparent;
  color: var(--brand);
  padding: 12px 4px;
}
.btn--text:hover { color: var(--brand-deep); }
.btn--lg { padding: 16px 28px; font-size: 15px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center;
  padding: 14px 40px;
  gap: 32px;
  background: rgba(250,248,244,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, padding .25s ease, background .25s ease;
}
.nav.is-scrolled {
  box-shadow: 0 1px 0 rgba(31,93,128,.08);
  padding: 10px 40px;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo  { height: 42px; width: auto; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content:""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover { color: var(--brand); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 0; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 56px 110px;
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
}
.hero::before {
  /* subtle texture wash */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 460px at 85% 30%, rgba(45,125,170,.07), transparent 70%),
    radial-gradient(560px 380px at 10% 80%, rgba(224,136,100,.06), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero__title {
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  margin: 0 0 22px;
  letter-spacing: -0.025em;
}
.hero__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero__ctas {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 14px 18px;
  margin-bottom: 40px;
}
.hero__chips {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero__chips li {
  font-size: 12.5px; font-weight: 500;
  color: var(--ink-2);
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}

/* ---------- HERO MARK / ANIMATED LOGO ---------- */
.hero__mark {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--rad-lg);
  background:
    radial-gradient(120% 80% at 50% 10%, #fff, var(--brand-tint) 70%);
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__mark::before {
  /* grid */
  content:""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(45,125,170,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(45,125,170,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(closest-side at 50% 50%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, #000 50%, transparent 100%);
}

.markstage {
  position: relative;
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
}
.markstage__svg { width: 86%; height: auto; }

/* breath */
.markstage[data-mode="breath"] .leaf,
.markstage[data-mode="breath"] .wave,
.markstage[data-mode="breath"] .markstage__aura {
  transform-origin: 200px 160px;
  transform-box: fill-box;
}
.markstage[data-mode="breath"] .markstage__svg {
  animation: breath 4.8s ease-in-out infinite;
  transform-origin: 50% 50%;
}
@keyframes breath {
  0%,100% { transform: scale(1);    opacity: .96; }
  50%     { transform: scale(1.035); opacity: 1; }
}

/* flow — draw and erase along the wave strokes */
.markstage .wave {
  stroke-dasharray: 600;
  stroke-dashoffset: 0;
}
.markstage[data-mode="flow"] .wave {
  animation: flow 5s ease-in-out infinite;
}
.markstage[data-mode="flow"] .wave--2 { animation-delay: -1.4s; }
.markstage[data-mode="flow"] .wave--3 { animation-delay: -2.8s; }
@keyframes flow {
  0%   { stroke-dashoffset: 600; }
  50%  { stroke-dashoffset: 0;   }
  100% { stroke-dashoffset: -600; }
}

/* sparks — default ON; hide when not in spark mode */
.markstage .sparks { opacity: 1; }
.markstage[data-mode="breath"] .sparks,
.markstage[data-mode="flow"]   .sparks,
.markstage[data-mode="static"] .sparks { opacity: 0; }

/* static */
.markstage[data-mode="static"] .markstage__svg,
.markstage[data-mode="static"] .wave {
  animation: none !important;
}

/* hover mode — only animate when hovered */
.markstage[data-mode="hover"] .wave,
.markstage[data-mode="hover"] .markstage__svg,
.markstage[data-mode="hover"] .sparks {
  animation: none !important;
  opacity: 1;
}
.markstage[data-mode="hover"] .sparks { opacity: 0; }
.markstage[data-mode="hover"]:hover .sparks { opacity: 1; }
.markstage[data-mode="hover"]:hover .wave {
  animation: flow 4s ease-in-out infinite;
}
.markstage[data-mode="hover"]:hover .wave--2 { animation-delay: -1.2s; }
.markstage[data-mode="hover"]:hover .wave--3 { animation-delay: -2.4s; }

.markstage__caption {
  position: absolute;
  bottom: -4px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0;
}
.markstage__caption strong { color: var(--brand); font-weight: 600; }
.caption__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 1.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1);   opacity: .85; }
  50%     { transform: scale(1.6); opacity: .3;  }
}

/* =========================================================
   SECTION layout primitives
   ========================================================= */
.section {
  padding: 110px 56px;
  max-width: 1480px;
  margin: 0 auto;
}
.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin: 0 auto 64px; text-align: center; }
.section__head--center .kicker::before { display: none; }
.section__head--center .kicker { padding-left: 0; }
.section__title {
  font-size: clamp(36px, 4.4vw, 64px);
  margin: 18px 0 0;
  font-weight: 400;
}

/* =========================================================
   ABOUT
   ========================================================= */
.section--about {
  border-top: 1px solid var(--line);
}
.about {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.about__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 780px;
  margin: 0;
  position: relative;
  padding-left: 28px;
}
.about__quote::before {
  content: "";
  position: absolute; left: 0; top: 12px; bottom: 12px;
  width: 3px; border-radius: 2px;
  background: linear-gradient(to bottom, var(--brand), var(--accent));
}
.about__stats {
  display: grid; gap: 14px;
}
.about__stats > div {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 22px;
  border-radius: var(--rad);
  background: #fff;
  border: 1px solid var(--line);
}
.about__stats b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--brand);
  letter-spacing: -.02em;
  min-width: 56px;
}
.about__stats span {
  font-size: 14px;
  color: var(--ink-2);
}

/* =========================================================
   MISIÓN / VISIÓN
   ========================================================= */
.section--mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 56px 110px;
  max-width: 1480px;
  margin: 0 auto;
}
.mv {
  border-radius: var(--rad-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mv h3 {
  font-size: clamp(28px, 2.4vw, 36px);
  margin: 18px 0 18px;
  font-weight: 400;
}
.mv p {
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}
.mv--mision {
  background: var(--brand-deep);
  color: var(--paper);
}
.mv--mision h3 em { color: var(--accent-soft); }
.mv--mision p { color: rgba(255,255,255,.82); }
.mv--mision::after {
  content: "";
  position: absolute; right: -120px; bottom: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.10), transparent 70%);
}
.mv--vision {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.mv--vision p { color: var(--ink-2); }

/* =========================================================
   VALORES
   ========================================================= */
.section--values {
  background: var(--paper-2);
  max-width: none;
  padding: 110px 56px;
}
.section--values > .section__head,
.section--values > .values { max-width: 1480px; margin-left: auto; margin-right: auto; }

.values {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  overflow: hidden;
}
.value {
  background: var(--paper);
  padding: 32px 28px 36px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
  transition: background .25s ease;
}
.value:hover { background: #fff; }
.value:nth-child(1), .value:nth-child(2), .value:nth-child(3), .value:nth-child(4) {}
/* spotlight first 4, then 3 stretched across */
.value:nth-child(5) { grid-column: span 2; }
.value:nth-child(6) { grid-column: span 1; }
.value:nth-child(7) { grid-column: span 1; }

.value__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--brand);
  letter-spacing: .04em;
}
.value h4 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}
.value p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 360px;
}

/* =========================================================
   SERVICIOS
   ========================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 360px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); border-color: var(--brand-soft); }
.service header { display: flex; align-items: baseline; gap: 14px; flex-direction: column; }
.service__index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--brand);
  letter-spacing: .04em;
}
.service h3 { font-size: 26px; margin: 0; font-weight: 500; }
.service p { color: var(--ink-2); margin: 0; font-size: 15.5px; }
.service__tags {
  list-style: none; margin: auto 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service__tags li {
  font-size: 12px; font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand-tint);
  color: var(--brand-deep);
}
.service__more { align-self: flex-start; padding-left: 0; padding-right: 0; }
.service--feature {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  border-color: transparent;
  position: relative; overflow: hidden;
}
.service--feature::before {
  content: "";
  position: absolute; inset: -1px;
  background:
    radial-gradient(420px 200px at 110% -10%, rgba(255,255,255,.20), transparent 70%);
  pointer-events: none;
}
.service--feature h3,
.service--feature p { color: #fff; }
.service--feature p { color: rgba(255,255,255,.85); }
.service--feature .service__index { color: var(--accent-soft); }
.service--feature .service__tags li {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.service--feature .btn--text { color: var(--accent-soft); }
.service--feature .btn--text:hover { color: #fff; }

/* =========================================================
   NEUROFEEDBACK
   ========================================================= */
.section--nfb {
  background: var(--brand-deep);
  color: var(--paper);
  max-width: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.section--nfb::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 360px at 90% 0%, rgba(224,136,100,.18), transparent 65%),
    radial-gradient(800px 600px at 0% 100%, rgba(45,125,170,.45), transparent 60%);
}
.nfb {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
}
.nfb__head h2 {
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  margin: 14px 0 24px;
}
.nfb__head h2 em { color: var(--accent-soft); }
.nfb__intro {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  max-width: 460px;
}
.nfb__grid { display: flex; flex-direction: column; gap: 4px; }

.qa {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--rad);
  padding: 4px 0;
  transition: background .25s ease, border-color .25s ease;
}
.qa[open] {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}
.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  gap: 16px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa__q {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.qa__icon {
  position: relative;
  width: 16px; height: 16px;
  flex: none;
}
.qa__icon::before,
.qa__icon::after {
  content: ""; position: absolute;
  background: var(--paper);
  border-radius: 1px;
  transition: transform .3s ease, opacity .3s ease;
}
.qa__icon::before { top: 7px; left: 0; right: 0; height: 2px; }
.qa__icon::after  { left: 7px; top: 0; bottom: 0; width: 2px; }
.qa[open] .qa__icon::after { transform: scaleY(0); opacity: 0; }

.qa__body {
  padding: 0 24px 22px;
  color: rgba(255,255,255,.84);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 640px;
}
.dotlist { list-style: none; padding: 0; margin: 12px 0 0; }
.dotlist li {
  position: relative;
  padding: 6px 0 6px 22px;
}
.dotlist li::before {
  content: "";
  position: absolute; left: 0; top: 13px;
  width: 8px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.meta {
  margin: 18px 0 8px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.10);
  border-radius: 10px;
  overflow: hidden;
}
.meta > div {
  background: var(--brand-deep);
  padding: 14px 16px;
}
.meta dt {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500;
  color: var(--paper);
}
.note {
  font-size: 13px; color: rgba(255,255,255,.55);
  margin: 12px 0 0;
}

/* =========================================================
   UBICACIÓN Y HORARIO
   ========================================================= */
.section--location {
  background: var(--paper-2);
}

.location {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.loc-block h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 .6rem;
}

.loc-block p {
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}

.loc-block a { color: var(--brand); }
.loc-block a:hover { text-decoration: underline; }

.loc-link {
  display: inline-block;
  margin-top: .9rem;
  font-size: .85rem;
  padding: .5rem 1.1rem;
}

.hours {
  border-collapse: collapse;
  width: 100%;
}

.hours tr { border-bottom: 1px solid var(--line); }
.hours tr:last-child { border-bottom: none; }

.hours td {
  padding: .55rem 0;
  color: var(--ink-2);
  font-size: .95rem;
}

.hours td:last-child {
  text-align: right;
  color: var(--ink);
}

.location__map {
  height: 400px;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  background: var(--brand-soft);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .location {
    grid-template-columns: 1fr;
  }
  .location__map {
    height: 300px;
  }
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.section--cta {
  max-width: none;
  padding: 0;
  background: var(--paper);
}
.cta {
  max-width: 1480px;
  margin: 0 auto;
  padding: 140px 56px;
  text-align: center;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute; left: 50%; top: 80px;
  width: 1px; height: 40px;
  background: var(--brand-soft);
}
.cta__title {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400;
  margin: 18px auto 14px;
  max-width: 14ch;
}
.cta__sub {
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 auto 32px;
  max-width: 520px;
}
.cta__actions {
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.section--cta .btn--ghost-light { color: var(--brand); border-color: var(--brand); }
.section--cta .btn--ghost-light:hover { background: var(--brand); color: #fff; }

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 80px 56px 32px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  align-items: start;
}
.foot__brand { display: flex; flex-direction: column; gap: 18px; }
.foot__logo { height: 56px; width: auto; filter: brightness(0) invert(1) opacity(.85); }
.foot__tag {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin: 0;
  max-width: 280px;
}
.foot__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.foot h5 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 16px;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 8px; font-size: 14.5px; }
.foot a:hover { color: var(--brand-soft); }
.foot__copy {
  grid-column: 1 / -1;
  padding-top: 32px;
  margin: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; padding: 56px 32px 80px; gap: 40px; }
  .hero__mark { max-width: 520px; }
  .section { padding: 80px 32px; }
  .section--mv { grid-template-columns: 1fr; padding: 0 32px 80px; }
  .section--values { padding: 80px 32px; }
  .nfb { grid-template-columns: 1fr; padding: 80px 32px; gap: 32px; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .services { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(n) { grid-column: auto; }
  .foot { grid-template-columns: 1fr; padding: 56px 32px; gap: 40px; }
  .foot__cols { grid-template-columns: repeat(3, 1fr); }
  .nav { padding: 14px 24px; }
  .nav__links { display: none; }
}
@media (max-width: 640px) {
  .values { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr; gap: 24px; }
  .meta { grid-template-columns: 1fr; }
  .cta { padding: 80px 24px; }
}
