/* =============================================
   CONSTRUINT — Tipografía y color según Estilo.pdf
   Instrument Sans: Medium (títulos), Regular (textos), Bold (botones)
   Montserrat Semibold: apartados / antetítulos
   Colores: Normal #294634 · Rollover #65665D · #D0CDBF · #F6F3F1
   ============================================= */

:root {
  /* Estilo.pdf — texto y acentos */
  --color-text: #294634;
  --color-rollover: #65665d;
  --color-accent: #d0cdbf;
  --color-cream: #f6f3f1;
  --color-white: #ffffff;
  /* CN-Pres — fondos crema y bloques oscuros */
  --color-cream-mockup: #f9f7f2;
  --color-cta-green: #294634;

  --color-forest: var(--color-text);
  --color-forest-muted: var(--color-text);
  --color-beige-accent: var(--color-accent);
  --section-beige: var(--color-cream-mockup);

  --font-heading: "Instrument Sans", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-apartados: "Montserrat", system-ui, sans-serif;

  --max-width: 1180px;

  /* Bloque compromiso (mockup) */
  --compromiso-base: #babcb1;
  --compromiso-emphasis: #65665d;

  /* ¿Qué ofrecemos? — mockup */
  --servicios-muted: #d0cdbf;
  --servicios-strong: #65665d;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* UTILITIES */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 920px;
}

.container-align-left .section-title,
.container-align-left .servicios-desc,
.container-align-left .inline-link {
  margin-left: 0;
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-white {
  color: var(--color-white) !important;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.max-w-lg {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-beige {
  background: var(--section-beige);
}

/* TYPOGRAPHY */
.section-label {
  font-family: var(--font-apartados);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--servicios-strong);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

/* Títulos de sección ampliados: Instrument Sans Medium (Estilo.pdf) */
.section-title-serif {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.inline-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--servicios-strong);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.25s, border-color 0.25s, opacity 0.25s;
}

.inline-link:hover {
  color: var(--color-rollover);
  border-color: var(--color-rollover);
}

.arrow {
  margin-left: 0.35rem;
}

/* HEADER */
.header {
  padding: clamp(0.85rem, 1.5vw, 1.25rem) 0;
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.25s ease;
}

.header.scrolled {
  box-shadow: 0 1px 0 rgba(41, 70, 52, 0.08), 0 8px 24px rgba(41, 70, 52, 0.06);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
}

.logo-eyebrow {
  font-family: var(--font-apartados);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-rollover);
  margin-bottom: 0.25rem;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo-svg {
  height: clamp(72px, 14vw, 112px);
  width: auto;
  max-width: min(340px, 88vw);
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #2a2a2a;
  transition: color 0.25s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-rollover);
}

/* HERO — una línea en escritorio; dos tonos como mockup */
.hero-text-section {
  padding: clamp(1.5rem, 3.5vw, 2.5rem) 0 clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--color-white);
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2.35rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.4em;
  row-gap: 0.15em;
}

@media (min-width: 640px) {
  .hero-title {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

.hero-title-dark {
  color: #65665D;
  font-weight: 300;
}

.hero-title-muted {
  color: #D0CDBF;
  font-weight: 300;
}

@media (max-width: 639px) {
  .hero-title {
    flex-direction: column;
    white-space: normal;
  }
}

.noticias-section {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.noticias-lead {
  margin-bottom: 0;
}

.hero-image-section {
  position: relative;
  line-height: 0;
}

.hero-img {
  width: 100%;
  height: clamp(320px, 72vh, 820px);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.1) 48%,
    transparent 78%
  );
  pointer-events: none;
}

.hero-overlay-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: min(76rem, 95vw);
}

.hero-kicker {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.9vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.45;
  margin: 0;
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 3.1vw, 2.1rem);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* COMPROMISO — tamaño contenido + #babcb1 / #65665D */
.compromiso-section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background: var(--color-white);
}

.compromiso-inner {
  max-width: 76rem;
  margin: 0 auto;
}

.compromiso-text {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.85vw, 2.1rem);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.compromiso-base {
  color: var(--compromiso-base);
}

.compromiso-em {
  color: var(--compromiso-emphasis);
  font-weight: 700;
}

