/* ==========================================================================
   Big Pictures Cine Enterprises — v2
   Bold cinematic dark theme
   ========================================================================== */

/* ---- Tokens ---- */
:root{
  --navy-950:#05070f;
  --navy-900:#0a0e1a;
  --navy-850:#0d1224;
  --navy-800:#111830;
  --navy-700:#161f3d;
  --navy-600:#212c52;
  --navy-line:#232d52;

  --red-600:#c62a24;
  --red-500:#e0342a;
  --red-400:#ef4a3c;
  --red-glow:rgba(224,52,42,.45);

  --ink-000:#ffffff;
  --ink-100:#f3f4f8;
  --ink-300:#c4c9dc;
  --ink-500:#8890ac;
  --ink-700:#565f80;

  --font-display: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 10px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---- Reset ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:88px}
body{
  background:var(--navy-900);
  color:var(--ink-300);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
h1,h2,h3,h4{font-family:var(--font-display);color:var(--ink-000);font-weight:400;line-height:1.05;letter-spacing:.02em}

.container{width:100%;padding-inline:clamp(1.25rem,3vw,3.75rem)}

::selection{background:var(--red-500);color:#fff}

/* subtle film-grain texture on the whole page */
body::before{
  content:"";
  position:fixed;inset:0;
  z-index:2000;
  pointer-events:none;
  opacity:.035;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='90'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---- Eyebrow / section labels ---- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.75rem;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--red-500);
}
.eyebrow::before{
  content:"";
  width:28px;height:2px;
  background:var(--red-500);
}

.section-head{
  max-width:640px;
  margin-bottom:clamp(2.5rem,5vw,4rem);
}
.section-head h2{
  font-size:clamp(2.4rem,5.5vw,4rem);
  letter-spacing:.03em;
  margin-top:.6rem;
}
.section-head--center{
  max-width:720px;
  margin-inline:auto;
  text-align:center;
}
.section-head--center .eyebrow::before{display:none}

/* ---- Buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.7em;
  padding:1em 2.1em;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.8rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  border-radius:2px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.btn-primary{
  background:var(--red-500);
  color:#fff;
  box-shadow:0 8px 30px -8px var(--red-glow);
}
.btn-primary:hover{
  background:var(--red-400);
  transform:translateY(-2px);
  box-shadow:0 14px 34px -8px var(--red-glow);
}
.btn-outline{
  background:transparent;
  color:var(--ink-100);
  border:1px solid var(--navy-line);
}
.btn-outline:hover{
  border-color:var(--red-500);
  color:var(--red-400);
  transform:translateY(-2px);
}

/* ---- Header / Nav ---- */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:900;
  padding:14px 0;
  transition:background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.is-scrolled{
  padding:8px 0;
  background:rgba(6,9,18,.86);
  backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 8px 30px -12px rgba(0,0,0,.6);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.25rem;
  flex-wrap:nowrap;
}
.brand{display:flex;align-items:center;flex-shrink:0}
.brand img{height:72px;width:auto;max-width:360px;object-fit:contain;transition:height .4s var(--ease)}
.site-header.is-scrolled .brand img{height:58px}

.main-nav{display:flex;min-width:0}
.main-nav ul{display:flex;flex-wrap:nowrap;gap:clamp(.85rem,1.4vw,1.7rem)}
.main-nav li{flex-shrink:0}
.main-nav a{
  position:relative;
  display:inline-block;
  white-space:nowrap;
  font-size:1rem;
  font-weight:700;
  letter-spacing:.11em;
  text-transform:uppercase;
  color:var(--ink-000);
  padding:.4em 0;
  transition:color .3s var(--ease);
}
.main-nav a::after{
  content:"";
  position:absolute;left:0;bottom:0;
  width:0;height:2px;
  background:var(--red-500);
  transition:width .35s var(--ease);
}
.main-nav a:hover,
.main-nav a.is-active{color:var(--ink-000)}
.main-nav a:hover::after,
.main-nav a.is-active::after{width:100%}

.header-cta{display:flex;align-items:center;gap:1.4rem;flex-shrink:0}

@media (max-width:1440px) and (min-width:1081px){
  .brand img{height:56px}
  .site-header.is-scrolled .brand img{height:48px}
  .main-nav ul{gap:.65rem}
  .main-nav a{font-size:.86rem;letter-spacing:.07em}
  .header-cta{gap:1rem}
  .header-cta .btn-primary{padding:.9em 1.5em}
}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  width:26px;
  z-index:1100;
}
.nav-toggle span{
  height:2px;background:var(--ink-000);
  transition:transform .35s var(--ease), opacity .35s var(--ease);
}

