:root {
  --ink: #0d1824;
  --paper: #ffffff;
  --acid: #ffc928;
  --ember: #ff5b22;
  --violet: #1648d8;
  --line: rgba(242, 240, 223, .24);
  --pad: clamp(20px, 3vw, 48px);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; overflow-x: clip; }
body { margin: 0; width: 100%; background: var(--ink); color: var(--paper); font-family: var(--sans); overflow-x: clip; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.noise { position: fixed; inset: 0; z-index: 200; opacity: .035; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }

.loader { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; background: var(--acid); color: var(--ink); transition: transform .8s cubic-bezier(.8,0,.2,1); }
.loader.is-hidden { transform: translateY(-105%); }
.loader__mark { width: min(76vw, 520px); display: flex; justify-content: space-between; font-size: clamp(44px, 9vw, 120px); font-weight: 900; letter-spacing: -.09em; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 22px var(--pad); background: #0d1824; color: var(--paper); transition: transform .35s ease, background .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled { background: #0d1824; color: var(--paper); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.site-header.is-hidden { transform: translateY(-100%); }
.brand { justify-self: start; display: inline-flex; align-items: center; gap: 5px; font-weight: 900; font-size: 19px; letter-spacing: -.05em; }
.brand img { display: block; width: clamp(112px, 10vw, 148px); height: auto; }
.brand i, .footer__brand i { width: 9px; aspect-ratio: 1; border-radius: 50%; background: var(--acid); display: block; }
.desktop-nav { display: flex; gap: 28px; font-size: 13px; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .3s; }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav sup { color: var(--acid); }
.header-cta { justify-self: end; display: inline-flex; gap: 30px; align-items: center; padding: 13px 16px; border: 1px solid currentColor; font-size: 13px; transition: background .25s, color .25s; }
.header-cta:hover { background: var(--paper); color: var(--ink); }
.header-cta b { font-size: 17px; }
.menu-toggle { display: none; justify-self: end; width: 48px; height: 48px; border: 1px solid currentColor; border-radius: 50%; background: none; padding: 14px; }
.menu-toggle span { display: block; height: 1px; background: currentColor; margin: 5px 0; transition: transform .3s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--acid); color: var(--ink); padding: 110px var(--pad) 30px; transform: translateY(-105%); transition: transform .65s cubic-bezier(.8,0,.2,1); display: flex; flex-direction: column; justify-content: space-between; }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { font-family: var(--serif); font-size: clamp(54px, 14vw, 90px); line-height: .96; border-bottom: 1px solid rgba(18,19,16,.25); padding: 8px 0; }
.mobile-menu__foot { display: flex; justify-content: space-between; font-size: 12px; text-transform: uppercase; }

.hero { min-height: 100svh; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 120px var(--pad) 34px; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 55vw; height: 55vw; border: 1px solid rgba(201,255,61,.22); border-radius: 50%; left: -28vw; top: 5vh; box-shadow: 0 0 120px rgba(201,255,61,.05) inset; }
.hero__eyebrow { text-align: center; text-transform: uppercase; font-size: 11px; letter-spacing: .14em; margin-bottom: 3vh; }
.spark { color: var(--acid); margin: 0 10px; }
.hero__title { font-family: var(--serif); font-weight: 400; font-size: clamp(65px, 11.1vw, 174px); line-height: .78; letter-spacing: -.075em; margin: 0 auto; width: 100%; max-width: 1480px; position: relative; z-index: 2; }
.hero__line { display: block; white-space: nowrap; opacity: 0; transform: translateY(80px); animation: title-in 1s .95s forwards cubic-bezier(.16,1,.3,1); }
.hero__line--two { text-align: right; animation-delay: 1.08s; }
.hero__title em { color: var(--acid); font-weight: inherit; }
.hero__title strong { font-weight: inherit; -webkit-text-stroke: 1px var(--paper); color: transparent; }
@keyframes title-in { to { opacity: 1; transform: none; } }
.hero__bottom { margin-top: 7vh; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 30px; }
.hero__bottom p { margin: 0 0 0 15%; max-width: 420px; font-size: clamp(18px, 2vw, 28px); line-height: 1.12; }
.text-link { justify-self: end; font-size: 13px; text-transform: uppercase; border-bottom: 1px solid; padding-bottom: 6px; }
.text-link span { margin-left: 28px; color: var(--acid); }
.hero__orbit { position: absolute; width: clamp(110px, 11vw, 170px); right: 7vw; top: 21%; color: var(--acid); animation: rotate 18s linear infinite; }
.hero__orbit text { fill: currentColor; font: bold 13px var(--sans); letter-spacing: 3px; }
.hero__orbit span { position: absolute; inset: 0; display: grid; place-items: center; font-size: 28px; animation: rotate 18s linear infinite reverse; }
@keyframes rotate { to { transform: rotate(360deg); } }
.sticker { background: var(--ember); color: var(--ink); width: 94px; aspect-ratio: 1; display: grid; place-items: center; text-align: center; font-weight: 900; line-height: .9; font-size: 16px; transform: rotate(8deg); box-shadow: 5px 5px 0 var(--paper); }
.hero__sticker { position: absolute; left: 4vw; bottom: 11vh; }
.andina-hero .hero__sticker { width: 102px; font-size: 11px; line-height: 1; }

.andina-hero { background: radial-gradient(circle at 70% 80%, rgba(22,72,216,.22), transparent 38%), var(--ink); }
.andina-hero .hero__title { font-size: clamp(60px, 9.2vw, 145px); }
.andina-hero .hero__bottom { position: relative; z-index: 3; }
.hero__machine { position: absolute; z-index: 1; width: min(34vw, 520px); right: 15%; bottom: 40px; margin: 0; background: #d7d7d2; overflow: hidden; transform: rotate(-2deg); box-shadow: 12px 12px 0 var(--acid); }
.hero__machine::after { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, transparent 45%, rgba(22,72,216,.32)); pointer-events: none; }
.hero__machine img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.72) contrast(1.1); }
.hero__machine figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; justify-content: space-between; padding: 11px 13px; background: var(--acid); color: var(--ink); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }

