/* ==========================================================================
   NotServicios Administrativos Lisricard — Sistema de diseño
   Concepto: composición en capas + bento grid + proceso conectado +
   servicios filtrables. Estructura tipo agencia, densa y modular.
   ========================================================================== */

:root {
  --bg: #f4f2ee;
  --surface: #ffffff;
  --ink: #191712;
  --ink-soft: #5c574e;
  --muted: #8f897c;
  --border: #e6e1d6;

  --accent: #e5810f;
  --accent-dark: #b8630a;
  --accent-tint: #fdecd4;
  --navy: #1c2534;
  --navy-tint: #e7eaf0;

  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  --space-3xs: .4rem;
  --space-2xs: .8rem;
  --space-xs: 1.2rem;
  --space-sm: 2rem;
  --space-md: 3.2rem;
  --space-lg: 5.2rem;
  --space-xl: 8rem;
  --space-2xl: 11rem;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-full: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-s: .3s;
  --dur-m: .6s;
  --dur-l: 1s;

  --container: 1320px;
  --gutter: clamp(1.6rem, 4.5vw, 5.6rem);
  --header-h: 116px;

  --shadow-sm: 0 2px 10px rgba(25,23,18,.05);
  --shadow-md: 0 20px 44px -22px rgba(25,23,18,.28);
  --shadow-lg: 0 30px 70px -30px rgba(25,23,18,.35);
}

/* --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

html { font-size: 62.5%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
svg { display: block; }
::selection { background: var(--ink); color: var(--bg); }

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.06; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--accent-dark);
}
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.section { position: relative; padding-block: var(--space-2xl); }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: var(--space-lg); margin-bottom: var(--space-xl); flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(3.2rem, 4.2vw, 5rem); max-width: 18ch; margin-top: var(--space-xs); }
.section-head p { font-size: 1.7rem; color: var(--ink-soft); max-width: 42ch; }

/* Buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .9rem;
  padding: 1.5rem 2.8rem; border-radius: var(--r-full);
  font-size: 1.4rem; font-weight: 700; white-space: nowrap;
  transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease), background var(--dur-s) var(--ease), color var(--dur-s) var(--ease);
}
.btn .a { transition: transform var(--dur-s) var(--ease); display:inline-flex; }
.btn:hover .a { transform: translateX(4px) rotate(0deg); }
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--accent); color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn--outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bg); }
.btn--sm { padding: 1.1rem 2rem; font-size: 1.25rem; }

.pill-btn {
  font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700;
  padding: 1rem 1.8rem; border-radius: var(--r-full); border: 1px solid var(--border);
  background: var(--surface); color: var(--ink-soft);
  transition: all var(--dur-s) var(--ease);
}
.pill-btn:hover { border-color: var(--ink); color: var(--ink); }
.pill-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* Cards */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); }

/* --------------------------------------------------------------------- */
/* Cursor + progress                                                     */
/* --------------------------------------------------------------------- */
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 34px; height: 34px;
  border: 1.5px solid var(--ink); border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%,-50%);
  transition: width var(--dur-s) var(--ease), height var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease), opacity var(--dur-s) var(--ease);
  opacity: 0;
}
.cursor-ring.is-active { opacity: 1; }
.cursor-ring.is-hover { width: 60px; height: 60px; border-color: var(--accent); }
@media (hover: none), (pointer: coarse) { .cursor-ring { display: none; } }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--accent); z-index: 1001; }

/* --------------------------------------------------------------------- */
/* Utility bar + header                                                  */
/* --------------------------------------------------------------------- */

