/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  --bg:        #0c0a08;
  --bg-2:      #131009;
  --bg-3:      #1c1712;
  --bg-4:      #241d16;
  --cream:     #f3ede0;
  --cream-2:   #cfc3ab;
  --cream-3:   #8f8370;
  --accent:    #d98a3d;
  --accent-2:  #b56a26;
  --gold:      #e8c165;
  --steel:     #6fb8b0;
  --steel-2:   #4a8f88;
  --line:      rgba(243,237,224,.12);
  --line-soft: rgba(243,237,224,.07);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", "Courier New", monospace;

  --container: 1240px;
  --container-narrow: 780px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-md: 0 24px 60px -24px rgba(0,0,0,.7), 0 0 0 1px rgba(243,237,224,.05);
  --shadow-lg: 0 40px 100px -30px rgba(0,0,0,.8);

  --nav-h: 84px;
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
/* iOS Safari ignores plain overflow:hidden for touch-scroll — pin body in place too,
   otherwise the page keeps scrolling underneath a fixed full-screen overlay (mobile menu). */
html.no-scroll { overflow: hidden; }
html.no-scroll body { position: fixed; left: 0; right: 0; overflow: hidden; }

body {
  background: var(--bg);
  color: var(--cream-2);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--font-display); font-weight: 500; color: var(--cream); }
em { font-style: italic; color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }

/* Any anchor target (nav links to #servicios, #sectores, etc.) must clear the
   fixed nav bar — otherwise the section heading lands hidden behind it. This
   is the root fix for header/section overlap on anchor navigation, native or
   scripted, JS-on or JS-off. */
[id] { scroll-margin-top: var(--nav-h); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--cream); color: var(--bg);
  border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. UTILITIES
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal][data-reveal-delay="5"] { transition-delay: .4s; }

.eyebrow, .kicker, .tag {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--steel);
}
.eyebrow::before, .kicker::before, .tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .95rem 1.9rem; font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  border-radius: var(--radius); transition: transform .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  white-space: nowrap;
}
.btn--solid { background: var(--accent); color: #1a0f04; }
.btn--solid:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(217,138,61,.45); }
.btn--ghost { border: 1px solid var(--line); color: var(--cream); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); background: rgba(243,237,224,.03); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--sm { padding: .65rem 1.3rem; font-size: .85rem; }
.btn--block { width: 100%; }

.divider { height: 1px; background: var(--line); border: 0; }

/* =============================================================
   4. TYPOGRAPHY
   ============================================================= */
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--cream-2); max-width: 60ch; }
.lead a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(217,138,61,.4); }
.lead a:hover { text-decoration-color: var(--accent); }

/* =============================================================
   5. NAV
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  padding-block: 1.1rem;
  transition: background .4s var(--ease-out), padding .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-solid { background: rgba(12,10,8,.86); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-color: var(--line); padding-block: .75rem; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.nav__brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); flex-shrink: 0; }
.nav__mark { width: 26px; height: 26px; color: var(--accent); }
.nav__word em { font-style: normal; color: var(--accent); }

.nav__links { display: none; align-items: center; gap: 1.9rem; }
.nav__links a:not(.btn) { font-size: .92rem; font-weight: 500; color: var(--cream-2); position: relative; padding-block: .2rem; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--accent);
  transition: right .35s var(--ease-out);
}
.nav__links a:not(.btn):hover { color: var(--cream); }
.nav__links a:not(.btn):hover::after { right: 0; }

.nav__toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; min-width: 44px; min-height: 44px; margin: -10px; z-index: 20; }
.nav__toggle span { width: 22px; height: 1.5px; background: var(--cream); transition: transform .35s var(--ease-out), opacity .35s var(--ease-out); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  position: fixed; inset: 0; background: var(--bg); z-index: 10;
  display: flex; flex-direction: column; justify-content: center; gap: 1.6rem; padding: 6rem var(--gutter) 3rem;
  transform: translateY(-100%);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .5s var(--ease-out), opacity .3s var(--ease-out), visibility 0s linear .5s;
  will-change: transform, opacity; backface-visibility: hidden;
}
.nav.is-open .nav__mobile {
  transform: translateY(0);
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: transform .5s var(--ease-out), opacity .3s var(--ease-out), visibility 0s linear 0s;
}
.nav__mobile a { font-family: var(--font-display); font-size: 2rem; color: var(--cream); }
.nav__mobile .nav__cta { font-family: var(--font-body); font-size: 1rem; margin-top: 1rem; }

@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none; }
}

.nav__cta { padding: .65rem 1.4rem; background: var(--accent); color: #1a0f04; border-radius: var(--radius); font-weight: 700; }
.nav__cta:hover { background: var(--gold); }

/* =============================================================
   6. HERO
   ============================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
/* On narrow portrait crops, a plain center-crop cuts off the drone (it sits left-of-center
   in the source photo). Shift the visible window left so it stays in frame on mobile. */