.marquee { overflow: hidden; background: var(--acid); color: var(--ink); border-top: 1px solid var(--acid); border-bottom: 1px solid var(--acid); padding: 15px 0 11px; }
.marquee__track { width: max-content; display: flex; align-items: center; animation: marquee 22s linear infinite; font-weight: 900; font-size: clamp(34px, 5vw, 72px); line-height: 1; letter-spacing: -.05em; }
.marquee__track span { padding: 0 28px; }
.marquee__track i { font-family: var(--serif); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro { min-height: 900px; padding: 100px var(--pad); position: relative; overflow: hidden; background: var(--paper); color: var(--ink); }
.section-label { display: flex; gap: 16px; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.section-label span { border: 1px solid currentColor; border-radius: 50%; width: 28px; height: 28px; display: grid; place-items: center; letter-spacing: 0; }
.intro__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 8vw; margin-top: 100px; position: relative; z-index: 2; }
.display-title { font-family: var(--serif); font-size: clamp(48px, 7vw, 105px); line-height: .92; font-weight: 400; letter-spacing: -.055em; margin: 0; }
.display-title em { color: var(--violet); font-weight: inherit; }
.intro__copy { align-self: end; max-width: 420px; }
.intro__copy p { font-size: clamp(17px, 1.6vw, 23px); line-height: 1.3; }
.pill { display: inline-flex; align-items: center; gap: 42px; border: 1px solid; border-radius: 99px; padding: 16px 18px; margin-top: 20px; font-size: 13px; text-transform: uppercase; transition: background .25s, color .25s; }
.pill:hover { background: var(--ink); color: var(--paper); }
.intro__sun { position: absolute; width: 540px; height: 540px; right: -180px; bottom: -230px; border-radius: 50%; background: var(--acid); }
.intro__sun::before, .intro__sun::after, .intro__sun span { content: ''; position: absolute; border: 2px solid var(--ink); border-radius: 50%; inset: 55px; }
.intro__sun::after { inset: 120px; }
.intro__sun span { inset: 185px; background: var(--ember); }

.work { padding: 110px var(--pad) 160px; }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: start; margin-bottom: 90px; }
.section-head > p { margin: 0; font-family: var(--serif); font-size: clamp(32px, 4.5vw, 70px); line-height: .95; letter-spacing: -.04em; }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(32px, 6vw, 90px) 24px; align-items: start; }
.project { grid-column: span 6; }
.project--large { grid-column: 1 / 8; }
.project--tall { grid-column: 9 / 13; margin-top: 180px; }
.project--wide { grid-column: 1 / 7; margin-top: 60px; }
.project--small { grid-column: 8 / 13; margin-top: 180px; }
.project__visual { min-height: 520px; position: relative; overflow: hidden; transition: border-radius .5s ease; }
.project a:hover .project__visual { border-radius: 45px; }
.project__meta { display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: baseline; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 13px; }
.project__meta h3 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.project__meta p, .project__meta span { font-size: 11px; text-transform: uppercase; margin: 0; opacity: .7; }
.project__index { position: absolute; right: 18px; top: 18px; font-size: 11px; border: 1px solid currentColor; border-radius: 99px; padding: 7px 10px; }
.visual-vertice { background: var(--violet); color: var(--acid); display: grid; place-items: center; }
.vertice-word { position: relative; z-index: 2; font-size: clamp(86px, 13vw, 190px); font-weight: 900; letter-spacing: -.12em; line-height: .67; text-align: center; }
.vertice-disc { position: absolute; width: 45%; aspect-ratio: 1; border-radius: 50%; background: var(--ember); right: 8%; top: 12%; mix-blend-mode: multiply; }
.visual-muda { min-height: 660px; background: var(--acid); color: var(--ink); display: flex; flex-direction: column; justify-content: space-between; padding: 45px 28px 28px; }
.muda-word { font-family: var(--serif); font-size: clamp(75px, 8vw, 124px); letter-spacing: -.08em; z-index: 2; }
.muda-word span { color: var(--ember); }
.visual-muda p { font-size: 25px; line-height: 1; margin: 0; z-index: 2; }
.muda-lines { position: absolute; width: 560px; height: 560px; border: 1px solid; border-radius: 50%; right: -340px; bottom: 40px; box-shadow: 0 0 0 42px var(--acid), 0 0 0 43px var(--ink), 0 0 0 85px var(--acid), 0 0 0 86px var(--ink), 0 0 0 128px var(--acid), 0 0 0 129px var(--ink); }
.visual-pulso { background: var(--ember); color: var(--ink); display: flex; flex-direction: column; justify-content: center; align-items: center; }
.pulso-logo { font-size: clamp(70px, 11vw, 160px); font-weight: 900; letter-spacing: -.09em; z-index: 2; }
.pulso-logo sup { font-size: 13px; vertical-align: top; }
.visual-pulso p { z-index: 2; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }
.pulse-rings i { position: absolute; inset: 50%; width: 100px; height: 100px; transform: translate(-50%,-50%); border: 1px solid; border-radius: 50%; animation: pulse 4s infinite; }
.pulse-rings i:nth-child(2) { animation-delay: 1s; }.pulse-rings i:nth-child(3) { animation-delay: 2s; }.pulse-rings i:nth-child(4) { animation-delay: 3s; }
@keyframes pulse { from { width: 10px; height: 10px; opacity: 1; } to { width: 700px; height: 700px; opacity: 0; } }
.visual-grao { background: #efc8a0; color: var(--ink); display: grid; place-items: center; }
.grain-shape { font-family: var(--serif); font-size: 340px; line-height: 1; color: #5b2f19; transform: rotate(-18deg); }
.grao-logo { position: absolute; left: 28px; bottom: 28px; font-weight: 900; font-size: 30px; line-height: .8; }

.equipment-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(55px, 8vw, 120px) 24px; align-items: start; }
.equipment-card, .equipment-card--feature, .equipment-card:nth-child(3), .equipment-card:nth-child(5), .equipment-card:nth-child(6), .equipment-card--wide { grid-column: span 1; background: var(--paper); color: var(--ink); padding-bottom: 22px; }
.equipment-card__image { min-height: 470px; position: relative; display: grid; place-items: center; overflow: hidden; padding: 55px; background: var(--paper); transition: border-radius .45s ease, background .35s ease; }
.equipment-card--feature .equipment-card__image { min-height: 580px; }
.equipment-card a:hover .equipment-card__image { border-radius: 48px; background: var(--acid); }
.equipment-card__image--dark, .equipment-card__image--blue, .equipment-card__image--orange, .equipment-card__image--yellow { background: var(--paper); }
.equipment-card__image img { display: block; width: 100%; height: 100%; max-height: 420px; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 25px 22px rgba(13,24,36,.25)); transition: transform .5s cubic-bezier(.16,1,.3,1); }
.equipment-card a:hover .equipment-card__image img { transform: scale(1.06) rotate(-2deg); }
.equipment-card__image span { position: absolute; right: 18px; top: 18px; z-index: 3; color: var(--ink); border: 1px solid currentColor; border-radius: 99px; padding: 7px 10px; font-size: 10px; }
.equipment-card__image--dark span, .equipment-card__image--blue span, .equipment-card__image--orange span { color: var(--ink); }
.equipment-card__meta { display: grid; grid-template-columns: 1fr auto; gap: 9px 22px; border-top: 1px solid rgba(13,24,36,.28); padding-top: 15px; margin: 14px 22px 0; }
.equipment-card__meta h3 { margin: 0; max-width: 500px; font-family: var(--serif); font-size: clamp(25px, 2.4vw, 38px); font-weight: 400; line-height: 1; }
.equipment-card__meta p { margin: 0; grid-column: 1; font-size: 11px; text-transform: uppercase; opacity: .65; }
.equipment-card__meta b { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 11px; text-transform: uppercase; color: var(--ink); }
.equipment-card__meta b:hover { color: var(--ember); }