/* ---- Hero ---- */
.hero{
  position:relative;
  min-height:68vh;
  min-height:68svh;
  overflow:hidden;
  background:var(--navy-950);
}
.hero-slides{position:absolute;inset:0}
.hero-slide{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.08);
  transition:opacity 1.6s ease, transform 8s linear;
}
.hero-slide.is-active{opacity:1;transform:scale(1)}
.hero::before{
  content:"";
  position:absolute;inset:0;
  z-index:1;
  background:
    radial-gradient(120% 100% at 50% 30%, rgba(5,7,15,.02) 0%, rgba(5,7,15,.28) 70%, rgba(5,7,15,.6) 100%),
    linear-gradient(180deg, rgba(5,7,15,.4) 0%, rgba(5,7,15,0) 22%, rgba(5,7,15,.35) 78%, var(--navy-950) 100%);
}

.hero-dots{
  position:absolute;
  right:clamp(1.25rem,4vw,2.5rem);
  bottom:2rem;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:.6rem;
}
.hero-dots button{
  width:9px;height:9px;border-radius:50%;
  background:rgba(255,255,255,.3);
  transition:background .3s var(--ease), transform .3s var(--ease);
}
.hero-dots button.is-active{background:var(--red-500);transform:scale(1.3)}

.hero-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:flex-end;
  padding:clamp(2rem,6vw,4rem) clamp(1.25rem,4vw,3.75rem);
}
.hero-content h1{
  max-width:900px;
  font-size:clamp(2.6rem,7vw,5.5rem);
  letter-spacing:.02em;
  text-shadow:0 8px 40px rgba(0,0,0,.55);
}

/* On phones the hero box is much taller (relative to its width) than these
   wide/landscape source photos, so background-size:cover crops off big chunks
   of the left/right edges — including text baked into the images themselves
   (e.g. "Evoke 500B" product labeling). Switch to contain + a navy letterbox
   fill so the full frame is always visible, and trim the box height so the
   letterboxing doesn't turn into an oversized empty band. */
@media (max-width:768px){
  .hero{min-height:56vh;min-height:56svh}
  .hero-slide{
    background-size:contain;
    background-repeat:no-repeat;
    background-color:var(--navy-950);
  }
}

/* ---- Reveal on scroll ---- */
.reveal{opacity:0;transform:translateY(36px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.reveal-stagger > *{opacity:0;transform:translateY(30px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal-stagger.is-visible > *{opacity:1;transform:translateY(0)}
.reveal-stagger.is-visible > *:nth-child(1){transition-delay:.05s}
.reveal-stagger.is-visible > *:nth-child(2){transition-delay:.12s}
.reveal-stagger.is-visible > *:nth-child(3){transition-delay:.19s}
.reveal-stagger.is-visible > *:nth-child(4){transition-delay:.26s}
.reveal-stagger.is-visible > *:nth-child(5){transition-delay:.33s}
.reveal-stagger.is-visible > *:nth-child(6){transition-delay:.4s}
.reveal-stagger.is-visible > *:nth-child(n+7){transition-delay:.46s}

/* ---- Sections generic ---- */
section{position:relative;padding:clamp(5rem,10vw,8.5rem) 0}
.section-alt{background:var(--navy-850)}
#aboutus{padding-top:0}
#credits{padding-top:0;padding-bottom:0}
.divider-glow{
  height:1px;
  background:linear-gradient(90deg,transparent,var(--navy-line) 20%,var(--navy-line) 80%,transparent);
}

/* ---- About ---- */
.about-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:clamp(2.5rem,5vw,5rem);
  align-items:stretch;
}
.about-lede{
  display:flex;
  flex-direction:column;
  height:100%;
}
.about-lede h3{
  font-family:var(--font-body);
  font-weight:600;
  font-size:1.35rem;
  color:var(--ink-100);
  line-height:1.5;
  margin-bottom:1.4rem;
}
.about-lede p{margin-bottom:1.1rem}
.about-lede p:last-child{margin-bottom:0}
.about-tag{
  display:inline-block;
  margin-top:1.8rem;
  font-family:var(--font-display);
  letter-spacing:.06em;
  font-size:1.5rem;
  color:var(--ink-000);
  border-left:3px solid var(--red-500);
  padding-left:1rem;
}
.about-photo{
  flex:1;
  margin-top:2.25rem;
  min-height:240px;
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--navy-line);
}
.about-photo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:62% 45%;
  filter:grayscale(20%) brightness(.88);
  transition:transform .7s var(--ease), filter .5s var(--ease);
}
.about-photo:hover img{transform:scale(1.05);filter:grayscale(0%) brightness(1)}
.about-photo::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(200deg,transparent 60%,rgba(5,7,15,.55));
  pointer-events:none;
}

