/* YIVTOL Iberia. White room, one aircraft per screen, one red. Every section has its own shape. */
@font-face { font-family: 'Unbounded'; font-weight: 700; font-display: swap; src: url('../assets/fonts/unbounded-700.woff2') format('woff2'); }
@font-face { font-family: 'Unbounded'; font-weight: 900; font-display: swap; src: url('../assets/fonts/unbounded-900.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-weight: 400; font-display: swap; src: url('../assets/fonts/manrope-400.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-weight: 500; font-display: swap; src: url('../assets/fonts/manrope-500.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-weight: 700; font-display: swap; src: url('../assets/fonts/manrope-700.woff2') format('woff2'); }
:root {
  --white: #FFFFFF; --room: #F4F5F7; --black: #0B0B0D; --ink: #17181C; --mute: #6B6F78; --line: rgba(23,24,28,.1); --line-w: rgba(255,255,255,.14);
  --red: #E3202B;
  --fd: 'Unbounded', 'Arial Black', sans-serif; --fb: 'Manrope', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --t-1: .875rem; --t-2: 1.0625rem; --t-3: 1.25rem; --t-4: 1.5rem;
  --d-1: clamp(2.6rem, 6.4vw, 6rem); --d-2: clamp(1.8rem, 3.4vw, 3rem); --d-3: clamp(1.2rem, 1.7vw, 1.5rem);
  --s-2: .75rem; --s-3: 1rem; --s-4: 1.5rem; --s-5: 2rem; --s-6: 3rem; --s-7: 4.5rem; --s-8: 7rem;
  --sec: clamp(5rem, 10vw, 9rem); --gutter: clamp(1.25rem, 5vw, 5rem); --r: 8px; --ease: cubic-bezier(.16,1,.3,1);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--fb); font-size: var(--t-2); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p, figure, ul, ol, dl, dd { margin: 0; } ul, ol { padding: 0; list-style: none; }
a { color: inherit; } button { font: inherit; color: inherit; }
::selection { background: var(--red); color: var(--white); }
:focus { outline: none; } :focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.skip { position: absolute; left: var(--gutter); top: -100px; z-index: 300; background: var(--red); color: var(--white); padding: .6em 1em; font-weight: 700; text-decoration: none; }
.skip:focus-visible { top: .6rem; }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.d1, .d2, .d3 { font-family: var(--fd); font-weight: 700; line-height: 1.04; letter-spacing: -.015em; text-wrap: balance; }
.d1 { font-size: var(--d-1); font-weight: 900; line-height: 1; }
.d2 { font-size: var(--d-2); max-width: 22ch; } .d3 { font-size: var(--d-3); line-height: 1.25; }
@media (max-width: 899px) { .d1 { font-size: clamp(2.2rem, 10vw, 3.2rem); } .d2 { font-size: clamp(1.6rem, 7vw, 2.2rem); } .hero { padding-top: var(--s-6); } .hero .d1 { max-width: 12ch; } }
.lede { font-size: var(--t-3); line-height: 1.55; max-width: 42ch; text-wrap: pretty; color: var(--ink); }
.prose { max-width: 58ch; text-wrap: pretty; color: #3A3D45; } .prose p + p { margin-top: var(--s-3); }
.mute { color: var(--mute); } .small { font-size: var(--t-1); }
.kicker { font-family: var(--fd); font-weight: 700; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.kicker--red { color: var(--red); }
.center { text-align: center; } .center .d2, .center .lede { margin-inline: auto; }
.on-black { background: var(--black); color: var(--white); } .on-black .lede, .on-black .prose { color: rgba(255,255,255,.82); } .on-black .mute { color: rgba(255,255,255,.6); } .on-black .kicker { color: rgba(255,255,255,.55); } .on-black .kicker--red { color: var(--red); }

.wrap { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 900px; }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: 1.5rem; row-gap: 2rem; }
.c-1-5 { grid-column: 1/6; } .c-1-6 { grid-column: 1/7; } .c-6-13 { grid-column: 6/-1; } .c-7-13 { grid-column: 7/-1; }
.sec { padding-block: var(--sec); }
.stack > * + * { margin-top: var(--stack, var(--s-4)); }
.stack > .kicker + * { margin-top: var(--s-3); }

.btn { display: inline-flex; align-items: center; gap: .7em; background: var(--black); color: var(--white); font-weight: 700; font-size: var(--t-2); line-height: 1; padding: 1.05em 1.6em; border: 0; border-radius: 999px; text-decoration: none; cursor: pointer; transition: background-color .25s var(--ease), transform .25s var(--ease); }
.btn:hover { background: var(--red); transform: translateY(-1px); }
.btn--red { background: var(--red); } .btn--red:hover { background: var(--black); }
.on-black .btn { background: var(--white); color: var(--black); } .on-black .btn:hover { background: var(--red); color: var(--white); }
.btn--line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(23,24,28,.35); } .btn--line:hover { background: var(--black); color: var(--white); box-shadow: none; }
.tlink { font-weight: 700; text-decoration: none; border-bottom: 1.5px solid var(--red); padding-bottom: .1em; } .tlink:hover { color: var(--red); }
.wa { display: inline-flex; align-items: center; gap: .6em; font-weight: 700; text-decoration: none; }
.wa::before { content: ''; width: 1em; height: 1em; border-radius: 50%; background: #25D366; flex: none; }

/* nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); min-height: 64px; }
.nav__brand { display: flex; align-items: center; gap: .8em; text-decoration: none; }
.nav__brand img { height: 18px; width: auto; flex-shrink: 0; } .nav__brand span { font-size: var(--t-1); color: var(--mute); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav__links a { font-weight: 500; font-size: var(--t-1); text-decoration: none; color: var(--ink); }
.nav__links a:hover { color: var(--red); } .nav__links a.btn { padding: .7em 1.1em; color: var(--white); }
@media (max-width: 899px) { .nav__links a:not(.btn) { display: none; } .nav__brand span { display: none; } .nav__links a.btn { white-space: nowrap; padding: .65em 1em; } }

/* 1. hero */
.hero { position: relative; background: linear-gradient(var(--white), var(--room) 60%, var(--white)); text-align: center; padding-top: var(--s-7); overflow: hidden; }
.hero .d1 { max-width: 14ch; margin-inline: auto; }
.hero__sub { max-width: 44ch; margin: var(--s-4) auto 0; font-size: var(--t-3); color: #3A3D45; }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--s-3) var(--s-4); margin-top: var(--s-5); }
.hero__art { max-width: 1180px; margin: var(--s-6) auto 0; }
.hero__art img { width: 100%; height: auto; border-radius: 20px; }
.hero__meta { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: var(--s-3); max-width: 1000px; margin: var(--s-6) auto 0; padding-bottom: var(--s-7); text-align: center; }
.hero__meta span { display: block; color: var(--mute); font-size: var(--t-1); }
.hero__meta b { display: block; color: var(--ink); font-family: var(--fd); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.9rem); line-height: 1.2; letter-spacing: -.02em; }
@media (max-width: 899px) { .hero__meta { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.js .hero > .wrap > * { animation: fade 1s var(--ease) both; } .js .hero__art { animation-delay: .15s; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* 2. the cockpit, annotated */
.anno { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.anno__list { counter-reset: a; margin-top: var(--s-5); }
.anno__list li { display: grid; grid-template-columns: 2.2rem 1fr; gap: var(--s-3); padding-block: var(--s-3); border-top: 1px solid var(--line); }
.anno__list li:last-child { border-bottom: 1px solid var(--line); }
.anno__list .n, .anno__dot i { display: grid; place-items: center; width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--red); color: var(--white); font-family: var(--fd); font-weight: 700; font-size: .8rem; font-style: normal; }
.anno__list b { display: block; } .anno__list p { color: var(--mute); font-size: var(--t-1); max-width: 40ch; }
.anno__fig { position: relative; border-radius: 20px; overflow: hidden; background: var(--black); }
.anno__fig img { width: 100%; height: auto; }
.anno__dot { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%); }
.anno__dot::before { content: ''; position: absolute; inset: -.55rem; border-radius: 50%; border: 2px solid rgba(255,255,255,.85); animation: ping 2.4s var(--ease) infinite; }
.anno__dot i { box-shadow: 0 0 0 3px rgba(255,255,255,.9); position: relative; }
@keyframes ping { 0% { transform: scale(.6); opacity: .9; } 70%, 100% { transform: scale(1.5); opacity: 0; } }
@media (max-width: 899px) { .anno { grid-template-columns: 1fr; } .anno__fig { order: -1; } }

/* 3. reels */
.reels { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--s-4); max-width: 1100px; margin-inline: auto; }
.reel { position: relative; aspect-ratio: 9/16; border-radius: 28px; overflow: hidden; background: #1a1b1f; border: 6px solid #1f2024; box-shadow: 0 40px 80px -30px rgba(0,0,0,.7); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel__cap { position: absolute; left: var(--s-3); right: var(--s-3); bottom: var(--s-3); font-size: var(--t-1); font-weight: 700; color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,.8); pointer-events: none; }
.reel__btn { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 50%); border: 0; cursor: pointer; color: var(--white); }
.reel__btn span { display: inline-flex; align-items: center; gap: .5em; padding: .8em 1.3em; background: rgba(255,255,255,.92); color: var(--black); font-weight: 700; border-radius: 999px; }
.reel__btn span::before { content: ''; border-style: solid; border-width: .4em 0 .4em .7em; border-color: transparent transparent transparent currentColor; }
.reel.is-playing .reel__btn { display: none; }
@media (max-width: 1023px) { .reels { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .reels { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); } .reels::-webkit-scrollbar { display: none; } .reels .reel { flex: 0 0 68vw; scroll-snap-align: start; } }

/* 4. the mosaic */
.bento { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); grid-auto-rows: minmax(240px, auto); gap: var(--s-3); }
.bento__t { position: relative; border-radius: 18px; overflow: hidden; background: var(--room); min-height: 240px; }
.bento__t--w { grid-column: span 4; } .bento__t--full { grid-column: span 6; min-height: 380px; }
.bento__t:not(.bento__t--w):not(.bento__t--full) { grid-column: span 2; }
.bento__t img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento__t figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s-5) var(--s-4) var(--s-4); color: var(--white); background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.35) 60%, transparent); font-size: var(--t-1); line-height: 1.5; }
.bento__t figcaption b { display: block; font-family: var(--fd); font-size: 1.05rem; margin-bottom: .3rem; }
.bento__t--red, .bento__t--ink { display: flex; flex-direction: column; justify-content: space-between; padding: var(--s-4); color: var(--white); }
.bento__t--red { background: var(--red); } .bento__t--ink { background: var(--ink); }
.bento__t .big { font-family: var(--fd); font-weight: 900; font-size: clamp(3rem, 5vw, 4.5rem); line-height: .95; letter-spacing: -.03em; }
.bento__t .big small { font-size: .35em; font-weight: 700; margin-left: .15em; letter-spacing: 0; }
.bento__t--red p, .bento__t--ink p { font-size: var(--t-1); opacity: .92; margin-top: var(--s-4); }
.bento__t--full img { object-position: center 40%; }
@media (max-width: 899px) { .bento { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: minmax(220px, auto); } .bento__t--w, .bento__t--full { grid-column: span 2; } .bento__t:not(.bento__t--w):not(.bento__t--full) { grid-column: span 1; } .bento__t--red .big, .bento__t--ink .big { font-size: 2.6rem; } }
@media (max-width: 480px) { .bento__t:not(.bento__t--w):not(.bento__t--full) { grid-column: span 2; } }