.services { background: var(--acid); color: var(--ink); padding: 110px var(--pad) 130px; }
.services__intro { display: grid; grid-template-columns: 1fr 2fr; align-items: end; margin-bottom: 80px; }
.services__intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(58px, 8vw, 120px); font-weight: 400; line-height: .82; letter-spacing: -.06em; }
.service-item { display: grid; grid-template-columns: 70px 1fr 1fr 55px; align-items: center; gap: 25px; border-top: 1px solid var(--ink); padding: 24px 0; transition: padding .3s, background .3s; }
.service-item:last-child { border-bottom: 1px solid var(--ink); }
.service-item:hover { padding-left: 20px; padding-right: 20px; background: var(--paper); }
.service-item__num { font-size: 12px; }
.service-item h3 { font-family: var(--serif); font-size: clamp(40px, 6vw, 90px); font-weight: 400; letter-spacing: -.05em; margin: 0; }
.service-item p { max-width: 440px; line-height: 1.3; margin: 0; }
.service-item button { border: 1px solid; border-radius: 50%; width: 52px; height: 52px; background: transparent; font-size: 28px; cursor: pointer; transition: transform .3s, background .3s; }
.service-item:hover button { transform: rotate(90deg); background: var(--ink); color: var(--acid); }

.manifesto { min-height: 100svh; display: grid; place-items: center; padding: 120px 9vw; position: relative; overflow: hidden; background: var(--violet); }
.manifesto p { font-family: var(--serif); font-size: clamp(52px, 8.7vw, 135px); line-height: .88; letter-spacing: -.06em; text-align: center; max-width: 1300px; margin: 0; position: relative; z-index: 2; }
.manifesto p em { color: var(--acid); font-weight: 400; }
.manifesto__badge { position: absolute; left: 5vw; top: 12vh; z-index: 3; }
.manifesto__line { position: absolute; width: 110vw; height: 110vw; border: 1px solid rgba(201,255,61,.3); border-radius: 50%; bottom: -92vw; box-shadow: 0 0 0 80px rgba(201,255,61,.06), 0 0 0 160px rgba(201,255,61,.04); }