.feature-cards{display:grid;gap:1.1rem}
.feature-card{
  background:linear-gradient(155deg,var(--navy-800),var(--navy-850));
  border:1px solid var(--navy-line);
  border-radius:var(--radius);
  padding:1.9rem 2rem;
  transition:border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.feature-card:hover{
  border-color:var(--red-600);
  transform:translateY(-4px);
  background:linear-gradient(155deg,var(--navy-700),var(--navy-800));
}
.feature-card h4{
  font-family:var(--font-body);
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink-000);
  margin-bottom:.6rem;
}
.feature-card p{font-size:.95rem;color:var(--ink-500)}

/* ---- Inventory ---- */
.inv-group{margin-top:clamp(3rem,6vw,4.5rem)}
.inv-group:first-of-type{margin-top:0}
.inv-group-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:2rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--navy-line);
}
.inv-group-head h3{
  font-size:clamp(1.5rem,3vw,2.1rem);
  letter-spacing:.04em;
}
.inv-group-head span{
  font-size:.75rem;
  letter-spacing:.2em;
  color:var(--ink-700);
  text-transform:uppercase;
  white-space:nowrap;
}
.inv-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:1.75rem;
}
.inv-card{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--navy-800);
  border:1px solid var(--navy-line);
  cursor:pointer;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.inv-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px -18px rgba(0,0,0,.65);
  border-color:var(--red-600);
}
.inv-card:focus-visible{outline:2px solid var(--red-500);outline-offset:2px}
.inv-card .thumb{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f5f5f5;
}
.inv-card .thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s var(--ease);
}
.inv-card:hover .thumb img{transform:scale(1.06)}
.inv-card .thumb img.obj-top{object-position:top}
.inv-card .thumb::after{
  content:"";
  position:absolute;inset:0;
  background:radial-gradient(circle, rgba(5,7,15,.12) 0%, transparent 65%);
  opacity:0;
  transition:opacity .35s var(--ease);
}
.inv-card:hover .thumb::after{opacity:1}
.zoom-hint{
  position:absolute;
  right:.9rem;bottom:.9rem;
  width:34px;height:34px;
  border-radius:50%;
  background:rgba(5,7,15,.75);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events:none;
  z-index:1;
}
.zoom-hint svg{width:16px;height:16px}
.inv-card:hover .zoom-hint,
.gallery-item:hover .zoom-hint{opacity:1;transform:translateY(0)}
.inv-card .cap{
  padding:1.1rem 1.25rem 1.25rem;
  background:var(--navy-800);
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase;
  color:var(--ink-100);
  border-top:1px solid var(--navy-line);
}
/* Vehicles grid: caption bar hidden from the card view (image-only cards),
   but the markup stays in place since the lightbox still reads it as the caption. */