@media (max-width: 719px) {
  .hero__bg img { object-position: 22% 32%; }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12,10,8,.55) 0%, rgba(12,10,8,.15) 30%, rgba(12,10,8,.35) 60%, rgba(12,10,8,.96) 100%),
    linear-gradient(90deg, rgba(12,10,8,.5) 0%, transparent 35%);
}
.hero__grain { position: absolute; inset: 0; z-index: 2; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); }

.hero__content { position: relative; z-index: 3; max-width: var(--container); margin-inline: auto; width: 100%; padding: 0 var(--gutter) clamp(3rem, 8vw, 6rem); }
.hero__eyebrow { color: var(--gold); margin-bottom: 1.1rem; }
.hero__title { color: var(--cream); max-width: 15ch; margin-bottom: 1.2rem; }
.hero__sub { max-width: 46ch; margin-bottom: 2.1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__hud { position: absolute; z-index: 3; inset: auto var(--gutter) auto auto; top: clamp(5.5rem, 12vh, 8rem); display: none; flex-direction: column; gap: .5rem; font-family: var(--font-mono); font-size: .75rem; color: var(--cream-3); text-align: right; }
.hero__hud span { display: block; }
.hero__hud b { color: var(--steel); font-weight: 600; }
@media (min-width: 720px) { .hero__hud { display: flex; } }

/* =============================================================
   7. TICKER
   ============================================================= */
.ticker { position: relative; z-index: 4; overflow: hidden; background: var(--bg-2); border-block: 1px solid var(--line); padding-block: .9rem; }
.ticker__track { display: flex; width: max-content; gap: 2.2rem; animation: tickerScroll 32s linear infinite; will-change: transform; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker__track span { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em; color: var(--cream-3); white-space: nowrap; }
.ticker__track span.dot { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation-duration: 60s; } }

/* =============================================================
   8. SECTIONS (generic)
   ============================================================= */
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head h2 { margin-block: .9rem 1rem; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__foot { margin-top: clamp(2rem, 4vw, 3rem); display: flex; justify-content: center; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-family: var(--font-mono); font-size: .78rem; color: var(--cream-3); padding-top: clamp(6.5rem, 14vh, 9rem); padding-bottom: 1rem; }
.breadcrumb a { color: var(--cream-3); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-hidden] { color: var(--line); }
.breadcrumb .current { color: var(--cream-2); }

.page-hero { padding-block: clamp(7rem, 16vh, 10rem) clamp(3rem, 6vw, 5rem); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1.1rem; max-width: 20ch; }
.page-hero .lead { margin-bottom: 1.6rem; }

/* =============================================================
   9. SERVICE CARDS
   ============================================================= */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-3); transition: transform .5s var(--ease-out), border-color .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.card:hover { border-color: var(--line); box-shadow: var(--shadow-md); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .8s var(--ease-out); }
.card:hover .card__media img { transform: scale(1.08); filter: saturate(1.12); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(12,10,8,.85) 100%); }
.card__body { padding: 1.6rem 1.7rem 1.9rem; }
.card__body h3 { margin-bottom: .6rem; font-size: 1.3rem; }
.card__body p { font-size: .95rem; margin-bottom: 1.1rem; }
.card__link { display: inline-flex; align-items: center; gap: .5em; font-size: .88rem; font-weight: 600; color: var(--accent); }
.card__link svg { width: 15px; height: 15px; transition: transform .35s var(--ease-out); }
.card:hover .card__link svg { transform: translateX(4px); }

/* =============================================================
   10. PORTFOLIO GALLERY
   ============================================================= */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; }