/* TRANSICIÓN */
.transition-section {
  line-height: 0;
  background: #e8e4df;
}

.transition-img {
  width: 100%;
  height: clamp(280px, 52vh, 640px);
  object-fit: cover;
}

/* SERVICIOS — ¿Qué ofrecemos? (#65665D / #D0CDBF) */
.servicios-section {
  padding: clamp(5rem, 11vw, 8rem) 0;
}

.servicios-section .section-title,
.servicios-section .section-title-serif {
  color: var(--servicios-strong);
  font-weight: 500;
  font-size: clamp(1.95rem, 3.35vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.servicios-section .section-label {
  color: var(--servicios-strong);
}

.servicios-desc {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 42rem;
  color: var(--color-text);
}

.servicios-section .servicios-desc {
  color: var(--servicios-muted);
  font-size: clamp(1rem, 1.65vw, 1.25rem);
  line-height: 1.52;
  max-width: 44rem;
}

.servicios-desc strong,
.servicios-em {
  font-weight: 600;
}

.servicios-base {
  color: var(--servicios-muted);
  font-weight: 400;
}

.servicios-section .servicios-desc .servicios-em,
.servicios-section .servicios-desc strong {
  color: var(--servicios-strong);
  font-weight: 600;
}

.servicios-section .inline-link {
  color: var(--servicios-strong);
  border-color: var(--servicios-strong);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.servicios-section .inline-link:hover {
  color: #4a4c46;
  border-color: #4a4c46;
}

/* PROYECTOS — galería tipo mockup CN-Pres */
.proyectos-section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.proyectos-section .section-title {
  max-width: 24ch;
  margin-bottom: 0.95rem;
}

.proyectos-section .section-label {
  color: var(--servicios-strong);
}

.proyectos-section .inline-link {
  color: var(--servicios-strong);
  border-color: var(--servicios-strong);
  font-size: 0.82rem;
}

.proyectos-collage-wrap {
  width: 100%;
}

.proyectos-collage-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* CITA */
.cita-section {
  padding: clamp(5rem, 11vw, 8rem) 0;
  text-align: center;
}

.cita-grande {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 300;
  line-height: 1.22;
  color: #2a2a2a;
  margin: 0 auto 1.5rem;
  max-width: 22ch;
  border: none;
}

.cita-firma {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* GARANTIA — como mockup */
.garantia-section {
  padding: clamp(4rem, 8vw, 6rem) 0 0;
}

.garantia-section .section-title {
  max-width: none;
  width: 100%;
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
  line-height: 1.14;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.garantia-row {
  border-top: 1px solid rgba(101, 102, 93, 0.18);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.garantia-row-inner {
  display: grid;
  grid-template-columns: minmax(190px, 23%) 1fr;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  row-gap: 0.35rem;
  align-items: start;
  position: relative;
  z-index: 2;
  padding: clamp(1.9rem, 3.9vw, 2.9rem) 0;
}

.garantia-title {
  width: auto;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  font-weight: 500;
  color: var(--servicios-strong);
  margin: 0;
}

.garantia-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  color: #7a7b73;
  max-width: 64ch;
  margin: 0;
}

/* Rollover banners: imagen al hover + animacion suave */
.garantia-row-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--row-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.035);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.7s ease;
}

.garantia-row-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 35, 27, 0.7), rgba(18, 35, 27, 0.45));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.garantia-row-hover .garantia-title,
.garantia-row-hover .garantia-text {
  transition: color 0.35s ease, transform 0.35s ease;
}

.garantia-row-hover:hover::before,
.garantia-row-hover:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.garantia-row-hover:hover::after,
.garantia-row-hover:focus-within::after {
  opacity: 1;
}

.garantia-row-hover:hover .garantia-title,
.garantia-row-hover:hover .garantia-text,
.garantia-row-hover:focus-within .garantia-title,
.garantia-row-hover:focus-within .garantia-text {
  color: #ffffff;
}

.garantia-row-hover:hover .garantia-title,
.garantia-row-hover:focus-within .garantia-title {
  transform: translateX(3px);
}

/* TESTIMONIOS */
.testimonios-section {
  padding: clamp(4.2rem, 9vw, 6.4rem) 0;
}

.testimonios-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(0.9rem, 2vw, 1.35rem);
}

