/* ═══════════════════════════════════════════════════
   TresClics v2 — Light Editorial Agency Design
   Outfit (display) + Inter (body)
════════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* ── TOKENS ────────────────────────────────────────── */
:root {
  --bg:        #F8F8F6;
  --surface:   #FFFFFF;
  --text:      #111111;
  --text-mid:  #5C5C5C;
  --text-low:  #9A9A9A;
  --accent:    #EF4C23;
  --accent-hv: #D93E18;
  --accent-bg: rgba(239,76,35,.07);
  --border:    rgba(0,0,0,.08);
  --border-2:  rgba(0,0,0,.14);
  --shadow:    0 2px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.1);

  --font-d: 'Outfit', sans-serif;
  --font-b: 'Inter', sans-serif;
  --max-w: 1280px;
  --g: clamp(1.25rem, 4vw, 3.5rem);
  --r: 4px;
}

/* ── BASE ──────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
  text-wrap: balance;
}
p { color: var(--text-mid); line-height: 1.78; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
ul { list-style: none; }

/* ── CONTAINER ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--g);
}

/* ── UTILITIES ─────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.section-label {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--font-b);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.2rem;
}
.section-label::before {
  content: ''; width: 24px; height: 1.5px; background: var(--accent);
}
.section-h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 1.2rem;
}
.section-intro {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 60ch; line-height: 1.75;
}
.tag {
  display: inline-block;
  font-size: .6rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .7rem;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 2px;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem;
  font-family: var(--font-b); font-size: .75rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  border-radius: var(--r);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hv); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--text); }
.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { background: #f0f0ee; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: .8rem; }

/* ── NAVIGATION ────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 1.4rem 0;
}
#site-header.scrolled {
  background: rgba(248,248,246,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: .9rem 0;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--g);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  font-family: var(--font-d);
  font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--text); flex-shrink: 0;
}
.site-logo span { color: var(--accent); }
.site-logo.on-dark { color: #fff; }
.site-logo.on-dark span { color: var(--accent); }
.site-nav {
  display: flex; align-items: center; gap: 2.2rem;
}
.site-nav a {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .04em; color: #fff;
  transition: color .18s; position: relative;
}
.site-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1.5px; background: var(--accent); transition: right .22s;
}
.site-nav a:hover, .site-nav a.active { color: rgba(255,255,255,.75); }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
#site-header.scrolled .site-nav a { color: var(--text-mid); }
#site-header.scrolled .site-nav a:hover,
#site-header.scrolled .site-nav a.active { color: var(--text); }
.nav-cta {
  font-size: .72rem !important; font-weight: 700 !important;
  letter-spacing: .1em !important; padding: .65rem 1.5rem;
  background: var(--accent); color: #fff !important;
  border-radius: var(--r); transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent-hv) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: all .22s;
}

/* Mobile overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--surface); z-index: 299;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-d);
  font-size: 2rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--text-mid);
  transition: color .18s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .mobile-cta {
  margin-top: .8rem;
  padding: .9rem 2.4rem;
  background: var(--accent); color: #fff !important;
  border-radius: var(--r); font-size: 1rem !important;
}
.mobile-close {
  position: absolute; top: 1.4rem; right: var(--g);
  background: none; border: none;
  color: var(--text-mid); font-size: 1.6rem;
  cursor: pointer; line-height: 1;
}

/* ── HOME HERO ─────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--g);
  position: relative; overflow: hidden;
  background: #0D0D0D;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
  opacity: .35;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding-bottom: 5rem;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2rem;
}
.hero-kicker::before {
  content: ''; width: 28px; height: 1.5px; background: var(--accent);
}
.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8.5vw, 8rem);
  font-weight: 800; line-height: .96;
  letter-spacing: -0.04em; color: #fff;
  margin-bottom: 3.5rem; max-width: 18ch;
}
.hero-h1 .accent { color: var(--accent); }
.hero-foot {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.65);
  max-width: 46ch; line-height: 1.78;
}
.hero-actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  padding: calc(var(--g) + 7rem) var(--g) 5rem;
  background: var(--text);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .2;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
}
.page-hero-label {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.4rem;
}
.page-hero-label::before {
  content: ''; width: 22px; height: 1.5px; background: var(--accent);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 800; letter-spacing: -0.035em;
  color: #fff; max-width: 20ch;
}
.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,.6);
  max-width: 52ch; margin-top: 1.5rem; line-height: 1.75;
}

/* ── STATS STRIP ───────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 2.8rem var(--g);
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--accent); line-height: 1;
  margin-bottom: .35rem;
}
.stat-lbl {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-low);
}

/* ── MARQUEE ───────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  padding: 1.8rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-d);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-low); white-space: nowrap;
  transition: color .18s; cursor: default;
}
.marquee-item:hover { color: var(--accent); }
.marquee-sep { color: var(--accent); font-weight: 700; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION WRAPPER ───────────────────────────────── */
.section-wrap { padding: 7rem var(--g); }
.section-wrap.bg-surface { background: var(--surface); }
.section-wrap.bg-dark { background: var(--text); }
.section-wrap.bg-accent { background: var(--accent); }
.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 3rem;
  margin-bottom: 4rem;
}
.section-head .link-more {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-mid); transition: color .18s;
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: .5rem;
}
.section-head .link-more:hover { color: var(--accent); }