#invpanel-vehicles .inv-card .cap{display:none}
.inv-tabs{
  display:flex;
  gap:.25rem;
  margin-bottom:clamp(2rem,4vw,3rem);
  border-bottom:1px solid var(--navy-line);
  overflow-x:auto;
  scrollbar-width:none;
}
.inv-tabs::-webkit-scrollbar{display:none}
.inv-tab{
  position:relative;
  flex-shrink:0;
  padding:1rem 1.6rem;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--ink-500);
  white-space:nowrap;
  transition:color .3s var(--ease);
}
.inv-tab::after{
  content:"";
  position:absolute;left:1.6rem;right:1.6rem;bottom:-1px;
  height:2px;
  background:var(--red-500);
  transform:scaleX(0);
  transition:transform .3s var(--ease);
}
.inv-tab:hover{color:var(--ink-100)}
.inv-tab.is-active{color:var(--ink-000)}
.inv-tab.is-active::after{transform:scaleX(1)}

.inv-tab-panel[hidden]{display:none}

@media (max-width:600px){
  .inv-tab{padding:.85rem 1.1rem;font-size:.68rem;letter-spacing:.09em}
  .inv-tab::after{left:1.1rem;right:1.1rem}
}

.inv-grid--empty{
  display:block;
  padding:2.5rem 1.75rem;
  border-radius:var(--radius);
  background:var(--navy-800);
  border:1px dashed var(--navy-line);
}
.inv-empty{
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink-700);
}

/* ---- Generic "coming soon" placeholder section ---- */
.empty-state{
  max-width:640px;
  margin-inline:auto;
  padding:3rem 1.75rem;
  border-radius:var(--radius);
  background:var(--navy-800);
  border:1px dashed var(--navy-line);
  text-align:center;
}

/* ---- Lightbox ---- */
.lightbox{
  position:fixed;inset:0;
  z-index:2100;
  display:flex;align-items:center;justify-content:center;
  background:rgba(5,7,15,.93);
  backdrop-filter:blur(8px);
  opacity:0;visibility:hidden;
  transition:opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.is-open{opacity:1;visibility:visible}
.lightbox-content{
  display:flex;flex-direction:column;align-items:center;
  max-width:min(88vw,860px);
  max-height:88vh;
  padding:0 1rem;
}
.lightbox-img{
  max-width:100%;
  max-height:68vh;
  width:auto;height:auto;
  object-fit:contain;
  border-radius:var(--radius);
  box-shadow:0 30px 70px -20px rgba(0,0,0,.7);
}
.lightbox-cap{
  margin-top:1.4rem;
  font-family:var(--font-body);
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-size:.95rem;
  color:var(--ink-100);
  text-align:center;
}
.lightbox-count{
  margin-top:.5rem;
  font-size:.72rem;
  letter-spacing:.15em;
  color:var(--ink-700);
}
.lightbox-close,
.lightbox-nav{
  position:absolute;
  border-radius:50%;
  background:var(--navy-800);
  border:1px solid var(--navy-line);
  color:var(--ink-100);
  display:flex;align-items:center;justify-content:center;
  transition:border-color .3s var(--ease), color .3s var(--ease), transform .2s var(--ease);
}
.lightbox-close:hover,
.lightbox-nav:hover{border-color:var(--red-500);color:var(--red-400)}
.lightbox-close{
  top:20px;right:20px;
  width:46px;height:46px;
}
.lightbox-close svg{width:20px;height:20px}
.lightbox-nav{
  top:50%;
  transform:translateY(-50%);
  width:54px;height:54px;
}
.lightbox-nav:hover{transform:translateY(-50%) scale(1.06)}
.lightbox-nav svg{width:22px;height:22px}
.lightbox-prev{left:16px}
.lightbox-next{right:16px}

@media (max-width:700px){
  .lightbox-nav{width:44px;height:44px}
  .lightbox-nav svg{width:18px;height:18px}
  .lightbox-prev{left:8px}
  .lightbox-next{right:8px}
  .lightbox-close{top:12px;right:12px;width:40px;height:40px}
  .lightbox-img{max-height:58vh}
}

/* ---- Projects marquee ---- */
.marquee{
  position:relative;
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.marquee::-webkit-scrollbar{display:none}
.marquee-track{
  position:relative;
  display:flex;
  width:max-content;
  gap:.9rem;
  padding-block:.25rem 1.5rem;
  animation:marquee-scroll var(--marquee-duration,70s) linear infinite;
}
.marquee:hover .marquee-track,
.marquee.is-paused .marquee-track{
  animation-play-state:paused;
}
@keyframes marquee-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(var(--marquee-shift,-50%))}
}
@media (prefers-reduced-motion:reduce){
  .marquee-track{animation:none}
}
.gallery-item{
  position:relative;
  flex:0 0 auto;
  /* Sized off viewport height (not width) so the card scales up/down with the
     hero to fill the remaining space in the first screen right up to the fold,
     while keeping About Us just out of view on load. See #credits below. */
  width:clamp(150px,calc(32vh - 12px),360px);
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--navy-line);
  background:#f5f5f5;
  cursor:pointer;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.gallery-item:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px -18px rgba(0,0,0,.65);
  border-color:var(--red-600);
}
.gallery-item:focus-visible{outline:2px solid var(--red-500);outline-offset:2px}
.gallery-item img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s var(--ease);
}
.gallery-item:hover img{transform:scale(1.05)}