/* 5. the MAX poster */
.poster .wrap { display: grid; gap: var(--s-6); }
.poster__head { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); align-items: end; }
.poster__head .kicker { grid-column: 1/-1; }
.poster__art { position: relative; border-radius: 24px; overflow: hidden; }
.poster__art::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); border-radius: inherit; pointer-events: none; }
.poster__art img { width: 100%; height: auto; }
.poster__specs { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)) 1.6fr; border-top: 1px solid var(--line-w); }
.poster__specs > div { padding: var(--s-4) var(--s-3) 0 0; border-right: 1px solid var(--line-w); margin-right: var(--s-3); }
.poster__specs > div:last-child { border-right: 0; margin-right: 0; }
.poster__specs dt { font-family: var(--fd); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 2.1rem); letter-spacing: -.02em; line-height: 1.1; }
.poster__specs dd { color: rgba(255,255,255,.6); font-size: var(--t-1); margin-top: .3rem; }
.poster__specs .tlink { color: var(--white); }
@media (max-width: 899px) { .poster__head { grid-template-columns: 1fr; } .poster__specs { grid-template-columns: repeat(2, minmax(0,1fr)); row-gap: var(--s-3); } .poster__specs > div:nth-child(2n) { border-right: 0; } .poster__specs > div:last-child { grid-column: 1/-1; } }