.process { padding: 130px var(--pad); }
.process__steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process__steps li { min-height: 330px; padding: 25px 25px 25px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.process__steps li + li { padding-left: 25px; }
.process__steps li:last-child { border-right: 0; }
.process__steps span { font-size: 11px; opacity: .55; }
.process__steps h3 { font-family: var(--serif); font-size: clamp(42px, 5vw, 75px); font-weight: 400; margin: auto 0 20px; }
.process__steps p { margin: 0; max-width: 310px; line-height: 1.35; opacity: .7; }

.quote-section { min-height: 850px; background: var(--paper); color: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px var(--pad); }
.quote-section__mark { font-family: var(--serif); font-size: 150px; line-height: .4; color: var(--ember); }
.quote-section blockquote { font-family: var(--serif); font-size: clamp(40px, 6vw, 88px); line-height: .98; letter-spacing: -.04em; max-width: 1200px; margin: 70px 0; }
.quote-section__author { display: flex; flex-direction: column; gap: 7px; font-size: 13px; }
.quote-section__author span { opacity: .6; }

.coverage-section { min-height: 820px; padding: 120px var(--pad); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; background: var(--paper); color: var(--ink); }
.coverage-section::after { content: ''; position: absolute; width: 560px; height: 560px; right: -120px; bottom: -250px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 70px rgba(255,201,40,.25), 0 0 0 140px rgba(255,201,40,.12); }
.coverage-section h2 { max-width: 1100px; margin: 90px 0 55px; font-family: var(--serif); font-size: clamp(64px, 9.5vw, 150px); line-height: .82; letter-spacing: -.06em; font-weight: 400; position: relative; z-index: 2; }
.coverage-section h2 em { color: var(--violet); font-weight: inherit; }
.coverage-section > p { max-width: 850px; margin: 0; font-size: clamp(18px, 2vw, 28px); line-height: 1.35; position: relative; z-index: 2; }
.seo-copy { background: var(--paper); color: var(--ink); padding: 115px var(--pad) 130px; }
.seo-copy__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; margin-top: 85px; }
.seo-copy h2 { max-width: 680px; margin: 0; font-family: var(--serif); font-size: clamp(50px, 7vw, 105px); line-height: .88; letter-spacing: -.055em; font-weight: 400; }
.seo-copy__body { max-width: 590px; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.35; }
.seo-copy__body p { margin: 0 0 24px; }