.utility-bar {
  background: var(--navy); color: rgba(231,234,240,.8);
  font-family: var(--font-mono); font-size: 1.15rem;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.utility-bar__links { display: flex; gap: var(--space-md); }
.utility-bar a:hover { color: var(--accent); }
.utility-bar__tag { color: var(--accent); }

.header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 900;
  height: 76px; display: flex; align-items: center;
  background: rgba(244,242,238,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: height var(--dur-m) var(--ease);
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.header__brand { display: flex; align-items: center; gap: 1.2rem; }
.header__brand img { height: 36px; width: auto; }
.header__wordmark { font-weight: 800; font-size: 1.5rem; line-height: 1.1; }
.header__wordmark span { display: block; font-family: var(--font-mono); font-size: 1rem; font-weight: 400; color: var(--muted); margin-top: .3rem; }

.nav-desktop { display: flex; align-items: center; gap: var(--space-lg); }
.nav-desktop a { position: relative; font-size: 1.4rem; font-weight: 600; }
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--accent);
  transition: width var(--dur-s) var(--ease);
}
.nav-desktop a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: var(--space-md); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; height: 22px; justify-content: center; z-index: 1200; }
.nav-toggle span { width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur-s) var(--ease), opacity var(--dur-s) var(--ease); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; background: var(--navy); z-index: 1100;
  display: flex; flex-direction: column; justify-content: center; padding: var(--space-xl) var(--gutter);
  opacity: 0; visibility: hidden; transform: translateY(-16px);
  transition: opacity var(--dur-m) var(--ease), transform var(--dur-m) var(--ease), visibility 0s linear var(--dur-m);
}
.nav-mobile.is-open { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity var(--dur-m) var(--ease), transform var(--dur-m) var(--ease), visibility 0s linear 0s; }
.nav-mobile a { display: block; font-size: clamp(3.4rem, 11vw, 6rem); font-weight: 800; color: #f4f2ee; padding-block: 1rem; border-bottom: 1px solid rgba(244,242,238,.12); }
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile__meta { margin-top: var(--space-lg); font-family: var(--font-mono); font-size: 1.3rem; color: rgba(244,242,238,.5); }

/* --------------------------------------------------------------------- */
/* Hero — composición en capas                                           */
/* --------------------------------------------------------------------- */

.hero { padding-block: var(--space-xl) var(--space-lg); overflow: visible; }
.hero__grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: var(--space-xl); align-items: center; }

.hero__title { font-size: clamp(4rem, 5.6vw, 6.4rem); }
.hero__title .accent { color: var(--accent); font-style: italic; font-weight: 800; }
.hero__eyebrow { margin-bottom: var(--space-sm); }
.hero__sub { margin-top: var(--space-md); font-size: 1.85rem; color: var(--ink-soft); max-width: 50ch; }

.hero__actions { margin-top: var(--space-lg); display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }

.hero__stats { margin-top: var(--space-xl); display: flex; gap: var(--space-xl); flex-wrap: wrap; }
.hero__stat b { display: block; font-size: 2.2rem; font-family: var(--font-mono); color: var(--ink); }
.hero__stat span { font-size: 1.3rem; color: var(--muted); }

.hero__visual { position: relative; height: 560px; }
.hero__img-main {
  position: absolute; top: 0; right: 0; width: 82%; height: 90%;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero__img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__img-secondary {
  position: absolute; left: 0; bottom: 0; width: 46%; height: 46%;
  border-radius: var(--r-md); overflow: hidden; border: 6px solid var(--bg);
  box-shadow: var(--shadow-md); z-index: 2;
}
.hero__img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
  position: absolute; top: 8%; left: -6%; z-index: 3;
  background: var(--surface); border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: var(--space-sm); display: flex; align-items: center; gap: 1.2rem;
  animation: floaty 5s ease-in-out infinite;
}
.hero__badge .ring {
  width: 46px; height: 46px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0;
}
.hero__badge b { display: block; font-size: 1.9rem; }
.hero__badge span { font-size: 1.2rem; color: var(--muted); }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .hero__badge { animation: none; } }

/* Marquee ticker */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding-block: var(--space-sm);
}
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: 1.6rem; font-family: var(--font-mono); font-size: 1.4rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); padding-inline: var(--space-md); white-space: nowrap; }
.marquee__track span::after { content: '◆'; color: var(--accent); font-size: 1rem; margin-left: 1.6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* --------------------------------------------------------------------- */
/* Reveal                                                                 */
/* --------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .4s; }

/* --------------------------------------------------------------------- */
/* Nosotros — bento grid                                                 */
/* --------------------------------------------------------------------- */

.about { background: var(--surface); border-block: 1px solid var(--border); }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-md); }