/* 6. two ways */
.spread { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.spread__card { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; background: var(--black); color: var(--white); }
.spread__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.spread__card:hover img { transform: scale(1.03); }
.spread__card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.5rem, 4vw, 3rem); background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.4) 55%, transparent); }
.spread__card b { display: block; font-family: var(--fd); font-weight: 900; font-size: clamp(1.8rem, 3.2vw, 2.8rem); letter-spacing: -.02em; line-height: 1; margin-bottom: var(--s-3); }
.spread__card p { max-width: 40ch; font-size: var(--t-1); line-height: 1.55; color: rgba(255,255,255,.88); }
@media (max-width: 720px) { .spread { grid-template-columns: 1fr; } .spread__card { aspect-ratio: 3/4; } }

/* 7. papers */
.papers { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.papers__fan { position: relative; height: clamp(360px, 40vw, 560px); overflow: clip; overflow-clip-margin: 20px; }
.paper { position: absolute; width: 46%; aspect-ratio: 600/850; border-radius: 6px; overflow: hidden; background: var(--white); box-shadow: 0 30px 60px -20px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.08); text-decoration: none; transition: transform .5s var(--ease); transform-origin: bottom center; }
.paper img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.paper span { position: absolute; left: .8rem; top: .8rem; background: var(--red); color: var(--white); font-family: var(--fd); font-weight: 700; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; padding: .35em .7em; border-radius: 4px; }
.paper:nth-child(1) { left: 2%; top: 8%; transform: rotate(-7deg); z-index: 1; }
.paper:nth-child(2) { left: 26%; top: 0; transform: rotate(1deg); z-index: 2; }
.paper:nth-child(3) { left: 50%; top: 10%; transform: rotate(7deg); z-index: 3; }
.paper:hover { transform: rotate(0) translateY(-12px); z-index: 4; }
.papers__list li { padding: var(--s-3) 0; border-top: 1px solid var(--line-w); font-size: var(--t-1); color: rgba(255,255,255,.7); }
.papers__list li:last-child { border-bottom: 1px solid var(--line-w); }
.papers__list b { display: block; color: var(--white); font-weight: 700; font-size: var(--t-2); margin-bottom: .2rem; }
@media (max-width: 899px) { .papers { grid-template-columns: 1fr; } .papers__fan { height: auto; aspect-ratio: 5/4; max-width: 520px; } }