.contact { min-height: 92svh; padding: 120px var(--pad); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact > p { text-transform: uppercase; font-size: 12px; letter-spacing: .13em; }
.contact__link { font-family: var(--serif); font-size: clamp(72px, 12.5vw, 190px); font-weight: 400; line-height: .78; letter-spacing: -.075em; position: relative; z-index: 2; }
.contact__link em { color: var(--acid); font-weight: inherit; }
.contact__link span { font-family: var(--sans); font-size: .45em; color: var(--ember); }
.contact__orbit { position: absolute; width: 45vw; height: 45vw; border: 1px solid rgba(201,255,61,.5); border-radius: 50%; right: -18vw; bottom: -18vw; display: grid; place-items: center; font-size: 90px; color: var(--acid); box-shadow: 0 0 0 70px rgba(201,255,61,.04), 0 0 0 140px rgba(201,255,61,.03); }

.footer { background: var(--acid); color: var(--ink); padding: 70px var(--pad) 25px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr; align-items: end; padding-bottom: 70px; }
.footer__brand { font-size: clamp(72px, 13vw, 205px); font-weight: 900; letter-spacing: -.1em; line-height: .7; display: flex; align-items: end; }
.footer__brand img { display: block; width: clamp(230px, 30vw, 470px); height: auto; padding: 22px 28px; background: var(--ink); }
.footer__brand i { background: var(--ember); width: 22px; margin: 0 0 10px 12px; }
.footer__top p { margin: 0; font-size: 17px; line-height: 1.25; }
.footer__links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 13px; }
.footer__links a:hover { text-decoration: underline; }
.footer__bottom { border-top: 1px solid var(--ink); padding-top: 16px; display: flex; justify-content: space-between; font-size: 11px; text-transform: uppercase; }
.credit-bar { border-top: 1px solid rgba(13,24,36,.25); margin-top: 36px; padding-top: 14px; text-align: center; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; opacity: .72; }
.whatsapp-float { position: fixed !important; z-index: 9999 !important; right: 24px; bottom: 24px; display: inline-flex !important; visibility: visible !important; opacity: 1 !important; align-items: center; gap: 10px; padding: 13px 17px 13px 14px; border-radius: 999px; background: #25d366; color: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.25); font-size: 12px; font-weight: 700; pointer-events: auto; transition: transform .25s ease, box-shadow .25s ease; }
.whatsapp-float svg { width: 22px; height: 22px; fill: currentColor; }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.32); }

