@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --ink: #0b1518;
  --ink-soft: #152428;
  --paper: #f6f3ec;
  --paper-2: #ece7dc;
  --white: #ffffff;
  --gold: #c8aa63;
  --gold-light: #ead8a8;
  --gold-dark: #8d7137;
  --muted: #657176;
  --line: rgba(11, 21, 24, .12);
  --shadow: 0 28px 80px rgba(4, 13, 15, .16);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; }
.section--tight { padding: 72px 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--white { background: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; }
.section--dark .eyebrow, .hero .eyebrow { color: var(--gold-light); }
.display {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.55rem, 5.3vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.heading {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.subheading {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.2;
}
.lead { margin: 24px 0 0; font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 720px; }
.section--dark .lead { color: rgba(255,255,255,.68); }
.gold { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-light); }
.btn--ghost { border-color: rgba(255,255,255,.32); color: var(--white); background: rgba(255,255,255,.04); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: var(--white); color: var(--ink); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn__icon { width: 18px; height: 18px; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.is-sticky {
  position: fixed;
  background: rgba(10, 20, 23, .94);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  animation: headerIn .35s ease;
}
@keyframes headerIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.navbar { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; z-index: 60; }
.brand img { width: 138px; height: 76px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; padding: 0; margin: 0; }
.nav-links a { position: relative; font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.82); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 0; height: 2px; background: var(--gold); transition: width .25s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: transparent; color: var(--white); z-index: 60; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 5px auto; transition: transform .25s ease, opacity .25s ease; }
.menu-open .menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroZoom 16s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,13,15,.88) 0%, rgba(5,13,15,.55) 48%, rgba(5,13,15,.15) 76%),
    linear-gradient(0deg, rgba(5,13,15,.8) 0%, transparent 50%);
}
.hero__content { position: relative; z-index: 2; padding: 190px 0 90px; }
.hero__copy { max-width: 850px; }
.hero__copy p { max-width: 640px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.6vw, 1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__bottom { margin-top: 70px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.hero__stamp { max-width: 290px; padding: 18px 20px; border-left: 2px solid var(--gold); color: rgba(255,255,255,.72); font-size: .86rem; }
.hero__scroll { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.68); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero__scroll i { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: grid; place-items: center; font-style: normal; }

.page-hero { position: relative; min-height: 620px; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,13,15,.9), rgba(5,13,15,.36)), linear-gradient(0deg, rgba(5,13,15,.8), transparent 60%); }
.page-hero__content { position: relative; z-index: 2; padding: 180px 0 78px; max-width: 820px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.62); font-size: .82rem; margin-bottom: 20px; }
.breadcrumbs a:hover { color: var(--gold-light); }

.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; min-height: 570px; }
.split__media > img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split__media::before { content: ""; position: absolute; z-index: -1; width: 48%; height: 48%; right: -24px; bottom: -24px; border: 1px solid var(--gold); border-radius: var(--radius); }
.split__badge { position: absolute; left: -30px; bottom: 40px; width: 190px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center; background: var(--gold); color: var(--ink); box-shadow: 0 24px 60px rgba(8,16,18,.24); padding: 25px; }
.split__badge strong { display: block; font-family: "Playfair Display", serif; font-size: 2.5rem; line-height: 1; }
.split__badge span { font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.copy p { color: var(--muted); }
.copy p + p { margin-top: 18px; }
.copy .btn { margin-top: 18px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.stat { padding: 50px 32px; border-right: 1px solid rgba(255,255,255,.13); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: "Playfair Display", serif; color: var(--gold-light); font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: 1; }
.stat span { display: block; margin-top: 12px; color: rgba(255,255,255,.6); font-size: .85rem; }

.intro-row { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 50px; }
.intro-row > div:first-child { max-width: 710px; }
.intro-row .lead { max-width: 520px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; min-height: 620px; overflow: hidden; border-radius: var(--radius); color: var(--white); box-shadow: var(--shadow); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,13,15,.95) 0%, rgba(4,13,15,.55) 48%, rgba(4,13,15,.06) 80%); }
.service-card:hover img { transform: scale(1.055); }
.service-card__body { position: absolute; z-index: 2; inset: auto 0 0; padding: 34px; }
.service-card__number { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--gold-light); font-weight: 800; }
.service-card h3 { margin: 22px 0 12px; font-family: "Playfair Display", serif; font-size: 2rem; line-height: 1.1; }
.service-card p { margin: 0; color: rgba(255,255,255,.68); font-size: .93rem; }
.service-card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-light); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform .25s ease, box-shadow .25s ease; }
.value-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(9,20,22,.1); }
.value-card__icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--ink); color: var(--gold-light); border-radius: 50%; font-family: "Playfair Display", serif; font-size: 1.4rem; }
.value-card h3 { margin: 24px 0 10px; font-size: 1.25rem; }
.value-card p { margin: 0; color: var(--muted); }