/* 8. the comparison */
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
.cmp { width: 100%; min-width: 760px; border-collapse: separate; border-spacing: 0; font-size: var(--t-1); }
.cmp th, .cmp td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp thead th { vertical-align: bottom; font-family: var(--fd); font-weight: 700; font-size: 1rem; padding-top: var(--s-3); border-bottom: 2px solid var(--ink); }
.cmp thead img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 10px; margin-bottom: .7rem; background: var(--room); }
.cmp tbody th { font-weight: 500; color: var(--mute); width: 18%; }
.cmp td { font-weight: 700; }
.cmp .pick { background: var(--room); }
.cmp thead .pick { border-radius: 14px 14px 0 0; position: relative; }
.cmp__tag { position: absolute; top: -.4rem; left: .9rem; background: var(--red); color: var(--white); font-family: var(--fd); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; padding: .35em .7em; border-radius: 4px; }
.cmp__cta td, .cmp__cta th { border-bottom: 0; padding-top: var(--s-4); }
.cmp__cta .pick { border-radius: 0 0 14px 14px; }
.cmp thead th:first-child, .cmp tbody th { position: sticky; left: 0; background: var(--white); z-index: 1; }

/* 9. the invoice */
.ptable { width: 100%; border-collapse: collapse; font-size: var(--t-1); }
.ptable td { padding: .75rem .4rem; border-bottom: 1px solid var(--line); vertical-align: top; } .ptable td:last-child { text-align: right; white-space: nowrap; font-weight: 700; }
.ptable caption { text-align: left; font-weight: 700; padding-bottom: .5rem; font-size: var(--t-2); }
.total { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-4); padding: var(--s-4) 0; border-top: 2px solid var(--ink); font-weight: 700; }
.total b { font-family: var(--fd); font-size: var(--t-4); }

/* 10. dealer */
.dealer { display: grid; grid-template-columns: 5fr 7fr; gap: var(--s-6); align-items: center; }
.dealer img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 16px; }
.dealer dl { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s-3) var(--s-4); }
.dealer dt { font-family: var(--fd); font-weight: 700; font-size: var(--d-3); } .dealer dd { color: var(--mute); font-size: var(--t-1); }
@media (max-width: 899px) { .dealer { grid-template-columns: 1fr; } }