.reveal { opacity: 0; transform: translateY(45px); transition: opacity .85s ease, transform .85s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 850px; }
  .hero__title { font-size: clamp(58px, 15.3vw, 120px); line-height: .83; }
  .hero__line--two { text-align: left; }
  .hero__line { white-space: normal; }
  .hero__orbit { right: -10px; top: 50%; }
  .hero__bottom { grid-template-columns: 1fr; margin-top: 80px; }
  .hero__bottom p { margin-left: 0; }
  .text-link { justify-self: start; }
  .hero__sticker { left: auto; right: 22px; bottom: 28px; }
  .andina-hero .hero__title { font-size: clamp(53px, 14vw, 108px); }
  .hero__machine { width: 290px; right: -80px; bottom: 145px; opacity: .5; box-shadow: 8px 8px 0 var(--acid); }
  .hero__machine figcaption { display: none; }
  .intro { min-height: auto; }
  .intro__grid, .services__intro { grid-template-columns: 1fr; gap: 55px; margin-top: 60px; }
  .project--large, .project--tall, .project--wide, .project--small { grid-column: 1 / -1; margin-top: 0; }
  .project--tall, .project--small { width: 78%; margin-left: auto; }
  .project__visual, .visual-muda { min-height: 520px; }
  .equipment-grid { grid-template-columns: 1fr; }
  .equipment-card, .equipment-card--feature, .equipment-card:nth-child(3), .equipment-card:nth-child(5), .equipment-card:nth-child(6), .equipment-card--wide { grid-column: 1; }
  .seo-copy__grid { grid-template-columns: 1fr; gap: 45px; margin-top: 60px; }
  .equipment-card__image, .equipment-card--feature .equipment-card__image { min-height: 500px; }
  .service-item { grid-template-columns: 45px 1fr 50px; gap: 12px; }
  .service-item p { grid-column: 2 / 4; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s, opacity .35s, padding .35s; }
  .service-item.is-open p { max-height: 120px; opacity: 1; padding-bottom: 12px; }
  .service-item.is-open button { transform: rotate(45deg); }
  .process__steps { grid-template-columns: 1fr; }
  .process__steps li, .process__steps li + li { min-height: 250px; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 50px 25px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero { min-height: 760px; padding-top: 105px; }
  .hero__eyebrow { text-align: left; }
  .hero__title { font-size: 17vw; }
  .hero__orbit { width: 100px; top: 58%; }
  .hero__bottom p { font-size: 20px; max-width: 75%; }
  .hero__sticker { width: 78px; font-size: 13px; }
  .intro { padding-top: 80px; padding-bottom: 130px; }
  .intro__grid { gap: 35px; }
  .intro__sun { width: 310px; height: 310px; right: -160px; bottom: -130px; }
  .work { padding-top: 80px; }
  .section-head { flex-direction: column; margin-bottom: 55px; }
  .project-grid { gap: 70px; }
  .project--tall, .project--small { width: 100%; }
  .project__visual, .visual-muda { min-height: 430px; }
  .project__meta { grid-template-columns: 1fr auto; }
  .project__meta p { grid-row: 2; grid-column: 1 / -1; }
  .services { padding-top: 80px; }
  .service-item h3 { font-size: 40px; }
  .manifesto__badge { width: 74px; font-size: 12px; }
  .quote-section { min-height: 700px; }
  .contact { min-height: 720px; }
  .seo-copy { padding-top: 80px; padding-bottom: 90px; }
  .contact__link { font-size: 19vw; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { font-size: 18vw; }
  .footer__bottom { gap: 14px; flex-wrap: wrap; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; justify-content: center; padding: 0; }
  .whatsapp-float span { display: none; }
}

@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; }
}

