/* =========================================================
   CASA DO EMPREITEIRO — Design System
   Azul-marca #2A26C0 · Azul institucional #0A1A45 · Amarelo #F7C600
   Motivo de assinatura: "ficha técnica" (cantos em L + tracejado)
   extraído dos posts reais de Instagram da loja.
   ========================================================= */

:root{
  --blue-mark: #2A26C0;
  --blue-deep: #0A1A45;
  --blue-deep-2: #0E2158;
  --yellow: #F7C600;
  --concrete: #E3EBF8;
  --paper: #F2F7FE;
  --ink: #12131A;
  --steel: #5B6270;
  --line: rgba(10, 26, 69, 0.12);
  --line-on-dark: rgba(247, 198, 0, 0.35);

  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --container: 1200px;
  --radius: 3px;
}

*, *::before, *::after{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
}
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:
    linear-gradient(180deg, #f7faff 0%, #eef4fc 38%, #e4ecf8 100%);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
img.img-error{
  opacity:.38;
  filter:grayscale(1) contrast(.85);
}
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ margin:0; font-family:var(--display); text-transform:uppercase; line-height:1.05; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font:inherit; cursor:pointer; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ position:relative; }

@supports (content-visibility: auto) {
  .about,
  .categories,
  .diff,
  .wa-cta,
  .location,
  .faq,
  .nr-section,
  .final-cta,
  .footer{
    content-visibility:auto;
    contain-intrinsic-size: 1px 900px;
  }
}

:focus-visible{ outline:3px solid var(--yellow); outline-offset:2px; }

.preserve-case{ text-transform:none; }

/* ---------- ficha técnica frame (signature element) ---------- */
.ficha{
  position:relative;
  border:1px dashed var(--line);
  padding:18px;
}
.media-surface{
  position:relative;
}
.media-surface.is-loading{
  overflow:hidden;
}
.media-surface.is-loading::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(110deg, rgba(255,255,255,0) 10%, rgba(255,255,255,.18) 24%, rgba(255,255,255,0) 38%),
    linear-gradient(180deg, rgba(10,26,69,.12), rgba(10,26,69,.05));
  background-size:200% 100%, 100% 100%;
  animation:skeleton-shine 1.15s linear infinite;
  pointer-events:none;
}
.media-surface.is-loading > img,
.media-surface.is-loading > iframe{
  opacity:0;
}
.media-surface.is-loading > *{
  position:relative;
  z-index:1;
}
.media-surface > img,
.media-surface > iframe{
  transition:opacity .28s ease;
}
.ficha::before, .ficha::after,
.ficha .corner-tl, .ficha .corner-br{ content:""; }
.ficha-corner{
  position:absolute;
  width:16px; height:16px;
  border-color: var(--yellow);
  border-style: solid;
  border-width:0;
}
.ficha .c-tl{ top:-1px; left:-1px; border-top-width:3px; border-left-width:3px; }
.ficha .c-br{ bottom:-1px; right:-1px; border-bottom-width:3px; border-right-width:3px; }
.ficha-tag{
  position:absolute;
  top:-13px; left:16px;
  background:var(--paper);
  padding:0 8px;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.08em;
  color:var(--steel);
  text-transform:uppercase;
}
.on-dark .ficha, .ficha.on-dark{ border-color: var(--line-on-dark); }
.on-dark .ficha-tag, .ficha.on-dark .ficha-tag{ background:var(--blue-deep); color:#B9C2DA; }

/* ---------- hazard stripe (from real promo posts) ---------- */
.hazard{
  height:10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 18px,
    var(--blue-deep) 18px 36px
  );
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 26px;
  font-family:var(--mono);
  font-weight:600;
  font-size:14px;
  letter-spacing:.03em;
  text-transform:uppercase;
  border-radius:var(--radius);
  border:2px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
  box-sizing:border-box;
}
.btn:hover{ transform:translateY(-2px); }
.btn-yellow{ background:var(--yellow); color:var(--blue-deep); }
.btn-yellow:hover{ background:#FFD528; }
.btn-outline{ border-color: currentColor; color:inherit; background:transparent; }
.btn-outline:hover{ background: rgba(255,255,255,0.08); }
.btn-outline.on-light:hover{ background: rgba(10,26,69,0.06); }
.btn svg{ width:18px; height:18px; }

/* ---------- skeletons ---------- */
.skeleton-line,
.skeleton-icon,
.skeleton-arrow,
.skeleton-media{
  display:block;
  position:relative;
  overflow:hidden;
  background:rgba(42,38,192,.10);
}
.skeleton-line::after,
.skeleton-icon::after,
.skeleton-arrow::after,
.skeleton-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg, rgba(255,255,255,0) 12%, rgba(255,255,255,.32) 28%, rgba(255,255,255,0) 44%);
  transform:translateX(-120%);
  animation:skeleton-shine 1.15s linear infinite;
}
.skeleton-line{
  height:11px;
  border-radius:999px;
}
.skeleton-line-sm{ width:18px; height:12px; }
.skeleton-line-xs{ width:56%; }
.skeleton-line-md{ width:72%; }
.skeleton-line-lg{ width:90%; }
.skeleton-icon{
  width:52px;
  height:52px;
  border-radius:10px;
}
.skeleton-media{
  width:56px;
  height:56px;
  border-radius:18px;
}
.skeleton-arrow{
  width:18px;
  height:18px;
  border-radius:4px;
  position:absolute;
  right:15px;
  bottom:14px;
}
@keyframes skeleton-shine{
  to{ transform:translateX(120%); }
}