.filters button { padding: .5rem 1.1rem; border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; color: var(--cream-3); transition: all .3s var(--ease-out); }
.filters button.is-active, .filters button:hover { border-color: var(--accent); color: var(--accent); }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 14vw; } }
.gallery__item { position: relative; cursor: pointer; overflow: hidden; border-radius: var(--radius); background: var(--bg-3); grid-column: span 2; aspect-ratio: 4/3; }
@media (min-width: 720px) { .gallery__item { aspect-ratio: auto; grid-row: span 1; } .gallery__item:nth-child(3n+1) { grid-column: span 2; grid-row: span 2; } }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(12,10,8,.9) 100%); opacity: .7; transition: opacity .4s var(--ease-out); }
.gallery__item:hover::after { opacity: .9; }
.gallery__cap { position: absolute; left: 1rem; right: 1rem; bottom: .9rem; z-index: 2; }
.gallery__cap span { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--cream); }
.gallery__cap b { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em; color: var(--cream-3); font-weight: 500; margin-top: .2rem; }

.lightbox { position: fixed; inset: 0; z-index: 900; background: rgba(6,5,4,.96); display: flex; align-items: center; justify-content: center; padding: 4vh 4vw; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease-out); }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--cream); display: flex; align-items: center; justify-content: center; }
.lightbox__close:hover { border-color: var(--accent); color: var(--accent); }

/* =============================================================
   11. PROCESS
   ============================================================= */
.process { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
@media (min-width: 720px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .process { grid-template-columns: repeat(3, 1fr); } }
.process__step { padding: 2.2rem 1.8rem; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.process__num { font-family: var(--font-mono); font-size: .82rem; color: var(--accent); display: block; margin-bottom: .9rem; }
.process__step h3 { font-size: 1.15rem; margin-bottom: .55rem; }
.process__step p { font-size: .92rem; }

/* =============================================================
   12. EQUIPMENT
   ============================================================= */
.rig { display: grid; grid-template-columns: 1fr; gap: 2.2rem; align-items: center; margin-bottom: 2.5rem; }
@media (min-width: 960px) { .rig { grid-template-columns: 1.1fr 1fr; } }
.rig__frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.rig__frame img { width: 100%; }
.rig__badge { position: absolute; bottom: 1rem; left: 1rem; padding: .4rem .9rem; background: rgba(12,10,8,.75); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 999px; font-family: var(--font-mono); font-size: .75rem; color: var(--gold); }
.spec-list { display: grid; grid-template-columns: 1fr; gap: .9rem; margin-top: 1.3rem; }
.spec-list > div { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }
.spec-list dt { color: var(--cream-3); }
.spec-list dd { color: var(--cream); text-align: right; }

.gear { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.gear h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.gear p { font-size: .9rem; }

/* =============================================================
   13. TRUST / LICENSES
   ============================================================= */
.license { padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-3); }
.license__code { display: inline-block; font-family: var(--font-mono); font-size: .75rem; color: var(--steel); border: 1px solid var(--steel-2); border-radius: 999px; padding: .25rem .7rem; margin-bottom: 1rem; }
.license h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.license p { font-size: .88rem; }

.badge-strip { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; align-items: center; padding: 1.3rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-3); margin-top: 2rem; }
.badge-strip strong { color: var(--gold); font-family: var(--font-mono); font-size: .82rem; }
.badge-strip span { font-size: .85rem; color: var(--cream-3); }

/* =============================================================
   14. SECTORS
   ============================================================= */
.sectors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 720px) { .sectors { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .sectors { grid-template-columns: repeat(4, 1fr); } }
.sector { background: var(--bg); padding: 1.8rem 1.4rem; transition: background .35s var(--ease-out); }
.sector:hover { background: var(--bg-3); }
.sector svg { width: 26px; height: 26px; color: var(--accent); margin-bottom: 1rem; }
.sector h3 { font-size: 1rem; margin-bottom: .4rem; }
.sector p { font-size: .84rem; }

/* =============================================================
   15. TESTIMONIAL-FREE TRUST STRIP / STATS
   ============================================================= */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--cream); }
.stat span { font-size: .82rem; color: var(--cream-3); }

/* =============================================================
   16. FAQ
   ============================================================= */
.faq-list { max-width: var(--container-narrow); margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.5rem 0; text-align: left; font-family: var(--font-display); font-size: 1.05rem; color: var(--cream); }
.faq-item__trigger svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--accent); transition: transform .4s var(--ease-out); }
.faq-item.is-open .faq-item__trigger svg { transform: rotate(45deg); }
.faq-item__panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
.faq-item.is-open .faq-item__panel { max-height: 400px; }
.faq-item__panel p { padding-bottom: 1.5rem; font-size: .94rem; max-width: 68ch; }
.faq-item__panel p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(217,138,61,.4); }
.faq-item__panel p a:hover { text-decoration-color: var(--accent); }