/* ── SERVICE CARDS ─────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5px; background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--surface);
  overflow: hidden; position: relative;
  transition: transform .28s, box-shadow .28s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); z-index: 1; }
.svc-card-img {
  width: 100%; height: 220px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%; height: 100%; transition: transform .5s;
}
.svc-card:hover .svc-card-img img { transform: scale(1.04); }
.svc-card-body { padding: 2.2rem 2.4rem 2.8rem; }
.svc-card-num {
  font-family: var(--font-d);
  font-size: .65rem; font-weight: 800;
  letter-spacing: .14em; color: var(--text-low);
  margin-bottom: .8rem;
}
.svc-card h3 {
  font-size: 1.45rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: .85rem;
}
.svc-card p { font-size: .88rem; line-height: 1.7; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--accent); margin-top: 1.4rem;
  transition: gap .2s;
}
.svc-card-link:hover { gap: .9rem; }

/* ── WHY GRID ──────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.why-card {
  padding: 2.8rem 2.6rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .22s;
}
.why-card:hover { background: var(--accent-bg); }
.why-card:nth-child(3n) { border-right: none; }
.why-card:nth-last-child(-n+3) { border-bottom: none; }
.why-card-icon {
  width: 40px; height: 40px;
  background: var(--accent-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
}
.why-card h3 {
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: .7rem;
}
.why-card p { font-size: .86rem; line-height: 1.72; }

/* ── PROCESS ───────────────────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem; margin-top: 4rem;
}
.proc-item {
  padding: 2.8rem 2.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .25s, box-shadow .25s;
}
.proc-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.proc-num {
  font-family: var(--font-d);
  font-size: 4rem; font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(239,76,35,.12); line-height: 1;
  margin-bottom: 1.6rem;
}
.proc-item h3 {
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: .9rem;
}
.proc-item p { font-size: .88rem; line-height: 1.75; }
.proc-list {
  margin-top: 1.4rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.proc-list li {
  font-size: .82rem; color: var(--text-mid);
  padding-left: 1.1rem; position: relative;
}
.proc-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--accent);
}

/* ── STATEMENT / MANIFESTO ─────────────────────────── */
.statement-section {
  padding: 8rem var(--g);
  background: var(--text);
}
.statement-inner { max-width: var(--max-w); margin: 0 auto; }
.statement-text {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: #fff; line-height: 1.22;
  max-width: 820px; margin: 1.6rem 0 2.8rem;
}
.statement-text em { font-style: normal; color: var(--accent); }

/* ── PORTFOLIO GRID ────────────────────────────────── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pf-card {
  border-radius: var(--r); overflow: hidden;
  position: relative; background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .28s, box-shadow .28s;
}
.pf-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pf-card-img {
  height: 240px; overflow: hidden;
}
.pf-card-img img { width: 100%; height: 100%; transition: transform .5s; }
.pf-card:hover .pf-card-img img { transform: scale(1.06); }
.pf-card-body { padding: 1.6rem 1.8rem 2rem; }
.pf-card .tag { margin-bottom: .75rem; }
.pf-card h3 {
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.015em; margin-bottom: .5rem;
}
.pf-card p { font-size: .84rem; }

/* ── RESULTS BAND ──────────────────────────────────── */
.results-band {
  padding: 6rem var(--g);
  background: var(--accent);
}
.results-band .container { max-width: var(--max-w); margin: 0 auto; }
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.result-item { text-align: center; }
.result-num {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.045em;
  color: #fff; line-height: 1; margin-bottom: .4rem;
}
.result-desc {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ── BLOG CARDS ────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.6rem 1.8rem 2rem; }
.blog-meta {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-low); margin-bottom: .75rem;
}
.blog-card h3 {
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.015em; margin-bottom: .65rem;
  line-height: 1.35;
}
.blog-card p { font-size: .84rem; line-height: 1.65; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--accent); margin-top: 1.1rem;
  transition: gap .18s;
}
.blog-card-link:hover { gap: .8rem; }

/* ── CTA BAND ──────────────────────────────────────── */
.cta-band {
  padding: 8rem var(--g);
  background: var(--text);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: #fff; max-width: 18ch; margin: 0 auto 1.2rem;
}
.cta-band p {
  font-size: 1.05rem; color: rgba(255,255,255,.55);
  max-width: 46ch; margin: 0 auto 2.8rem;
  line-height: 1.75;
}
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; }