/* ---- Partners ---- */
.partners-strip{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1.25rem;
}
.partner-tile{
  display:flex;align-items:center;justify-content:center;
  padding:1.25rem 1.1rem;
  background:var(--navy-800);
  border:1px solid var(--navy-line);
  border-radius:var(--radius);
  min-height:124px;
  transition:border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.partner-tile img{
  max-height:68px;max-width:100%;width:auto;
  object-fit:contain;
  filter:brightness(0) invert(1) opacity(.72);
  transition:filter .35s var(--ease);
}
.partner-tile:hover{
  border-color:var(--red-600);
  transform:translateY(-4px);
  background:var(--navy-700);
}
.partner-tile:hover img{filter:brightness(0) invert(1) opacity(1)}

/* ---- Contact ---- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(2.5rem,5vw,5rem);
}
.contact-form{
  background:linear-gradient(160deg,var(--navy-800),var(--navy-850));
  border:1px solid var(--navy-line);
  border-radius:var(--radius);
  padding:clamp(1.75rem,3vw,2.75rem);
}
.field{margin-bottom:1.3rem}
.field label{
  display:block;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--ink-500);
  margin-bottom:.6rem;
}
.field input,.field textarea{
  width:100%;
  background:var(--navy-900);
  border:1px solid var(--navy-line);
  border-radius:4px;
  padding:.9em 1em;
  color:var(--ink-100);
  font-family:var(--font-body);
  font-size:.95rem;
  transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus,.field textarea:focus{
  outline:none;
  border-color:var(--red-500);
  box-shadow:0 0 0 3px rgba(224,52,42,.18);
}
.field textarea{resize:vertical;min-height:120px}

.contact-info{display:flex;flex-direction:column;gap:1.4rem}
.info-card{
  display:flex;gap:1.1rem;
  padding:1.5rem;
  background:var(--navy-800);
  border:1px solid var(--navy-line);
  border-radius:var(--radius);
  transition:border-color .35s var(--ease), transform .35s var(--ease);
}
.info-card:hover{border-color:var(--red-600);transform:translateX(4px)}
.info-icon{
  flex:none;
  width:46px;height:46px;
  border-radius:50%;
  background:rgba(224,52,42,.14);
  color:var(--red-400);
  display:flex;align-items:center;justify-content:center;
}
.info-icon svg{width:22px;height:22px}
.info-card h4{
  font-family:var(--font-body);font-weight:700;font-size:.85rem;
  letter-spacing:.14em;text-transform:uppercase;color:var(--ink-000);
  margin-bottom:.4rem;
}
.info-card p{font-size:.92rem;color:var(--ink-500);line-height:1.6}
.info-card a:hover{color:var(--red-400)}

.map-frame{
  margin-top:.4rem;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--navy-line);
  filter:grayscale(.55) invert(.92) contrast(.9);
  min-height:220px;
}
.map-frame iframe{width:100%;height:220px;border:0;display:block}

/* ---- Footer ---- */
.site-footer{
  background:var(--navy-950);
  border-top:1px solid var(--navy-line);
  padding:2.4rem 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.footer-brand{display:flex;align-items:center;gap:.7rem}
.footer-brand img{height:34px;width:auto;max-width:190px;object-fit:contain;opacity:.85}
.footer-nav{display:flex;gap:1.6rem;flex-wrap:wrap}
.footer-nav a{font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-500)}
.footer-nav a:hover{color:var(--red-400)}
.copyright{font-size:.78rem;color:var(--ink-700)}
.copyright a{color:var(--ink-500)}
.copyright a:hover{color:var(--red-400)}

/* ---- WhatsApp floating button ---- */
.wa-float{
  position:fixed;
  left:22px;bottom:22px;
  z-index:800;
  width:58px;height:58px;
  border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 30px -8px rgba(37,211,102,.6);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wa-float svg{width:30px;height:30px;fill:#fff}
.wa-float:hover{transform:scale(1.08);box-shadow:0 14px 36px -6px rgba(37,211,102,.75)}
.wa-float::before{
  content:"";
  position:absolute;inset:0;
  border-radius:50%;
  background:#25D366;
  animation:waPulse 2.4s ease-out infinite;
  z-index:-1;
}
@keyframes waPulse{
  0%{opacity:.55;transform:scale(1)}
  100%{opacity:0;transform:scale(1.9)}
}

/* ---- Back to top ---- */
.to-top{
  position:fixed;
  right:22px;bottom:22px;
  z-index:800;
  width:46px;height:46px;
  border-radius:50%;
  background:var(--navy-800);
  border:1px solid var(--navy-line);
  color:var(--ink-100);
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;
  transform:translateY(12px);
  transition:opacity .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.to-top.is-visible{opacity:1;visibility:visible;transform:translateY(0)}
.to-top:hover{border-color:var(--red-500);color:var(--red-400)}

/* ---- Page banner (inner pages) ---- */
.page-banner{
  position:relative;
  padding:clamp(9rem,16vw,12rem) 0 clamp(3.5rem,6vw,5rem);
  background:linear-gradient(180deg,rgba(5,7,15,.5),var(--navy-900) 90%), var(--navy-950) center/cover;
  border-bottom:1px solid var(--navy-line);
}
.page-banner .eyebrow{margin-bottom:1rem}
.page-banner h1{font-size:clamp(2.6rem,6vw,4.4rem)}
.breadcrumb{margin-top:1rem;font-size:.78rem;letter-spacing:.08em;color:var(--ink-700)}
.breadcrumb a:hover{color:var(--red-400)}

/* ---- Responsive ---- */
@media (max-width:1080px){
  /* Shrink the wordmark on mobile so it can never eat the whole header width.
     Without this, the un-scrolled logo renders at its full ~72px/360px-wide size
     (it only shrinks once .is-scrolled kicks in on scroll) and, on phones
     narrower than ~460px, that alone pushes .nav-toggle off the right edge of
     the viewport — the hamburger button becomes invisible/untappable until the
     user scrolls first. */
  .brand img{height:48px}
  .site-header.is-scrolled .brand img{height:40px}

  .main-nav{
    position:fixed;inset:0;
    z-index:1000;
    background:rgba(6,9,18,.98);
    backdrop-filter:blur(10px);
    display:flex;
    flex-direction:column;
    align-items:center;
    /* No justify-content:center here on purpose — see .main-nav ul margin below. */
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    padding:6.5rem 1.5rem 2.5rem;
    opacity:0;visibility:hidden;
    transition:opacity .4s var(--ease), visibility .4s var(--ease);
  }
  .main-nav.is-open{opacity:1;visibility:visible}
  .main-nav ul{
    flex-direction:column;text-align:center;gap:1.8rem;
    width:100%;
    /* auto margins absorb any leftover space so the list sits centered when it
       fits the viewport, but collapse to 0 (i.e. the list simply starts at the
       top, right under the padding above) the moment it's taller than the
       viewport — that keeps "Home" reachable and scrollable into view instead
       of being centered half off-screen with no way to scroll up to it. */
    margin:auto 0;
  }
  .main-nav a{font-size:1.1rem}
  .nav-toggle{display:flex;position:relative;z-index:1200}
  .nav-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle.is-open span:nth-child(2){opacity:0}
  .nav-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .header-cta .btn-primary{display:none}

  .about-grid,.contact-grid{grid-template-columns:1fr}
  .partners-strip{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:1300px) and (min-width:1081px){
  .partners-strip{grid-template-columns:repeat(3,1fr)}
}

@media (max-width:600px){
  .footer-inner{flex-direction:column;align-items:flex-start}
}
