/* dynamic-stills.css
   if.css provides: Barlow Condensed, h1/h2/h3 base sizes, body/p font-size 18px,
   letter-spacing -0.015em on body text, opacity fade-in via if.js.
   This file: fixes if.css body layout + all page-specific layout & components. */

/* ── Fix if.css body ──────────────────── */
body { display: block !important; margin: 0 !important; overflow-x: hidden; -webkit-font-smoothing: antialiased; opacity: 1 !important; }
body.nav-open { overflow: hidden; }

:root {
  --pink:       #a60064;
  --blue:       #006680;
  --yellow:     #ecaa00;
  --off-white:  #F6F6F6;
  --light-grey: #DBDBDB;
  --mid-grey:   #B7B7B7;
  --near-black: #212529;
  --pad: 4%;
  --px: clamp(48px, 6vw, 112px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }

.outline       { -webkit-text-stroke: 2px #000; -webkit-text-fill-color: transparent; }
.outline-white { -webkit-text-stroke: 2px #fff; -webkit-text-fill-color: transparent; }

/* ── NAV ──────────────────────────────── */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 200; background: transparent; display: flex; justify-content: space-between; align-items: center; padding: 28px calc(var(--pad) + 1rem); }
.site-header .bi img { width: 150px; filter: brightness(0) invert(1); }

.sf { position: fixed; top: 28px; right: var(--pad); z-index: 10000; display: flex; flex-direction: column; align-items: stretch; gap: 6px; }
.sf-top-row { display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; padding: 1rem 1rem 1rem 2rem; background: transparent; transition: background 800ms ease; }
.sf.scrolled .sf-top-row { background: #000; box-shadow: 0 4px 20px rgba(0,0,0,.35); }
@media (max-width: 767px) { .sf.scrolled .sf-top-row { background: transparent; box-shadow: none; } }
.sf-phone { white-space: nowrap; color: #fff; font-size: 18px; font-weight: 700; letter-spacing: -0.015em; max-width: 0; overflow: hidden; opacity: 0; transition: max-width .35s ease, opacity .35s ease; }
.sf-phone a { color: inherit; text-decoration: none !important; }
.sf.scrolled .sf-phone { max-width: 220px; opacity: 1; }
body.nav-open .sf-phone { max-width: 0 !important; opacity: 0 !important; }
.sf-contact-btn { opacity: 0; pointer-events: none; max-height: 0; overflow: hidden; transition: opacity .3s, max-height .35s; width: 100%; }
.sf.scrolled .sf-contact-btn { opacity: 1; pointer-events: auto; max-height: 80px; }
body.nav-open .sf-contact-btn { opacity: 0 !important; pointer-events: none !important; max-height: 0 !important; }
.sf-contact-btn a { background: #fff; color: #000 !important; border: 1px solid #000; text-transform: uppercase; letter-spacing: -0.015em; white-space: nowrap; display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1rem; font-size: 19px; font-weight: 500; text-decoration: none !important; transition: all 800ms ease; position: relative; }
.sf-contact-btn a::after { content: ""; position: absolute; top: 50%; right: 1rem; height: 1px; width: 60px; background: #000; }
.sf-contact-btn a:hover { background: #fff; color: #000 !important; }
.sf-contact-btn a:hover::after { background: #000; }

.sf-burger { cursor: pointer; width: 30px; height: 25px; position: relative; flex-shrink: 0; z-index: 10001; bottom: 1px; }
.sf-burger span { background-color: #fff; width: 30px; height: 2px; display: block; position: absolute; top: 50%; left: 50%; margin-left: -15px; transition: background-color .25s, transform .25s, opacity .25s; }
.sf-burger span:before, .sf-burger span:after { content: ""; background-color: #fff; width: 30px; height: 2px; display: block; position: absolute; transition: background-color .25s, transform .25s, top .25s; }
.sf-burger span:before { top: -9px; }
.sf-burger span:after  { top:  9px; }
body.nav-open .sf-burger span        { opacity: 0; }
body.nav-open .sf-burger span:before { top: 0; transform: rotate(45deg); }
body.nav-open .sf-burger span:after  { top: 0; transform: rotate(-45deg); }

.nav-overlay { position: fixed; inset: 0; display: flex; flex-direction: row; z-index: 9998; transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
body.nav-open .nav-overlay { transform: translateX(0); }
.nav-content-panel { flex: 1; background: #fff; max-height: 100vh; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; }
.nav-content-panel::-webkit-scrollbar { display: none; }
.ncp-header { padding: 3rem; }
.ncp-heading { font-size: 50px; font-weight: 700; text-transform: uppercase; line-height: 1; color: #000; margin-bottom: 2rem; }
.ncp-body { font-size: 18px; color: #555; max-width: 400px; margin-bottom: 1.5rem; }
.ncp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding: 0 3rem 3rem; }
.ncp-item { position: relative; overflow: hidden; display: block; text-decoration: none !important; height: 220px; }
.ncp-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.3); z-index: 1; }
.ncp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ncp-item:hover img { transform: scale(1.05); }
.ncp-item-label { position: absolute; bottom: 12px; left: 30px; z-index: 2; color: #fff; font-size: 28px; font-weight: 700; text-transform: uppercase; text-decoration: underline; }
.nav-links-panel { width: 25%; min-width: 280px; background: #000; display: flex; flex-direction: column; justify-content: space-between; padding: 10rem 2rem 4rem 4rem; height: 100vh; overflow-y: auto; flex-shrink: 0; position: relative; }
.nav-close { position: absolute; top: 1.8rem; right: 1.8rem; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 0; }
.nav-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.nav-links li a { font-size: 28px; font-weight: 700; letter-spacing: -0.45px; text-transform: uppercase; color: #fff !important; text-decoration: none !important; display: block; line-height: 1.2; transition: color 300ms ease; }
.nav-links li a:hover, .nav-links li a.is-active { color: #2A657D !important; }
.nav-privacy { padding-bottom: 4rem; }
.nav-privacy a { font-size: 18px; font-weight: 500; color: #fff !important; text-decoration: none !important; letter-spacing: -0.015em; }
.nav-social { display: flex; gap: 24px; padding-top: 4rem; }
.nav-social a { font-size: 18px; font-weight: 500; color: #fff !important; text-decoration: none !important; transition: color 0.2s; }
.nav-social a:hover { color: var(--mid-grey) !important; }

/* ── HERO ─────────────────────────────── */
.hero { position: relative; width: 100%; height: 100svh; min-height: 600px; display: flex; align-items: flex-end; overflow: hidden; background: #000; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,.05) 100%); }
.hero-content { position: relative; z-index: 2; padding: var(--px) var(--px) clamp(72px,10vw,120px); max-width: 1200px; width: 100%; }
.hero-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--yellow); margin-bottom: 28px; display: inline-flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { display: none; }
.hero-h1 { font-size: clamp(72px, 10vw, 160px); font-weight: 800; letter-spacing: -0.03em; line-height: 0.88; color: #fff; margin-bottom: 36px; }
.hero-h1 em { font-style: normal; color: var(--yellow); }
.hero-sub { font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.85); max-width: 560px; line-height: 26px; letter-spacing: -0.015em; border-left: 3px solid var(--pink); padding-left: 20px; margin-bottom: clamp(36px,4vw,56px); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary { display: inline-block; padding: 1rem 7rem 1rem 1rem; background: var(--pink); color: #fff !important; font-size: 22px; font-weight: 500; letter-spacing: -0.015em; text-transform: uppercase; text-decoration: none !important; border: none; position: relative; transition: all 800ms ease; border-radius: 0; }
.btn-primary::after { content: ""; position: absolute; top: 50%; right: 28px; height: 1px; width: 60px; background: #fff; }
.btn-primary:hover { background: #820050; color: #fff !important; }
.btn-outline { display: inline-block; padding: 1rem 7rem 1rem 1rem; background: rgba(255,255,255,.1); color: #fff !important; font-size: 22px; font-weight: 500; letter-spacing: -0.015em; text-transform: uppercase; text-decoration: none !important; border: 1px solid rgba(255,255,255,0.4); position: relative; transition: all 800ms ease; border-radius: 0; }
.btn-outline::after { content: ""; position: absolute; top: 50%; right: 28px; height: 1px; width: 60px; background: #fff; }
.btn-outline:hover { background: #fff; color: #000 !important; }
.btn-outline:hover::after { background: #000; }
.hero-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--pink); z-index: 3; }

/* ── HOOK ─────────────────────────────── */
.hook-section { background: #fff; padding: clamp(72px,9vw,120px) var(--px); border-bottom: 1px solid var(--light-grey); }
.hook-inner { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,6vw,100px); align-items: center; }
.hook-left h2 { font-size: clamp(36px,4.5vw,64px); font-weight: 800; text-transform: uppercase; line-height: .92; letter-spacing: -1.35px; color: #000; margin-bottom: clamp(20px,2.5vw,36px); }
.hook-left h2 span { color: var(--pink); }
.hook-left p { font-size: 18px; line-height: 22px; letter-spacing: -0.015em; color: #555; margin-bottom: 18px; }
.hook-left p strong { color: var(--near-black); font-weight: 700; }
.hook-right { border-left: 1px solid var(--light-grey); padding-left: clamp(40px,5vw,80px); }
.hook-reveal { background: var(--near-black); padding: clamp(32px,4vw,52px); border-top: 4px solid var(--yellow); }
.hook-reveal-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .28em; color: var(--yellow); margin-bottom: 20px; }
.hook-reveal-heading { font-size: clamp(26px,3vw,42px); font-weight: 800; text-transform: uppercase; letter-spacing: -1.35px; color: #fff; line-height: 0.9; margin-bottom: 20px; }
.hook-reveal p { font-size: 18px; color: rgba(255,255,255,.75); line-height: 22px; letter-spacing: -0.015em; }
@media (max-width: 860px) {
  .hook-inner { grid-template-columns: 1fr; }
  .hook-right { border-left: none; padding-left: 0; border-top: 1px solid var(--light-grey); padding-top: clamp(32px,4vw,56px); }
}

/* ── TRUST BAR ────────────────────────── */
.trust-bar { background: var(--blue); padding: clamp(32px,4vw,56px) var(--px); border-bottom: 1px solid var(--light-grey); }
.trust-bar-inner { max-width: 960px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.trust-bar-label { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: clamp(28px,4vw,48px); }
.trust-stats { display: flex; justify-content: center; align-items: center; width: 100%; }
.trust-stat { padding: 0 clamp(28px,5vw,80px); text-align: center; }
.trust-stat + .trust-stat { border-left: 1px solid rgba(255,255,255,.2); }
.trust-stat-num { font-size: 85px; font-weight: 700; letter-spacing: -1.35px; line-height: 0.85; color: #fff; display: block; padding-bottom: 1rem; }
.trust-stat-label { font-size: 18px; color: rgba(255,255,255,.7); letter-spacing: -0.015em; }
@media (max-width: 560px) {
  .trust-stats { flex-direction: column; }
  .trust-stat + .trust-stat { border-left: none; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.2); }
  .trust-stat-num { font-size: 44px; }
}

/* ── SHOWCASE ─────────────────────────── */
.showcase-section { background: var(--off-white); padding: clamp(36px,4vw,56px) var(--px) clamp(72px,9vw,120px); border-bottom: 1px solid var(--light-grey); }
.showcase-section .section-eyebrow::before { display: none; }
.showcase-inner { width: 100%; }
.section-eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .28em; color: var(--pink); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; }
.section-eyebrow::before { display: none; }
.showcase-header { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,80px); align-items: end; margin-bottom: clamp(48px,6vw,72px); }
.showcase-header h2 { font-size: clamp(36px,5vw,72px); font-weight: 800; text-transform: uppercase; line-height: .92; letter-spacing: -1.35px; color: #000; margin: 0; }
.showcase-header-right { align-self: end; }
.showcase-header-right p { font-size: 18px; color: #555; line-height: 22px; letter-spacing: -0.015em; margin: 0; }
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: var(--light-grey); border: 3px solid var(--light-grey); }
.vcard { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; background: #000; }
.vcard video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vcard:hover video { transform: scale(1.04); }
.vcard-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 55%); }
.vcard-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px; }
.vcard-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; background: var(--pink); color: #fff; padding: 3px 10px; margin-bottom: 8px; }
.vcard-title { font-size: 18px; font-weight: 700; text-transform: uppercase; color: #fff; line-height: 1.2; letter-spacing: -0.015em; }
.vcard-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; transition: background .25s, transform .25s; }
.vcard:hover .vcard-play { background: var(--pink); transform: translate(-50%,-50%) scale(1.1); }
.vcard-play svg { width: 18px; height: 18px; fill: #fff; margin-left: 3px; }
@media (max-width: 860px) { .showcase-header { grid-template-columns: 1fr; } .video-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } }

/* ── HOW IT WORKS ─────────────────────── */
.how-section { background: var(--blue); padding: clamp(72px,9vw,120px) var(--px); }
.how-inner { width: 100%; }
.how-top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items: end; margin-bottom: clamp(48px,6vw,88px); }
.how-top h2 { font-size: clamp(36px,5vw,72px); font-weight: 800; text-transform: uppercase; line-height: .92; letter-spacing: -1.35px; color: #fff; }
.how-top p { font-size: 18px; color: rgba(255,255,255,.8); line-height: 22px; letter-spacing: -0.015em; }
.how-section .section-eyebrow { color: var(--yellow); }
.how-section .section-eyebrow::before { display: none; }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: rgba(0,0,0,.2); }
.how-step { background: rgba(0,0,0,.15); padding: clamp(32px,4vw,56px); position: relative; }
.how-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--yellow); }
.how-step-num { font-size: 85px; font-weight: 700; letter-spacing: -1.35px; line-height: 0.85; color: var(--yellow); margin-bottom: 20px; }
.how-step h3 { font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.015em; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.how-step p { font-size: 18px; color: rgba(255,255,255,.8); line-height: 22px; letter-spacing: -0.015em; }
@media (max-width: 860px) { .how-top { grid-template-columns: 1fr; } .how-steps { grid-template-columns: 1fr; } }

/* ── WHY ──────────────────────────────── */
.why-section { background: #fff; padding: clamp(72px,9vw,120px) var(--px); border-top: 1px solid var(--light-grey); border-bottom: 1px solid var(--light-grey); }
.why-inner { width: 100%; }
.why-section .section-eyebrow { color: var(--blue); justify-content: center; }
.why-inner > h2 { font-size: clamp(36px,5vw,72px); font-weight: 800; text-transform: uppercase; line-height: .92; letter-spacing: -1.35px; color: #000; text-align: center; margin-bottom: clamp(48px,6vw,72px); }
.why-inner > h2 span { -webkit-text-stroke: 2px #000; -webkit-text-fill-color: transparent; }
.why-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: var(--light-grey); border: 3px solid var(--light-grey); }
.why-card { background: #fff; border-top: 4px solid transparent; padding: clamp(28px,3.5vw,44px) clamp(24px,3vw,40px); transition: background 0.2s; }
.why-card:nth-child(1) { border-top-color: var(--pink); }
.why-card:nth-child(2) { border-top-color: var(--blue); }
.why-card:nth-child(3) { border-top-color: var(--yellow); }
.why-card:hover { background: var(--off-white); }
.why-card-num { font-size: 85px; font-weight: 700; letter-spacing: -1.35px; line-height: 0.85; color: var(--mid-grey); margin-bottom: 20px; }
.why-card h3 { font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.015em; color: #000; margin-bottom: 14px; line-height: 1.2; }
.why-card p { font-size: 18px; color: #555; line-height: 22px; letter-spacing: -0.015em; }
@media (max-width: 860px) { .why-cards { grid-template-columns: 1fr; } }

/* ── CTA ──────────────────────────────── */
.cta-section { background: var(--pink); padding: clamp(32px,5vw,88px) var(--px); }
.cta-inner { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: clamp(32px,4vw,64px); flex-wrap: wrap; }
.cta-copy h2 { font-size: clamp(36px,5.5vw,80px); font-weight: 800; text-transform: none; line-height: .92; letter-spacing: -1.35px; color: #fff; margin-bottom: 16px; }
.cta-copy p { font-size: 18px; color: rgba(255,255,255,.85); line-height: 22px; letter-spacing: -0.015em; max-width: 440px; }
.btn-dark { display: inline-block; padding: 1rem 7rem 1rem 1rem; background: #fff; color: var(--pink) !important; font-size: 22px; font-weight: 500; letter-spacing: -0.015em; text-transform: uppercase; text-decoration: none !important; white-space: nowrap; flex-shrink: 0; border: none; position: relative; transition: all 800ms ease; border-radius: 0; }
.btn-dark::after { content: ""; position: absolute; top: 50%; right: 28px; height: 1px; width: 60px; background: var(--pink); }
.btn-dark:hover { background: #000; color: #fff !important; }
.btn-dark:hover::after { background: #fff; }
@media (max-width: 860px) { .cta-inner { flex-direction: column; align-items: flex-start; } }

/* ── FOOTER ───────────────────────────── */
footer { background: #000; border-top: 3px solid var(--pink); padding: clamp(56px,7vw,96px) var(--px) clamp(32px,4vw,48px); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: clamp(40px,5vw,72px); gap: 40px; flex-wrap: wrap; }
.footer-logo-block { display: flex; flex-direction: column; gap: 28px; }
.footer-lets-talk { display: inline-block; font-size: 22px; font-weight: 500; letter-spacing: -0.015em; text-transform: uppercase; color: #fff !important; text-decoration: none !important; border: 1px solid #fff; padding: 1rem 7rem 1rem 1rem; position: relative; transition: all 800ms ease; }
.footer-lets-talk::after { content: ""; position: absolute; top: 50%; right: 28px; height: 1px; width: 60px; background: #fff; }
.footer-lets-talk:hover { background: #fff; color: #000 !important; }
.footer-lets-talk:hover::after { background: #000; }
.footer-right { display: flex; flex-direction: column; gap: 24px; align-items: flex-end; }
.footer-nav { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.footer-nav a { font-size: 30px; font-weight: 700; text-transform: uppercase; color: #fff !important; text-decoration: none !important; line-height: 1.2; letter-spacing: -0.015em; transition: color .2s; }
.footer-nav a:hover { color: var(--pink) !important; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--mid-grey) !important; text-decoration: none !important; font-size: 18px; font-weight: 500; letter-spacing: -0.015em; transition: color 0.2s; }
.footer-legal a:hover { color: #fff !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-social { display: flex; gap: 24px; }
.footer-social a { color: var(--mid-grey) !important; text-decoration: none !important; font-size: 18px; font-weight: 500; letter-spacing: -0.015em; transition: color 0.2s; }
.footer-social a:hover { color: #fff !important; }
.footer-copyright { color: var(--mid-grey); font-size: 18px; letter-spacing: -0.015em; }
.footer-lang { color: var(--mid-grey); font-size: 18px; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; }

/* ── MODAL ────────────────────────────── */
.video-modal { position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,.93); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.video-modal.open { opacity: 1; pointer-events: all; }
.modal-inner { width: min(92vw, 860px); display: flex; flex-direction: column; gap: 16px; }
.modal-video { width: 100%; max-height: 80vh; object-fit: contain; }
.modal-close { align-self: flex-end; background: none; border: 1px solid rgba(255,255,255,.4); color: #fff; font-size: 18px; font-weight: 500; letter-spacing: -0.015em; padding: 10px 24px; cursor: pointer; text-transform: uppercase; transition: border-color .2s, background .2s; border-radius: 0; }
.modal-close:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ── IN YOUR WORLD ───────────────────── */
.iyw-section { background: #fff; border-bottom: 1px solid var(--light-grey); }
.iyw-header { display: flex; align-items: center; justify-content: space-between; gap: clamp(24px,4vw,64px); padding: clamp(28px,3vw,40px) var(--px); border-bottom: 1px solid var(--light-grey); flex-wrap: wrap; }
.iyw-header-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.iyw-header-left .section-eyebrow { margin-bottom: 0; }
.iyw-header h2 { font-size: clamp(22px,2.5vw,34px); font-weight: 800; text-transform: uppercase; line-height: 1; letter-spacing: -0.015em; color: #000; margin: 0; }
.iyw-header-desc { font-size: 18px; color: #777; line-height: 22px; max-width: 380px; text-align: right; letter-spacing: -0.015em; }
.iyw-row { display: grid; grid-template-columns: 64px 1fr 1fr; border-bottom: 1px solid var(--light-grey); min-height: 480px; }
.iyw-row.iyw-flip { grid-template-columns: 1fr 1fr 64px; }
.iyw-num { background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--mid-grey); writing-mode: vertical-rl; transform: rotate(180deg); border-right: 1px solid var(--light-grey); flex-shrink: 0; }
.iyw-row.iyw-flip .iyw-num { transform: rotate(0deg); border-right: none; border-left: 1px solid var(--light-grey); }
.iyw-body { padding: clamp(40px,5vw,64px) clamp(32px,4vw,56px); display: flex; flex-direction: column; justify-content: center; }
.iyw-tag { display: inline-block; margin-bottom: 20px; width: fit-content; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #fff; background: var(--pink); padding: 5px 14px; }
.iyw-title { font-size: clamp(28px,3.5vw,52px); font-weight: 800; letter-spacing: -1.35px; text-transform: uppercase; line-height: 0.9; color: #000; margin-bottom: 20px; }
.iyw-desc { font-size: 18px; line-height: 22px; letter-spacing: -0.015em; color: #555; max-width: 440px; margin-bottom: 28px; }
.iyw-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.iyw-pill { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 14px; border: 1.5px solid var(--light-grey); color: var(--near-black); }
.iyw-pill.iyw-pill-accent { border-color: var(--blue); color: var(--blue); }
.iyw-media { position: relative; overflow: hidden; border-left: 1px solid var(--light-grey); }
.iyw-row.iyw-flip .iyw-media { border-left: none; border-right: 1px solid var(--light-grey); }
.iyw-media video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.iyw-row:hover .iyw-media video { transform: scale(1.03); }
.iyw-media-label { position: absolute; bottom: 16px; left: 16px; z-index: 2; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); background: rgba(0,0,0,0.55); padding: 5px 12px; }
@media (max-width: 860px) {
  .iyw-row, .iyw-row.iyw-flip { grid-template-columns: 1fr; }
  .iyw-num { display: none; }
  .iyw-media { min-height: 260px; border-left: none !important; border-right: none !important; border-top: 1px solid var(--light-grey); }
  .iyw-media { order: -1; }
  .iyw-row.iyw-flip .iyw-media { order: -1; }
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 860px) { .ncp-grid { grid-template-columns: repeat(2,1fr); } }
@media screen and (max-width: 991px) {
  .nav-content-panel { display: none; }
  .nav-links-panel { width: 100%; min-width: unset; }
  .sf-phone, .sf-contact-btn { display: none !important; }
}
@media (max-width: 560px) {
  :root { --px: 24px; --pad: 1.5rem; }
  .hero-h1 { font-size: clamp(48px, 14vw, 72px); }
  .btn-primary, .btn-outline, .btn-dark, .footer-lets-talk { width: 100%; padding: 1rem; text-align: center; }
  .btn-primary::after, .btn-outline::after, .btn-dark::after, .footer-lets-talk::after { display: none; }
  .ncp-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; gap: 32px; }
  .footer-right { align-items: flex-start; }
  .footer-nav a { font-size: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 400px) { .hero-btns { flex-direction: column; } }