/* 11. the timeline */
.tl { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: var(--s-4); position: relative; padding-top: var(--s-5); }
.tl::before { content: ''; position: absolute; left: 0; right: 0; top: .55rem; height: 2px; background: linear-gradient(90deg, var(--red) 0 78%, rgba(23,24,28,.15) 78%); }
.tl li { position: relative; }
.tl li::before { content: ''; position: absolute; left: 0; top: calc(-1 * var(--s-5) + .05rem); width: 1.1rem; height: 1.1rem; border-radius: 50%; background: var(--white); border: 3px solid var(--red); }
.tl li:last-child::before { border-color: var(--ink); }
.tl__when { display: block; font-family: var(--fd); font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: .5rem; }
.tl li:last-child .tl__when { color: var(--ink); }
.tl b { display: block; font-weight: 700; margin-bottom: .25rem; } .tl p { color: var(--mute); font-size: var(--t-1); }
@media (max-width: 899px) { .tl { grid-template-columns: 1fr; padding-top: 0; padding-left: 2rem; gap: var(--s-5); } .tl::before { left: .5rem; right: auto; top: .4rem; bottom: .4rem; width: 2px; height: auto; background: linear-gradient(180deg, var(--red) 0 78%, rgba(23,24,28,.15) 78%); } .tl li::before { left: -2rem; top: .05rem; } }

/* 12. where */
.where__in { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.where__in figure { border-radius: 20px; overflow: hidden; }
.where__in img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 899px) { .where__in { grid-template-columns: 1fr; } }

/* 13. partners */
.roi__head { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4) var(--s-6); align-items: end; }
.roi { display: grid; grid-template-columns: 5fr 7fr; gap: var(--s-6); align-items: stretch; }
.roi__photo { border-radius: 18px; overflow: hidden; position: relative; min-height: 300px; }
.roi__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.roi__photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s-4); font-size: var(--t-1); color: rgba(255,255,255,.85); background: linear-gradient(to top, rgba(0,0,0,.8), transparent); }
.roi__nums { display: grid; grid-template-columns: 1fr 1fr; }
.roi__nums > div { padding: var(--s-4); border: 1px solid var(--line-w); margin: 0 -1px -1px 0; }
.roi__nums dt { font-family: var(--fd); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.9rem); letter-spacing: -.02em; line-height: 1.1; }
.roi__nums dd { color: rgba(255,255,255,.6); font-size: var(--t-1); margin-top: .4rem; max-width: 26ch; }
.tiers { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s-4); }
.tier { display: grid; grid-template-columns: auto 1fr; gap: var(--s-4); align-items: start; padding: var(--s-4); border-top: 2px solid var(--white); }
.tier__n { font-family: var(--fd); font-weight: 900; font-size: 3.4rem; line-height: .9; letter-spacing: -.04em; color: var(--red); }
.tier b { display: block; font-family: var(--fd); font-weight: 700; font-size: var(--t-3); margin-bottom: .4rem; } .tier p { color: rgba(255,255,255,.7); font-size: var(--t-1); }
.tier--cta { grid-template-columns: 1fr; border-top-color: var(--red); background: rgba(255,255,255,.04); border-radius: 0 0 14px 14px; align-content: space-between; }
.tier--cta p { margin-bottom: var(--s-4); }
@media (max-width: 899px) { .roi__head, .roi, .tiers { grid-template-columns: 1fr; } .roi__photo { aspect-ratio: 4/3; min-height: 0; } }

/* 14. the maker */
.maker { position: relative; background: var(--black); color: var(--white); min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; }
.maker > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: .55; }
.maker::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,13,.95) 20%, rgba(11,11,13,.35) 60%, rgba(11,11,13,.15)); }
.maker__in { position: relative; z-index: 1; padding-block: var(--sec); display: grid; gap: var(--s-4); max-width: 1280px; }
.maker__in .lede { color: rgba(255,255,255,.85); max-width: 52ch; }
.maker__facts { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6); margin-top: var(--s-3); }
.maker__facts dt { font-family: var(--fd); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.9rem); letter-spacing: -.02em; } .maker__facts dd { color: rgba(255,255,255,.6); font-size: var(--t-1); }