.product-page { background: var(--ink); }
.product-page .site-header { mix-blend-mode: normal; }
.product-page .product-back { display: grid; place-items: center; text-decoration: none; font-size: 22px; }
.product-hero { padding: 150px var(--pad) 120px; min-height: 850px; background: var(--ink); }
.product-hero__crumb { display: flex; gap: 12px; align-items: center; color: rgba(242,239,228,.55); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.product-hero__crumb a { color: var(--acid); }
.product-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; margin-top: 85px; }
.product-hero__copy { max-width: 680px; }
.product-hero__eyebrow { color: var(--acid); text-transform: uppercase; letter-spacing: .13em; font-size: 12px; margin: 0 0 24px; }
.product-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(58px, 7.8vw, 120px); line-height: .84; letter-spacing: -.06em; margin: 0; }
.product-hero__intro { font-size: clamp(20px, 2vw, 30px); line-height: 1.18; max-width: 550px; margin: 55px 0 35px; }
.product-cta { display: inline-flex; align-items: center; gap: 45px; background: var(--acid); color: var(--ink); padding: 17px 19px; text-transform: uppercase; font-size: 12px; }
.product-cta span { font-size: 18px; }
.product-hero__visual { background: var(--paper); min-height: 530px; display: grid; place-items: center; position: relative; padding: 45px; overflow: hidden; }
.product-hero__visual img { max-width: 100%; width: 100%; height: 430px; object-fit: contain; filter: drop-shadow(0 24px 18px rgba(13,24,36,.2)); }
.product-hero__visual::after { content: ''; position: absolute; width: 330px; aspect-ratio: 1; border: 1px solid rgba(22,72,216,.35); border-radius: 50%; right: -80px; bottom: -150px; box-shadow: 0 0 0 40px rgba(22,72,216,.08), 0 0 0 80px rgba(22,72,216,.06); }
.product-hero__visual > span { position: absolute; z-index: 2; left: 22px; bottom: 19px; background: var(--ember); color: var(--ink); padding: 9px 12px; font-size: 10px; text-transform: uppercase; }
.product-info { background: var(--paper); color: var(--ink); padding: 110px var(--pad) 130px; }
.product-info__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 13vw; margin-top: 95px; }
.product-info__body { font-family: var(--serif); font-size: clamp(35px, 5vw, 76px); line-height: .95; letter-spacing: -.05em; margin: 0; }
.product-specs { border-top: 1px solid rgba(13,24,36,.4); }
.product-specs > p { text-transform: uppercase; font-size: 11px; letter-spacing: .13em; }
.product-specs ul { list-style: none; padding: 0; margin: 45px 0 0; }
.product-specs li { border-top: 1px solid rgba(13,24,36,.25); padding: 16px 0; font-size: 15px; line-height: 1.2; }
.product-contact { min-height: 720px; padding: 120px var(--pad); display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.product-contact > p { text-transform: uppercase; letter-spacing: .13em; font-size: 12px; }
.product-contact .contact__link { margin-top: 40px; }

@media (max-width: 900px) {
  .product-hero { padding-top: 125px; }
  .product-hero__grid, .product-info__grid { grid-template-columns: 1fr; gap: 55px; }
  .product-hero__grid { margin-top: 60px; }
  .product-hero__visual { min-height: 420px; }
  .product-hero__visual img { height: 330px; }
  .product-info__grid { margin-top: 55px; }
}

@media (max-width: 560px) {
  .product-hero { padding-bottom: 80px; }
  .product-hero h1 { font-size: 17vw; }
  .product-hero__intro { margin-top: 35px; }
  .product-hero__visual { min-height: 330px; padding: 28px; }
  .product-hero__visual img { height: 260px; }
  .product-info { padding-top: 80px; }
  .product-info__body { font-size: 43px; }
  .product-contact { min-height: 620px; }
}