.bento-card { padding: var(--space-lg); border-radius: var(--r-lg); position: relative; overflow: hidden; }
.bento-card--copy { grid-column: span 4; background: var(--bg); border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
.bento-card--copy p { font-size: 1.8rem; color: var(--ink-soft); line-height: 1.7; }
.bento-card--copy p + p { margin-top: 1.2em; }
.bento-card--copy strong { color: var(--ink); }

.bento-card--photo { grid-column: span 2; grid-row: span 2; padding: 0; }
.bento-card--photo img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

.bento-card--mision, .bento-card--vision {
  grid-column: span 2; background: var(--navy); color: #f4f2ee;
}
.bento-card--mision .tag, .bento-card--vision .tag { font-family: var(--font-mono); font-size: 1.1rem; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; }
.bento-card--mision h3, .bento-card--vision h3 { font-size: 2.1rem; margin-top: var(--space-sm); }
.bento-card--mision p, .bento-card--vision p { margin-top: var(--space-xs); font-size: 1.4rem; color: rgba(244,242,238,.72); }

.bento-card--values {
  grid-column: span 2; background: var(--accent); color: var(--navy);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 220px;
}
.bento-card--values .tag { font-family: var(--font-mono); font-size: 1.1rem; text-transform: uppercase; letter-spacing: .05em; }
.value-cycle { margin-top: var(--space-sm); }
.value-cycle__num { font-family: var(--font-mono); font-size: 1.3rem; opacity: .7; }
.value-cycle__title { font-size: 2.4rem; font-weight: 800; margin-top: .4rem; min-height: 2.6em; }
.value-cycle__desc { font-size: 1.4rem; margin-top: .6rem; max-width: 30ch; }
.value-cycle__dots { display: flex; gap: .6rem; margin-top: var(--space-sm); }
.value-cycle__dots i { width: 18px; height: 4px; border-radius: 2px; background: rgba(28,37,52,.25); transition: background var(--dur-s) var(--ease), width var(--dur-s) var(--ease); }
.value-cycle__dots i.is-active { background: var(--navy); width: 30px; }

/* --------------------------------------------------------------------- */
/* Proceso — timeline conectada                                          */
/* --------------------------------------------------------------------- */

.process { background: var(--bg); }
.process__line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.process__line::before {
  content: ''; position: absolute; top: 34px; left: 6%; right: 6%; height: 1px;
  background: repeating-linear-gradient(to right, var(--border) 0 10px, transparent 10px 18px);
}
.process-step { position: relative; }
.process-step__num {
  width: 68px; height: 68px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 1.6rem;
  margin-bottom: var(--space-md); position: relative; z-index: 1;
  transition: background var(--dur-s) var(--ease), color var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease);
}
.process-step:hover .process-step__num { background: var(--accent); border-color: var(--accent); color: var(--navy); }
.process-step:nth-child(2) { margin-top: var(--space-lg); }
.process-step:nth-child(4) { margin-top: var(--space-lg); }
.process-step h3 { font-size: 2.1rem; }
.process-step p { margin-top: var(--space-2xs); font-size: 1.5rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------- */
/* Servicios — grid filtrable                                            */
/* --------------------------------------------------------------------- */

.services__filters { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: var(--space-xl); }

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.service-card {
  padding: var(--space-md); border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--border);
  transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m) var(--ease), opacity var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease);
  display: flex; flex-direction: column; min-height: 190px;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.service-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-md); }
.service-card__num { font-family: var(--font-mono); font-size: 1.3rem; color: var(--muted); }
.service-card__cat {
  font-family: var(--font-mono); font-size: 1rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--accent-dark); background: var(--accent-tint); padding: .4rem .9rem; border-radius: var(--r-full);
}
.service-card h3 { font-size: 1.7rem; font-weight: 700; line-height: 1.35; margin-top: auto; }

.service-card.is-hidden { display: none; }

/* --------------------------------------------------------------------- */
/* Por qué elegirnos                                                     */
/* --------------------------------------------------------------------- */

.why { background: var(--surface); border-block: 1px solid var(--border); }
.why__bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: var(--space-md); }
.why__statement {
  grid-column: span 3; background: var(--navy); color: #f4f2ee; border-radius: var(--r-lg);
  padding: var(--space-xl); display: flex; flex-direction: column; gap: var(--space-md);
}
.why__statement p { font-size: clamp(2.2rem, 3vw, 3.2rem); font-weight: 600; line-height: 1.4; max-width: 32ch; }
.why__statement p .accent { color: var(--accent); }
.why__statement span.role { font-family: var(--font-mono); font-size: 1.3rem; color: rgba(244,242,238,.55); }

.why-card { padding: var(--space-md); border-radius: var(--r-md); background: var(--bg); border: 1px solid var(--border); }
.why-card .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); margin-bottom: var(--space-sm); }
.why-card h4 { font-size: 1.7rem; margin-bottom: .6rem; }
.why-card p { font-size: 1.4rem; color: var(--ink-soft); line-height: 1.55; }

/* --------------------------------------------------------------------- */
/* CTA banner                                                            */
/* --------------------------------------------------------------------- */

