/* ─── Page layout — if.css handles all typography, colours, buttons ─── */

/* Fix: if.css sets body { opacity:0 } and relies on if.js to fade in.
   if.js is included so this is just a safety fallback. */
body { opacity: 1; }

:root {
  --pad: 4%;
}

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

/* ── FIXED NAV STRIP ──────────────────────────── */
.sf {
  position: fixed; top: 49px; right: var(--pad);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.sf-top-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 1rem 1rem 2rem;
  background: transparent;
  transition: background 800ms ease;
}
.sf.scrolled .sf-top-row { background: #000; }
@media (max-width: 767px) { .sf.scrolled .sf-top-row { background: transparent; box-shadow: none; } }
body.nav-open .sf-phone { max-width: 0 !important; opacity: 0 !important; }
body.nav-open .sf-contact-btn { opacity: 0 !important; pointer-events: none !important; max-height: 0 !important; }
body.nav-open .sf.scrolled .sf-top-row { background: transparent; }
.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; }
.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; }
.sf-contact-btn a {
  background: #fff; color: #000 !important; border: 1px solid #000;
  font-size: 19px; font-weight: 500; letter-spacing: -0.015em;
  text-transform: uppercase; text-decoration: none !important;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1rem; position: relative; transition: all 800ms ease;
}
.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; }
.sf-contact-btn a:hover::after { background: #000; }

/* Burger */
.sf-burger {
  width: 30px; height: 25px; position: relative;
  cursor: pointer; z-index: 10001; flex-shrink: 0; bottom: 1px;
}
.sf-burger span {
  position: absolute; top: 50%; left: 50%; margin-left: -15px;
  display: block; width: 30px; height: 2px; background: #fff;
  transition: background-color .25s, transform .25s, opacity .25s;
}
.sf-burger span::before, .sf-burger span::after {
  content: ""; display: block; width: 30px; height: 2px;
  background: #fff; 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); }

/* ── SITE HEADER ──────────────────────────────── */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center;
  padding: 49px 0 2rem;
  padding-left: calc(var(--pad) + 1rem);
}
.site-header .bi img { width: 150px; filter: brightness(0) invert(1); }

/* ── NAV OVERLAY ──────────────────────────────── */
body.nav-open { overflow: hidden; }
.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; 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; }
.nav-privacy { padding-bottom: 4rem; }
.nav-privacy a { font-size: 18px; font-weight: 500; color: #fff; text-decoration: none !important; }
.nav-social { display: flex; gap: 24px; padding-top: 4rem; }
.nav-social a { font-size: 18px; font-weight: 500; color: #fff; text-decoration: none !important; }
.nav-social a:hover { color: #2A657D; }

/* ── HERO ─────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 520px; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.25) 50%, transparent 100%);
}
.hero-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: #982062; z-index: 3; }
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 130px var(--pad) clamp(40px, 5vw, 80px);
}
.eyebrow {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .28em;
  color: #DAAD52; display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { display: none; }
.hero-h1 {
  font-size: clamp(72px, 14vw, 220px); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 0.88; color: #fff; margin: 0;
}
.hero-h1 .outline { -webkit-text-fill-color: transparent; -webkit-text-stroke: 2px #fff; }
.hero-foot {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.hero-desc {
  font-size: 20px; font-weight: 400; line-height: 26px; letter-spacing: -0.015em;
  color: rgba(255,255,255,.85); max-width: 520px;
  border-left: 3px solid #982062; padding-left: 20px;
}
.scroll-hint {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .28em;
  color: rgba(255,255,255,.45);
}
.scroll-line {
  width: 1px; height: 36px; background: rgba(255,255,255,.3);
  animation: scrollAnim 1.5s infinite;
}
@keyframes scrollAnim {
  0%   { transform: translateY(-8px); opacity: .2; }
  50%  { opacity: .8; }
  100% { transform: translateY(8px); opacity: .2; }
}

/* ── CONTENT SECTIONS ─────────────────────────── */
.article       { background: #fff; }
.article.light { background: #F6F6F6; }
.article.white { background: #fff; }
.col { padding: 0 var(--pad); }

.text-block {
  padding: 7rem 0 5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: start;
  position: relative;
}
.text-block::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 1px; background: #DBDBDB;
}
.text-block-left  { display: flex; flex-direction: column; padding-right: clamp(30px,4vw,80px); padding-top: 2rem; }
.text-block-right {
  display: flex; flex-direction: column; justify-content: flex-start;
  border-left: 1px solid #DBDBDB;
  padding-left: clamp(30px,4vw,80px); padding-top: 2rem; align-self: stretch;
}

.section-label {
  font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.015em;
  color: #2A657D; display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem;
}
.section-label::before { display: none; }

.section-h2 {
  font-size: clamp(36px, 5.5vw, 77px); font-weight: 700; text-transform: uppercase;
  letter-spacing: -1.35px; line-height: 0.85; color: #000; margin-bottom: 2rem;
}
.section-h2 .hollow-text { -webkit-text-fill-color: transparent; -webkit-text-stroke: 1px currentColor; }
.section-h2 .pink-word   { color: #982062; -webkit-text-fill-color: #982062; -webkit-text-stroke: 0; }

.prose p { font-size: 18px; line-height: 22px; letter-spacing: -0.015em; color: #555; margin-bottom: 1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: #000; font-weight: 700; }
.pull { border-left: 3px solid #982062; padding: 8px 0 8px 22px; margin: 1.5rem 0; }
.pull p { font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.015em; line-height: 1.1; color: #000; margin: 0; }

/* ── PAIRED IMAGES ────────────────────────────── */
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.pair-cell { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.pair-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.pair-cell:hover img { transform: scale(1.03); }
.pair-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 44px 16px 13px;
  background: linear-gradient(transparent, rgba(0,0,0,.4));
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em;
  color: rgba(255,255,255,.55);
}

/* ── VIDEO PAIR ───────────────────────────────── */
.vid-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.vid-cell { position: relative; overflow: hidden; aspect-ratio: 16/9; background: #000; }
.vid-cell video { width: 100%; height: 100%; object-fit: cover; }
.vid-cell img { width: 100%; height: 100%; object-fit: cover; object-position: bottom; }
.vid-cell::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.08); pointer-events: none; }
.vid-label {
  position: absolute; bottom: 13px; left: 16px; z-index: 1;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em;
  color: rgba(255,255,255,.45);
}

/* ── PINK BAND ────────────────────────────────── */
.pink-band { background: #982062; padding: 7rem var(--pad); }
.pink-band-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center;
}
.pink-big  { font-size: clamp(36px, 5.5vw, 77px); font-weight: 700; text-transform: uppercase; letter-spacing: -1.35px; line-height: 0.85; color: #fff; padding-right: clamp(30px,4vw,80px); }
.pink-side { font-size: 18px; line-height: 22px; color: rgba(255,255,255,.85); border-left: 1px solid rgba(255,255,255,.35); padding-left: clamp(30px,4vw,80px); }

/* ── VIDEO BREAK ──────────────────────────────── */
.vid-break { position: relative; aspect-ratio: 16/9; max-height: 80vh; overflow: hidden; }
.vid-break video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.vid-break-shade { position: absolute; inset: 0; background: rgba(0,0,0,.2); }

/* ── CLOSING ──────────────────────────────────── */
.closing { background: #000; padding: 7rem var(--pad); border-top: 3px solid #982062; }
.closing-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center;
}
.closing .section-label { color: rgba(255,255,255,.6); }
.closing .section-h2 { color: #fff; }
.closing .prose p { color: rgba(255,255,255,.75); }
.closing .prose strong { color: #fff; }
.closing-left { padding-right: clamp(30px,4vw,80px); }
.closing .closing-right { border-left: 1px solid rgba(255,255,255,.15); padding-left: clamp(30px,4vw,80px); }

/* ── CTA ──────────────────────────────────────── */
.cta { background: #DAAD52; padding: 7rem var(--pad); }
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center;
}
.cta-h2  { font-size: 85px; font-weight: 700; text-transform: uppercase; letter-spacing: -1.35px; line-height: 0.85; color: #000; padding-right: clamp(30px,4vw,80px); }
.cta-h2 span { color: #982062; }
.cta-right { border-left: 1px solid rgba(0,0,0,.2); padding-left: clamp(30px,4vw,80px); }
.cta-sub   { font-size: 18px; line-height: 22px; color: rgba(0,0,0,.7); margin-bottom: 2.5rem; }
.cta-row   { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-dark {
  border-radius: 0; font-size: 22px; font-weight: 500; letter-spacing: -0.015em;
  padding: 1rem 7rem 1rem 1rem; position: relative; display: inline-block;
  text-decoration: none !important; background: #000; color: #fff; transition: all 800ms ease;
}
.btn-dark::after { content: ""; position: absolute; top: 50%; right: 28px; height: 1px; width: 60px; background: #fff; }
.btn-dark:hover  { background: #2A657D; }
.btn-outline-dark {
  border-radius: 0; font-size: 22px; font-weight: 500; letter-spacing: -0.015em;
  padding: 1rem 7rem 1rem 1rem; position: relative; display: inline-block;
  text-decoration: none !important; background: rgba(196,196,196,.15); color: #000;
  border: 1px solid rgba(0,0,0,.3); transition: all 800ms ease;
}
.btn-outline-dark::after { content: ""; position: absolute; top: 50%; right: 28px; height: 1px; width: 60px; background: #000; }
.btn-outline-dark:hover  { background: #000; color: #fff; }
.btn-outline-dark:hover::after { background: #fff; }

/* ── TRUST BAR ────────────────────────────────── */
.trust-bar { background: #982062; padding: 2.8rem 0; }
.trust-bar-inner { padding: 0 var(--pad); display: flex; flex-direction: column; align-items: center; text-align: center; }
.trust-bar-label { font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.015em; color: rgba(255,255,255,.8); margin-bottom: 3rem; }
.trust-stats { display: flex; justify-content: center; width: 100%; }
.trust-stat  { padding: 0 clamp(32px,6vw,96px); text-align: center; }
.trust-stat + .trust-stat { border-left: 1px solid rgba(255,255,255,.25); }
.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); }

/* ── FOOTER ───────────────────────────────────── */
footer { background: #000; padding: 3rem 0; }
.footer-grid  { display: grid; grid-template-columns: 280px 1fr; gap: 64px; margin-bottom: 3rem; padding: 0 var(--pad); }
.footer-right { display: flex; justify-content: flex-end; align-items: flex-start; gap: 80px; }
.footer-logo-block { display: flex; flex-direction: column; gap: 28px; }
.footer-lets-talk {
  font-size: 22px; font-weight: 500; letter-spacing: -0.015em; text-transform: uppercase;
  color: #fff; text-decoration: none !important; border: 1px solid #fff;
  display: inline-block; 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; }
.footer-lets-talk:hover::after { background: #000; }
.footer-nav   { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.footer-nav a { font-size: 30px; font-weight: 700; text-transform: uppercase; color: #fff; text-decoration: none !important; line-height: 1.2; transition: color .2s; }
.footer-nav a:hover { color: #2A657D; }
.footer-legal { display: flex; flex-direction: column; gap: 8px; }
.footer-legal a { font-size: 18px; font-weight: 500; color: #B7B7B7; text-decoration: none !important; transition: color .2s; }
.footer-legal a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem var(--pad) 0; display: flex; justify-content: space-between; align-items: center; }
.footer-social { display: flex; gap: 2rem; }
.footer-social a { font-size: 18px; font-weight: 500; color: #B7B7B7; text-decoration: none !important; transition: color .2s; }
.footer-social a:hover { color: #fff; }
.footer-lang { font-size: 18px; color: #B7B7B7; cursor: pointer; }

/* ── RESPONSIVE ───────────────────────────────── */

/* ≥1600px — very large screens */
@media screen and (min-width: 1600px) {
  :root { --pad: 6%; }
  .trust-stat-num { font-size: 110px; }
}

/* ≤1199px — large laptop */
@media screen and (max-width: 1199px) {
  .trust-stat-num { font-size: 60px; }
  .text-block { padding: 5rem 0 4rem; gap: clamp(30px,3vw,60px); }
  .text-block-right { padding-left: clamp(30px,3vw,60px); }
  .pink-band, .closing, .cta { padding: 5rem var(--pad); }
  .trust-bar { padding: 2.45rem 0; }
}

/* ≤991px — tablet */
@media screen and (max-width: 991px) {
  :root { --pad: 3%; }
  /* nav */
  .nav-links-panel { width: 100%; min-width: unset; padding: 7rem 2rem 3rem; }
  .nav-content-panel { display: none; }
  .sf-phone, .sf-contact-btn { display: none !important; }
  /* hero */
  .hero-content { padding-top: 100px; }
  .hero-desc { font-size: 17px; line-height: 23px; }
  /* text blocks → single column */
  .text-block { grid-template-columns: 1fr; padding: 4rem 0 3rem; gap: 2rem; }
  .text-block-left { padding-top: 0; }
  .text-block-right { border-left: none; padding-left: 0; padding-top: 2rem; border-top: 1px solid #DBDBDB; }
  /* pink band, closing, cta → single column */
  .pink-band, .closing, .cta { padding: 4rem var(--pad); }
  .pink-band-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pink-side { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.3); padding-top: 1.5rem; }
  .closing-inner { grid-template-columns: 1fr; gap: 2rem; }
  .closing .closing-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.15); padding-top: 2rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(0,0,0,.15); padding-top: 2rem; }
  /* images */
  .pair, .vid-pair { grid-template-columns: 1fr; }
  /* trust bar */
  .trust-stats { flex-wrap: wrap; }
  .trust-stat { padding: 1.5rem clamp(20px,4vw,64px); }
  .trust-stat + .trust-stat { border-left: none; border-top: 1px solid rgba(255,255,255,.25); }
  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer-right { flex-direction: column; gap: 2rem; }
  .footer-nav a { font-size: 24px; }
}

/* ≤767px — mobile landscape / large phone */
@media screen and (max-width: 767px) {
  :root { --pad: 1.5rem; }
  .site-header { padding: 20px var(--pad); padding-left: var(--pad); }
  .site-header .bi img { width: 150px; }
  .sf { top: 20px; }
  .hero-content { padding: 90px var(--pad) clamp(32px,6vw,60px); }
  .hero-h1 { font-size: clamp(72px, 18vw, 110px); }
  .hero-h1 .outline { -webkit-text-stroke: 1.5px #fff; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-desc { font-size: 16px; line-height: 22px; max-width: 100%; }
  .scroll-hint { display: none; }
  .section-h2 { font-size: clamp(30px, 8vw, 48px); margin-bottom: 1.25rem; }
  .cta-h2 { font-size: 42px; letter-spacing: -.5px; }
  .trust-stat-num { font-size: 44px; }
  .prose p { font-size: 16px; line-height: 22px; }
  .pull { margin: 1rem 0; }
  .pull p { font-size: 18px; }
  .pink-big { padding-right: 0; }
  .cta-row { flex-direction: column; gap: 8px; }
  .btn-dark, .btn-outline-dark, .footer-lets-talk { display: block; width: 100%; padding: 1.2rem 1rem; text-align: center; }
  .btn-dark::after, .btn-outline-dark::after, .footer-lets-talk::after { display: none; }
  .footer-grid { padding: 0 var(--pad); }
  .footer-nav a { font-size: 20px; }
  footer { padding: 2.5rem 0 1.5rem; }
}

/* ≤559px — small phone */
@media screen and (max-width: 559px) {
  :root { --pad: 1.25rem; }
  .hero-h1 { font-size: clamp(64px, 17vw, 90px); }
  .ncp-grid { grid-template-columns: 1fr; }
  .cta-h2 { font-size: 34px; }
  .trust-stat-num { font-size: 38px; }
  .text-block { padding: 3rem 0 2rem; }
  .pink-band, .closing, .cta { padding: 3rem var(--pad); }
  .trust-bar { padding: 1.75rem 0; }
  .trust-stat { padding: 1rem var(--pad); width: 100%; }
  .footer-grid { padding: 0 var(--pad); gap: 1.5rem; margin-bottom: 1.5rem; }
  .footer-bottom { padding: 1rem var(--pad) 0; flex-direction: column; gap: 1rem; text-align: center; }
  .footer-social { justify-content: center; }
  footer { padding: 2rem 0 1rem; }
}

/* ≤359px — very small phone */
@media screen and (max-width: 359px) {
  :root { --pad: 1rem; }
  .hero-h1 { font-size: 58px; }
  .cta-h2 { font-size: 28px; }
  .trust-stat-num { font-size: 32px; }
  .pink-band, .closing, .cta { padding: 2.5rem var(--pad); }
}