/* ── CONTACT ───────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-steps {
  display: flex; flex-direction: column; gap: 1.8rem;
}
.contact-step { display: flex; gap: 1.2rem; }
.contact-step-num {
  font-family: var(--font-d);
  font-size: 1.2rem; font-weight: 800;
  color: var(--accent); flex-shrink: 0;
  line-height: 1.2;
}
.contact-step h4 {
  font-size: .95rem; font-weight: 700;
  margin-bottom: .35rem;
}
.contact-step p { font-size: .86rem; }

/* Contact form */
.contact-form-wrap {
  background: var(--surface);
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.contact-form-wrap h3 {
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 1.8rem;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-field {
  display: flex; flex-direction: column; gap: .45rem;
  margin-bottom: 1rem;
}
.f-field label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-mid);
}
.f-field input,
.f-field select,
.f-field textarea {
  padding: .8rem 1rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 2px; color: var(--text);
  font-family: var(--font-b); font-size: .9rem;
  transition: border-color .18s;
  width: 100%;
}
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  outline: none; border-color: var(--accent);
}
.f-field textarea { min-height: 120px; resize: vertical; }
.f-field select { appearance: none; cursor: pointer; }

/* ── NOSOTROS / TEAM ───────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img {
  height: 520px; border-radius: var(--r);
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; }
.values-list {
  display: flex; flex-direction: column; gap: 1.2rem;
  margin-top: 2.8rem;
}
.value-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .2s;
}
.value-item:hover { border-color: var(--accent); }
.value-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: .45rem;
}
.value-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.value-item p { font-size: .84rem; }

/* ── FOOTER ────────────────────────────────────────── */
#site-footer {
  background: var(--text);
  padding: 5rem var(--g) 2.5rem;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.footer-brand .logo-wrap { margin-bottom: .5rem; }
.footer-tagline {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin: .6rem 0 .8rem;
}
.footer-brand > p {
  font-size: .86rem; color: rgba(255,255,255,.45);
  max-width: 34ch; line-height: 1.7;
}
.footer-social {
  display: flex; gap: 1rem; margin-top: 1.4rem;
}
.footer-social a {
  color: rgba(255,255,255,.28); transition: color .18s;
}
.footer-social a:hover { color: rgba(255,255,255,.7); }
.footer-col h4 {
  font-family: var(--font-b);
  font-size: .62rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 1.3rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul li a, .footer-col ul li span {
  font-size: .85rem; color: rgba(255,255,255,.5);
  transition: color .18s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.footer-copy {
  font-size: .72rem; color: rgba(255,255,255,.28);
}
.footer-legal { display: flex; gap: 1.8rem; }
.footer-legal a {
  font-size: .7rem; color: rgba(255,255,255,.28);
  transition: color .18s;
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }
.footer-credit {
  font-size: .7rem; color: rgba(255,255,255,.28);
}
.footer-bottom { flex-wrap: wrap; }

/* ── LOGO SVG WRAPPER ──────────────────────────────── */
.logo-wrap {
  display: block; flex-shrink: 0; text-decoration: none;
}
.logo-wrap img {
  height: 211px; width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter .3s;
}
#site-header.scrolled .logo-wrap img { filter: none; }
.logo-wrap.logo-white img { filter: brightness(0) invert(1); }

/* ── REVEAL ANIMATION ──────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── SERVICIOS PAGE DETAIL ─────────────────────────── */
.svc-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail.reverse { direction: rtl; }
.svc-detail.reverse > * { direction: ltr; }
.svc-detail-img {
  height: 400px; border-radius: var(--r);
  overflow: hidden;
}
.svc-detail-img img { width: 100%; height: 100%; }
.svc-detail-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
}
.svc-detail-content p { font-size: .95rem; margin-bottom: 1.5rem; }
.svc-includes {
  display: flex; flex-direction: column; gap: .55rem;
  margin: 1.6rem 0;
}
.svc-includes li {
  font-size: .86rem; color: var(--text-mid);
  padding-left: 1.1rem; position: relative;
}
.svc-includes li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

/* ── PORTFOLIO CASE STUDIES ────────────────────────── */
.pf-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 1.5rem;
}
.pf-featured .pf-card-img { height: 340px; }
.pf-rest {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-featured { grid-template-columns: 1fr; }
  .pf-rest { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-detail.reverse { direction: ltr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(2n) { border-right: none; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}

@media (max-width: 600px) {
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none !important; }
  .blog-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pf-rest { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-content: center; }
  .f-row { grid-template-columns: 1fr; }
  .cta-band .btn-group { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 1.8rem; }
}