.cta-banner { background: var(--ink); color: var(--bg); }
.cta-banner .container { display: flex; justify-content: space-between; align-items: center; gap: var(--space-lg); flex-wrap: wrap; padding-block: var(--space-lg); }
.cta-banner h2 { font-size: clamp(2.8rem, 3.6vw, 4rem); max-width: 20ch; }
.cta-banner .btn--solid { background: var(--accent); color: var(--navy); }
.cta-banner .btn--solid:hover { background: var(--bg); }

/* --------------------------------------------------------------------- */
/* Contacto — tarjetas                                                   */
/* --------------------------------------------------------------------- */

.contact { background: var(--bg); }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-md); align-items: stretch; }

.contact__info { background: var(--navy); color: #f4f2ee; border-radius: var(--r-lg); padding: var(--space-xl); display: flex; flex-direction: column; justify-content: space-between; }
.contact__info h3 { font-size: 2.6rem; max-width: 16ch; }
.contact__info p.lede { margin-top: var(--space-sm); color: rgba(244,242,238,.65); font-size: 1.6rem; }
.contact__list { margin-top: var(--space-xl); display: grid; gap: var(--space-md); }
.contact__list .row { display: flex; gap: var(--space-sm); align-items: flex-start; }
.contact__list .ic { width: 40px; height: 40px; border-radius: 50%; background: rgba(244,242,238,.08); border: 1px solid rgba(244,242,238,.18); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact__list h5 { font-family: var(--font-mono); font-size: 1.1rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(244,242,238,.5); margin-bottom: .3rem; }
.contact__list a, .contact__list p.val { font-size: 1.6rem; }
.contact__list a:hover { color: var(--accent); }

.contact__form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--space-xl); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.field { position: relative; margin-bottom: var(--space-md); }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 1.5rem 1.6rem; font-size: 1.5rem; outline: none;
  transition: border-color var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
}
.field textarea { resize: none; min-height: 100px; }
.field label { display: block; font-size: 1.2rem; font-weight: 600; margin-bottom: .6rem; color: var(--ink-soft); }
.field input:focus, .field textarea:focus { border-color: var(--accent); background: var(--surface); }
.contact__form-card .btn { width: 100%; justify-content: center; margin-top: var(--space-2xs); }
.contact__note { font-size: 1.2rem; color: var(--muted); margin-top: var(--space-sm); text-align: center; }

/* --------------------------------------------------------------------- */
/* Footer                                                                */
/* --------------------------------------------------------------------- */

.footer { background: var(--navy); color: rgba(244,242,238,.6); padding-top: var(--space-xl); }
.footer__top { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: var(--space-xl); padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(244,242,238,.1); }
.footer__brand { display: flex; gap: 1.4rem; }
.footer__brand img { height: 40px; background: #f4f2ee; border-radius: 8px; padding: 6px; }
.footer__statement { font-size: 1.9rem; font-weight: 700; color: #f4f2ee; max-width: 24ch; margin-top: var(--space-sm); }
.footer__col h5 { color: #f4f2ee; font-size: 1.2rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--space-sm); }
.footer__col a, .footer__col p { display: block; font-size: 1.45rem; padding-block: .5rem; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-block: var(--space-md); font-size: 1.25rem; flex-wrap: wrap; gap: 1rem; }
.footer__bottom .to-top { display: flex; align-items: center; gap: .8rem; color: #f4f2ee; }
.footer__bottom .to-top:hover { color: var(--accent); }
.footer__bottom .to-top .ring { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(244,242,238,.25); display: flex; align-items: center; justify-content: center; }

/* --------------------------------------------------------------------- */
/* Responsive                                                            */
/* --------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { height: 420px; order: -1; }
  .bento, .why__bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card--copy { grid-column: span 2; }
  .bento-card--photo { grid-column: span 1; grid-row: span 1; }
  .bento-card--mision, .bento-card--vision, .bento-card--values { grid-column: span 1; }
  .why__statement { grid-column: span 2; }
  .process__line { grid-template-columns: 1fr 1fr; row-gap: var(--space-lg); }
  .process__line::before { display: none; }
  .process-step:nth-child(2), .process-step:nth-child(4) { margin-top: 0; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .utility-bar { display: none; }
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header__actions .btn--outline { display: none; }
}

@media (max-width: 640px) {
  .bento, .why__bento, .services__grid { grid-template-columns: 1fr; }
  .bento-card--copy, .why__statement { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding-block: var(--space-xl); }
  .hero__badge { left: 0; top: -6%; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