/* =============================================================
   17. CONTACT
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }
.contact__row { display: flex; align-items: center; gap: .9rem; padding-block: 1rem; border-bottom: 1px solid var(--line-soft); font-size: 1rem; color: var(--cream); }
.contact__row svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact__row:hover { color: var(--accent); }
.contact__badge { margin-top: 1.8rem; padding: 1.3rem 1.5rem; border: 1px solid var(--steel-2); border-radius: var(--radius-lg); }
.contact__badge span { font-family: var(--font-mono); font-size: .78rem; color: var(--steel); letter-spacing: .05em; }
.contact__badge p { font-size: .85rem; margin-top: .5rem; color: var(--cream-3); }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 620px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; color: var(--cream-3); }
.field input, .field select, .field textarea {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); color: var(--cream);
  padding: .85rem 1rem; font-family: var(--font-body); font-size: .95rem; transition: border-color .3s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--cream-3); margin-top: .5rem; }

/* =============================================================
   18. AREA / MAP-LESS ZONE STRIP
   ============================================================= */
.zone { padding: 2.2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); text-align: center; }
.zone h3 { margin-bottom: .8rem; }
.zone p { max-width: 62ch; margin-inline: auto; }

/* =============================================================
   19. BLOG
   ============================================================= */
.post-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 720px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card__media { aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; margin-bottom: 1.1rem; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card .kicker { margin-bottom: .7rem; }
.post-card h2 { font-size: 1.2rem; margin-bottom: .5rem; }
.post-card p { font-size: .9rem; }

.article { max-width: var(--container-narrow); margin-inline: auto; }
.article h2 { margin-top: 2.4rem; margin-bottom: 1rem; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.article h3 { margin-top: 1.8rem; margin-bottom: .8rem; }
.article p { margin-bottom: 1.2rem; font-size: 1.02rem; }
.article p a, .article li a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(217,138,61,.4); transition: text-decoration-color .3s var(--ease-out); }
.article p a:hover, .article li a:hover { text-decoration-color: var(--accent); }
.article ul { margin-bottom: 1.2rem; }
.article li { position: relative; padding-left: 1.4rem; font-size: 1.02rem; margin-bottom: .6rem; color: var(--cream-2); }
.article li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.article__meta { display: flex; gap: 1rem; flex-wrap: wrap; font-family: var(--font-mono); font-size: .78rem; color: var(--cream-3); margin-bottom: 1.6rem; }
.article__hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.2rem; }
.article__cta { margin-top: 3rem; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center; background: var(--bg-3); }

/* =============================================================
   20. PROJECT (trabajo individual)
   ============================================================= */
.project-hero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; overflow: hidden; }
.project-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.project-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(12,10,8,.35) 0%, rgba(12,10,8,.55) 60%, rgba(12,10,8,.98) 100%); }
.project-hero__content { position: relative; z-index: 2; max-width: var(--container); margin-inline: auto; width: 100%; padding: 0 var(--gutter) 3.5rem; }
.project-meta { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.project-meta div span { display: block; font-family: var(--font-mono); font-size: .72rem; color: var(--cream-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.project-meta div b { font-family: var(--font-body); font-weight: 600; color: var(--cream); font-size: .95rem; }
.project-meta div b a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(217,138,61,.4); }
.project-meta div b a:hover { text-decoration-color: var(--accent); }
.project-gallery { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 720px) { .project-gallery { grid-template-columns: repeat(2, 1fr); } }
.project-gallery img { border-radius: var(--radius); width: 100%; }

/* =============================================================
   21. FOOTER
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 5rem) 2rem; background: var(--bg-2); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand p { font-size: .9rem; max-width: 34ch; margin-top: 1rem; }
.footer__col-title { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; color: var(--cream-3); margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; font-size: .9rem; color: var(--cream-2); padding-bottom: .7rem; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); font-size: .78rem; color: var(--cream-3); }
.footer__bottom a { color: var(--cream-3); }
.footer__bottom a:hover { color: var(--accent); }
.footer__legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* =============================================================
   22. REDUCED MOTION (only truly intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation-duration: 90s; }
  [data-reveal] { transition-duration: .01s; }
}

/* =============================================================
   23. RESPONSIVE FINE-TUNING
   ============================================================= */
@media (max-width: 539px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .process__step { border-right: 0; }
}