.testimonios-label {
  margin: 0;
  color: #9c9d95;
}

.testimonios-nav {
  display: inline-flex;
  gap: 0.4rem;
}

.test-nav-btn {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(101, 102, 93, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8f9188;
  font-size: 0.72rem;
  line-height: 1;
}

.flex-cols.testimonios-layout {
  display: grid;
  grid-template-columns: 96px minmax(0, 54ch);
  column-gap: clamp(1.2rem, 2.8vw, 2.1rem);
  align-items: start;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.flex-cols {
  display: flex;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.test-img {
  width: 92px;
  height: 92px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.test-img-bw {
  filter: grayscale(1) contrast(1.05);
}

.quote-text {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.95vw, 1.38rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.98;
  margin: 0 0 1rem;
  color: #676963;
}

.author-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: #7f817a;
}

.test-plain {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  max-width: 54ch;
}

/* RESPONSABILIDAD MEDIOAMBIENTAL */
.forest-section {
  position: relative;
  min-height: clamp(340px, 52vh, 560px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.forest-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.2) 45%,
    rgba(0, 0, 0, 0.08) 100%
  );
  pointer-events: none;
}

.forest-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(3rem, 8vw, 5rem) 2rem clamp(2rem, 5vw, 3.2rem);
  text-align: left;
  max-width: min(56rem, 100%);
}

.forest-label {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.7rem;
}

.forest-copy {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.42;
  max-width: 44rem;
  margin: 0;
}

.forest-link {
  margin-top: 1rem;
  display: inline-block;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding-bottom: 2px;
}

.forest-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* CTA — verde CN-Pres + flecha */
.cta-section {
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  background: var(--color-cta-green);
}

.flex-cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.flex-cta-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 2.25rem;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

.cta-title-light {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.cta-arrow {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.cta-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.cta-arrow-icon {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 400;
}

/* FOOTER — mismo verde que CTA, línea superior clara */
.footer {
  background: var(--color-cta-green);
  color: var(--color-white);
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem 2rem;
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-brand {
  display: inline-flex;
}

.footer-logo-svg {
  height: clamp(112px, 12vw, 132px);
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.25s;
}

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

.footer-mid-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.2rem, 2.4vw, 1.75rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.social-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-links a:hover {
  color: var(--color-white);
}

.footer-contact-block {
  text-align: right;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.footer-contact-block a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.1rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

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

.footer-dot {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.footer-copy {
  margin: 0;
}

.footer-light {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
}

.text-xs {
  font-size: 0.68rem;
  line-height: 1.5;
}

/* MENÚ MÓVIL */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  width: 32px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: var(--color-text);
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 5.5rem 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--color-white);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
    display: flex;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .garantia-row-inner {
    grid-template-columns: 1fr;
    row-gap: 0.7rem;
  }

  .flex-cols.testimonios-layout {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .flex-cta {
    flex-direction: column;
    gap: 1.25rem;
  }

  .proyectos-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: unset;
  }

  .masonry-tl {
    grid-column: 1;
    grid-row: 1;
  }

  .masonry-bl {
    grid-column: 2;
    grid-row: 1;
  }

  .masonry-center {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 280px;
  }

  .masonry-right {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 220px;
  }

  .footer-contact-block {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .proyectos-masonry {
    grid-template-columns: 1fr;
  }

  .masonry-tl,
  .masonry-bl,
  .masonry-center,
  .masonry-right {
    grid-column: 1;
    grid-row: auto;
    min-height: 220px;
  }

  .flex-cols {
    flex-direction: column;
    text-align: center;
  }

  .test-photo-col {
    margin: 0 auto;
  }
}

/* =============================================
   SPLASH SCREEN
   ============================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f6f3f1;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.splash.exit {
  transform: translateY(100%);
}

.splash-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-svg {
  width: min(55vw, 420px);
  height: auto;
}

@keyframes splashFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.splash-part {
  opacity: 0;
}

.splash-shape-top {
  animation: splashFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.splash-letters {
  animation: splashFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.splash-subtext {
  animation: splashFadeIn 0.6s ease 0.35s both;
}

.splash-shapes-bottom {
  animation: splashFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

body.splash-active {
  overflow: hidden;
}