/* 15. the strip */
.strip { display: flex; gap: var(--s-4); overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none; padding: var(--s-4) var(--gutter) var(--s-3); margin-top: var(--s-5); position: relative; }
.strip::-webkit-scrollbar { display: none; }
.strip figure { flex: 0 0 clamp(260px, 30vw, 380px); scroll-snap-align: start; position: relative; padding-top: var(--s-4); border-top: 2px solid var(--line); }
.strip figure::before { content: ''; position: absolute; left: 0; top: -6px; width: 10px; height: 10px; border-radius: 50%; background: var(--red); }
.strip img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 14px; background: var(--room); }
.strip figcaption { padding-top: var(--s-3); font-size: var(--t-1); color: var(--mute); }
.strip .yr { display: block; font-family: var(--fd); font-weight: 700; font-size: 1.3rem; color: var(--ink); letter-spacing: -.02em; margin-bottom: .2rem; }
.strip figcaption b { display: block; color: var(--ink); }
@media (min-width: 1360px) { .strip { padding-inline: calc((100vw - 1280px) / 2 + var(--gutter)); scroll-padding-inline: calc((100vw - 1280px) / 2 + var(--gutter)); } }

/* 16. faq */
.faq { border-top: 1px solid var(--line); } .faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); padding: var(--s-4) 0; font-weight: 700; font-size: var(--t-3); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; flex: none; width: 1.6rem; height: 1.6rem; display: grid; place-items: center; color: var(--red); font-weight: 700; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 var(--s-4); max-width: 62ch; color: #3A3D45; }

/* 17. form */
.form-panel { background: var(--white); color: var(--ink); border-radius: 16px; padding: clamp(1.5rem, 4vw, 3rem); box-shadow: 0 40px 80px -40px rgba(0,0,0,.5); }
.form { display: grid; gap: var(--s-4); } .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field label { display: block; font-weight: 700; font-size: var(--t-1); margin-bottom: .45rem; } .field label small { font-weight: 400; color: var(--mute); }
.field input, .field select, .field textarea { width: 100%; font: inherit; color: var(--ink); background: var(--white); border: 1.5px solid rgba(23,24,28,.2); border-radius: 10px; padding: .85em 1em; transition: border-color .2s; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--mute); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--ink); outline-offset: 2px; }
.field select { appearance: none; padding-right: 2.6em; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 6l5 5 5-5' fill='none' stroke='%2317181C' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 1em center / 1em; }
.field textarea { min-height: 8rem; resize: vertical; }
.field__error { display: none; margin-top: .45rem; font-size: var(--t-1); font-weight: 700; color: var(--red); } .field__error:not(:empty) { display: block; }
.field[data-invalid="true"] input, .field[data-invalid="true"] select, .field[data-invalid="true"] textarea { border-color: var(--red); }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3) var(--s-5); } .form__note { font-size: var(--t-1); color: var(--mute); max-width: 40ch; }
.form__msg { padding: var(--s-5); border: 1.5px solid var(--ink); border-radius: 12px; max-width: 60ch; } .form__msg h3 { font-size: var(--t-4); font-weight: 700; margin-bottom: var(--s-3); }
.form-panel .tlink { color: var(--ink); }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

/* footer */
.footer { padding: var(--s-7) 0 var(--s-5); font-size: var(--t-1); border-top: 1px solid var(--line); color: var(--mute); }
.footer a { text-decoration: none; color: var(--ink); } .footer a:hover { color: var(--red); }
.footer__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--s-5); }
.footer h2 { font-size: var(--t-1); font-weight: 700; color: var(--ink); margin-bottom: .6rem; }
.footer__base { margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3); }
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; } }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(11,11,13,.92); display: none; place-items: center; padding: var(--s-4); }
.lb.is-open { display: grid; }
.lb img { max-width: min(96vw, 900px); max-height: 92vh; width: auto; height: auto; border-radius: 6px; box-shadow: 0 40px 80px -20px rgba(0,0,0,.9); }
.lb button { position: absolute; top: var(--s-3); right: var(--s-3); width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 0; background: var(--white); color: var(--black); font-size: 1.4rem; line-height: 1; cursor: pointer; }

.js [data-reveal] { opacity: 0; transform: translateY(10px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (max-width: 899px) { .c-1-5, .c-1-6, .c-6-13, .c-7-13 { grid-column: 1/-1; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } .js [data-reveal] { opacity: 1; transform: none; } html { scroll-behavior: auto; } }