.project-feature { display: grid; grid-template-columns: 1.2fr .8fr; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.project-feature__media { min-height: 590px; }
.project-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.project-feature__body { padding: clamp(38px, 6vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.project-feature__body p { color: var(--muted); }
.project-meta { display: flex; gap: 18px; flex-wrap: wrap; margin: 16px 0 0; }
.project-meta span { padding: 8px 13px; border-radius: 999px; background: var(--paper-2); font-size: .76rem; font-weight: 700; }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.project-card { position: relative; min-height: 540px; overflow: hidden; border-radius: var(--radius); color: var(--white); }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,12,14,.92), transparent 68%); }
.project-card:hover img { transform: scale(1.05); }
.project-card__body { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 34px; }
.project-card h3 { margin: 0 0 6px; font-family: "Playfair Display", serif; font-size: 2rem; }
.project-card p { margin: 0; color: rgba(255,255,255,.7); }

.logo-cloud { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.logo-card { min-height: 170px; display: grid; place-items: center; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.logo-card img { max-height: 98px; width: auto; object-fit: contain; filter: saturate(.9); transition: filter .25s ease, transform .25s ease; }
.logo-card:hover img { filter: saturate(1.1); transform: scale(1.04); }

.client-carousel {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
}
.client-carousel__viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
}
.client-carousel__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: clientMarquee 24s linear infinite;
}
.client-carousel:hover .client-carousel__track {
  animation-play-state: paused;
}
.logo-card--carousel {
  min-width: 220px;
  min-height: 150px;
  box-shadow: 0 16px 38px rgba(9,20,22,.06);
}
.logo-card--carousel img {
  max-height: 92px;
}
.client-carousel__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 92px;
  z-index: 2;
  pointer-events: none;
}
.client-carousel__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0) 100%);
}
.client-carousel__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, rgba(255,255,255,0) 100%);
}
@keyframes clientMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.timeline { display: grid; gap: 0; }
.timeline__item { display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); }
.timeline__number { width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-dark); font-weight: 800; }
.timeline__item h3 { margin: 0 0 10px; font-size: 1.35rem; }
.timeline__item p { margin: 0; color: var(--muted); max-width: 760px; }

.check-list { display: grid; gap: 14px; list-style: none; padding: 0; margin: 28px 0 0; }
.check-list li { position: relative; padding-left: 34px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); font-size: .74rem; font-weight: 900; }

.cta { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); color: var(--white); padding: clamp(44px, 8vw, 90px); }
.cta::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(200,170,99,.25); border-radius: 50%; right: -170px; top: -220px; }
.cta::after { content: ""; position: absolute; width: 230px; height: 230px; border: 1px solid rgba(200,170,99,.18); border-radius: 50%; right: -50px; bottom: -150px; }
.cta__inner { position: relative; z-index: 2; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.cta__copy { max-width: 720px; }
.cta p { color: rgba(255,255,255,.66); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-list { display: grid; gap: 18px; margin-top: 32px; }
.contact-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-item__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold-light); }
.contact-item strong { display: block; font-size: .84rem; margin-bottom: 3px; }
.contact-item span, .contact-item a { color: var(--muted); }
.contact-item a:hover { color: var(--gold-dark); }
.form-card { padding: clamp(28px, 5vw, 55px); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 800; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,170,99,.13); }
.field textarea { min-height: 160px; resize: vertical; }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: .78rem; }
.form-status { display: none; margin: 0 0 20px; padding: 12px 15px; border-radius: 12px; background: #e4f5e7; color: #1b5928; font-size: .86rem; }
.form-status.is-visible { display: block; }

.gallery-strip { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 14px; }
.gallery-strip img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-sm); }
.gallery-strip img:first-child { height: 520px; grid-row: span 2; }