/* ---------- header ---------- */
.header{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg, rgba(10,26,69,.98), rgba(12,31,82,.94));
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition: box-shadow .25s ease;
}
.header.scrolled{ box-shadow:0 8px 24px rgba(0,0,0,0.25); }
.nav{
  display:flex; align-items:center; justify-content:center;
  padding:16px 0;
  gap:48px;
}
.brand{ display:flex; align-items:center; gap:10px; color:#fff; position:absolute; left:24px; }
.brand img{ width:36px; height:36px; border-radius:50%; }
.brand-text{ font-family:var(--display); font-size:13px; font-weight:700; letter-spacing:.01em; color:#fff; }
.main-nav{ display:flex; gap:28px; }
.main-nav a{
  color:#D9E2F5; font-size:13px; font-weight:600; text-transform:uppercase;
  letter-spacing:.05em; font-family:var(--mono); position:relative; padding-bottom:4px;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--yellow); transition:width .2s ease;
}
.main-nav a:hover::after{ width:100%; }
.nav-actions{ display:flex; align-items:center; gap:16px; position:absolute; right:24px; }
.menu-toggle{ display:none; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); color:#fff; padding:6px; }
.menu-toggle svg{ width:26px; height:26px; }

/* ---------- ticker ---------- */
.ticker-wrap{
  background:var(--blue-deep-2);
  border-top:1px dashed var(--line-on-dark);
  overflow:hidden;
  padding:14px 0;
}
.ticker{
  display:flex; gap:40px; width:max-content;
  animation: scroll-left 32s linear infinite;
}
.ticker span{
  font-family:var(--mono); font-size:13px; letter-spacing:.06em;
  color:#B9C2DA; text-transform:uppercase; display:flex; align-items:center; gap:12px;
  white-space:nowrap;
}
.ticker span::before{ content:"—"; color:var(--yellow); }
@keyframes scroll-left{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
@keyframes rise-up{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}
@keyframes fade-in{
  from{ opacity:0; }
  to{ opacity:1; }
}

/* ---------- section headers ---------- */
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; margin-bottom:44px; flex-wrap:wrap;
}
.section-head h2{ font-size:clamp(28px, 3.4vw, 42px); color:var(--blue-deep); max-width:16ch; }
.section-head p{ color:var(--steel); max-width:38ch; font-size:15px; line-height:1.6; }
.on-dark .section-head h2{ color:#fff; }
.on-dark .section-head p{ color:#B9C2DA; }

/* ---------- about ---------- */
.about{ padding:96px 0; background:var(--paper); }
.about-grid{
  display:grid; grid-template-columns: 1fr; gap:64px; align-items:start;
}
.about-visual{ position:sticky; top:110px; display:none; }
.about-visual .emblem{
  background:var(--blue-deep);
  aspect-ratio:1/1.05;
  display:flex; align-items:center; justify-content:center;
  padding:40px;
}
.about-visual .emblem img{ width:70%; }
.about-copy p{ font-size:16px; line-height:1.75; color:var(--ink); margin-bottom:18px; max-width:56ch; }
.about-copy p:first-of-type{ font-size:20px; font-weight:700; color:var(--blue-deep); }
.about-facts{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); margin-top:36px; }
.about-facts div{ background:linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%); padding:20px 22px; }
.about-facts strong{ display:block; font-family:var(--display); font-size:15px; color:var(--blue-deep); text-transform:uppercase; margin-bottom:4px; }
.about-facts span{ font-size:13px; color:var(--steel); }

/* ---------- categories (discrete, icon wall) ---------- */
.categories{ background:linear-gradient(180deg, #e4ebf8 0%, #edf3fb 100%); padding:96px 0; }
.cat-grid{
  display:grid; grid-template-columns:repeat(6, 1fr);
  gap:32px; margin-bottom:44px;
}
.seg-card{
  display:flex; flex-direction:column; gap:16px; align-items:center; text-align:center;
  padding:20px;
  transition:all .2s ease;
  border-radius:8px;
  border:1px solid rgba(42, 38, 192, 0.12);
  position:relative;
  cursor:pointer;
  background:linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}
.seg-card:hover{
  background:linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  transform:translateY(-6px);
  border-color:var(--blue-mark);
}
.cat-grid.is-loading .seg-card{
  pointer-events:none;
}
.seg-card-skeleton{
  min-height:190px;
  align-items:stretch;
  justify-content:space-between;
  text-align:left;
  background:rgba(255,255,255,.66);
  border:1px solid rgba(10,26,69,.08);
  box-shadow:none;
  cursor:default;
  opacity:1 !important;
  transform:none !important;
}
.seg-card-skeleton:hover{
  transform:none;
  background:rgba(255,255,255,.66);
  border-color:rgba(10,26,69,.08);
  box-shadow:none;
}
.seg-card-skeleton .seg-top{
  flex-direction:row;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}
.seg-card-skeleton .seg-content{
  display:grid;
  gap:10px;
}
.seg-card-skeleton .skeleton-line-sm{
  width:22px;
}
.seg-card-skeleton .skeleton-line-md{
  width:68%;
}
.seg-card-skeleton .skeleton-line-lg{
  width:92%;
}
.seg-card-skeleton .skeleton-line-xs{
  width:55%;
}
.seg-card-skeleton .seg-arrow{
  opacity:.8;
}
.seg-top{ 
  display:flex; align-items:center; justify-content:center; flex-direction:column; width:100%; gap:8px;
}
.seg-card i.seg-icon{
  font-size:30px;
  line-height:1;
  color:var(--blue-mark);
  transition:transform .25s ease, color .25s ease;
  flex-shrink:0;
  opacity:.9;
}
.seg-card:hover i.seg-icon{
  transform:scale(1.08);
  opacity:1;
}
.seg-card h3{ 
  font-family:var(--body); font-weight:700; font-size:14px; 
  text-transform:none; letter-spacing:0; color:var(--ink); line-height:1.4;
}
.seg-desc{
  position:absolute;
  bottom:100%;
  left:50%;
  transform:translateX(-50%) translateY(-10px);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  background:var(--blue-deep);
  color:#fff;
  padding:12px 16px;
  border-radius:6px;
  font-size:12px;
  line-height:1.5;
  white-space:normal;
  width:160px;
  z-index:10;
  font-weight:500;
}
.seg-desc::after{
  content:"";
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-left:6px solid transparent;
  border-right:6px solid transparent;
  border-top:6px solid var(--blue-deep);
}
.seg-card:hover .seg-desc{
  opacity:1;
  transform:translateX(-50%) translateY(0);
  pointer-events:auto;
}
.cat-note{ 
  background:linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border-left:4px solid var(--blue-mark);
  padding:18px 22px;
  border-radius:6px;
  text-align:center;
}
.cat-note p{ 
  font-size:14px; color:var(--steel); margin:0; font-weight:500;
}

/* ---------- diferenciais (spec list, not icon columns) ---------- */
.diff{ padding:96px 0; background:linear-gradient(180deg, #e4ebf8 0%, #edf3fb 100%); }
.diff-list{ border-top:1px solid var(--line); }
.diff-row{
  display:grid;
  grid-template-columns: 42px minmax(0, 1fr) minmax(0, 1.6fr);
  gap:18px;
  align-items:center;
  padding:26px 4px;
  border-bottom:1px solid var(--line);
}
.diff-icon{
  width:42px;
  height:42px;
  justify-self:start;
}
.diff-row h3{
  font-family:var(--body);
  font-weight:800;
  font-size:18px;
  text-transform:none;
  color:var(--blue-deep);
}
.diff-row p{
  color:var(--steel);
  font-size:14.5px;
  line-height:1.6;
}

/* ---------- whatsapp cta (hazard stripe frame) ---------- */
.wa-cta{ background:var(--yellow); }
.wa-inner{ padding:80px 0; text-align:center; }
.wa-inner .eyebrow{ color:var(--blue-deep); justify-content:center; }
.wa-inner .eyebrow::before{ background:var(--blue-deep); }
.wa-inner h2{ color:var(--blue-deep); font-size:clamp(30px,4.2vw,50px); max-width:20ch; margin:0 auto 18px; }
.wa-inner p{ color:#3A3410; max-width:52ch; margin:0 auto 34px; font-size:16px; line-height:1.6; }
.wa-inner .btn-yellow{ background:var(--blue-deep); color:#fff; }
.wa-inner .btn-yellow:hover{ background:var(--blue-mark); }

/* ---------- location ---------- */
.location{ padding:96px 0; background:linear-gradient(180deg, #eef4fc 0%, #e8effa 100%); }
.loc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.loc-copy p.lead{ font-size:16px; color:var(--steel); line-height:1.7; margin:18px 0 30px; max-width:44ch; }
.loc-facts{ display:flex; flex-direction:column; gap:20px; margin-bottom:34px; }
.loc-facts div{ display:flex; gap:14px; align-items:flex-start; }
.loc-facts svg{ width:20px; height:20px; color:var(--blue-mark); flex-shrink:0; margin-top:2px; }
.loc-facts strong{ display:block; font-size:14px; color:var(--blue-deep); margin-bottom:2px; }
.loc-facts span{ font-size:14px; color:var(--steel); }
.loc-facts a{
  font-size:14px;
  color:var(--steel);
  text-decoration:underline;
  text-underline-offset:2px;
}
.loc-facts a:hover{ color:var(--blue-deep); }
.loc-actions{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}
.loc-actions .btn{
  min-width:0;
  padding-inline:14px;
  justify-content:center;
  text-align:center;
  white-space:normal;
}
.map-frame{
  aspect-ratio:4/3.4;
  padding:12px;
  background:linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border:1px solid rgba(10,26,69,.12);
  box-shadow:0 12px 28px rgba(10,26,69,.08);
}
.map-frame iframe{ width:100%; height:100%; border:0; filter:grayscale(0.3) contrast(1.05); }

/* ---------- FAQ ---------- */
.faq{ padding:96px 0; background:linear-gradient(180deg, #e4ebf8 0%, #edf3fb 100%); }
.faq-list{ max-width:820px; border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; background:none; border:0; text-align:left;
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 4px; font-family:var(--body); font-weight:700; font-size:16px; color:var(--blue-deep);
}
.faq-q .plus{ font-family:var(--mono); font-size:20px; color:var(--blue-mark); transition:transform .2s ease; flex-shrink:0; margin-left:16px; }
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-item.open .faq-a{ max-height:200px; }
.faq-a p{ padding:0 4px 24px 40px; color:var(--steel); font-size:14.5px; line-height:1.6; max-width:60ch; }

/* ---------- NR certification section ---------- */
.nr-section{ background:linear-gradient(180deg, #eef4fc 0%, #e8effa 100%); padding:96px 0; }
.nr-grid{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:32px; margin-bottom:48px;
}
.nr-card{
  background:linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  padding:32px 28px;
  border-radius:8px;
  text-align:center;
  transition:all .25s ease;
  border:1px solid rgba(42, 38, 192, 0.12);
}
.nr-card:hover{
  transform:translateY(-8px);
  border-color:var(--blue-mark);
  box-shadow:0 12px 24px rgba(42, 38, 192, 0.1);
}
.nr-icon{
  width:42px;
  height:42px;
  margin:0 auto 16px;
  display:grid;
  place-items:center;
}
.nr-icon i{
  font-size:18px;
  line-height:1;
}
.nr-card:hover .nr-icon i{
  transform:none;
}
.nr-card h3{
  font-family:var(--body);
  font-weight:700;
  font-size:16px;
  color:var(--blue-deep);
  margin-bottom:12px;
  text-transform:none;
  letter-spacing:0;
}
.nr-card p{
  font-size:14px;
  color:var(--steel);
  line-height:1.6;
  margin:0;
}
.nr-cta{ text-align:center; }

/* ---------- final CTA ---------- */
.final-cta{ background:var(--blue-deep); color:#fff; text-align:center; padding:90px 0; }
.final-cta h2{ font-size:clamp(28px,4vw,46px); max-width:18ch; margin:0 auto 18px; }
.final-cta p{ color:#B9C2DA; max-width:48ch; margin:0 auto 34px; font-size:16px; }

/* ---------- footer ---------- */
.footer{ background:#07132F; color:#8E9AC0; padding:56px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:44px; }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-brand img{ width:34px; height:34px; border-radius:50%; }
.footer-brand strong{ color:#fff; font-family:var(--display); font-size:14px; text-transform:uppercase; }
.footer p.desc{ font-size:13.5px; line-height:1.6; max-width:32ch; }
.footer h4{ color:#fff; font-family:var(--mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; }
.footer ul li{ margin-bottom:10px; font-size:13.5px; }
.footer ul a{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.footer ul a:hover{ color:var(--yellow); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08); padding-top:24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:12px; font-family:var(--mono); color:#5C6791;
}

/* ---------- floating whatsapp ---------- */
.floating-wa{
  position:fixed; right:20px; bottom:20px; z-index:60;
  display:flex; align-items:center; gap:10px;
  background:var(--yellow); color:var(--blue-deep);
  padding:14px 18px; border-radius:40px;
  font-family:var(--mono); font-weight:700; font-size:13px; text-transform:uppercase;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  opacity:0; transform:translateY(16px); pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.floating-wa.visible{ opacity:1; transform:translateY(0); pointer-events:auto; }
.floating-wa svg{ width:20px; height:20px; }
.floating-wa .label{ display:none; }
@media (min-width:640px){ .floating-wa .label{ display:inline; } }

/* ================= RESPONSIVE ================= */
@media (max-width:1024px){
  .about-grid{ grid-template-columns:1fr; }
  .categories .cat-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .diff-row{ grid-template-columns:42px minmax(0, 1fr); }
  .diff-row p{ grid-column:2/3; }
  .loc-grid{ grid-template-columns:1fr; }
  .nav{ gap:32px; }
  .nr-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:1024px){
  .hero-grid{ grid-template-columns:1fr; padding-bottom:24px; }
  .main-nav{ display:none; }
  .menu-toggle{ display:inline-flex; }
  .brand{ position:static; }
  .nav{ justify-content:space-between; }
}
@media (max-width:640px){
  .cat-grid{ grid-template-columns:repeat(3, 1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .hero-actions .btn{ flex:1; justify-content:center; }
  .hero-below{
    gap:12px;
  }
  .hero-below .lead{
    max-width:none;
    font-size:16px;
  }
  section{ padding-left:0; }
  .about,.categories,.diff,.location,.faq,.nr-section{ padding:64px 0; }
  .wa-inner,.final-cta{ padding:64px 0; }
  .nr-grid{ grid-template-columns:1fr; }
}
@media (max-width:420px){
  .cat-grid{ grid-template-columns:repeat(2, 1fr); }
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .ticker{ animation:none; }
  .btn:hover{ transform:none; }
}

/* =========================================================
   UI/UX REFINEMENT
   Navegação mais clara, ícones próprios, loader e mobile UX.
   ========================================================= */

:root{
  --shadow-soft: 0 12px 32px rgba(10, 26, 69, 0.10);
  --shadow-card: 0 16px 40px rgba(10, 26, 69, 0.13);
  --scroll-progress: 0%;
}

/* ---------- loading screen ---------- */
.page-loader{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  background:var(--blue-deep);
  color:#fff;
  transition:opacity .45s ease, visibility .45s ease;
  animation:loader-failsafe 0s 4s forwards;
}
.page-loader.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  animation:none;
}
@keyframes loader-failsafe{
  to{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
  }
}
.loader-mark{
  width:min(280px,72vw);
  text-align:center;
}
.loader-logo{
  width:76px;
  height:76px;
  margin:0 auto 22px;
  padding:7px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:50%;
  background:rgba(255,255,255,.04);
  box-shadow:0 0 0 8px rgba(247,198,0,.06);
}
.loader-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}
.loader-line{
  height:3px;
  width:100%;
  overflow:hidden;
  background:rgba(255,255,255,.12);
}
.loader-line span{
  display:block;
  width:42%;
  height:100%;
  background:var(--yellow);
  animation:loader-progress 1.05s cubic-bezier(.22,.61,.36,1) infinite;
}
.loader-mark p{
  margin-top:14px;
  font-family:var(--mono);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:#B9C2DA;
}
@keyframes loader-progress{
  0%{transform:translateX(-120%);}
  55%{transform:translateX(115%);}
  100%{transform:translateX(240%);}
}

/* ---------- header/navigation ---------- */
.header::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width:var(--scroll-progress);
  height:2px;
  background:var(--yellow);
  transition:width .08s linear;
}
.main-nav{
  align-items:center;
}
.main-nav a{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#AEB7D0;
}
.main-nav a i{
  font-size:12px;
  opacity:.75;
  transition:opacity .2s ease, color .2s ease;
}
.main-nav a.active,
.main-nav a:hover{
  color:#fff;
}
.main-nav a.active::after{ width:100%; }
.main-nav a.active i,
.main-nav a:hover i{
  color:var(--yellow);
  opacity:1;
}
.nav-cta{
  min-height:44px;
  padding:11px 17px;
}
.nav-cta i{ font-size:16px; }

/* ---------- menu toggle ---------- */
.menu-toggle{
  position:relative;
  width:42px;
  height:42px;
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:6px;
  background:rgba(255,255,255,.04);
}
.menu-toggle span{
  display:block;
  width:19px;
  height:2px;
  border-radius:10px;
  background:#fff;
  transition:transform .22s ease, opacity .22s ease;
}
.menu-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity:0; }
.menu-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- reveal ---------- */
.about-copy,
.diff-row,
.seg-card,
.loc-copy,
.nr-card,
.faq-item{
  transition:
    opacity .55s ease var(--reveal-delay, 0ms),
    transform .55s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms),
    background .2s ease,
    box-shadow .2s ease,
    border-color .2s ease,
    padding-left .2s ease;
}
.about-copy,
.diff-row,
.seg-card,
.loc-copy,
.nr-card,
.faq-item{
  opacity:0;
  transform:translateY(18px);
}
.about-copy.is-visible,
.diff-row.is-visible,
.seg-card.is-visible,
.loc-copy.is-visible,
.nr-card.is-visible,
.faq-item.is-visible{
  opacity:1;
  transform:none;
}

/* ---------- location / CTA ---------- */
.loc-actions .btn-yellow,
.wa-inner .btn-yellow,
.final-cta .btn-yellow{
  box-shadow:0 10px 24px rgba(10,26,69,.16);
}

/* ---------- mobile menu ---------- */
@media (max-width:1024px){
  .menu-toggle{ display:flex; }
  .nav-actions{ right:16px; }
  .nav-cta{ margin-right:8px; }
  .nav-cta span{ display:none; }
  .nav-cta{ width:42px; height:42px; padding:0; justify-content:center; }
  .main-nav{
    position:absolute;
    left:14px;
    right:14px;
    top:calc(100% + 10px);
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:10px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:10px;
    background:rgba(7,19,47,.98);
    box-shadow:0 18px 40px rgba(0,0,0,.28);
    transform:translateY(-8px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .main-nav.is-open{
    transform:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
  .main-nav a{
    width:100%;
    padding:13px 14px;
    border-radius:7px;
    font-size:12px;
    gap:10px;
  }
  .main-nav a::after{ display:none; }
  .main-nav a.active,
  .main-nav a:hover{
    background:rgba(255,255,255,.06);
  }
  .main-nav a i{
    width:18px;
    text-align:center;
  }
  body.nav-open{ overflow:hidden; }
}

@media (max-width:640px){
  .container{ padding:0 18px; }
  .hero{
    padding-top:44px;
  }
  .hero h1{
    font-size:clamp(34px, 10vw, 48px);
    max-width:12.5ch;
    line-height:1;
  }
  .hero p.lead{
    font-size:15px;
    max-width:none;
    width:100%;
    max-inline-size:none;
    overflow-wrap:normal;
    word-break:normal;
    text-wrap:pretty;
  }
  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
  }
  .hero-actions .btn{
    width:100%;
  }
  .hero-meta{
    gap:14px;
  }
  .hero-meta > div{
    min-width:calc(50% - 7px);
  }
  .hero-trust{
    display:grid;
    grid-template-columns:1fr;
    gap:9px;
  }
  .cat-grid{
    gap:10px;
  }
  .seg-card{
    min-height:178px;
    padding:14px;
  }
  .seg-icon-wrap{
    width:46px;
    height:46px;
  }
  .seg-icon{
    font-size:26px;
  }
  .seg-content h3{
    font-size:14px;
    padding-right:8px;
  }
  .seg-content p{
    font-size:11px;
  }
  .section-head{
    margin-bottom:32px;
  }
  .section-head::before{
    top:-14px;
  }
  .floating-wa{
    right:14px;
    bottom:14px;
    width:48px;
    height:48px;
    padding:0;
    justify-content:center;
    border-radius:50%;
  }
  .map-frame{
    aspect-ratio:1/1;
  }
  .faq-q{
    padding:18px 0;
    font-size:14px;
  }
  .diff-row{
    grid-template-columns:1fr;
    gap:10px;
    align-items:start;
    padding:22px 4px;
  }
  .diff-icon,
  .diff-row h3,
  .diff-row p{ grid-column:1; }
  .diff-icon{
    width:44px;
    height:44px;
  }
  .diff-row h3{
    font-size:16px;
    line-height:1.15;
  }
  .diff-row p{
    font-size:14px;
    line-height:1.55;
    margin-top:0;
  }
  .wa-inner .btn-yellow{
    width:100%;
    max-width:100%;
    justify-content:center;
    white-space:normal;
    text-align:center;
    overflow-wrap:anywhere;
    line-height:1.2;
    padding:14px 16px;
    font-size:12px;
    letter-spacing:.02em;
  }
  .nr-cta .btn-yellow,
  .final-cta .btn-yellow{
    width:100%;
    max-width:100%;
    justify-content:center;
    white-space:normal;
    text-align:center;
    overflow-wrap:anywhere;
    word-break:break-word;
    line-height:1.2;
    padding:14px 16px;
    font-size:12px;
    letter-spacing:.02em;
  }
}

@media (prefers-reduced-motion: reduce){
  .page-loader,
  .loader-line span,
  .media-surface::before,
  .skeleton-line::after,
  .skeleton-icon::after,
  .skeleton-arrow::after,
  .main-nav,
  .menu-toggle span,
  .seg-card,
  .seg-card-skeleton,
  .seg-icon-wrap,
  .seg-arrow,
  .about-copy,
  .diff-row,
  .loc-copy,
  .nr-card,
  .faq-item{
    animation:none !important;
    transition:none !important;
  }
  .about-copy,
  .diff-row,
  .seg-card,
  .loc-copy,
  .nr-card,
  .faq-item{
    opacity:1 !important;
    transform:none !important;
  }
}

/* =========================================================
   Minimal industrial refresh
   ========================================================= */

:root{
  --blue-mark:#24416E;
  --blue-deep:#0B1D36;
  --blue-deep-2:#102544;
  --yellow:#F0B429;
  --concrete:#F6F8FB;
  --paper:#FFFFFF;
  --ink:#111827;
  --steel:#5D6574;
  --line:rgba(17,24,39,.10);
  --line-on-dark:rgba(255,255,255,.14);
  --display:'Manrope', system-ui, sans-serif;
  --body:'Manrope', system-ui, sans-serif;
  --mono:'IBM Plex Mono', ui-monospace, monospace;
  --container:1180px;
  --radius:14px;
  --shadow-soft:0 12px 30px rgba(11,29,54,.08);
  --shadow-card:0 18px 40px rgba(11,29,54,.10);
}

body{
  background:var(--paper);
  color:var(--ink);
}

h1,h2,h3{
  font-family:var(--display);
  text-transform:none;
  letter-spacing:-0.04em;
  line-height:1.02;
  font-weight:800;
}

.header{
  background:linear-gradient(180deg, rgba(10,26,69,.97), rgba(12,31,82,.94));
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
}
.header.scrolled{
  box-shadow:0 10px 28px rgba(11,29,54,.18);
}
.brand,
.brand-text,
.main-nav a{
  color:#fff;
}
.brand-text{
  font-weight:900;
  font-size:19px;
}
.main-nav a{
  color:#D9E2F5;
  letter-spacing:.03em;
}
.main-nav a::after{
  background:var(--yellow);
}
.main-nav a.active,
.main-nav a:hover{
  color:#fff;
}
.nav-cta{
  box-shadow:none;
}
.menu-toggle{
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
}
.menu-toggle span{
  background:#fff;
}

.hero{
  position:relative;
  overflow:hidden;
  background:var(--paper);
  color:var(--ink);
  padding:34px 0 0;
}
.hero .eyebrow{
  display:none;
}
.hero-grid{
  display:grid;
  position:relative;
  isolation:isolate;
  grid-template-columns:minmax(0,.94fr) minmax(0,1.06fr);
  grid-template-rows:auto auto;
  gap:22px 26px;
  min-height:clamp(380px, 52vh, 560px);
  align-items:stretch;
  padding:clamp(22px, 2.2vw, 30px);
  border-radius:28px;
  overflow:hidden;
}
.hero-grid::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(239,245,252,.98) 0%, rgba(239,245,252,.94) 18%, rgba(232,240,250,.84) 30%, rgba(232,240,250,.54) 44%, rgba(232,240,250,.20) 58%, rgba(232,240,250,0) 78%),
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 42%, rgba(10,26,69,.12) 100%);
}
.hero-copy{
  position:relative;
  z-index:2;
  padding:8px 0 0;
  margin-bottom:0;
  max-width:min(52ch, 100%);
  grid-column:1;
  grid-row:1;
}
.hero h1{
  color:var(--blue-deep);
  font-size:clamp(40px, 4.9vw, 68px);
  line-height:.98;
  max-width:12.8ch;
}
.hero h1 em{
  color:var(--yellow);
}
.hero p.lead{
  color:var(--steel);
  font-size:16px;
  line-height:1.6;
  max-width:44ch;
  margin:16px 0 24px;
}
.hero-actions{
  margin-bottom:0;
}
.hero-below{
  position:relative;
  z-index:2;
  grid-column:1 / -1;
  grid-row:2;
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:center;
  gap:18px 24px;
  width:100%;
  max-width:none;
  padding:0;
}
.hero-below .lead{
  margin:0;
  max-width:46ch;
}
.hero-below .hero-actions{
  justify-self:end;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.hero .btn-outline{
  border-color:var(--line);
  color:var(--blue-deep);
  background:rgba(255,255,255,.82);
}
.hero .btn-outline:hover{
  background:#f1f5fb;
}
.hero-visual{
  position:relative;
  inset:auto;
  z-index:0;
  width:100%;
  height:100%;
  display:block;
  grid-column:2;
  grid-row:1;
  align-self:stretch;
  pointer-events:none;
}
.hero-visual .ficha{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.hero-entry-card{
  display:flex;
  align-items:stretch;
  height:100%;
  min-height:0;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}
.hero-visual img{
  width:100%;
  height:100%;
  border-radius:inherit;
  object-fit:cover;
  object-position:78% 50%;
  transform:scale(.94) translateX(0);
}
.hero-meta,
.hero-trust,
.ticker-wrap{
  display:none;
}

.section-head{
  margin-bottom:34px;
}
.section-head h2{
  max-width:14ch;
  color:var(--blue-deep);
}
.section-head p{
  color:var(--steel);
}

.about,
.location,
.nr-section,
.final-cta{
  background:var(--paper);
}
.categories,
.diff,
.faq{
  background:var(--concrete);
}
.about,
.categories,
.diff,
.location,
.faq,
.nr-section{
  padding:88px 0;
}

.about-copy p:first-of-type{
  color:var(--blue-deep);
}
.about-facts{
  border-radius:16px;
  overflow:hidden;
}
.about-facts div{
  background:#fff;
}

.categories{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cat-grid{
  gap:18px;
}
.seg-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
}
.seg-card:hover{
  background:#fff;
  border-color:rgba(36,65,110,.26);
  box-shadow:var(--shadow-soft);
}
.seg-icon-wrap{
  border-radius:12px;
  border-color:rgba(36,65,110,.12);
}
.seg-arrow{
  opacity:.45;
}
.cat-note{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
}

.diff-list{
  border-top:1px solid var(--line);
}
.diff-row{
  padding:24px 8px;
}
.diff-row:hover{
  background:rgba(255,255,255,.7);
}
.diff-row h3{
  font-size:18px;
}

.wa-cta{
  background:var(--blue-deep);
  color:#fff;
}
.wa-inner{
  padding:82px 0;
}
.wa-inner h2{
  color:#fff;
  max-width:18ch;
}
.wa-inner p{
  color:#D0D7E6;
}
.wa-inner .btn-yellow{
  background:var(--yellow);
  color:var(--blue-deep);
}
.wa-inner .btn-yellow:hover{
  background:#F6C54B;
}
.hazard{
  height:1px;
  background:rgba(255,255,255,.12);
}

.loc-grid{
  gap:48px;
}
.loc-facts{
  gap:18px;
}
.loc-facts div{
  padding:14px 0;
  border-bottom:1px solid var(--line);
}
.map-frame{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.faq-list{
  border-top:1px solid var(--line);
}
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-q{
  color:var(--blue-deep);
}
.faq-a p{
  color:var(--steel);
}

.nr-section{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.nr-overview{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:24px;
}
.nr-overview div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:20px 20px 18px;
  box-shadow:var(--shadow-soft);
}
.nr-overview strong{
  display:block;
  font-family:var(--mono);
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--blue-mark);
  font-size:11px;
  margin-bottom:10px;
}
.nr-overview span{
  display:block;
  color:var(--steel);
  font-size:14px;
  line-height:1.6;
}
.nr-grid{
  gap:18px;
  margin-bottom:28px;
}
.nr-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  text-align:left;
  padding:28px;
  box-shadow:var(--shadow-soft);
}
.nr-card:hover{
  box-shadow:var(--shadow-card);
  border-color:rgba(36,65,110,.22);
}
.nr-icon{
  width:54px;
  height:54px;
  margin:0 0 18px;
  border-radius:14px;
  background:rgba(36,65,110,.06);
  color:var(--blue-mark);
}
.nr-icon i{
  font-size:22px;
}
.nr-card h3{
  font-size:18px;
  margin-bottom:10px;
}
.nr-card p{
  color:var(--steel);
}
.nr-cta .btn-yellow{
  box-shadow:0 10px 24px rgba(11,29,54,.10);
}

.final-cta{
  background:var(--blue-deep);
  color:#fff;
}
.final-cta h2{
  color:#fff;
}
.final-cta p{
  color:#D0D7E6;
}

.footer{
  background:#08162C;
}
.footer-brand strong,
.footer h4{
  letter-spacing:.06em;
}

@media (max-width:1024px){
  .hero-grid{
    grid-template-columns:1fr;
  }
  .nr-overview{
    grid-template-columns:1fr;
  }
}

@media (max-width:1024px){
  .hero-visual{
    display:block;
  }
  .header{
    background:linear-gradient(180deg, rgba(10,26,69,.97), rgba(12,31,82,.95));
  }
  .nav-cta{
    display:none;
  }
  .nav-actions{
    gap:8px;
  }
}

@media (max-width:640px){
  .hero{
    padding-top:28px;
  }
  .hero h1{
    max-width:12.5ch;
    font-size:clamp(30px, 10.2vw, 44px);
    line-height:1;
  }
  .about,
  .categories,
  .diff,
  .location,
  .faq,
  .nr-section{
    padding:72px 0;
  }
  .wa-inner,
  .final-cta{
    padding:72px 0;
  }
  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }
  .hero-below{
    grid-template-columns:1fr;
    max-width:100%;
    gap:12px;
    justify-items:start;
  }
  .hero-below .lead{
    max-width:none;
  }
  .hero-actions .btn{
    width:100%;
    max-width:100%;
    justify-content:center;
    white-space:normal;
    text-align:center;
    overflow-wrap:anywhere;
    line-height:1.2;
  }
}

/* ---------- NR refresh ---------- */
.nr-intro-top{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:28px;
  align-items:center;
  margin-bottom:8px;
}
.nr-intro-badge{
  width:240px;
  height:240px;
  flex:0 0 auto;
  justify-self:end;
}
.nr-intro{
  margin-bottom:18px;
  padding:26px 28px;
  background:linear-gradient(135deg, #fff 0%, #F7F9FC 100%);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow-soft);
}
.nr-label{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(36,65,110,.08);
  color:var(--blue-mark);
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.nr-intro h3{
  font-size:clamp(24px, 3vw, 34px);
  color:var(--blue-deep);
  max-width:18ch;
  margin-bottom:14px;
}
.nr-intro p{
  color:var(--steel);
  font-size:15px;
  line-height:1.65;
  max-width:62ch;
}
.nr-points{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:20px;
}
.nr-points div{
  padding:16px 16px 15px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
}
.nr-points strong{
  display:block;
  margin-bottom:8px;
  color:var(--blue-deep);
  font-family:var(--display);
  font-size:15px;
}
.nr-points span{
  color:var(--steel);
  font-size:13px;
  line-height:1.55;
}

.nr-acronyms{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(36,65,110,.12);
}
.nr-acronyms strong{
  display:block;
  margin-bottom:10px;
  color:var(--blue-deep);
  font-family:var(--display);
  font-size:14px;
}
.nr-acronyms div{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px 16px;
}
.nr-acronyms span{
  color:var(--steel);
  font-size:13px;
  line-height:1.5;
}
.nr-acronyms b{
  color:var(--blue-deep);
}

.nr-note{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:18px 20px;
  margin-bottom:26px;
  border:1px solid rgba(36,65,110,.14);
  border-radius:16px;
  background:rgba(36,65,110,.04);
}
.nr-note strong{
  flex:0 0 auto;
  color:var(--blue-deep);
  font-family:var(--display);
  font-size:14px;
}
.nr-note span{
  color:var(--steel);
  font-size:14px;
  line-height:1.6;
}

@media (max-width:1024px){
  .nr-points{
    grid-template-columns:1fr;
  }
  .nr-acronyms div{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .nr-intro-top{
    grid-template-columns:1fr;
    gap:12px;
  }
  .nr-intro-badge{
    width:132px;
    height:132px;
    justify-self:start;
  }
  .nr-intro{
    padding:22px 18px;
  }
  .nr-note{
    flex-direction:column;
  }
}

/* ---------- final UX fixes ---------- */
:root{
  --header-h: 82px;
}

html{
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body{
  padding-top: var(--header-h);
}

.header{
  position:fixed;
  inset:0 0 auto 0;
  width:100%;
  backdrop-filter:blur(16px);
}

.nav{
  min-height: var(--header-h);
  padding:12px 0;
}

.brand{
  gap:12px;
}

.brand img{
  width:48px;
  height:48px;
  border-radius:50%;
}

.brand-mark{
  width:48px;
  height:48px;
  display:block;
  border-radius:50%;
  object-fit:cover;
  background:#fff;
  border:1px solid rgba(247,198,0,.22);
  box-shadow:0 0 0 1px rgba(255,255,255,.04);
  flex:0 0 auto;
}

.hero-visual{
  display:block;
  margin-bottom:0;
}

.hero-entry-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  min-height:100%;
  padding:0;
  background:transparent;
  border:0;
  border-radius:24px;
  box-shadow:none;
  overflow:hidden;
}

.hero-entry-media{
  position:relative;
  overflow:hidden;
  width:100%;
  height:100%;
  min-height:0;
  aspect-ratio:16 / 9;
  border-radius:24px;
  background:var(--blue-deep);
}

.hero-entry-media::before{
  display:none;
}

.hero-entry-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 16%;
  display:block;
  transform:scale(1.03);
  position:relative;
  z-index:0;
}

.hero-entry-fade{
  display:none;
}

.hero-entry-tag{
  position:absolute;
  left:16px;
  bottom:16px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.90);
  color:var(--blue-deep);
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 12px 24px rgba(10,26,69,.16);
}

.hero-entry-copy{
  display:grid;
  gap:10px;
  padding:0 10px 8px;
}

.hero-entry-copy strong{
  color:var(--blue-deep);
  font-family:var(--display);
  font-size:clamp(22px, 2.8vw, 32px);
  line-height:1.05;
  max-width:14ch;
}

.hero-entry-copy p{
  color:var(--steel);
  font-size:15px;
  line-height:1.65;
  max-width:30ch;
}

.hero-entry-tag,
.hero-entry-copy{
  display:none;
}

.gallery-shot{
  cursor:zoom-in;
  width:100%;
  padding:0;
  border:0;
  color:inherit;
  background:transparent;
  text-align:left;
  transition:transform .2s ease, filter .2s ease;
}

.gallery-shot:focus-visible{
  outline:2px solid var(--yellow);
  outline-offset:4px;
}

.gallery-shot:hover{
  transform:translateY(-2px);
}

.photo-lightbox{
  position:fixed;
  inset:0;
  z-index:1200;
  display:grid;
  place-items:center;
  padding:24px;
  opacity:0;
  transition:opacity .2s ease;
}

.photo-lightbox[hidden]{
  display:none;
}

.photo-lightbox.is-open{
  opacity:1;
}

.photo-lightbox-backdrop{
  position:absolute;
  inset:0;
  border:0;
  background:rgba(6,12,28,.82);
  backdrop-filter:blur(8px);
}

.photo-lightbox-dialog{
  position:relative;
  z-index:1;
  width:min(92vw, 980px);
  margin:0;
  padding:16px;
  border-radius:24px;
  background:#fff;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  display:grid;
  gap:12px;
  transform:translateY(10px) scale(.985);
  transition:transform .22s ease;
}

.photo-lightbox.is-open .photo-lightbox-dialog{
  transform:translateY(0) scale(1);
}

.photo-lightbox-dialog img{
  width:100%;
  max-height:78vh;
  object-fit:contain;
  display:block;
  border-radius:18px;
  background:#f6f8fc;
}

.photo-lightbox-dialog figcaption{
  color:var(--steel);
  font-size:14px;
  line-height:1.5;
}

.photo-lightbox-close{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  border:0;
  border-radius:999px;
  background:rgba(10,26,69,.92);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
}

body.photo-lightbox-open{
  overflow:hidden;
}

.no-script-message{
  position:fixed;
  right:16px;
  bottom:16px;
  left:16px;
  z-index:1300;
  max-width:680px;
  margin:0 auto;
  padding:14px 18px;
  border:1px solid rgba(247,198,0,.55);
  border-radius:10px;
  background:var(--blue-deep);
  color:#fff;
  font-size:14px;
  line-height:1.5;
  box-shadow:0 18px 44px rgba(6,12,28,.28);
}

.no-script-message a{
  color:var(--yellow);
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}

.hero-panel-metrics{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}

.hero-panel-metrics > div{
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.hero-panel-metrics strong{
  display:block;
  color:var(--blue-deep);
  font-family:var(--display);
  font-size:14px;
  margin-bottom:4px;
}

.hero-panel-metrics span{
  color:var(--steel);
  font-size:12px;
  line-height:1.4;
}

.about-visual{
  display:block;
}

.about-panel{
  display:grid;
  gap:18px;
  padding:24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow-soft);
}

.about-panel-head{
  display:grid;
  gap:10px;
}

.about-panel-kicker{
  color:var(--blue-mark);
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.about-panel-head strong{
  color:var(--blue-deep);
  font-family:var(--display);
  font-size:clamp(22px, 2.6vw, 32px);
  line-height:1.05;
  max-width:14ch;
}

.about-panel-list{
  display:grid;
  gap:12px;
}

.about-panel-list div{
  display:grid;
  grid-template-columns:24px 1fr;
  column-gap:12px;
  row-gap:2px;
  align-items:start;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#FAFBFD;
}

.about-panel-list i{
  grid-row:1 / span 2;
  margin-top:2px;
}

.about-panel-list strong{
  display:block;
  color:var(--blue-deep);
  font-family:var(--display);
  font-size:14px;
  margin-bottom:4px;
}

.about-panel-list span{
  color:var(--steel);
  font-size:13px;
  line-height:1.55;
}

.about-grid{
  grid-template-columns:minmax(0,1.18fr) minmax(0,.82fr);
  gap:40px;
}

.about-visual{
  position:sticky;
  top:110px;
  display:block;
  align-self:start;
}

.store-gallery{
  display:grid;
  gap:18px;
  padding:20px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow-soft);
}

.store-gallery-head{
  display:grid;
  gap:10px;
}

.store-gallery-kicker{
  color:var(--blue-mark);
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.store-gallery-head strong{
  color:var(--blue-deep);
  font-family:var(--display);
  font-size:clamp(22px, 2.6vw, 32px);
  line-height:1.05;
  max-width:18ch;
}

.store-gallery-grid{
  display:grid;
  grid-template-columns:repeat(12, minmax(0, 1fr));
  gap:12px;
}

.gallery-shot{
  margin:0;
  display:grid;
  gap:10px;
}

.gallery-frame{
  position:relative;
  overflow:hidden;
  height:100%;
  border-radius:18px;
  border:1px solid rgba(10,26,69,.08);
  box-shadow:0 12px 28px rgba(10,26,69,.08);
  background:#fff;
}

.gallery-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  object-position:var(--focus, 50% 50%);
  transform:scale(1.03);
}

.gallery-caption{
  color:var(--steel);
  font-size:12px;
  line-height:1.45;
}

.gallery-frame,
.gallery-caption{
  display:block;
}

.store-shot-facade{
  grid-column:1 / -1;
  aspect-ratio:16 / 10.8;
}

.store-shot-wall{
  grid-column:1 / span 4;
  aspect-ratio:4 / 5.35;
}

.store-shot-wall .gallery-frame img{
  transform:scale(1.1);
}

.store-shot-aisle{
  grid-column:5 / span 4;
  aspect-ratio:4 / 5.35;
}

.store-shot-stock{
  grid-column:9 / span 4;
  aspect-ratio:4 / 5.35;
}

@media (min-width:641px){
  .store-shot-wall,
  .store-shot-aisle,
  .store-shot-stock{
    grid-row:2;
  }
}

.store-gallery-note{
  color:var(--steel);
  font-size:13px;
  line-height:1.6;
}

.about-brand{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  margin:0 0 22px;
  border:1px solid rgba(10,26,69,.10);
  border-radius:18px;
  background:linear-gradient(135deg, rgba(255,255,255,.92) 0%, rgba(248,250,253,.96) 100%);
  box-shadow:0 12px 28px rgba(10,26,69,.06);
}

.about-brand img{
  width:68px;
  height:68px;
  object-fit:contain;
  flex:0 0 68px;
  border-radius:16px;
  background:#fff;
  padding:8px;
  border:1px solid rgba(10,26,69,.08);
}

.about-brand strong{
  display:block;
  color:var(--blue-deep);
  font-family:var(--display);
  font-size:18px;
  line-height:1.1;
}

.about-brand span{
  display:block;
  margin-top:4px;
  color:var(--steel);
  font-size:13px;
  line-height:1.45;
}

.nr-media{
  display:grid;
  gap:16px;
  margin:24px 0 22px;
}

.nr-media-head{
  display:grid;
  gap:10px;
  padding:20px 22px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(135deg, #fff 0%, #F8FAFD 100%);
  box-shadow:var(--shadow-soft);
}

.nr-media-kicker{
  color:var(--blue-mark);
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.nr-media-head strong{
  color:var(--blue-deep);
  font-family:var(--display);
  font-size:clamp(20px, 2.2vw, 28px);
  line-height:1.08;
  max-width:20ch;
}

.nr-media-head p{
  color:var(--steel);
  font-size:14px;
  line-height:1.65;
  max-width:70ch;
}

.nr-media-grid{
  display:grid;
  grid-template-columns:repeat(12, minmax(0, 1fr));
  gap:12px;
  max-width:920px;
  width:100%;
  margin:0 auto;
}

.nr-shot-wide{
  grid-column:1 / -1;
  aspect-ratio:16 / 6.2;
}

.nr-shot-tall{
  grid-column:span 6;
  aspect-ratio:4 / 3.55;
}

.nr-shot-tall .gallery-frame img{
  transform:scale(1.035);
}

.seg-icon-wrap{
  overflow:hidden;
}

.seg-icon{
  width:auto;
  height:auto;
  display:block;
  font-size:22px;
  line-height:1;
  color:currentColor;
}

.seg-card:hover .seg-icon-wrap{
  background:rgba(247,198,0,.16);
  border-color:var(--yellow);
  color:var(--blue-deep);
}

.icon-chip{
  display:grid;
  place-items:center;
  border-radius:12px;
  background:rgba(10,26,69,.06);
  border:1px solid rgba(10,26,69,.10);
  color:var(--blue-deep);
  box-shadow:none;
  flex-shrink:0;
  transition:transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.icon-chip i{
  font-size:18px;
  line-height:1;
  color:currentColor;
}

.cat-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.seg-card{
  display:grid;
  grid-template-columns:auto 56px minmax(0, 1fr) auto;
  grid-template-rows:auto 1fr;
  align-items:start;
  text-align:left;
  gap:14px 14px;
  padding:20px;
  min-height:184px;
  min-width:0;
}

.seg-card:hover{
  transform:translateY(-4px);
}


.seg-media{
  grid-column:2;
  grid-row:1 / span 2;
  width:56px;
  height:56px;
  overflow:hidden;
  border-radius:18px;
  background:rgba(10,26,69,.04);
  border:1px solid rgba(10,26,69,.10);
  box-shadow:0 10px 20px rgba(10,26,69,.06);
  transition:transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.seg-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.seg-media-fallback{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  color:var(--blue-deep);
}

.seg-media-fallback .seg-icon{
  font-size:22px;
  color:currentColor;
}

.seg-content{
  grid-column:3;
  grid-row:2;
  display:grid;
  gap:6px;
  align-self:start;
  min-width:0;
}

.seg-content h3{
  font-size:15px;
  text-transform:none;
  letter-spacing:0;
  overflow-wrap:anywhere;
}

.seg-content h3.seg-title-tight{
  font-size:14.5px !important;
  line-height:1.05;
  letter-spacing:-0.01em;
  overflow-wrap:normal;
  word-break:normal;
  hyphens:auto;
}

.seg-content p{
  font-family:var(--body);
  font-size:13px;
  line-height:1.55;
  color:var(--steel);
  overflow-wrap:anywhere;
  word-break:break-word;
}

.seg-arrow{
  grid-column:4;
  grid-row:1 / span 2;
  align-self:start;
  justify-self:end;
  color:var(--blue-mark);
  opacity:.62;
}

.seg-card:hover .seg-media{
  transform:translateY(-2px);
  border-color:rgba(247,198,0,.45);
  background:rgba(247,198,0,.05);
  box-shadow:0 14px 24px rgba(10,26,69,.08);
}

.seg-card:hover .seg-media-fallback{
  color:var(--blue-deep);
}

.seg-card:hover .icon-chip,
.nr-card:hover .icon-chip,
.diff-row:hover .icon-chip{
  background:rgba(247,198,0,.16);
  border-color:var(--yellow);
  color:var(--blue-deep);
  transform:translateY(-1px);
}

.footer-brand .brand-mark{
  width:34px;
  height:34px;
  border-radius:50%;
}

@media (max-width:1024px){
  :root{
    --header-h: 76px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto auto auto;
    min-height:auto;
    gap:18px;
    padding:22px 18px 0;
  }

  .hero-grid::before{
    display:none;
  }

  .hero-copy{
    max-width:none;
    width:100%;
    min-width:0;
    max-inline-size:100%;
  }

  .hero-visual{
    grid-column:1;
    grid-row:2;
    position:relative;
    inset:auto;
    width:100%;
    min-width:0;
    max-width:100%;
    height:auto;
    margin-top:0;
    pointer-events:auto;
  }

  .hero-below{
    grid-column:1;
    grid-row:3;
    display:grid;
    grid-template-columns:minmax(0, 1fr);
    gap:14px;
    align-items:start;
    justify-content:start;
    min-width:0;
    max-width:100%;
  }

  .hero-below .hero-actions{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    width:min(100%, 480px);
    min-width:0;
    justify-self:start;
  }

  .hero-below .hero-actions .btn{
    min-width:0;
    justify-content:center;
    text-align:center;
  }

  .hero-below .lead{
    max-width:none;
    flex:initial;
  }

  .hero-entry-card{
    display:flex;
    min-width:0;
    max-width:100%;
    min-height:auto;
    padding:12px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow-soft);
  }

  .hero-entry-media{
    height:clamp(260px, 36vw, 340px);
    min-height:0;
    max-height:none;
    aspect-ratio:auto;
    border-radius:18px;
  }

  .hero-entry-media::before{
    display:none;
  }

  .hero-entry-tag{
    display:inline-flex;
  }

  .hero-entry-copy{
    display:grid;
  }

  .hero-panel{
    min-height:360px;
  }

  .about-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:1024px){
  :root{
    --header-h: 72px;
  }

  .about-visual{
    position:static;
    top:auto;
  }

  .hero-entry-card{
    min-height:auto;
  }

  .hero-entry-media{
    min-height:280px;
  }
}

@media (max-width:640px){
  :root{
    --header-h: 68px;
  }

  body{
    padding-top: var(--header-h);
  }

  .hero-panel-metrics{
    grid-template-columns:1fr;
  }

  .hero-grid{
    grid-template-columns:minmax(0, 1fr);
    gap:16px;
    padding:18px 18px 24px;
  }

  .hero-copy{
    padding-top:0;
    max-width:100%;
    width:100%;
    min-width:0;
    max-inline-size:100%;
  }

  .hero-visual{
    margin-top:0;
    min-width:0;
    max-width:100%;
  }

  .hero-below{
    gap:12px;
    min-width:0;
    max-width:100%;
  }

  .hero-below .hero-actions{
    display:grid;
    grid-template-columns:minmax(0, 1fr);
    width:100%;
    min-width:0;
    justify-self:stretch;
    gap:10px;
  }

  .hero-below .hero-actions .btn{
    width:100%;
    min-width:0;
    padding:14px 10px;
    font-size:12px;
    letter-spacing:0;
    overflow-wrap:normal;
    word-break:normal;
  }

  .hero-below .lead{
    max-width:none;
    font-size:16px;
  }

  .hero-entry-card{
    min-width:0;
    max-width:100%;
    padding:0;
    background:transparent;
    border:0;
    border-radius:0;
    box-shadow:none;
  }

  .hero-entry-media{
    height:auto;
    min-height:220px;
    aspect-ratio:16 / 9;
    border-radius:18px;
  }

  .hero-entry-media::before{
    display:none;
  }

  .hero-entry-tag,
  .hero-entry-copy{
    display:none;
  }

  .about-panel{
    padding:18px;
  }

  .brand img,
  .brand-mark{
    width:42px;
    height:42px;
  }

  .about-brand{
    align-items:flex-start;
    gap:12px;
  }

  .about-brand img{
    width:58px;
    height:58px;
    flex-basis:58px;
  }

  .store-gallery{
    padding:18px;
  }

  .store-gallery-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px;
  }

  .store-shot-facade,
  .store-shot-wall,
  .store-shot-aisle,
  .store-shot-stock{
    grid-column:span 1;
    aspect-ratio:1 / 1.08;
  }

  .store-shot-facade{
    grid-column:1 / -1;
    aspect-ratio:16 / 8.8;
  }

  .gallery-frame{
    border-radius:16px;
  }

  .gallery-frame img{
    height:auto;
    min-height:160px;
  }

  .gallery-caption{
    font-size:11px;
  }

  .nr-media-head{
    padding:18px;
  }

  .nr-media-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px;
  }

  .nr-shot-wide,
  .nr-shot-tall{
    grid-column:span 1;
    aspect-ratio:1 / 1.08;
  }

  .nr-shot-wide{
    grid-column:1 / -1;
    aspect-ratio:16 / 8.8;
  }

  .nr-shot-wide .gallery-frame img,
  .nr-shot-tall .gallery-frame img{
    min-height:210px;
  }

  .nr-shot-wide .gallery-frame img{
    height:100%;
    min-height:0;
    object-position:50% 68% !important;
  }

  .cat-grid{
    grid-template-columns:1fr;
  }

  .seg-card{
    grid-template-columns:auto 1fr auto;
    min-height:auto;
    gap:12px 12px;
    overflow:hidden;
  }

  .seg-media{
    grid-column:1;
    grid-row:1 / span 2;
  }

  .seg-content{
    grid-column:2;
  }

  .seg-content h3{
    font-size:14px;
  }

  .seg-content p{
    font-size:12px;
    line-height:1.45;
  }

  .seg-arrow{
    grid-column:3;
  }

  .categories .cat-grid{
    grid-template-columns:1fr !important;
  }

  .categories .seg-card{
    grid-template-columns:56px minmax(0, 1fr) auto !important;
    grid-template-rows:auto auto !important;
  }

  .categories .seg-content{
    grid-column:2 !important;
  }

  .categories .seg-content h3{
    overflow-wrap:normal;
    word-break:normal;
    hyphens:auto;
  }

  .categories .seg-content p{
    overflow-wrap:anywhere;
    word-break:break-word;
  }
}