.site-footer { background: #071013; color: var(--white); padding: 88px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1fr 1fr; gap: 50px; }
.footer-brand img { width: 170px; height: 110px; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,.58); max-width: 360px; font-size: .9rem; }
.footer-title { margin: 18px 0 22px; color: var(--gold-light); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a, .footer-contact p, .footer-contact a { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.newsletter { display: flex; border-bottom: 1px solid rgba(255,255,255,.24); }
.newsletter input { width: 100%; min-width: 0; border: 0; padding: 13px 0; outline: none; background: transparent; color: var(--white); }
.newsletter button { border: 0; background: transparent; color: var(--gold-light); font-weight: 800; }
.footer-bottom { margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.38); font-size: .78rem; }

.whatsapp { position: fixed; z-index: 45; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: var(--white); box-shadow: 0 15px 38px rgba(0,0,0,.24); transition: transform .25s ease; }
.whatsapp:hover { transform: translateY(-5px) scale(1.04); }
.whatsapp svg { width: 28px; height: 28px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }


/* Social networks and direct quotation actions */
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.social-link { display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 800; transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease; }
.social-link svg { width: 18px; height: 18px; flex: 0 0 18px; }
.social-link:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-light); background: rgba(200,170,99,.08); }
.contact-social { margin-top: 28px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.contact-social > strong { display: block; margin-bottom: 12px; font-size: .86rem; }
.social-links--contact { margin: 0 0 18px; }
.social-links--contact .social-link { color: var(--ink); border-color: var(--line); background: var(--paper); }
.social-links--contact .social-link:hover { color: var(--gold-dark); border-color: var(--gold); }
.btn--whatsapp { background: #25d366; color: #062c15; box-shadow: 0 14px 30px rgba(37,211,102,.2); }
.btn--whatsapp:hover { background: #20c55d; transform: translateY(-2px); }
.nav-mobile-cta { display: none; }

@media (max-width: 1024px) {
  .nav-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 100px 10vw;
    background: rgba(6,16,19,.98);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .35s ease, opacity .35s ease, visibility .35s ease;
  }
  .menu-open .nav-links { transform: translateX(0); opacity: 1; visibility: visible; }
  .nav-links a { font-family: "Playfair Display", serif; font-size: clamp(2rem, 7vw, 4rem); }
  .nav-mobile-cta { display: block; }
  .nav-mobile-cta a { display: inline-flex; padding: 12px 18px; border-radius: 999px; background: var(--gold); color: var(--ink) !important; font-family: "Manrope", sans-serif; font-size: .9rem; font-weight: 900; letter-spacing: .02em; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: initial; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 540px; }
  .project-feature { grid-template-columns: 1fr; }
  .project-feature__media { min-height: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .logo-card--carousel { min-width: 200px; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); --radius: 22px; }
  body { font-size: 15px; }
  .section { padding: 78px 0; }
  .navbar { min-height: 82px; }
  .brand img { width: 108px; height: 62px; }
  .hero {
    min-height: 100svh;
    align-items: end;
  }
  .hero__media img { object-position: 62% center; }
  .hero__media::after {
    background:
      linear-gradient(0deg, rgba(4,12,14,.96) 0%, rgba(4,12,14,.5) 52%, rgba(4,12,14,.08) 83%),
      linear-gradient(90deg, rgba(4,12,14,.32), transparent);
  }
  .hero__content { padding: 150px 0 48px; }
  .hero .display { font-size: clamp(3rem, 14vw, 4.6rem); }
  .hero__bottom { margin-top: 44px; }
  .hero__scroll { display: none; }
  .hero__stamp { font-size: .77rem; }
  .page-hero { min-height: 520px; }
  .page-hero__content { padding: 145px 0 54px; }
  .page-hero .display { font-size: clamp(2.9rem, 13vw, 4.5rem); }
  .split__media, .split__media > img { min-height: 420px; }
  .split__badge { width: 145px; left: 12px; bottom: 12px; }
  .split__badge strong { font-size: 2rem; }
  .intro-row { display: block; }
  .intro-row .btn { margin-top: 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 32px 18px; }
  .values { grid-template-columns: 1fr; }
  .service-card { min-height: 510px; }
  .service-card__body { padding: 26px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 470px; }
  .project-feature__media { min-height: 390px; }
  .cta__inner { display: block; }
  .cta .btn { margin-top: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { display: block; }
  .client-carousel__fade { width: 40px; }
  .client-carousel__track { gap: 14px; animation-duration: 18s; }
  .logo-card { min-height: 125px; padding: 18px; }
  .logo-card--carousel { min-width: 170px; min-height: 120px; }
  .logo-card--carousel img { max-height: 74px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-strip img { height: 230px; }
  .gallery-strip img:first-child { grid-column: 1 / -1; height: 330px; grid-row: auto; }
  .timeline__item { grid-template-columns: 60px 1fr; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Portafolio ampliado: seis proyectos */
.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.project-card {
  min-height: 430px;
}
.project-card::after {
  background: linear-gradient(0deg, rgba(4,12,14,.94) 0%, rgba(4,12,14,.36) 48%, transparent 75%);
}
.project-card__body {
  padding: 28px;
}
.project-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.12;
}
.project-card p {
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    min-height: 430px;
  }
}
