@font-face{
  font-family:Manrope;
  src:url('/fonts/manrope-latin-ext.woff2') format('woff2');
  font-weight:200 800;
  font-style:normal;
  font-display:swap;
  unicode-range:U+0100-02FF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF
}

@font-face{
  font-family:Manrope;
  src:url('/fonts/manrope-latin.woff2') format('woff2');
  font-weight:200 800;
  font-style:normal;
  font-display:swap
}

:root{
  --bg:#f6f8fa;
  --surface:#ffffff;
  --ink:#10283a;
  --muted:#52616d;
  --line:#dce4ec;
  --blue:#0068b5;
  --blue-hover:#00538f;
  --on-blue:#fff;
  --tint:#edf5fb;
  --soft:#edf3f8;
  --accent:#286ba6;
  --accent-line:#76b7d8;
  --red:#d52b1e;
  --navy:#0c2136;
  --radius:12px;
  --max:1280px;
  color-scheme:light
}

*{
  box-sizing:border-box
}
html{
  scroll-behavior:smooth;
  scroll-padding-top:112px
}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font:400 16px/1.65 Manrope,Arial,sans-serif;
  -webkit-font-smoothing:antialiased
}
button,input,textarea,select{
  font:inherit
}
button,a,input,textarea,select{
  -webkit-tap-highlight-color:transparent
}
a{
  color:inherit;
  text-decoration:none
}
p{
  margin:0 0 1em
}
h1,h2,h3,h4{
  font-weight:700;
  line-height:1.15;
  letter-spacing:-.035em;
  margin:0 0 .55em
}
h1{
  font-size:clamp(2.5rem,4.2vw,4.15rem);
  font-weight:750;
  line-height:1.075
}
h2{
  font-size:clamp(1.8rem,2.6vw,2.65rem)
}
h3{
  font-size:1.35rem
}
img{
  display:block;
  max-width:100%;
  height:auto
}
button{
  cursor:pointer
}
button:disabled{
  cursor:wait;
  opacity:.6
}
button,a,input,select,textarea{
  outline-offset:5px
}
:focus-visible{
  outline:3px solid var(--blue)
}
[hidden]{
  display:none!important
}
::selection{
  background:#9dd6f0;
  color:#102136
}
.wrap{
  width:min(var(--max),calc(100% - 64px));
  margin-inline:auto
}
.section{
  padding-block:88px
}
.section-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:34px
}
.section-heading h2{
  margin-bottom:0
}
.section-heading>p{
  max-width:370px;
  color:var(--muted);
  margin:0
}
.eyebrow,.overline{
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:.69rem;
  font-weight:800;
  line-height:1.5
}
.eyebrow{
  color:var(--blue);
  margin-bottom:18px
}
.eyebrow:before{
  content:'';
  display:inline-block;
  width:20px;
  height:2px;
  background:var(--red);
  vertical-align:middle;
  margin-right:10px
}
.overline{
  color:var(--muted);
  display:block;
  margin-bottom:10px
}
.muted{
  color:var(--muted)
}
.small{
  font-size:.8rem
}
.icon{
  display:inline-flex;
  flex:0 0 23px;
  width:23px;
  height:23px;
  vertical-align:middle
}
.icon svg{
  width:100%;
  height:100%;
  stroke-width:1.7
}
.actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:16px
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  min-height:52px;
  padding:14px 23px;
  border:1px solid transparent;
  border-radius:6px;
  background:var(--blue);
  color:var(--on-blue);
  font-size:.9rem;
  font-weight:750;
  line-height:1.4;
  transition:background .18s,transform .18s
}
.button:hover{
  background:var(--blue-hover);
  transform:translateY(-2px)
}
.button.secondary{
  background:transparent;
  color:var(--ink);
  border-color:var(--line)
}
.button.secondary:hover{
  background:var(--tint)
}
.text-link{
  display:inline-flex;
  gap:12px;
  align-items:center;
  color:var(--blue);
  font-weight:750;
  font-size:.9rem;
  min-height:44px
}
.text-link:hover{
  text-decoration:underline;
  text-underline-offset:5px
}
.text-link .icon{
  width:20px;
  height:20px
}
.skip-link{
  position:fixed;
  left:15px;
  top:-120px;
  z-index:300;
  background:var(--surface);
  padding:16px;
  border:2px solid var(--blue)
}
.skip-link:focus{
  top:12px
}
.site-header{
  position:sticky;
  top:0;
  background:var(--surface);
  z-index:40;
  border-bottom:1px solid var(--line)
}
.header-inner{
  height:90px;
  display:flex;
  align-items:center;
  gap:32px
}
.brand{
  flex:0 0 auto;
  display:block;
  width:83px;
  background:white;
  border-radius:4px;
  padding:4px 7px
}
.brand img{
  width:100%;
  height:66px;
  object-fit:contain
}
.desktop-nav{
  display:flex;
  gap:27px;
  margin-inline:auto;
  align-items:center
}
.desktop-nav a{
  font-size:.82rem;
  font-weight:750;
  padding-block:15px;
  border-bottom:2px solid transparent
}
.desktop-nav a:hover,.desktop-nav a[aria-current]{
  color:var(--blue);
  border-bottom-color:var(--blue)
}
.header-actions{
  display:flex;
  align-items:center;
  gap:18px
}
.header-phone{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:.8rem;
  font-weight:750;
  white-space:nowrap
}
.header-phone .icon{
  color:var(--blue)
}
.menu-toggle{
  display:none;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:4px;
  padding:10px 17px;
  color:var(--ink);
  font-size:.85rem;
  font-weight:700
}
.mobile-nav{
  padding-block:18px
}
.mobile-nav>a{
  display:flex;
  justify-content:space-between;
  padding:12px 0
}
.mobile-nav>.button{
  padding:15px;
  margin-top:10px
}
.hero{
  padding:48px 0 54px
}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr 1fr;
  gap:60px;
  align-items:center
}
.hero-copy{
  padding-block:28px
}
.hero-copy h1{
  margin-bottom:25px
}
.hero-copy h1 em{
  font-style:normal;
  color:var(--blue)
}
.hero-copy>p:not(.eyebrow){
  max-width:500px;
  font-size:1rem;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:27px
}
.hero-points{
  display:flex;
  gap:25px;
  margin-top:31px;
  font-size:.71rem;
  color:var(--muted);
  font-weight:650
}
.hero-points span{
  display:flex;
  align-items:center;
  gap:8px
}
.hero-points .icon{
  color:var(--blue);
  width:19px;
  height:19px;
  flex-basis:19px
}
.hero-visual{
  margin:0;
  min-width:0
}
.hero-photo{
  overflow:hidden;
  border-radius:var(--radius);
  aspect-ratio:1.06;
  position:relative;
  background:var(--tint)
}
.hero-photo img{
  height:100%;
  width:100%;
  object-fit:cover;
  object-position:60% 58%
}


.trust-strip{
  background:var(--surface);
  border-block:1px solid var(--line)
}
.trust-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  min-height:120px
}
.trust-inner>p{
  font-size:.76rem;
  max-width:200px;
  line-height:1.6;
  margin:0;
  color:var(--muted)
}
.trust-logos{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  gap:42px;
  flex:1;
  max-width:700px
}
.trust-logos img{
  width:100%;
  max-width:112px;
  height:47px;
  object-fit:contain;
  margin:auto
}
.trust-logos{
  background:#fff;
  border-radius:5px;
  padding:12px 20px
}
.scenario-tabs{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:8px;
  border-bottom:1px solid var(--line);
  padding-bottom:13px
}
.scenario-tabs button{
  border:1px solid transparent;
  background:transparent;
  color:var(--muted);
  border-radius:6px;
  display:flex;
  gap:12px;
  align-items:center;
  min-height:74px;
  padding:12px;
  text-align:left;
  font-size:.8rem;
  font-weight:750;
  line-height:1.4
}
.scenario-tabs button:hover{
  background:var(--tint);
  color:var(--ink)
}
.scenario-tabs button[aria-expanded=true]{
  border-color:var(--blue);
  background:var(--surface);
  color:var(--blue)
}
.scenario-tabs .icon{
  width:24px;
  height:24px
}
.scenario-panel{
  padding:35px 0 0;
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:85px
}
.scenario-panel h3{
  font-size:1.65rem
}
.scenario-panel>div>p{
  color:var(--muted)
}
.scenario-checklist{
  border-left:1px solid var(--line);
  padding-left:38px
}
.scenario-checklist ul,.check-list{
  list-style:none;
  padding:0;
  margin:16px 0
}
.scenario-checklist li,.check-list li{
  display:flex;
  gap:12px;
  margin:12px 0;
  font-size:.87rem
}
.scenario-checklist li .icon,.check-list .icon{
  color:var(--blue);
  width:19px;
  height:19px;
  flex-basis:19px
}
.surface-section{
  background:var(--surface);
  border-block:1px solid var(--line)
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px
}
.product-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--bg);
  transition:transform .2s,border-color .2s
}
.product-card:hover{
  transform:translateY(-4px);
  border-color:var(--blue)
}
.product-image{
  aspect-ratio:1.6;
  overflow:hidden;
  background:#e9eef3
}
.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:60% 55%;
  transition:transform .4s
}
.product-card:hover img{
  transform:scale(1.025)
}
.product-image.contain{
  padding:15px;
  background:#ecf1f4
}
.product-image.contain img{
  object-fit:contain
}
.product-copy{
  padding:25px;
  flex:1;
  display:flex;
  flex-direction:column
}
.product-copy h3{
  font-size:1.3rem
}
.product-copy p{
  color:var(--muted);
  font-size:.83rem;
  line-height:1.65
}
.product-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:auto;
  padding-top:17px;
  border-top:1px solid var(--line);
  font-size:.68rem;
  font-weight:750
}
.product-bottom .icon{
  color:var(--blue)
}
.under-note{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  margin-top:27px;
  font-size:.9rem
}
.under-note p{
  margin:0;
  color:var(--muted)
}
.standby-section{
  background:var(--navy);
  color:#fff
}
.standby-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:75px
}
.standby-grid h2{
  font-size:clamp(2rem,3vw,3rem)
}
.standby-grid .eyebrow{
  color:#79c9ef
}
.standby-grid p:not(.eyebrow){
  color:#b7c7d7
}
.standby-grid img{
  width:100%;
  aspect-ratio:1.35;
  object-fit:cover;
  border-radius:8px
}
.standby-grid .button{
  background:#65c1eb;
  color:#092034
}
.standby-grid .small{
  margin:22px 0 0
}
.reference-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px
}
.reference-image{
  overflow:hidden;
  aspect-ratio:1.6;
  border-radius:8px;
  margin-bottom:22px
}
.reference-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s
}
.reference-card:hover img{
  transform:scale(1.03)
}
.reference-card h3{
  display:flex;
  justify-content:space-between;
  align-items:center
}
.reference-card p{
  color:var(--muted);
  font-size:.86rem
}
.reference-card .icon{
  color:var(--blue)
}
.faq-section{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
  border-top:1px solid var(--line)
}
.faq-list details{
  border-bottom:1px solid var(--line)
}
.faq-list summary{
  padding:21px 28px 21px 0;
  font-weight:700;
  font-size:.92rem;
  cursor:pointer
}
.faq-list details p{
  padding:0 10px 12px 0;
  color:var(--muted);
  font-size:.9rem
}
.faq-list details[open] summary{
  color:var(--blue)
}
.cta-section{
  background:var(--tint);
  border-block:1px solid var(--line);
  padding:55px 0
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:45px
}
.cta-inner>div:first-child{
  max-width:670px
}
.cta-inner h2{
  font-size:2rem
}
.cta-inner p:not(.eyebrow){
  color:var(--muted);
  margin:0;
  font-size:.9rem
}
.cta-inner .actions{
  flex-direction:column;
  align-items:flex-start;
  flex-shrink:0
}
.site-footer{
  background:var(--surface);
  padding-top:60px
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:70px;
  padding-bottom:45px
}
.footer-grid h2{
  font-size:.85rem;
  margin:0 0 20px;
  letter-spacing:0
}
.footer-grid>div>a:not(.brand){
  display:block;
  min-height:36px;
  color:var(--muted);
  font-size:.82rem
}
.footer-grid a:hover{
  color:var(--blue)
}
.footer-grid p{
  font-size:.82rem;
  color:var(--muted);
  margin-top:14px
}
.footer-grid .footer-phone{
  font-size:1.3rem!important;
  color:var(--ink)!important;
  font-weight:750
}
.footer-brand .brand{
  width:86px
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--line);
  padding-block:23px;
  font-size:.68rem;
  color:var(--muted)
}
.footer-bottom>div{
  display:flex;
  gap:20px;
  flex-wrap:wrap
}
.footer-bottom button{
  border:0;
  background:none;
  color:inherit;
  padding:0;
  font-size:inherit
}
.mobile-contact{
  display:none
}
.breadcrumbs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:.73rem;
  padding-block:23px
}
.breadcrumbs a:hover{
  text-decoration:underline
}
.page-intro{
  padding:42px 0 50px;
  max-width:880px;
  margin-right:auto
}
.page-intro h1{
  font-size:clamp(2.1rem,4vw,3.6rem)
}
.page-intro p:not(.eyebrow){
  font-size:1.05rem;
  color:var(--muted);
  max-width:730px
}
.page-intro .actions{
  margin-top:25px
}
.region-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0 30px;
  margin-top:30px
}
.region-grid a{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:70px;
  border-top:1px solid var(--line);
  font-size:.83rem;
  font-weight:700
}
.region-grid a>.icon:first-child{
  color:var(--blue)
}
.region-grid a>.icon:last-child{
  margin-left:auto;
  width:18px;
  height:18px
}
.region-grid a:hover{
  color:var(--blue)
}
.region-grid+.small{
  margin-top:25px
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px
}
.feature{
  padding-top:26px;
  border-top:1px solid var(--line)
}
.feature>.icon{
  color:var(--blue);
  width:32px;
  height:32px;
  margin-bottom:23px
}
.feature p{
  font-size:.9rem;
  color:var(--muted)
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:start
}
.split .photo{
  width:100%;
  aspect-ratio:1.2;
  object-fit:cover;
  border-radius:10px
}
.prose{
  max-width:800px
}
.prose p{
  color:var(--muted);
  font-size:1rem
}
.prose h2{
  font-size:1.9rem;
  margin-top:40px
}
.prose h3{
  margin-top:30px
}
.prose a:not(.button){
  text-decoration:underline;
  color:var(--blue);
  text-underline-offset:4px
}
.prose ul{
  padding-left:20px;
  color:var(--muted)
}
.specs{
  width:100%;
  border-collapse:collapse;
  margin:25px 0;
  font-size:.9rem
}
.specs th,.specs td{
  padding:16px 0;
  text-align:left;
  border-bottom:1px solid var(--line);
  vertical-align:top
}
.specs th{
  width:42%;
  font-weight:650;
  color:var(--muted);
  padding-right:25px
}
.product-detail-visual{
  background:#e9eef3;
  border-radius:10px;
  overflow:hidden;
  aspect-ratio:1.25;
  display:grid;
  place-items:center
}
.product-detail-visual img{
  width:100%;
  height:100%;
  object-fit:cover
}
.product-detail-visual.contain{
  padding:30px
}
.product-detail-visual.contain img{
  object-fit:contain
}
.catalog-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:30px
}
.catalog-filters button{
  background:transparent;
  color:var(--muted);
  border:1px solid var(--line);
  border-radius:5px;
  min-height:46px;
  padding:10px 20px;
  font-size:.85rem;
  font-weight:700
}
.catalog-filters button[aria-pressed=true]{
  color:var(--on-blue);
  background:var(--blue);
  border-color:var(--blue)
}
.contact-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:65px;
  padding-bottom:80px
}
.contact-layout .page-intro{
  padding-top:25px
}
.contact-layout h1{
  font-size:3.3rem
}
.contact-option{
  display:flex;
  align-items:center;
  gap:20px;
  padding:23px 0;
  border-top:1px solid var(--line)
}
.contact-option>.icon{
  width:28px;
  height:28px;
  color:var(--blue)
}
.contact-option small{
  display:block;
  font-size:.75rem;
  color:var(--muted)
}
.contact-option strong{
  display:block;
  font-size:1.3rem
}
.contact-option:hover strong{
  color:var(--blue)
}
.contact-facts{
  margin-top:30px;
  font-size:.83rem;
  color:var(--muted)
}
.contact-facts a{
  text-decoration:underline
}
.inquiry-panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:10px;
  padding:35px
}
.inquiry-panel h2{
  font-size:1.85rem
}
.inquiry-panel>p:not(.eyebrow){
  color:var(--muted);
  font-size:.85rem
}
.preview-note{
  font-size:.7rem!important;
  background:var(--tint);
  border-left:2px solid var(--blue);
  padding:10px 12px;
  margin:20px 0
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px
}
.form-grid label,.full-label{
  display:block;
  font-size:.77rem;
  font-weight:700
}
.form-grid label>span[aria-hidden]{
  color:var(--blue)
}
input,select,textarea{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:5px;
  color:var(--ink);
  display:block;
  width:100%;
  padding:12px;
  margin-top:7px;
  min-height:47px;
  font-size:.85rem
}
input::placeholder,textarea::placeholder{
  color:var(--muted);
  opacity:.8;
  font-size:.8rem
}
textarea{
  resize:vertical;
  min-height:105px
}
input[aria-invalid=true]{
  border-color:var(--red)
}
.field-error{
  color:var(--red);
  font-size:.72rem;
  line-height:1.4;
  display:block;
  margin-top:5px
}
.field-error:empty{
  display:none
}
.full-label{
  margin-top:20px
}
.form-more{
  margin:20px 0
}
.form-more summary{
  cursor:pointer;
  font-size:.78rem;
  font-weight:700;
  color:var(--blue);
  padding:10px 0
}
.form-more .form-grid{
  margin-top:15px
}
.span-two{
  grid-column:1/-1
}
.form-actions{
  margin-top:25px
}
.form-actions .button{
  width:100%
}
.form-actions p{
  margin:14px 0 0;
  font-weight:400;
  font-size:.69rem
}
.form-actions p a{
  text-decoration:underline
}
.honeypot{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip-path:inset(50%)
}
.form-status:not(:empty){
  padding:18px;
  margin-top:18px;
  background:var(--tint);
  border-left:3px solid var(--blue);
  font-size:.85rem
}
.form-status[data-error=true]{
  border-color:var(--red)
}
.consent-banner{
  position:fixed;
  bottom:22px;
  left:22px;
  z-index:100;
  width:min(540px,calc(100% - 44px));
  padding:23px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:0 8px 45px #0002;
  border-radius:9px;
  font-size:.75rem
}
.consent-banner strong{
  font-size:.95rem
}
.consent-banner p{
  color:var(--muted);
  margin:8px 0
}
.consent-banner a{
  color:var(--blue);
  text-decoration:underline
}
.consent-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:18px
}
.consent-actions button{
  flex:1;
  background:var(--tint);
  color:var(--ink);
  border:1px solid var(--line);
  border-radius:4px;
  padding:10px;
  min-height:44px;
  font-size:.69rem;
  font-weight:750
}
.consent-dialog{
  width:min(600px,calc(100% - 36px));
  max-height:calc(100dvh - 40px);
  overflow:auto;
  border:1px solid var(--line);
  border-radius:10px;
  background:var(--surface);
  color:var(--ink);
  padding:30px
}
.consent-dialog::backdrop{
  background:#03122499
}
.dialog-top{
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:20px
}
.dialog-top h2{
  font-size:1.65rem;
  margin:0
}
.dialog-top button{
  background:transparent;
  border:1px solid var(--line);
  color:var(--ink);
  padding:9px;
  font-size:.72rem;
  border-radius:4px
}
.consent-dialog>p{
  font-size:.85rem;
  color:var(--muted)
}
.consent-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--line);
  padding:18px 0;
  font-size:.8rem
}
.consent-row>span>span{
  display:block;
  color:var(--muted);
  font-size:.75rem;
  margin-top:5px
}
.consent-row p{
  margin:5px 0 0;
  font-size:.75rem;
  color:var(--muted)
}
.consent-row input{
  width:22px;
  height:22px;
  min-height:22px;
  flex-shrink:0;
  accent-color:var(--blue)
}
.consent-dialog .button{
  font-size:.75rem;
  padding:13px 17px
}
.consent-dialog .actions{
  gap:10px
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}
.gallery-grid img{
  width:100%;
  aspect-ratio:1.33;
  object-fit:cover;
  border-radius:8px
}
.reveal{
  animation:reveal .5s ease-out both
}
@keyframes reveal{
  from{
  opacity:.4;
  transform:translateY(8px)
}
to{
  opacity:1;
  transform:translateY(0)
}

}

@media(min-width:1450px){
  .hero{
  padding-top:65px;
  padding-bottom:65px
}

}

@media(max-width:1120px){
  .desktop-nav{
  gap:20px
}
.header-phone>span:not(.icon){
  display:none
}
.header-inner{
  gap:20px
}
.hero-grid{
  gap:35px
}
.hero-points{
  gap:15px
}
.hero-copy h1{
  font-size:3.2rem
}
.scenario-panel{
  gap:40px
}
.scenario-tabs button{
  gap:8px;
  padding:9px;
  font-size:.7rem
}
.contact-layout{
  gap:35px
}
.inquiry-panel{
  padding:25px
}

}

@media(max-width:900px){
  .wrap{
  width:calc(100% - 44px)
}
.header-inner{
  height:76px
}
.brand{
  width:75px
}
.brand img{
  height:54px
}
.desktop-nav{
  display:none
}
.header-actions{
  margin-left:auto
}
.menu-toggle{
  display:block
}
.header-phone span{
  display:block
}
.hero{
  padding:35px 0 40px
}
.hero-grid{
  gap:28px;
  grid-template-columns:1fr .9fr
}
.hero-copy h1{
  font-size:2.5rem
}
.hero-copy>p:not(.eyebrow){
  font-size:.9rem
}
.hero-photo{
  aspect-ratio:.78
}
.hero-points{
  flex-wrap:wrap;
  margin-top:22px;
  gap:10px
}
.hero-points span{
  width:100%
}
.hero .button{
  font-size:.77rem;
  min-height:47px;
  padding:12px 15px
}
.hero .actions{
  gap:9px
}

.hero-visual figcaption span{
  display:block
}
.trust-inner{
  gap:20px
}
.trust-logos{
  gap:20px
}
.trust-inner>p{
  max-width:160px;
  font-size:.68rem
}
.section{
  padding-block:65px
}
.section-heading{
  gap:25px
}
.section-heading>p{
  max-width:280px;
  font-size:.88rem
}
.scenario-tabs{
  grid-template-columns:repeat(3,1fr)
}
.scenario-tabs button{
  min-height:62px;
  font-size:.76rem
}
.product-grid{
  gap:16px
}
.product-copy{
  padding:20px
}
.product-copy h3{
  font-size:1.12rem
}
.product-copy p{
  font-size:.78rem
}
.product-bottom{
  font-size:.62rem
}
.standby-grid{
  gap:35px
}
.reference-grid{
  gap:20px
}
.reference-card h3{
  font-size:1.2rem
}
.faq-section{
  gap:35px;
  grid-template-columns:.8fr 1.2fr
}
.cta-inner{
  gap:30px
}
.cta-inner h2{
  font-size:1.7rem
}
.footer-grid{
  gap:35px
}
.region-grid{
  grid-template-columns:repeat(2,1fr)
}
.split{
  gap:35px
}
.contact-layout{
  grid-template-columns:1fr 1.2fr;
  gap:28px
}
.contact-layout h1{
  font-size:2.5rem
}
.contact-option strong{
  font-size:1.1rem
}
.inquiry-panel{
  padding:22px
}
.form-grid{
  grid-template-columns:1fr
}
.span-two{
  grid-column:auto
}
.feature-grid{
  gap:20px
}

}

@media(max-width:620px){
  html{
  scroll-padding-top:88px
}
.wrap{
  width:calc(100% - 36px)
}
.header-inner{
  height:70px
}
.brand{
  width:67px;
  padding:3px 6px
}
.brand img{
  height:54px
}
.header-actions{
  gap:13px
}
.header-phone{
  display:none
}
.menu-toggle{
  padding:9px 14px;
  min-height:42px
}
.hero{
  padding-top:15px
}
.hero-grid{
  display:flex;
  flex-direction:column;
  gap:22px
}
.hero-copy{
  padding:17px 0 0;
  width:100%
}
.eyebrow{
  font-size:.62rem;
  margin-bottom:16px
}
.hero-copy h1{
  font-size:clamp(2.25rem,9.5vw,3.15rem);
  line-height:1.07;
  margin-bottom:19px
}
.hero-copy>p:not(.eyebrow){
  font-size:.9rem;
  line-height:1.7;
  margin-bottom:22px
}
.hero .actions{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:9px
}
.hero .button{
  padding:13px 10px;
  gap:8px;
  min-height:51px;
  font-size:.74rem
}
.hero .button .icon{
  width:18px;
  height:18px;
  flex-basis:18px
}
.hero-points{
  gap:7px 13px;
  margin-top:20px;
  font-size:.66rem;
  flex-wrap:nowrap
}
.hero-points span{
  width:auto;
  gap:7px
}
.hero-points .icon{
  width:16px;
  height:16px;
  flex-basis:16px
}
.hero-visual{
  width:100%
}
.hero-photo{
  aspect-ratio:1.75
}

.trust-inner{
  display:block;
  padding:24px 0
}
.trust-inner>p{
  max-width:none;
  text-align:center;
  margin-bottom:16px;
  font-size:.69rem
}
.trust-logos{
  gap:23px;
  padding:10px 17px
}
.trust-logos img{
  height:29px
}
.section{
  padding-block:48px
}
h2{
  font-size:1.8rem;
  line-height:1.2
}
.section-heading{
  display:block;
  margin-bottom:25px
}
.section-heading>p{
  max-width:none;
  margin:14px 0 0;
  font-size:.85rem
}
.scenario-tabs{
  grid-template-columns:repeat(2,1fr);
  gap:5px;
  padding-bottom:15px
}
.scenario-tabs button{
  min-height:56px;
  padding:8px;
  font-size:.7rem;
  gap:10px
}
.scenario-tabs button:last-child{
  grid-column:1/-1;
  min-height:48px
}
.scenario-panel{
  grid-template-columns:1fr;
  gap:21px;
  padding-top:25px
}
.scenario-panel h3{
  font-size:1.45rem
}
.scenario-panel>div>p{
  font-size:.88rem
}
.scenario-checklist{
  border-left:0;
  padding-left:0;
  border-top:1px solid var(--line);
  padding-top:19px
}
.scenario-checklist ul{
  margin-bottom:12px
}
.scenario-checklist li{
  font-size:.8rem;
  margin:9px 0
}
.scenario-checklist .small{
  font-size:.7rem
}
.product-grid{
  grid-template-columns:1fr;
  gap:14px
}
.product-card{
  display:grid;
  grid-template-columns:112px 1fr;
  align-items:stretch;
  border-radius:7px
}
.product-image{
  aspect-ratio:auto;
  height:100%;
  min-height:174px
}
.product-image img{
  object-position:60% 50%
}
.product-image.contain{
  padding:7px
}
.product-copy{
  padding:17px 16px
}
.product-copy h3{
  font-size:1.02rem;
  line-height:1.2
}
.product-copy .overline{
  font-size:.55rem;
  margin-bottom:7px
}
.product-copy p{
  font-size:.73rem;
  line-height:1.55;
  margin-bottom:10px
}
.product-bottom{
  padding-top:11px;
  font-size:.6rem
}
.product-bottom .icon{
  width:17px;
  height:17px;
  flex-basis:17px
}
.under-note{
  display:block;
  margin-top:24px
}
.under-note p{
  font-size:.83rem
}
.under-note .text-link{
  margin-top:8px
}
.standby-grid{
  grid-template-columns:1fr;
  gap:30px
}
.standby-grid h2{
  font-size:2rem
}
.standby-grid p{
  font-size:.9rem
}
.standby-grid img{
  aspect-ratio:1.7
}
.standby-grid .small{
  font-size:.72rem
}
.reference-grid{
  grid-template-columns:1fr;
  gap:23px
}
.reference-card{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:18px;
  align-items:center
}
.reference-image{
  margin:0;
  aspect-ratio:1;
  min-height:110px
}
.reference-card h3{
  font-size:1.05rem;
  margin-bottom:7px
}
.reference-card .overline{
  font-size:.56rem;
  margin-bottom:6px
}
.reference-card p{
  font-size:.74rem;
  line-height:1.55;
  margin:0
}
.reference-card .icon{
  width:17px;
  height:17px;
  flex-basis:17px
}
.faq-section{
  grid-template-columns:1fr;
  gap:10px
}
.faq-section>.muted{
  font-size:.83rem
}
.faq-list summary{
  font-size:.85rem;
  padding-block:18px
}
.faq-list details p{
  font-size:.83rem
}
.cta-section{
  padding:38px 0
}
.cta-inner{
  display:block
}
.cta-inner h2{
  font-size:1.8rem
}
.cta-inner p:not(.eyebrow){
  font-size:.85rem
}
.cta-inner .actions{
  margin-top:24px;
  align-items:stretch;
  gap:12px
}
.cta-inner .text-link{
  justify-content:center
}
.site-footer{
  padding-top:38px;
  padding-bottom:63px
}
.footer-grid{
  grid-template-columns:1fr 1fr;
  gap:30px;
  padding-bottom:30px
}
.footer-brand{
  grid-column:1/-1;
  display:grid;
  grid-template-columns:75px 1fr;
  gap:12px 20px;
  align-items:center
}
.footer-brand p{
  margin:0;
  font-size:.8rem
}
.footer-brand .text-link{
  grid-column:1/-1
}
.footer-grid>div>a:not(.brand){
  font-size:.75rem
}
.footer-grid h2{
  font-size:.77rem
}
.footer-grid p{
  font-size:.73rem
}
.footer-grid .footer-phone{
  font-size:1rem!important
}
.footer-bottom{
  flex-direction:column;
  font-size:.6rem;
  gap:15px
}
.footer-bottom>div{
  gap:17px
}
.footer-bottom button{
  min-height:30px
}
.mobile-contact{
  position:fixed;
  display:grid;
  grid-template-columns:1fr 1.35fr;
  bottom:0;
  left:0;
  width:100%;
  z-index:45;
  background:var(--surface);
  box-shadow:0 -3px 15px #0001;
  border-top:1px solid var(--line);
  padding:8px 12px calc(8px + env(safe-area-inset-bottom));
  gap:8px
}
.mobile-contact a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:44px;
  border-radius:5px;
  font-size:.78rem;
  font-weight:750
}
.mobile-contact a:last-child{
  background:var(--blue);
  color:var(--on-blue)
}
.mobile-contact .icon{
  width:18px;
  height:18px;
  flex-basis:18px
}
.breadcrumbs{
  font-size:.63rem;
  padding-block:20px;
  gap:7px
}
.page-intro{
  padding:22px 0 32px
}
.page-intro h1{
  font-size:2.25rem
}
.page-intro p:not(.eyebrow){
  font-size:.9rem
}
.page-intro .actions{
  gap:10px
}
.page-intro .button{
  font-size:.78rem;
  padding:13px 17px
}
.region-grid{
  grid-template-columns:1fr;
  gap:0
}
.region-grid a{
  min-height:57px;
  font-size:.77rem
}
.feature-grid{
  grid-template-columns:1fr;
  gap:18px
}
.feature{
  display:grid;
  grid-template-columns:35px 1fr;
  gap:10px 15px;
  padding-top:20px
}
.feature>.icon{
  grid-row:span 2;
  margin:0;
  width:27px;
  height:27px
}
.feature h3{
  font-size:1.1rem;
  margin:0
}
.feature p{
  font-size:.82rem;
  margin:0
}
.split{
  grid-template-columns:1fr;
  gap:28px
}
.split .photo{
  aspect-ratio:1.7
}
.product-detail-visual{
  aspect-ratio:1.4
}
.prose h2{
  font-size:1.6rem
}
.prose p,.prose li{
  font-size:.9rem
}
.specs{
  font-size:.8rem
}
.specs th{
  width:44%;
  padding-right:20px
}
.contact-layout{
  grid-template-columns:1fr;
  gap:28px;
  padding-bottom:45px
}
.contact-layout .page-intro{
  padding-top:20px
}
.contact-layout h1{
  font-size:2.5rem
}
.contact-option{
  padding:17px 0
}
.contact-option strong{
  font-size:1.35rem
}
.contact-facts{
  font-size:.77rem;
  margin-top:18px
}
.inquiry-panel{
  padding:23px 19px
}
.inquiry-panel h2{
  font-size:1.6rem
}
.inquiry-panel>p:not(.eyebrow){
  font-size:.8rem
}
.form-grid{
  gap:15px
}
.full-label{
  margin-top:17px
}
.preview-note{
  font-size:.65rem!important
}
.consent-banner{
  left:12px;
  bottom:76px;
  width:calc(100% - 24px);
  padding:17px;
  font-size:.68rem
}
.consent-banner strong{
  font-size:.87rem
}
.consent-actions{
  gap:6px;
  margin-top:13px
}
.consent-actions button{
  font-size:.61rem;
  padding:8px 6px
}
.consent-dialog{
  padding:23px
}
.dialog-top h2{
  font-size:1.4rem
}
.consent-dialog .actions{
  display:grid
}
.consent-row{
  gap:15px
}
.gallery-grid{
  grid-template-columns:repeat(2,1fr);
  gap:12px
}

}

@media(prefers-reduced-motion:reduce){
  html{
  scroll-behavior:auto
}
*,*::before,*::after{
  animation:none!important;
  transition:none!important
}
.button:hover,.product-card:hover,.reference-card:hover img,.product-card:hover img{
  transform:none
}

}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip-path:inset(50%);
  white-space:nowrap;
  border:0
}
[data-product-category]{
  display:flex
}
[data-product-category]>.product-card{
  width:100%
}
.prose.wrap{
  margin-inline:auto
}
.guide-link{
  display:block
}


.form-field{
  display:grid;
  align-content:start;
  gap:8px
}
.form-field label{
  display:block
}
.standby-activation{
  margin-bottom:30px;
  padding:20px;
  border-left:3px solid var(--blue);
  background:var(--surface)
}

/* Shared editorial layouts: stories, services and progressive detail. */
.site-header{background:var(--surface);box-shadow:0 4px 25px #10283a06}
.page-intro{max-width:var(--max);padding-top:38px;padding-bottom:48px}
.page-intro h1{max-width:900px}
.hero{padding-top:44px;padding-bottom:0}
.hero-grid{grid-template-columns:1fr 1.08fr;gap:54px}
.hero-photo{aspect-ratio:4/3;border-radius:20px;box-shadow:0 18px 40px #10283a19}
.hero-photo img{object-fit:contain;object-position:center}
.hero-visual{position:relative}



.hero-discover{display:flex;align-items:center;justify-content:flex-start;gap:28px;border-top:1px solid var(--line);margin-top:38px;padding:20px 0;font-size:.77rem}
.hero-discover>span{color:var(--muted);margin-right:auto}
.hero-discover a{display:flex;align-items:center;gap:14px;font-weight:750;min-height:32px}
.hero-discover .icon{width:16px;height:16px;transform:rotate(90deg);color:var(--accent)}
.trust-strip{background:var(--surface)}
.trust-inner{min-height:108px}
.scenarios .section-heading{margin-bottom:30px}
.scenario-tabs{gap:10px;padding:0;border:0}
.scenario-tabs button{border:1px solid var(--line);background:var(--surface);padding:17px 15px;border-radius:12px;min-height:95px;transition:background .2s,border-color .2s,transform .2s}
.scenario-tabs button>.icon{color:var(--accent);width:28px;height:28px;flex-basis:28px}
.scenario-tabs button[aria-expanded=true]{background:var(--navy);color:#fff;border-color:var(--navy)}
.scenario-tabs button[aria-expanded=true]>.icon{color:#a9ddf6}
.scenario-panel{padding:32px;margin-top:18px;border:1px solid var(--line);border-radius:16px;background:var(--surface);gap:48px}
.scenario-checklist{padding-left:30px}
.surface-section{background:var(--surface)}
.product-card{border:1px solid var(--line);border-radius:16px;box-shadow:0 5px 20px #10283a05;background:var(--bg)}
.product-image{background:var(--soft)}
.product-card:hover{border-color:var(--blue);box-shadow:0 12px 28px #10283a12;transform:translateY(-3px)}
.product-bottom{line-height:1.45}
.reference-card{display:block;min-width:0;border:1px solid var(--line);border-radius:16px;overflow:hidden;background:var(--surface);box-shadow:0 4px 16px #10283a05;transition:transform .25s,box-shadow .25s,border-color .25s}
.reference-card:hover{transform:translateY(-4px);box-shadow:0 14px 30px #10283a16;border-color:var(--blue)}
.reference-image{border-radius:0;aspect-ratio:1.5;margin:0}
.reference-card>div:last-child{padding:24px}
.reference-card .overline{color:var(--accent)}
.reference-card h3{font-size:1.5rem}
.reference-card p{margin:0}
.feature{border:1px solid var(--line);padding:26px;border-radius:14px;background:var(--surface)}
.feature>.icon{width:42px;height:42px;display:flex;align-items:center;justify-content:center;padding:7px;box-sizing:content-box;border-radius:12px;background:var(--soft);color:var(--accent)}
.standby-section{background:var(--navy)}
.standby-grid{gap:70px}
.standby-grid img{border-radius:16px;box-shadow:0 16px 50px #0003}
.standby-grid .eyebrow{color:#a9ddf6}
.standby-grid .button{background:#ffffff;color:#10283a}
.faq-section{border-top:0}
.faq-list{border:1px solid var(--line);border-radius:14px;background:var(--surface);padding:0 24px}
.faq-list details:last-child{border-bottom:0}
.faq-list summary{line-height:1.5}
.region-grid a{padding:18px 14px;background:var(--surface);border:1px solid var(--line);border-radius:10px;min-width:0}
.region-grid{gap:12px}
.region-grid a:hover{background:var(--tint)}
.process-section{background:var(--soft);border-block:1px solid var(--line)}
.process-section .section{padding-block:72px}
.process-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:17px;align-items:start}
.process-card{border-radius:16px;background:var(--surface);border:1px solid var(--line);padding:26px 23px;position:relative}
.process-symbol{position:relative;display:flex;align-items:center;justify-content:center;width:66px;height:66px;border-radius:17px;background:var(--tint);color:var(--blue);margin-bottom:25px}
.process-symbol>.icon{width:35px;height:35px}
.process-symbol>.process-number{position:absolute;right:-9px;top:-9px;display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:var(--accent);color:var(--surface);font-size:.66rem;font-weight:800;border:3px solid var(--surface)}
.process-card h3{font-size:1.23rem;line-height:1.3;min-height:3.1em}
.process-card>p{font-size:.87rem;line-height:1.7;color:var(--muted);margin-bottom:24px}
.process-detail{border-top:1px solid var(--line);padding-top:15px}
.process-detail summary{display:flex;align-items:center;gap:10px;list-style:none;cursor:pointer;font-size:.75rem;font-weight:800;line-height:1.5;color:var(--blue);min-height:38px}
.process-detail summary::-webkit-details-marker{display:none}
.process-detail summary>.icon{margin-left:auto;width:18px;height:18px;flex-basis:18px;transform:rotate(45deg);transition:transform .2s}
.process-detail[open] summary>.icon{transform:rotate(-45deg)}
.process-detail>div{padding-top:16px;font-size:.83rem;color:var(--muted)}
.process-note{font-size:.76rem;border-left:2px solid var(--accent-line);padding-left:12px;margin-bottom:0}
.content-details{margin-block:24px}
.content-detail{border-bottom:1px solid var(--line)}
.content-detail:first-child{border-top:1px solid var(--line)}
.content-detail summary{display:flex;gap:17px;align-items:center;min-height:80px;padding:20px 0;list-style:none;cursor:pointer;line-height:1.4}
.content-detail summary::-webkit-details-marker{display:none}
.detail-number{font-size:.72rem;font-weight:800;color:var(--accent);font-variant-numeric:tabular-nums;flex:0 0 22px}
.detail-title{font-size:1.07rem;font-weight:750}
.detail-arrow{margin-left:auto;flex:0 0 34px;display:grid;place-items:center;width:34px;height:34px;background:var(--soft);border-radius:50%;color:var(--accent)}
.detail-arrow>.icon{width:18px;height:18px;transform:rotate(45deg);transition:transform .2s}
.content-detail[open] .detail-arrow>.icon{transform:rotate(-45deg)}
.content-detail[open] .detail-title{color:var(--blue)}
.detail-body{padding:0 0 22px 39px;color:var(--muted);font-size:.94rem;line-height:1.85;max-width:76ch}
.detail-body p:last-child,.detail-body ul:last-child{margin-bottom:0}
.detail-body ul{padding-left:19px}
.detail-body li{margin-bottom:8px}
.scope-section{background:var(--surface);border-bottom:1px solid var(--line)}
.scope-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.scope-visual img{border-radius:20px;width:100%;box-shadow:0 16px 36px #10283a18}
.scope-visual p{font-size:.72rem;margin:14px 0 0;color:var(--muted);max-width:52ch}
.knowledge-band{background:var(--soft);border-block:1px solid var(--line);padding-block:64px}
.knowledge-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.knowledge-grid>div>p:not(.eyebrow){color:var(--muted);max-width:46ch}
.knowledge-links{display:flex;flex-direction:column;gap:12px}
.knowledge-links>a{display:flex;align-items:center;gap:19px;padding:20px 24px;border:1px solid var(--line);border-radius:12px;background:var(--surface);transition:transform .2s,border-color .2s}
.knowledge-links>a:hover{transform:translateX(4px);border-color:var(--blue)}
.knowledge-links>a>.icon:first-child{color:var(--accent);width:29px;height:29px;flex-basis:29px}
.knowledge-links>a>.icon:last-child{margin-left:auto;width:18px;height:18px;flex-basis:18px;color:var(--blue)}
.knowledge-links strong{display:block;font-size:.93rem}
.knowledge-links small{display:block;font-size:.75rem;color:var(--muted);margin-top:3px}
.case-hero{background:var(--navy);color:#ffffff;margin-top:16px}
.case-hero-grid{display:grid;grid-template-columns:1fr 1.07fr;gap:65px;align-items:center;padding-block:54px 78px}
.case-title .eyebrow{color:#a9ddf6}
.case-title h1{font-size:clamp(2.1rem,3.6vw,3.45rem);line-height:1.13;letter-spacing:-.04em}
.case-title>p:not(.eyebrow){color:#cfdae1;font-size:1rem;line-height:1.85;max-width:54ch}
.case-title>.text-link{color:#a9ddf6;margin-top:10px}
.case-hero figure{margin:0;min-width:0}
.case-hero figure img{width:100%;height:420px;object-fit:cover;border-radius:16px}
.case-hero figcaption{font-size:.73rem;margin-top:14px;color:#cbd6df}
.case-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));position:relative;margin-top:-30px;background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:28px 35px;box-shadow:0 10px 25px #10283a0c}
.case-facts>div{padding:0 28px;border-right:1px solid var(--line)}
.case-facts>div:first-child{padding-left:0}
.case-facts>div:last-child{padding-right:0;border:0}
.case-facts strong{display:block;font-size:clamp(1.15rem,2vw,1.8rem);line-height:1.2;font-weight:800;letter-spacing:-.03em;margin-bottom:8px}
.case-facts span{font-size:.75rem;color:var(--muted)}
.case-context-note{font-size:.77rem;color:var(--muted);margin-block:15px 0}
.case-narrative{display:grid;grid-template-columns:.7fr 1.3fr;gap:95px;align-items:start}
.case-aside{position:sticky;top:126px}
.case-aside h2{font-size:2.1rem;line-height:1.2}
.case-aside .small{margin-block:22px}
.case-copy{font-size:1.03rem;line-height:1.9;min-width:0}
.case-copy>p{margin-bottom:1.3em}
.archive-band{background:var(--soft);border-block:1px solid var(--line)}
.story-gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.story-gallery:has(>figure:nth-child(2):last-child){grid-template-columns:repeat(2,minmax(0,1fr))}
.story-gallery figure{margin:0;min-width:0}
.story-gallery a{position:relative;display:block;overflow:hidden;border-radius:14px;background:var(--navy)}
.story-gallery img{aspect-ratio:1.35;width:100%;height:auto;object-fit:cover;transition:transform .4s}
.story-gallery a:hover img{transform:scale(1.04)}
.gallery-open{position:absolute;bottom:13px;right:13px;display:flex;align-items:center;gap:13px;min-height:38px;border:1px solid #ffffff3d;padding:8px 12px;border-radius:8px;background:#10283ae8;color:#fff;font-size:.73rem;font-weight:750}
.gallery-open>.icon{height:16px;width:16px;transform:rotate(-45deg)}
.story-gallery figcaption{display:flex;gap:13px;padding-top:15px;color:var(--muted);font-size:.78rem;line-height:1.65}
.story-gallery figcaption>span{color:var(--accent);font-weight:800}
.case-return{display:flex;align-items:center;justify-content:space-between;gap:40px;padding-block:35px}
.case-return p{font-size:.78rem;color:var(--muted);max-width:60ch;margin:0}
.back-arrow{display:inline-flex;transform:rotate(180deg)}
.service-dossiers{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start;padding-bottom:70px}
.service-card{overflow:hidden;border:1px solid var(--line);border-radius:17px;background:var(--surface)}
.service-card>summary{cursor:pointer;list-style:none;display:grid;grid-template-columns:110px 1fr;gap:22px;padding:23px;align-items:start}
.service-card>summary::-webkit-details-marker{display:none}
.service-thumbnail{height:138px;width:110px;object-fit:cover;border-radius:10px}
.service-title-row{display:flex;align-items:flex-start;gap:16px}
.service-title-row>.icon{color:var(--accent);flex-basis:26px;width:26px;height:26px}
.service-title-row h2{font-size:1.22rem;line-height:1.3;flex:1}
.service-summary p{color:var(--muted);font-size:.84rem;line-height:1.7;margin:8px 0 14px}
.service-summary .text-link{font-size:.74rem}
.service-summary .text-link>.icon{transform:rotate(45deg);width:16px;height:16px}
.service-card[open] .service-summary .text-link>.icon{transform:rotate(-45deg)}
.service-body{padding:0 28px 28px;border-top:1px solid var(--line)}
.service-body h3{font-size:1.12rem;line-height:1.4;margin-top:28px}
.service-body p,.service-body li{font-size:.88rem;line-height:1.85;color:var(--muted)}
.service-body ul{padding-left:20px}
.service-preparation{padding:16px 20px;margin-top:24px;background:var(--soft);border-radius:10px}
.service-preparation h3{margin-top:0}
.service-preparation ul{margin-bottom:0}
.service-body .actions{margin-top:24px;gap:16px}
.service-body .button{font-size:.8rem;padding:13px 18px}
.service-reference{display:inline-flex;gap:8px;align-items:center;font-size:.78rem;color:var(--blue);font-weight:750;margin-top:12px}
.service-reference .icon{width:15px;height:15px}
.about-intro{display:grid;grid-template-columns:.85fr 1.15fr;gap:90px;align-items:start}
.about-intro .prose{max-width:none}
.company-timeline{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:28px}
.company-timeline li{padding-top:25px;border-top:2px solid var(--accent-line);position:relative}
.company-timeline li:before{content:'';position:absolute;left:0;top:-7px;width:12px;height:12px;border-radius:50%;background:var(--accent-line);border:3px solid var(--soft)}
.company-timeline time{font-size:1.75rem;font-weight:800;letter-spacing:-.04em;color:var(--accent)}
.company-timeline h3{font-size:1.1rem;line-height:1.4;margin-top:15px}
.company-timeline p{font-size:.85rem;color:var(--muted);line-height:1.8}
.product-depth{display:grid;grid-template-columns:1.15fr .85fr;gap:80px;align-items:start}
.product-preparation{padding:30px;background:var(--soft);border:1px solid var(--line);border-radius:16px}
.product-preparation h3{font-size:1.35rem}
.product-preparation .check-list{margin-bottom:24px}
.related-cases{margin-top:28px;display:flex;flex-wrap:wrap;gap:14px}
.related-cases a{font-size:.79rem;color:var(--blue);text-decoration:underline;text-underline-offset:4px;font-weight:700}
.gallery-dialog{padding:20px;border:1px solid var(--line);border-radius:18px;background:#fff;color:var(--ink);width:min(1160px,calc(100% - 40px));height:min(920px,calc(100dvh - 40px));max-height:calc(100dvh - 40px);overflow:auto;box-shadow:0 24px 100px #18364738}
.gallery-dialog[open]{display:grid;grid-template-rows:auto minmax(120px,1fr) auto auto;gap:14px}
.gallery-dialog::backdrop{background:#18364775;backdrop-filter:blur(8px)}
.gallery-toolbar{display:flex;justify-content:space-between;align-items:center;gap:16px;color:var(--muted)}
.gallery-toolbar>div{display:flex;align-items:baseline;gap:16px}
.gallery-toolbar h2{font-size:1.05rem;letter-spacing:0;margin:0;color:var(--ink)}
.gallery-toolbar [data-gallery-counter]{font-size:.82rem;font-variant-numeric:tabular-nums}
.gallery-toolbar button{display:flex;align-items:center;gap:12px;background:#fff;color:var(--ink);border:1px solid var(--line);border-radius:8px;padding:9px 15px;min-height:44px;font-size:.8rem;font-weight:650}
.gallery-toolbar button span{font-size:1.6rem;line-height:1}
.gallery-stage{position:relative;display:grid;place-items:center;min-height:0;overflow:hidden;border-radius:10px;background:#edf2f5;touch-action:pan-y pinch-zoom}
.gallery-stage>img{position:absolute;inset:0;width:100%;height:100%;object-fit:contain}
.gallery-stage>button{position:absolute;z-index:1;top:50%;transform:translateY(-50%);display:grid;place-items:center;width:48px;height:48px;border-radius:50%;border:1px solid var(--line);background:#fffffff2;color:var(--blue);box-shadow:0 2px 12px #1836471c;transition:background .2s,box-shadow .2s}
.gallery-prev{left:10px}.gallery-next{right:10px}
.gallery-dialog>p{font-size:.85rem;padding:0 12px;line-height:1.5;text-align:center;margin:0;color:var(--muted)}
.gallery-dialog :focus-visible{outline:3px solid var(--blue);outline-offset:3px}
.gallery-thumbnails{position:relative;display:flex;gap:10px;overflow-x:auto;min-width:0;padding:5px 4px 8px;scrollbar-width:thin;scrollbar-color:#a4bccc transparent}
.gallery-thumbnails>button{flex:0 0 96px;height:72px;padding:3px;background:#fff;border:2px solid transparent;border-radius:8px;opacity:.65;transition:opacity .18s,border-color .18s}
.gallery-thumbnails>button[aria-current="true"]{border-color:var(--blue);opacity:1;background:#edf5fa}
.gallery-thumbnails>button:hover{opacity:1;border-color:#9cb8cd}
.gallery-thumbnails img{width:100%;height:100%;display:block;object-fit:cover;border-radius:4px}
.gallery-thumbnails>button:first-child{margin-left:auto}.gallery-thumbnails>button:last-child{margin-right:auto}
.gallery-stage>button:hover,.gallery-toolbar button:hover{background:#eaf3f9;box-shadow:0 3px 12px #18364726}
.gallery-error{max-width:34ch;text-align:center;padding:24px;color:var(--muted);font-size:.9rem}
.gallery-dialog [hidden]{display:none!important}
@media(min-width:901px){.hero-copy{padding-block:22px}.hero-copy h1{font-size:clamp(2.7rem,4.2vw,4rem)}.hero-photo{aspect-ratio:4/3}.process-card>p{min-height:6em}}
@media(max-width:1050px){.process-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.process-card h3{min-height:0}.case-hero-grid{gap:36px}.case-hero figure img{height:380px}.case-narrative{gap:50px}.company-timeline{grid-template-columns:repeat(3,minmax(0,1fr))}.scope-grid,.knowledge-grid{gap:38px}.service-card>summary{grid-template-columns:85px 1fr;gap:18px}.service-thumbnail{width:85px;height:130px}.service-title-row>.icon{display:none}}
@media(max-width:800px){.hero-grid{gap:32px}.hero-photo{aspect-ratio:4/3}.hero-discover{gap:18px;font-size:.72rem}.hero-discover>span{display:none}.scenario-panel{gap:30px;padding:25px}.scope-grid{grid-template-columns:1fr}.scope-visual{max-width:620px}.knowledge-grid{grid-template-columns:1fr;gap:25px}.service-dossiers{grid-template-columns:1fr}.service-thumbnail{width:110px;height:120px}.service-card>summary{grid-template-columns:110px 1fr}.service-title-row>.icon{display:flex}.case-hero-grid{grid-template-columns:1fr;gap:25px;padding-block:30px 60px}.case-title h1{max-width:700px}.case-title>p{max-width:64ch}.case-hero figure img{height:auto;aspect-ratio:1.8}.case-narrative{grid-template-columns:1fr;gap:25px}.case-aside{position:static}.case-aside>.small{margin-block:15px}.case-facts{padding:24px}.case-facts>div{padding-inline:15px}.case-return{align-items:flex-start;flex-direction:column;gap:20px}.about-intro,.product-depth{grid-template-columns:1fr;gap:28px}.about-intro .eyebrow{margin-bottom:14px}.story-gallery{gap:16px}}
@media(max-width:620px){
  .wrap{width:calc(100% - 40px)}
  .page-intro{padding-block:26px 32px}
  .hero{padding-top:12px}.hero-grid{gap:24px}.hero-photo{aspect-ratio:4/3}.hero-visual{width:100%}.hero-copy{padding-top:16px}.hero-discover{flex-wrap:wrap;justify-content:space-between;gap:4px 12px;padding-block:13px;margin-top:21px;font-size:.68rem}.hero-discover a{gap:8px;min-height:39px}.hero-discover .icon{width:13px;height:13px}.trust-inner{min-height:0;padding-block:22px}.scenario-tabs{gap:8px}.scenario-tabs button{min-height:76px;padding:13px 11px;border-radius:11px;font-size:.75rem}.scenario-tabs button>.icon{width:23px;height:23px;flex-basis:23px}.scenario-panel{padding:23px 20px;margin-top:13px;gap:21px}.scenario-panel h3{font-size:1.4rem}.scenario-checklist{padding-left:0}.scenarios .section-heading{margin-bottom:23px}
  .section{padding-block:54px}.process-section .section{padding-block:52px}.process-grid{grid-template-columns:1fr;gap:13px}.process-card{padding:22px 20px 20px;display:grid;grid-template-columns:48px 1fr;gap:8px 20px}.process-symbol{grid-row:1/3;width:48px;height:48px;margin-bottom:0;border-radius:13px}.process-symbol>.icon{width:27px;height:27px}.process-symbol>.process-number{font-size:.59rem;width:25px;height:25px;right:-7px;top:-8px}.process-card h3{font-size:1.07rem;margin:0;min-height:0}.process-card>p{font-size:.82rem;margin:0;min-height:0}.process-detail{grid-column:1/-1;margin-top:9px;padding-top:11px}.process-detail summary{font-size:.77rem;min-height:32px}.process-detail>div{font-size:.84rem;line-height:1.8}.process-note{font-size:.78rem}
  .product-card{grid-template-columns:100px 1fr}.product-copy{padding:20px 16px}.product-copy h3{font-size:1rem}.product-image{width:100%;height:100%;min-height:170px}.product-bottom{font-size:.7rem;line-height:1.6}.reference-grid{gap:17px}.reference-card{display:block;border:1px solid var(--line);padding:0}.reference-image{width:100%;height:auto;aspect-ratio:1.85;margin:0}.reference-card>div:last-child{padding:21px 23px}.reference-card h3{font-size:1.4rem;line-height:1.3}.reference-card .overline{font-size:.63rem}.reference-card p{font-size:.85rem}.reference-card .icon{width:21px;height:21px}
  .standby-grid{gap:29px}.standby-grid img{max-height:none;aspect-ratio:1.5;object-fit:cover}.scope-grid{gap:32px}.scope-visual img{border-radius:13px}.scope-visual p{font-size:.68rem}.detail-title{font-size:.96rem}.content-detail summary{gap:12px;min-height:76px;padding-block:19px}.detail-number{flex-basis:18px;font-size:.64rem}.detail-arrow{width:30px;height:30px;flex-basis:30px}.detail-body{font-size:.87rem;padding:0 0 21px 0;line-height:1.85}.content-details{margin-block:23px}.knowledge-band{padding-block:48px}.knowledge-grid{gap:22px}.knowledge-links>a{padding:17px 18px;gap:15px}.knowledge-links>a>.icon:first-child{width:25px;height:25px;flex-basis:25px}.knowledge-links strong{font-size:.86rem}.knowledge-links small{font-size:.71rem}.faq-list{padding-inline:19px}.faq-list summary{font-size:.85rem;line-height:1.6}.feature{padding:23px}.feature>.icon{width:32px;height:32px;padding:7px;margin-bottom:18px}.region-grid{gap:10px}.region-grid a{padding:16px 13px}
  .case-hero{margin-top:0}.case-title h1{font-size:clamp(2rem,8.5vw,2.8rem);line-height:1.14}.case-title>p:not(.eyebrow){font-size:.9rem;line-height:1.8}.case-hero-grid{padding-block:32px 50px;gap:24px}.case-hero figure img{aspect-ratio:1.35;border-radius:12px}.case-hero figcaption{font-size:.7rem}.case-facts{margin-top:-21px;padding:20px;grid-template-columns:1fr;gap:16px;border-radius:12px}.case-facts>div,.case-facts>div:first-child,.case-facts>div:last-child{padding:0 0 15px;border:0;border-bottom:1px solid var(--line);display:flex;align-items:center;gap:15px}.case-facts>div:last-child{border:0;padding:0}.case-facts strong{font-size:1.15rem;flex:1;margin:0;max-width:64%}.case-facts span{font-size:.68rem;width:36%;text-align:right}.case-context-note{font-size:.73rem;line-height:1.7}.case-aside h2{font-size:1.75rem}.case-copy{font-size:.92rem;line-height:1.9}.case-aside>.text-link{font-size:.8rem}.case-return{padding-block:28px}.case-return p{font-size:.73rem}.story-gallery,.story-gallery:has(>figure:nth-child(2):last-child){grid-template-columns:1fr;gap:27px}.story-gallery img{aspect-ratio:1.5}.story-gallery figcaption{padding-top:12px;font-size:.76rem}.photo-story .section-heading>p{font-size:.82rem}.service-dossiers{gap:15px;padding-bottom:48px}.service-card>summary{grid-template-columns:76px 1fr;gap:17px;padding:19px}.service-thumbnail{width:76px;height:118px}.service-title-row>.icon{display:none}.service-title-row h2{font-size:1.06rem;line-height:1.4}.service-summary p{font-size:.875rem;margin-top:5px;line-height:1.8}.service-summary .text-link{font-size:.72rem}.service-body{padding:0 22px 24px}.service-body p,.service-body li{font-size:.86rem}.service-preparation{padding:15px}.service-body .button{font-size:.77rem}
  .company-timeline{grid-template-columns:1fr;gap:0}.company-timeline li{padding:0 0 27px 28px;border-top:0;border-left:2px solid var(--line)}.company-timeline li:before{left:-7px;top:6px;border-color:var(--soft)}.company-timeline time{font-size:1.4rem}.company-timeline h3{margin-top:7px;font-size:1.03rem}.company-timeline p{font-size:.85rem;margin:0}.company-timeline li:last-child{padding-bottom:0;border-left-color:transparent}.product-preparation{padding:24px}.gallery-dialog{width:calc(100% - 16px);height:calc(100dvh - 16px);max-height:calc(100dvh - 16px);padding:12px;border-radius:14px}.gallery-dialog[open]{gap:12px}.gallery-stage>button{width:44px;height:44px}.gallery-prev{left:6px}.gallery-next{right:6px}.gallery-dialog>p{padding:0 5px;font-size:.79rem}.gallery-thumbnails>button{flex-basis:76px;height:58px}.gallery-toolbar>div{gap:10px}.gallery-toolbar h2{font-size:.92rem}
}
@media(prefers-reduced-motion:reduce){.product-card,.reference-card,.story-gallery img,.detail-arrow>.icon,.process-detail summary>.icon,.knowledge-links>a,.scenario-tabs button{transition:none}.product-card:hover,.reference-card:hover,.story-gallery a:hover img,.knowledge-links>a:hover{transform:none}}
html.gallery-is-open{overflow:hidden}
.photo-caption{font-size:.75rem;color:var(--muted);margin:13px 0 0}
.reference-index-entry{display:grid;grid-template-columns:.95fr 1.05fr;gap:65px;align-items:center;padding:40px 0 60px;border-bottom:1px solid var(--line)}
.reference-index-entry:last-child{border:0}
.reference-index-entry:nth-child(even){direction:rtl}.reference-index-entry:nth-child(even)>*{direction:ltr}
.reference-index-entry>div>p:not(.eyebrow){color:var(--muted);font-size:.95rem}
.reference-index-entry h2{font-size:2.1rem;line-height:1.2}
.reference-index-photo{overflow:hidden;border-radius:16px;display:block}
.reference-index-photo img{aspect-ratio:1.4;width:100%;height:auto;object-fit:cover;transition:transform .4s}
.reference-index-photo:hover img{transform:scale(1.025)}
.reference-fact-tags{display:flex;flex-wrap:wrap;gap:9px;margin:22px 0}
.reference-fact-tags span{font-size:.74rem;font-weight:700;padding:7px 11px;border-radius:6px;background:var(--soft);color:var(--ink)}
.reference-index-entry .reference-context{font-size:.72rem;margin:16px 0 0;line-height:1.7}
.case-video{display:flex;flex-wrap:wrap;gap:14px 25px;align-items:center;margin:30px 0 0}
.case-video>span{font-size:.73rem;color:var(--muted)}
@media(max-width:800px){.reference-index-entry,.reference-index-entry:nth-child(even){grid-template-columns:1fr;direction:ltr;gap:28px;padding:24px 0 42px}.reference-index-photo img{aspect-ratio:1.65}.reference-index-entry h2{font-size:1.8rem}.reference-index-entry>div>p:not(.eyebrow){font-size:.9rem}}
@media(prefers-reduced-motion:reduce){.reference-index-photo img{transition:none}.reference-index-photo:hover img{transform:none}}
.partner-stories { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:32px; }
.partner-stories article { border-top:1px solid var(--line); padding-top:26px; }
.partner-stories article>img,.partner-stories article>.icon { width:52px; height:52px; object-fit:contain; margin-bottom:20px; color:var(--blue); }
.partner-stories article>img { background:#fff; padding:3px; border-radius:6px; }
.partner-stories h3 { margin-bottom:18px; }
.partner-stories p { color:var(--muted); font-size:15px; line-height:1.8; }
@media(max-width:760px) { .partner-stories { grid-template-columns:1fr; gap:20px; } }

/* V3: V1 light palette, dimensional illustrations and readable content. */
:root{--blue:#2f6fb0;--blue-hover:#24598e;--accent:#2f6fb0;--cyan:#21afce}
body{font-size:17px}
.header-inner{gap:24px}
.desktop-nav{gap:24px}
.desktop-nav a{display:flex;align-items:center;gap:8px;font-size:15px;font-weight:700}
.desktop-nav a>.icon{width:17px;height:17px;flex-basis:17px;color:var(--blue)}
.header-phone{font-size:15px}
.eyebrow,.overline{font-size:12px;letter-spacing:.105em}
.button,.text-link{font-size:15px}
.button{border-radius:8px;transition:background .24s,transform .24s,box-shadow .24s}
.button:not(.secondary):hover{box-shadow:0 6px 18px #2f6fb022}
.hero{position:relative;background:radial-gradient(ellipse at 82% 45%,#dcecf988,transparent 62%)}
.hero-grid{grid-template-columns:1fr 1.08fr;gap:48px}
.hero-photo{border-radius:14px;box-shadow:0 20px 50px #18395817;border:1px solid #d9e5ef}
.hero-copy h1 em{color:var(--blue);background:linear-gradient(110deg,#2f6fb0,#205577);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.hero-copy>p:not(.eyebrow){font-size:18px;line-height:1.75}
.hero-points{font-size:14px;gap:20px}
.hero-discover{font-size:14px;padding-block:16px}
.hero-discover a{min-height:44px}
.hero-discover a:hover{color:var(--blue)}
.illustration{width:64px;height:64px;flex:0 0 64px;object-fit:contain;display:block;background:#fff;border-radius:14px;transition:transform .28s ease}
.partner-strip{background:#fff;border-block:1px solid var(--line)}
.partner-inner{display:grid;grid-template-columns:215px minmax(0,1fr);gap:28px;align-items:center;padding-block:27px}
.partner-heading p{font-size:15px;line-height:1.55;margin:0 0 7px;color:var(--muted)}
.partner-heading strong{color:var(--ink);font-weight:750}
.partner-heading a{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:700;color:var(--blue);min-height:32px}
.partner-heading a:hover{text-decoration:underline;text-underline-offset:4px}
.partner-window{overflow-x:auto;min-width:0;mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent)}
.partner-track{display:flex;width:max-content}
.partner-group{display:flex;align-items:center;list-style:none;margin:0;padding:0}
.partner-group li{display:grid;place-items:center;width:160px;flex:0 0 160px;padding:12px 25px;height:80px}
.partner-group img{width:100%;height:55px;object-fit:contain}
.partner-group li:last-child img{max-width:62px}


.partner-strip:is(:hover,:focus-within) .partner-track{animation-play-state:paused}
@keyframes partner-travel{to{transform:translateX(-50%)}}
.scenario-tabs button{display:flex;gap:15px;padding:17px 15px;min-height:110px;font-size:15px;background:#fff;line-height:1.5}
.scenario-tabs button:hover{background:#f0f7fc;border-color:#a8c8e4}
.scenario-tabs button[aria-expanded=true]{background:linear-gradient(135deg,#edf6fc,#e6f1f9);color:#174d7d;border-color:var(--blue);box-shadow:inset 0 -3px 0 var(--blue)}
.scenario-tabs button:hover>.illustration{transform:translateY(-3px)}
.scenario-panel{box-shadow:0 12px 35px #163d6305}
.scenario-checklist li{font-size:16px}
.scenario-checklist .small{font-size:14px}
.scenario-panel h3{line-height:1.3}
.process-section{background:linear-gradient(125deg,#edf3f8 20%,#e5f2f9 75%,#edf7f9)}
.process-grid{gap:20px}
.process-card{padding:28px 23px;border-color:#d4e3ef}
.process-symbol{width:76px;height:76px;background:#fff;border-radius:16px;margin-bottom:24px}
.process-symbol>.illustration{width:76px;height:76px;flex-basis:76px}
.process-symbol>.process-number{background:#edf4fa;color:#235c8f;border-color:#fff;width:30px;height:30px;font-size:12px;right:-8px;top:-5px}
.process-card h3{font-size:20px;min-height:0;margin-bottom:18px}
.process-card>p{font-size:16px;line-height:1.75;min-height:5.25em}
.process-detail summary{font-size:14px;min-height:44px}
.process-detail>div{font-size:15px;line-height:1.8}
.process-note{font-size:14px;border-color:#73aecf}
.scope-visual{padding:30px;background:linear-gradient(150deg,#e7f1f9,#f4f9fc);border:1px solid #d6e6f2;border-radius:20px}
.scope-stack{display:grid;gap:16px}
.scope-stack>div{background:#fff;border:1px solid #dce7f0;box-shadow:0 8px 20px #15395805;display:flex;gap:20px;align-items:center;padding:20px;border-radius:14px}
.scope-stack .illustration{width:72px;height:72px;flex-basis:72px;box-shadow:none;border-radius:10px}
.scope-stack strong{display:block;font-size:17px;line-height:1.45}
.scope-stack small{display:block;font-size:14px;color:var(--muted);margin-top:5px}
.scope-stack .icon{margin-left:auto;transform:rotate(90deg);width:19px;flex-basis:19px;color:var(--blue)}
.knowledge-band{background:linear-gradient(105deg,#edf3f8,#e7f3fa)}
.knowledge-links strong{font-size:16px}
.knowledge-links small{font-size:14px}
.product-copy p,.reference-card p,.service-summary p,.service-body p,.service-body li,.company-timeline p,.partner-stories p{font-size:16px;line-height:1.75}
.product-bottom,.reference-fact-tags span,.case-facts span,.small,.photo-caption,.story-gallery figcaption,.case-context-note,.reference-index-entry .reference-context{font-size:14px}
.product-image img{object-position:center}
.product-image:not(.contain) img{object-fit:cover}
.product-image{background:#edf2f6}
.detail-body,.prose p,.prose li,.case-copy{font-size:17px;line-height:1.85}
.faq-list summary{font-size:16px}
.service-card>summary{grid-template-columns:1fr;gap:0;padding:0}
.service-thumbnail{width:100%;height:205px;object-fit:cover;object-position:center 55%;border-radius:15px 15px 0 0}
.service-summary{padding:24px 28px}
.service-title-row{gap:17px;align-items:center}
.service-title-row h2{font-size:24px;line-height:1.3;margin:0}
.service-title-row .illustration{width:64px;height:64px;flex-basis:64px}
.service-summary p{margin-block:16px 12px}
.service-summary .text-link,.service-reference{font-size:14px}
.service-body{padding:0 28px 28px}
.service-body .button{font-size:15px}
.service-dossiers{gap:28px}
.contact-layout .page-intro>.illustration{width:76px;height:76px;margin-bottom:22px}
.form-grid label,.full-label{font-size:15px}
.form-note,.footer-bottom,.consent-row{font-size:14px}
input,textarea,select{font-size:16px}
.site-footer p,.site-footer a{font-size:14px}
.site-footer .footer-phone{font-size:24px}
.reveal{animation-duration:.5s}
@media(min-width:901px){.hero-copy h1{font-size:clamp(44px,4.2vw,61px)}}
@media(min-width:901px) and (max-width:1150px){.desktop-nav{gap:18px}.desktop-nav a>.icon{display:none}.scenario-tabs button{flex-direction:column;align-items:flex-start;gap:10px;padding:16px}.hero-grid{gap:28px}}
@media(max-width:1050px){.partner-inner{grid-template-columns:190px minmax(0,1fr);gap:18px}.partner-group li{width:144px;flex-basis:144px}}
@media(max-width:800px){.partner-inner{grid-template-columns:1fr;gap:8px;padding-block:25px}.partner-heading{display:flex;align-items:center;justify-content:space-between;gap:18px}.partner-heading p{margin:0}.partner-heading p br{display:none}.partner-heading strong{display:block}.partner-group li{height:72px;width:145px;flex-basis:145px;padding:8px 24px}.partner-group img{height:49px}.hero-points{flex-wrap:wrap;gap:12px 20px}.scenario-tabs button{font-size:15px}.service-thumbnail{height:220px}}
@media(max-width:620px){
 body{font-size:16px}.hero-grid{gap:24px}.hero-copy>p:not(.eyebrow){font-size:17px;line-height:1.75}.hero-points{font-size:13px;margin-top:24px}.hero-discover{font-size:13px}.hero-discover a{gap:6px}.hero .actions{gap:10px}.hero .button{font-size:14px;padding-inline:16px}.eyebrow,.overline{font-size:11px;letter-spacing:.08em}
 .partner-heading p{font-size:14px}.partner-heading a{font-size:12px}.partner-inner{padding-block:20px}
 .scenario-tabs{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.scenario-tabs button{padding:15px 12px;gap:11px;min-height:104px;flex-direction:column;align-items:flex-start;font-size:14px}.scenario-tabs button:last-child{grid-column:1/-1;min-height:88px;flex-direction:row;align-items:center}.scenario-tabs .illustration{width:56px;height:56px;flex-basis:56px}.scenario-panel{padding:24px 20px}.scenario-panel h3{font-size:23px}.scenario-checklist li{font-size:15px}.scenario-checklist .small{font-size:14px}
 .process-card{grid-template-columns:56px minmax(0,1fr);gap:8px 20px;padding:24px 20px}.process-symbol,.process-symbol>.illustration{width:56px;height:56px;flex-basis:56px}.process-card h3{font-size:19px;min-height:0}.process-card>p{font-size:15px;min-height:0}.process-detail summary{font-size:14px}.process-detail>div,.process-note{font-size:14px}.process-symbol>.process-number{width:25px;height:25px;font-size:10px}
 .scope-visual{padding:18px}.scope-stack>div{padding:15px 12px;gap:12px}.scope-stack .illustration{width:56px;height:56px;flex-basis:56px}.scope-stack strong{font-size:15px}.scope-stack small{font-size:13px}.scope-stack .icon{display:none}
 .detail-title{font-size:16px}.detail-body,.prose p,.prose li,.case-copy{font-size:16px}.product-card{display:flex;flex-direction:column}.product-image{height:auto;min-height:0;aspect-ratio:1.7}.product-copy{padding:24px}.product-copy h3{font-size:21px}.product-copy p,.reference-card p,.service-summary p,.service-body p,.service-body li,.company-timeline p{font-size:15px}.product-bottom{font-size:13px}.reference-card .overline{font-size:11px}.knowledge-links strong{font-size:15px}.knowledge-links small{font-size:13px}.faq-list summary{font-size:15px}.case-title>p:not(.eyebrow){font-size:16px}.case-context-note,.reference-index-entry .reference-context{font-size:13px}.case-facts span{font-size:13px}.case-hero figcaption{font-size:13px}.case-facts strong{font-size:20px}
 .service-thumbnail{height:176px}.service-summary{padding:21px}.service-title-row{gap:13px}.service-title-row .illustration{width:56px;height:56px;flex-basis:56px}.service-title-row h2{font-size:21px}.service-summary .text-link{font-size:14px}.service-body{padding:0 21px 24px}.service-body .button{font-size:14px}.story-gallery figcaption{font-size:14px}.photo-story .section-heading>p{font-size:15px}.company-timeline h3{font-size:18px}
}
@media(prefers-reduced-motion:reduce){
 .partner-track{animation:none;width:auto}.partner-window{overflow-x:auto;mask-image:none}.partner-group[aria-hidden=true]{display:none}.illustration,.button{transition:none}.scenario-tabs button:hover>.illustration{transform:none}
}

.partner-group[aria-hidden=true]{display:none}
@media(prefers-reduced-motion:no-preference){
 [data-partner-enhanced] .partner-window{overflow:hidden}
 [data-partner-enhanced] .partner-group[aria-hidden=true]{display:flex}
 [data-partner-enhanced] .partner-track{animation:partner-travel 42s linear infinite}
 [data-partner-enhanced]:is(:hover,:focus-within) .partner-track{animation-play-state:paused}
}

/* Regional offer uses actual equipment, never a fabricated local branch. */
.regional-intro{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center}
.regional-intro h1{font-size:clamp(34px,3.6vw,52px)}
.regional-intro-copy>p:not(.eyebrow){font-size:18px;line-height:1.75;color:var(--muted);max-width:50ch}
.regional-intro-visual{margin:0;background:radial-gradient(ellipse at center,#fff,#eaf2f8);border:1px solid var(--line);border-radius:18px;overflow:hidden;padding:25px}
.regional-intro-visual>img{width:100%;height:310px;object-fit:contain}
.service-intro-visual{padding:0}.service-intro-visual>img{object-fit:cover}
.split>div>.illustration{margin-bottom:18px}
.feature>.illustration{margin-bottom:24px;width:72px;height:72px}
@media(max-width:900px){.regional-intro{grid-template-columns:1fr;gap:28px}.regional-intro-copy>p:not(.eyebrow){max-width:65ch}.regional-intro-visual>img{height:230px}}
@media(max-width:620px){.regional-intro h1{font-size:34px}.regional-intro-copy>p:not(.eyebrow){font-size:17px}.regional-intro-visual{padding:15px}.regional-intro-visual>img{height:210px}.service-intro-visual{padding:0}.feature>.illustration{width:56px;height:56px}}

/* Readable supporting copy across catalog, service and contact templates. */
.breadcrumbs{font-size:12px}
.page-intro p:not(.eyebrow){font-size:18px;line-height:1.75}
.contact-facts,.form-more summary{font-size:15px}
.inquiry-panel>p:not(.eyebrow){font-size:16px}
.preview-note{font-size:13px!important}
.feature p{font-size:16px;line-height:1.75}
.specs{font-size:15px}
@media(max-width:620px){.page-intro p:not(.eyebrow){font-size:17px}.feature p,.inquiry-panel>p:not(.eyebrow){font-size:15px}.specs{font-size:14px}}

/* Guided inquiry: keep unknown answers valid and disclose relevant detail. */
.contact-form-link{margin-bottom:20px}
.copy-email{min-height:40px;border:0;background:transparent;color:var(--blue);padding:5px 0;font-size:14px;font-weight:700;text-decoration:underline;text-underline-offset:4px}
.contact-option strong{user-select:text}
.inquiry-group{border:0;padding:0;margin:28px 0;min-width:0}
.inquiry-group legend{font-size:19px;font-weight:750;line-height:1.4;padding:0;margin-bottom:20px;display:flex;align-items:center;gap:12px}
.inquiry-group legend>span,.inquiry-number{font-size:12px;font-weight:800;width:28px;height:28px;border-radius:50%;background:var(--tint);color:var(--blue);display:inline-grid;place-items:center;flex:0 0 28px}
.inquiry-details{border-top:1px solid var(--line);padding-block:0 8px;margin:0}
.inquiry-details>summary{display:flex;align-items:center;gap:12px;min-height:88px;padding-block:19px;list-style:none;cursor:pointer;font-size:19px;font-weight:750;line-height:1.4}
.inquiry-details>summary::-webkit-details-marker{display:none}
.inquiry-details>summary small{display:block;font-size:13px;font-weight:500;color:var(--muted);margin-top:3px}
.inquiry-details>summary>.icon{margin-left:auto;color:var(--blue);transform:rotate(90deg);width:18px;flex-basis:18px;transition:transform .2s}
.inquiry-details[open]>summary>.icon{transform:rotate(-90deg)}
.inquiry-details>.form-grid{padding:2px 0 18px}
.inquiry-help{font-size:14px;color:var(--muted);margin:0 0 18px;line-height:1.6}
.inquiry-fields{margin-top:20px}
.inquiry-context{font-size:14px;line-height:1.65;background:var(--tint);border-left:2px solid var(--blue);padding:12px 15px;margin:18px 0 0}
.inquiry-context a{font-weight:750;color:var(--blue);text-decoration:underline}
.inquiry-contact{border-top:1px solid var(--line);padding-top:24px;margin-top:24px}
.inquiry-panel .form-grid{align-items:start}
.inquiry-panel .form-field>select,.inquiry-panel .form-field>input{width:100%;min-width:0;margin:0}
.inquiry-panel .form-field>label{line-height:1.5}
.inquiry-panel select{font-size:15px;padding-right:27px}
.inquiry-panel .field-error:empty{display:none}
@media(min-width:901px){.contact-layout{grid-template-columns:.8fr 1.2fr;gap:60px;align-items:start}.contact-layout>div:first-child{position:sticky;top:105px}.inquiry-panel{padding:32px}}
@media(max-width:620px){.inquiry-group legend,.inquiry-details>summary{font-size:18px}.inquiry-panel .form-grid{grid-template-columns:1fr;gap:18px}.inquiry-panel select{font-size:16px}.inquiry-details>summary{min-height:82px}.inquiry-group{margin-block:24px}.contact-form-link{font-size:15px}.inquiry-context{font-size:14px}}
@media(prefers-reduced-motion:reduce){.inquiry-details>summary>.icon{transition:none}}

/* V4: recognizable references, purposeful catalog groups and useful reading. */
.partner-inner{padding-block:38px;grid-template-columns:220px minmax(0,1fr)}
.partner-heading p{font-size:19px}.partner-heading a{font-size:14px}
.partner-group li{width:208px;flex-basis:208px;height:128px;padding:12px 14px}
.partner-logo{display:grid;place-items:center;width:100%;height:104px;border-radius:12px;padding:12px}
.partner-group img{height:82px;width:100%;max-width:170px}.partner-group li:last-child img{max-width:95px}

[data-partner-enhanced] .partner-track{animation-duration:65s}
.festival-section{background:linear-gradient(130deg,#eef6fb,#fff 75%);border-block:1px solid var(--line)}
.festival-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-bottom:28px}
.festival-grid article{background:#fff;border:1px solid var(--line);border-radius:18px;padding:20px}
.festival-logo{border-radius:11px;display:grid;place-items:center;height:150px;margin-bottom:22px;background-color:#edf2f7}
.festival-logo img{width:155px;height:108px;object-fit:contain}
.festival-grid h3{font-size:21px;margin:0 0 6px}.festival-grid p{color:var(--muted);margin:0}
.festival-followup{display:grid;grid-template-columns:1fr 1fr;gap:30px;margin:40px 0}
.festival-followup>div{display:flex;align-items:center;gap:24px}.festival-followup img{width:140px;height:100px;object-fit:contain;padding:14px;border-radius:12px}.festival-followup h3{font-size:21px}.festival-followup p{color:var(--muted)}
.catalog-sections{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;padding-top:40px}
.catalog-sections>a{display:flex;align-items:center;gap:13px;border:1px solid #c6d9e5;background:linear-gradient(130deg,#fff,#edf6fc);border-radius:18px;padding:16px;min-height:115px;box-shadow:0 7px 24px #163d5f08;transition:transform .2s,border-color .2s}
.catalog-sections>a:hover{transform:translateY(-3px);border-color:var(--blue)}
.catalog-sections .illustration{width:72px;height:72px;margin:0}.catalog-sections span{font-size:19px;font-weight:750}.catalog-sections small{display:block;color:var(--muted);font-size:13px;font-weight:500;margin-top:5px}.catalog-sections .icon{margin-left:auto;flex-shrink:0}
.catalog-section{padding-top:65px;scroll-margin-top:110px}.catalog-section+.catalog-section{border-top:1px solid var(--line);margin-top:65px}.ups-catalog{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}
.ups-context{background:linear-gradient(150deg,#e9f3fa,#f7fafc);border-radius:20px;padding:36px}.ups-context h3{font-size:26px;line-height:1.3}.ups-context p,.ups-context li{color:var(--muted)}.ups-context li{margin-block:12px}.ups-context .illustration{width:90px;height:90px}
.accessory-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-top:35px}.accessory-grid article{border:1px solid var(--line);border-radius:18px;padding:26px;display:flex;align-items:flex-start;flex-direction:column;background:#fff}.accessory-grid .illustration{width:82px;height:82px;margin-bottom:20px}.accessory-grid h3{font-size:21px}.accessory-grid p{font-size:16px;color:var(--muted)}.accessory-grid details{width:100%;margin:8px 0 20px}.accessory-grid summary{cursor:pointer;font-size:15px;font-weight:700;padding-block:12px}.accessory-grid .text-link{margin-top:auto;font-size:15px}.catalog-note{font-size:14px;color:var(--muted);padding-block:26px}
@media(min-width:901px) and (max-width:1180px){.desktop-nav{gap:12px}.desktop-nav a{font-size:13px}.desktop-nav .icon{display:none}.header-inner{gap:15px}.header-phone{font-size:14px}}
@media(max-width:1000px){.catalog-sections>a{padding:12px;gap:8px}.catalog-sections .illustration{width:52px;height:52px}.catalog-sections span{font-size:17px}.accessory-grid{grid-template-columns:1fr 1fr}.festival-followup{gap:20px}.festival-followup>div{align-items:flex-start;flex-direction:column}}
@media(max-width:760px){.partner-inner{padding-block:26px;grid-template-columns:1fr;gap:16px}.partner-heading p{font-size:17px}.partner-group li{width:180px;flex-basis:180px;height:112px;padding:8px 12px}.partner-logo{height:96px}.partner-group img{height:72px}.festival-grid{gap:12px}.festival-grid article{padding:12px}.festival-grid h3{font-size:17px}.festival-grid p{font-size:14px}.festival-logo{height:105px;margin-bottom:14px}.festival-logo img{width:90px;height:85px}.catalog-sections{grid-template-columns:1fr;gap:10px;padding-top:26px}.catalog-sections>a{min-height:84px;padding:10px 18px}.catalog-sections .illustration{width:58px;height:58px}.catalog-sections span{font-size:18px}.catalog-sections small{font-size:13px}.catalog-section{padding-top:44px}.catalog-section+.catalog-section{margin-top:44px}.ups-catalog{grid-template-columns:1fr}.ups-context{padding:25px}.festival-followup{grid-template-columns:1fr}.festival-followup>div{flex-direction:row}.accessory-grid{gap:14px}.accessory-grid article{padding:20px}.accessory-grid h3{font-size:19px}}
@media(max-width:480px){.festival-grid{grid-template-columns:1fr}.festival-grid article{display:grid;grid-template-columns:110px minmax(0,1fr);gap:0 18px;align-items:center;padding:16px}.festival-logo{grid-row:1/3;margin:0}.festival-grid h3{align-self:end;margin-bottom:5px}.festival-grid p{align-self:start}.accessory-grid{grid-template-columns:1fr}.festival-followup img{width:100px;height:85px}}
@media(prefers-reduced-motion:reduce){.catalog-sections>a{transition:none}.catalog-sections>a:hover{transform:none}}
.guide-hero{display:grid;grid-template-columns:1.05fr 1fr;gap:60px;align-items:center;padding-block:35px 55px}.guide-hero h1{font-size:clamp(34px,4vw,54px);line-height:1.14;margin:16px 0 25px}.guide-hero p:not(.eyebrow){font-size:20px;line-height:1.7;color:var(--muted)}.guide-hero figure{margin:0}.guide-hero img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:22px}
.guide-principles{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:25px;padding-bottom:65px}.guide-principles section{position:relative;padding:25px;border-radius:18px;background:linear-gradient(140deg,#edf5fc,#fff);border:1px solid var(--line)}.guide-principles .illustration{width:82px;height:82px;margin-bottom:20px}.guide-principles .overline{position:absolute;right:25px;top:27px;color:var(--blue)}.guide-principles h2{font-size:22px;margin-bottom:12px}.guide-principles p{color:var(--muted);line-height:1.75;margin:0}
.guide-layout{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(300px,1fr);gap:70px;align-items:start}.guide-reading section{margin-bottom:45px;scroll-margin-top:120px}.guide-reading h2{font-size:29px;line-height:1.3;margin:0 0 22px}.guide-reading p{font-size:18px;line-height:1.85;color:var(--muted)}.guide-tool{background:#eef5fb;border:1px solid #cbdeed;border-radius:20px;padding:28px;scroll-margin-top:110px}.guide-tool>.illustration{width:90px;height:90px}.guide-tool h2{font-size:27px}.guide-tool>p{color:var(--muted)}.guide-checks label{display:flex;align-items:flex-start;gap:13px;padding:15px 0;border-bottom:1px solid #cddde8;cursor:pointer;line-height:1.5}.guide-checks input{width:21px;height:21px;flex:0 0 21px;margin-top:2px;accent-color:var(--blue)}.guide-progress{margin-block:25px}.guide-progress progress{width:100%;height:8px;accent-color:var(--blue)}.guide-progress p{font-size:14px;font-weight:700}.guide-tool>.small{font-size:13px;margin:22px 0 0;line-height:1.7}
.guide-link-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:25px}.guide-link-grid>a{display:flex;align-items:center;gap:20px;padding:25px;border:1px solid var(--line);border-radius:18px;background:#fff}.guide-link-grid .illustration{width:70px;height:70px;margin:0}.guide-link-grid h3{font-size:20px}.guide-link-grid p{font-size:15px;color:var(--muted)}.guide-link-grid>a>.icon{flex-shrink:0}.guide-hub{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;padding-bottom:70px}.guide-hub>a{border:1px solid var(--line);border-radius:20px;overflow:hidden;background:white}.guide-hub-photo{width:100%;aspect-ratio:4/3;object-fit:cover}.guide-hub>a>div{padding:25px}.guide-hub .illustration{width:72px;height:72px}.guide-hub h2{font-size:25px;line-height:1.3}.guide-hub p{color:var(--muted)}.guide-hub .text-link{font-size:14px}
@media(max-width:1000px){.guide-layout{gap:35px}.guide-hero{gap:30px}.guide-reading p{font-size:17px}.guide-hub{gap:16px}.guide-hub>a>div{padding:20px}}
@media(max-width:760px){.guide-hero{grid-template-columns:1fr;gap:28px;padding-block:20px 35px}.guide-hero p:not(.eyebrow){font-size:18px}.guide-hero img{aspect-ratio:16/10}.guide-principles{grid-template-columns:1fr;gap:12px;padding-bottom:40px}.guide-principles section{padding:22px 22px 22px 104px;min-height:140px}.guide-principles .illustration{position:absolute;left:16px;top:22px;width:68px;height:68px}.guide-principles .overline{display:none}.guide-principles h2{font-size:21px}.guide-layout{grid-template-columns:1fr;gap:30px}.guide-reading h2{font-size:26px}.guide-link-grid{grid-template-columns:1fr}.guide-link-grid>a{padding:20px;gap:14px}.guide-hub{grid-template-columns:1fr}.guide-tool{padding:24px}.guide-related h2{font-size:28px}}
.accessories-primary{grid-template-columns:1fr 1fr}
.regional-quick-note{font-size:14px!important;margin-top:20px!important}.regional-decisions{display:grid;grid-template-columns:1.25fr 1fr;gap:35px;padding-block:45px}.regional-price{display:flex;align-items:flex-start;gap:22px;padding:28px;background:linear-gradient(130deg,#eaf4fc,#f9fbfd);border:1px solid #d2e1ed;border-radius:20px}.regional-price>.illustration{width:85px;height:85px;flex-shrink:0}.regional-price h2{font-size:27px}.regional-price p:not(.eyebrow){color:var(--muted);font-size:17px;line-height:1.8}.regional-needs{padding:18px 10px}.regional-needs h2{font-size:22px;margin:0 0 10px}.regional-needs>a{display:flex;align-items:center;gap:13px;padding:13px 0;border-bottom:1px solid var(--line);font-size:16px;font-weight:650}.regional-needs>a>.icon:last-child{margin-left:auto}.regional-planning{display:grid;grid-template-columns:1fr 1fr;gap:65px;align-items:center}.regional-planning>.illustration,.regional-planning>div>.illustration{width:92px;height:92px}.regional-planning h2{font-size:33px;line-height:1.3}.regional-planning h3{font-size:23px}.regional-planning p{font-size:17px;line-height:1.8;color:var(--muted)}.regional-details{border-block:1px solid var(--line);margin:23px 0}.regional-details summary{font-weight:700;padding:18px 0;cursor:pointer}.regional-details p{font-size:16px}
.regional-proof{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;border:1px solid var(--line);border-radius:20px;padding:30px;background:linear-gradient(140deg,#f0f6fa,#fff);margin-bottom:55px}.regional-proof-image{border-radius:14px;overflow:hidden;height:310px}.regional-proof-image img{width:100%;height:100%;object-fit:cover}.regional-proof-logo{display:grid;place-items:center;background:#eaf0f5}.regional-proof-logo img{object-fit:contain;width:65%;height:65%}.regional-proof h2{font-size:33px}.regional-proof p:not(.eyebrow){color:var(--muted);font-size:18px;line-height:1.8}.regional-delivery{display:flex;gap:25px;align-items:flex-start;padding-bottom:45px}.regional-delivery>.icon{width:35px;height:35px;flex-shrink:0;color:var(--blue)}.regional-delivery h2{font-size:22px}.regional-delivery p{color:var(--muted);max-width:720px}.regional-delivery>.text-link{margin-left:auto;flex-shrink:0;font-size:14px}.map-pending{font-size:13px;color:var(--muted);border-left:3px solid #b7cbd8;padding:8px 15px;margin-top:15px}
@media(max-width:1000px){.regional-planning{gap:30px}.regional-price{display:block}.regional-proof{gap:25px}.regional-delivery{flex-wrap:wrap}.regional-delivery>.text-link{margin-left:60px}}
@media(max-width:760px){.regional-decisions{grid-template-columns:1fr;gap:20px;padding-block:30px}.regional-price{display:flex;padding:22px;gap:16px}.regional-price>.illustration{width:62px;height:62px}.regional-price h2{font-size:23px}.regional-price p:not(.eyebrow){font-size:16px}.regional-needs{padding:0 6px}.regional-planning{grid-template-columns:1fr}.regional-planning h2{font-size:29px}.regional-proof{grid-template-columns:1fr;padding:20px;margin-bottom:35px;gap:25px}.regional-proof-image{height:235px}.regional-proof h2{font-size:28px}.regional-proof p:not(.eyebrow){font-size:16px}.regional-delivery{gap:16px}.regional-delivery>div{flex:1;min-width:220px}.regional-delivery>.text-link{margin-left:0}.accessories-primary{grid-template-columns:1fr}}
/* Partner marks always sit on white, including regional reference cards. */
.partner-logo,.festival-logo,.regional-proof-logo{background:#fff!important}
.logo-monochrome img{filter:brightness(0)}
.logo-outlined img{filter:drop-shadow(.6px 0 0 #172127) drop-shadow(-.6px 0 0 #172127) drop-shadow(0 .6px 0 #172127) drop-shadow(0 -.6px 0 #172127)}

/* V5 — čitelné hranice sekcí, společná osa regionů a pohotovost. */
.surface-section { background:#e8f0f6; border-block:1px solid #d6e2ec; }
.regional-planning-band { background:linear-gradient(115deg,#dce9f3,#edf3f8); }
.regional-planning { align-items:start; }
.regional-planning h2 { max-width:19ch; }
.regional-planning p.eyebrow { font-size:12px; line-height:1.7; }
.regional-proof-band { background:#e7eef5; border-block:1px solid #cfdeea; }
.regional-proof-band .regional-proof { border:0; border-radius:0; background:none; padding:60px 0; margin-bottom:0; }
.regional-delivery { padding-block:45px; }
.regional-proof-band + .regional-delivery { border-bottom:1px solid var(--line); }
.standby-page { --section-space:78px; }
.standby-page .section { padding-block:var(--section-space); }
.standby-page h2 { font-size:clamp(29px,3vw,43px); line-height:1.2; letter-spacing:-.045em; }
.standby-page h3 { letter-spacing:-.025em; }
.standby-page .section-heading>p { max-width:42ch; font-size:18px; line-height:1.75; }
.standby-hero-band { background:linear-gradient(115deg,#e0ebf4 0%,#f2f6fa 66%,#dce8f3 100%); border-bottom:1px solid #cddde9; }
.standby-hero { display:grid; grid-template-columns:1.04fr 1fr; gap:55px; align-items:center; padding-block:42px 55px; }
.standby-hero h1 { font-size:clamp(42px,4.3vw,64px); line-height:1.08; letter-spacing:-.055em; margin-bottom:23px; }
.standby-hero h1 span { color:#306a9e; }
.standby-lead { font-size:19px; line-height:1.75; color:#465868; max-width:47ch; }
.standby-hero .actions { gap:17px; margin-top:28px; }
.standby-hero .text-link { font-size:14px; }
.standby-urgent { display:inline-flex; align-items:center; gap:10px; margin-top:24px; font-size:14px; font-weight:650; color:#334f66; }
.standby-urgent .icon { flex-shrink:0; }
.standby-hero-photo { margin:0; border-radius:18px; overflow:hidden; box-shadow:0 18px 42px #16334e18; border:1px solid #b8cbdc; background:#fff; }
.standby-hero-photo img { width:100%; height:420px; object-fit:cover; object-position:60% center; }
.standby-hero-photo figcaption { display:flex; gap:15px; justify-content:space-between; padding:19px 22px; font-size:13px; font-weight:700; color:#36556e; }
.standby-case-band { background:#153c59; color:#fff; border-bottom:4px solid #3c779f; }
.standby-case { display:grid; grid-template-columns:1.25fr 1fr; column-gap:60px; padding-block:47px 32px; align-items:center; }
.standby-case .eyebrow { color:#a9d0e9; }
.standby-case h2 { font-size:32px; }
.standby-case p:not(.eyebrow) { color:#d7e4ee; font-size:16px; line-height:1.8; }
.standby-case-facts { display:grid; grid-template-columns:1fr 1.2fr; gap:25px; }
.standby-case-facts strong { font-size:53px; letter-spacing:-.05em; line-height:1.05; }
.standby-case-facts span { display:block; font-size:13px; letter-spacing:0; line-height:1.5; color:#bfdaed; margin-top:12px; font-weight:500; }
.standby-case-bottom { grid-column:1/-1; border-top:1px solid #ffffff30; padding-top:23px; margin-top:25px; margin-bottom:0; }
.standby-case-bottom b { color:#fff; }
.standby-risk-band { background:#f8fafc; }
.standby-sector-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.standby-sector-grid article { background:#fff; border:1px solid #d3e0ea; border-top:3px solid #608baa; padding:29px; border-radius:4px 4px 14px 14px; }
.standby-sector-grid .icon { width:34px; height:34px; color:#386887; margin-bottom:18px; }
.standby-sector-grid h3 { font-size:23px; }
.standby-sector-grid p { font-size:17px; color:var(--muted); line-height:1.8; }
.standby-page details { border-top:1px solid #cad8e3; margin-top:22px; }
.standby-page summary { cursor:pointer; font-weight:700; font-size:15px; padding-block:17px; }
.standby-page details p { font-size:16px; line-height:1.8; }
.standby-risk-question { display:grid; grid-template-columns:.7fr 1.3fr; gap:50px; padding:28px 0 0; margin-top:28px; border-top:1px solid #cbd9e4; }
.standby-risk-question h3 { font-size:25px; }
.standby-risk-question p { color:var(--muted); font-size:17px; line-height:1.8; margin:0; }
.standby-preparation-band { background:#e2edf5; border-block:1px solid #cadce9; }
.standby-preparation { list-style:none; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:30px 60px; margin:0; }
.standby-preparation>li { display:flex; align-items:flex-start; gap:24px; border-top:1px solid #b4cbdc; padding-top:28px; }
.standby-step-number { font-size:42px; line-height:1; font-weight:750; color:#7096b2; letter-spacing:-.05em; }
.standby-preparation h3 { font-size:24px; }
.standby-preparation .overline { margin-top:0; color:#345971; }
.standby-preparation p:not(.overline) { font-size:17px; line-height:1.8; color:#465c6b; }
.standby-priority-band { background:#fff; }
.standby-priorities { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.standby-priority { border:1px solid #c5d6e4; border-radius:14px; background:#f3f7fa; padding:25px; }
.standby-priority.reserved { background:#e2edf5; border:2px solid #4c799a; padding:24px; }
.priority-label { display:inline-flex; font-size:27px; font-weight:800; color:#346588; margin-bottom:20px; border-bottom:3px solid #d9343b; padding-bottom:8px; }
.standby-priority h3 { font-size:22px; line-height:1.35; min-height:60px; }
.standby-priority>strong { display:block; font-size:14px; line-height:1.6; min-height:48px; }
.standby-priority p { color:#506575; font-size:16px; line-height:1.75; }
.standby-three-settings { display:grid; grid-template-columns:repeat(3,1fr); gap:35px; padding-top:38px; margin-top:35px; border-top:1px solid #cedde8; }
.standby-three-settings .icon { width:27px; height:27px; color:#487a9d; margin-bottom:12px; }
.standby-three-settings h3 { font-size:20px; }
.standby-three-settings p { color:var(--muted); font-size:16px; line-height:1.7; }
.standby-setting-note { color:#486174; font-size:15px; border-left:3px solid #7297b2; padding-left:15px; margin:18px 0 0; }
.standby-scope-band { background:#dce8f2; border-block:1px solid #c7d8e6; }
.standby-scope { display:grid; grid-template-columns:1fr 1fr; gap:45px 65px; align-items:start; }
.standby-scope>div>p:not(.eyebrow) { font-size:18px; line-height:1.8; color:#435c6e; }
.standby-price-factors { display:grid; gap:19px; }
.standby-price-factors>div { display:flex; gap:20px; padding-bottom:18px; border-bottom:1px solid #bbcfde; }
.standby-price-factors>div>span { font-size:15px; font-weight:700; color:#63849d; padding-top:3px; }
.standby-price-factors h3 { font-size:20px; margin-bottom:8px; }
.standby-price-factors p { font-size:16px; line-height:1.7; margin:0; color:#435c6e; }
.standby-scope-price { grid-column:1/-1; padding:23px 27px; margin:0; background:#f8fbfd; border-radius:9px; font-size:17px; line-height:1.8; color:#34526b; }
.standby-response-band { background:#17364d; color:#fff; }
.standby-response-band .eyebrow { color:#a9cce5; }
.standby-response { list-style:none; padding:0; margin:42px 0 25px; display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.standby-response li { border-top:2px solid #6299be; padding-top:24px; }
.standby-response span { font-size:14px; color:#a3c6df; }
.standby-response h3 { font-size:22px; margin-top:14px; }
.standby-response p { font-size:16px; line-height:1.75; color:#c6d8e5; }
.standby-response-note { border-top:1px solid #ffffff30; padding-top:25px; color:#d1e0ea; font-size:17px; line-height:1.8; margin:0; }
.standby-events-band { background:#e9eff4; border-bottom:1px solid #d1dee8; }
.standby-events { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.standby-events article { background:#fff; padding:29px; border:1px solid #d0dce5; border-radius:12px; display:flex; flex-direction:column; }
.event-date { font-size:13px; font-weight:750; color:#436781; margin-bottom:23px; }
.event-date span { display:block; font-size:12px; color:#60788a; font-weight:500; margin-top:7px; }
.standby-events h3 { font-size:24px; line-height:1.35; }
.standby-events p { color:var(--muted); font-size:16px; line-height:1.8; }
.standby-events .text-link { margin-top:auto; padding-top:12px; font-size:14px; }
.standby-events-band .small { margin:20px 0 0; }
.standby-client-note { display:flex; gap:18px; padding-block:22px; border-top:1px solid var(--line); }
.standby-client-note p { font-size:15px; line-height:1.7; margin:0; }
.standby-client-note .icon { flex-shrink:0; margin-top:3px; color:#426e8e; }
@media(max-width:1100px) {
 .standby-hero { gap:30px; }
 .standby-hero-photo img { height:390px; }
 .standby-priorities { grid-template-columns:1fr 1fr; }
 .standby-priority h3,.standby-priority>strong { min-height:0; }
 .standby-case { column-gap:30px; }
 .standby-case-facts strong { font-size:43px; }
 .standby-scope { gap:35px; }
}
@media(max-width:760px) {
 .standby-page { --section-space:48px; }
 .standby-hero { grid-template-columns:1fr; padding-block:30px 38px; gap:28px; }
 .standby-hero h1 { font-size:44px; }
 .standby-hero h1 br:nth-child(2) { display:none; }
 .standby-hero h1 span::before { content:' '; }
 .standby-lead { font-size:17px; }
 .standby-hero-photo img { height:auto; aspect-ratio:1.5; object-position:center; }
 .standby-hero-photo figcaption { padding:15px; gap:10px; font-size:11px; }
 .standby-urgent { font-size:13px; line-height:1.7; }
 .standby-case { grid-template-columns:1fr; gap:25px; padding-block:35px; }
 .standby-case h2 { font-size:28px; }
 .standby-case-facts { gap:30px; }
 .standby-case-facts strong { font-size:44px; }
 .standby-case-bottom { margin-top:0; }
 .standby-page .section-heading>p { font-size:17px; }
 .standby-sector-grid,.standby-preparation,.standby-scope,.standby-events { grid-template-columns:1fr; }
 .standby-sector-grid article,.standby-events article { padding:24px; }
 .standby-risk-question { grid-template-columns:1fr; gap:5px; }
 .standby-preparation { gap:25px; }
 .standby-preparation>li { gap:20px; }
 .standby-step-number { font-size:35px; }
 .standby-preparation h3 { font-size:23px; }
 .standby-priorities { gap:12px; }
 .standby-priority,.standby-priority.reserved { padding:19px; }
 .standby-priority h3 { font-size:20px; }
 .standby-three-settings { grid-template-columns:1fr; gap:17px; }
 .standby-three-settings>div { border-bottom:1px solid #d6e0e8; padding-bottom:10px; }
 .standby-three-settings .icon { float:left; margin-right:15px; }
 .standby-scope { gap:30px; }
 .standby-scope-price { padding:21px; font-size:16px; }
 .standby-response { grid-template-columns:1fr 1fr; gap:23px; }
 .standby-response h3 { font-size:20px; }
 .regional-proof-band .regional-proof { padding-block:38px; }
}
@media(max-width:480px) {
 .standby-priorities { grid-template-columns:1fr; }
 .standby-priority { display:grid; grid-template-columns:45px 1fr; column-gap:14px; }
 .standby-priority .priority-label { grid-column:1; grid-row:1/3; align-self:start; margin:0; font-size:26px; }
 .standby-priority h3,.standby-priority>strong { grid-column:2; }
 .standby-priority>p,.standby-priority>details { grid-column:1/-1; }
 .standby-response { grid-template-columns:1fr; gap:17px; }
 .standby-response li { display:grid; grid-template-columns:30px 1fr; gap:3px 12px; padding-top:17px; }
 .standby-response h3 { margin:0; }.standby-response p { grid-column:2; margin:0; }
}

.regional-needs { padding-inline:0; }
.standby-hero-photo figcaption a { display:flex; align-items:center; justify-content:space-between; gap:15px; width:100%; }
.standby-realizations { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:45px; }
.standby-realizations figure { margin:0; }
.standby-realizations img { width:100%; height:280px; object-fit:cover; border-radius:12px; }
.standby-realizations figcaption { font-size:13px; color:#416078; margin-top:13px; line-height:1.6; }
@media(max-width:760px) { .standby-realizations { grid-template-columns:1fr; gap:25px; } .standby-realizations img { height:auto; aspect-ratio:1.5; } }

.regional-proof-logo { background:#fff; }
@media(max-width:1000px) {
 .standby-page .section-heading { display:block; }
 .standby-page .section-heading>p { max-width:70ch; margin-top:18px; }
}

/* V6 — photo-led direction B, with open technical rows from A. */
:root{--bg:#fff;--surface:#fff;--ink:#163345;--muted:#4c6070;--line:#d3dfe6;--blue:#245d88;--blue-hover:#194668;--navy:#163345;--soft:#f2f6f8;--tint:#e5eef2;--accent:#3f6a71;--red:#c52f35;--radius:10px}
body{background:#fff;font-size:18px;line-height:1.7}
h1{font-size:clamp(36px,3.7vw,52px);font-weight:700;line-height:1.13;letter-spacing:-.045em}
h2{font-size:clamp(28px,2.65vw,38px);line-height:1.2;letter-spacing:-.035em}
.wrap{width:min(var(--max),calc(100% - 80px))}
.section{padding-block:72px}
.page-intro{padding-block:38px 44px}.page-intro h1{font-size:clamp(36px,3.7vw,52px)}
.button{border-radius:8px;background:var(--blue);box-shadow:none;min-height:48px;font-size:15px;transition:background .22s,transform .22s}
.button:hover{background:var(--blue-hover);box-shadow:none;transform:none}.button.secondary{background:#fff;border:1px solid #b8cbd6;color:var(--ink)}.button.secondary:hover{background:var(--soft)}
.button>.icon{transition:transform .22s}.button:hover>.icon:last-child{transform:translateX(3px)}
.eyebrow{color:#496879;letter-spacing:.08em}.text-link{color:var(--blue)}
.site-header{background:#fff;box-shadow:none;border-bottom:1px solid var(--line)}
.header-inner{min-height:88px}.header-phone{font-size:15px}.desktop-nav>a{font-size:14px}
.photo-led-hero{background:#fff}.photo-led-heading{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;padding-block:34px}
.photo-led-heading h1{margin:0;font-size:clamp(40px,3.7vw,54px);max-width:16ch}.photo-led-heading>div{border-left:1px solid var(--line);padding-left:42px}
.photo-led-heading p{font-size:20px;line-height:1.5;max-width:33ch;margin:0 0 22px}.photo-led-heading .actions{gap:14px;margin:0}
.photo-led-image{max-width:var(--max);margin:0 auto;overflow:hidden}.photo-led-image img{width:100%;height:clamp(320px,43.75vw,560px);object-fit:cover;object-position:50% 65%}
.service-scope{border-bottom:1px solid var(--line);background:#fff}.service-scope-inner{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));padding-block:20px}
.service-scope a{display:flex;align-items:center;gap:18px;padding:0 24px;border-right:1px solid var(--line)}.service-scope a:first-child{padding-left:0}.service-scope a:last-child{border:0}
.service-scope a>.icon:first-child{width:32px;height:32px;color:var(--blue);flex-shrink:0}.service-scope a>.icon:last-child{width:17px;height:17px;margin-left:auto}
.service-scope strong{display:block;font-size:16px}.service-scope small{display:block;font-size:14px;color:var(--muted)}.service-scope a:hover strong{color:var(--blue);text-decoration:underline;text-underline-offset:4px}
.partner-inner{padding-block:24px;grid-template-columns:180px minmax(0,1fr);gap:30px}.partner-heading p{font-size:17px}.partner-heading a{font-size:13px}.partner-group li{height:100px;width:208px;flex-basis:208px}.partner-logo{height:94px;border-radius:0;padding:8px}.partner-group img{height:74px}
.partner-compact .partner-inner{padding-block:15px}.partner-compact .partner-group li{height:86px}.partner-compact .partner-logo{height:80px}.partner-compact .partner-group img{height:64px}
.surface-section,.archive-band{background:#edf3f6;border-color:var(--line)}
.scenario-tabs{gap:0;border-bottom:1px solid #bdcdd8}.scenario-tabs button{background:transparent;border:0;border-radius:0;box-shadow:none;border-bottom:3px solid transparent;padding-block:18px}.scenario-tabs button:hover{transform:none;background:#f2f6f8}.scenario-tabs button[aria-expanded=true]{background:#e5eef2;border-bottom-color:var(--blue);box-shadow:none}
.scenario-tabs .illustration{width:56px;height:56px}.scenario-panel{background:#f2f6f8;border-radius:0;border:0;padding:32px}.scenario-panel p{font-size:17px}
.product-card,.reference-card{border-radius:10px;box-shadow:none;border-color:var(--line)}.product-card:hover,.reference-card:hover{box-shadow:0 8px 20px #1633450b;transform:translateY(-2px)}
.product-image{border-radius:0;background:#eef3f6}.product-image.contain{background:#f2f6f8}.product-copy{padding:24px}.product-copy h3{font-size:23px}.product-copy p{font-size:16px;line-height:1.7}.product-bottom{border-top:1px solid var(--line);padding-top:16px}
.process-section{background:#e2ecef}.process-grid{gap:30px}.process-card{border:0;border-top:2px solid #b4c9d2;background:transparent;box-shadow:none;border-radius:0;padding:25px 0 0}.process-symbol{background:transparent;box-shadow:none;border-radius:0}.process-card:hover{box-shadow:none;transform:none}
.process-symbol,.process-symbol>.illustration{width:60px;height:60px}.process-symbol>.process-number{background:transparent;border:0;color:#486a7b;right:-25px}.process-card>p{font-size:16px}.process-card h3{font-size:21px}.process-detail summary{font-size:14px}
.preparedness-preview{background:#dce8ed}.preparedness-grid{display:grid;grid-template-columns:.9fr 1.15fr;gap:58px;padding-block:64px;align-items:center}.preparedness-grid>img{width:100%;height:420px;object-fit:cover;border-radius:0}.preparedness-grid h2{font-size:38px}.preparedness-grid>div>p:not(.eyebrow){font-size:18px;color:var(--muted)}
.preparation-route{list-style:none;padding:0;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin:30px 0}.preparation-route li{border-top:1px solid #adc2cd;padding-top:16px;display:flex;flex-direction:column;gap:12px;font-size:14px;line-height:1.45;font-weight:650}.preparation-route .icon{width:27px;height:27px;color:var(--blue)}.preparation-route small{display:block;color:#577584;font-size:12px;margin-bottom:4px}.preparation-route a:hover{text-decoration:underline;text-underline-offset:4px}
.rental-opening{background:#f2f6f8;border-bottom:1px solid var(--line);padding-bottom:28px}.rental-heading{display:grid;grid-template-columns:1.5fr .8fr;gap:64px;align-items:center;padding-block:30px}.rental-heading p:not(.eyebrow){max-width:58ch;font-size:18px;color:var(--muted)}.rental-heading>img{width:100%;height:255px;object-fit:cover;object-position:50% 70%;border-radius:14px}.rental-heading h1{font-size:46px}.rental-heading .actions{gap:18px}
.catalog-nav{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));background:#fff;border:1px solid #c4d3dd;border-radius:8px}.catalog-nav>a{display:flex;align-items:center;gap:16px;min-height:90px;padding:18px 24px;border-right:1px solid var(--line)}.catalog-nav>a:last-child{border:0}.catalog-nav>a:hover{background:#e7eff3}.catalog-nav>a>.icon{width:26px;height:26px;flex-shrink:0;color:var(--blue)}.catalog-nav>a>.icon:last-child{width:18px;margin-left:auto}.catalog-nav span{font-size:18px;font-weight:700}.catalog-nav small{display:block;font-size:13px;font-weight:450;color:var(--muted)}
.catalog-section{padding-top:48px}.catalog-product-rows{display:flex;flex-direction:column;gap:0;border-top:1px solid var(--line)}.catalog-product-rows .product-card{display:grid;grid-template-columns:220px 1fr;border:0;border-bottom:1px solid var(--line);border-radius:0;padding:24px 0;gap:35px;background:#fff}.catalog-product-rows .product-card:hover{background:#f3f7f9;transform:none;box-shadow:none}.catalog-product-rows .product-image{height:165px;aspect-ratio:auto;border-radius:8px}.catalog-product-rows .product-image img{width:100%;height:100%}.catalog-product-rows .product-copy{padding:0;display:grid;grid-template-columns:1fr minmax(260px,.8fr);column-gap:30px;align-items:start}.catalog-product-rows .overline{grid-column:1/-1}.catalog-product-rows h3{grid-column:1;margin:6px 0 12px}.catalog-product-rows p{grid-column:1;margin:0}.catalog-product-rows .product-bottom{grid-column:2;grid-row:2/4;align-self:center;border:0;margin:0;padding:10px 0 10px 25px;border-left:1px solid var(--line);font-size:16px;display:flex;gap:15px}
.ups-context{background:#fff;border:1px solid var(--line);border-top:4px solid var(--tone-edge);border-radius:14px;box-shadow:none}.accessory-grid article{border:0;border-top:1px solid #b4c9d2;border-radius:0;padding:25px 0;background:transparent}.accessory-grid .illustration{width:60px;height:60px}.accessory-grid{column-gap:38px}.accessory-grid h3{font-size:21px}
.product-detail-opening{align-items:start}.product-detail-opening h1{font-size:42px}.product-detail-visual{border-radius:14px;box-shadow:none;background:#edf3f6}.specs{font-size:16px}.specs th,.specs td{padding:15px 10px}.specs th{color:var(--ink)}
.services-opening{display:grid;grid-template-columns:1.2fr 1fr;gap:65px;align-items:center}.services-opening>img{width:100%;height:320px;object-fit:cover;border-radius:14px}.service-card{border-radius:0;border-inline:0;box-shadow:none}.service-card[open]{box-shadow:none}.service-title-row>.illustration{width:46px;height:46px}.service-summary{padding-block:24px}
.reference-opening{display:grid;grid-template-columns:.85fr 1.15fr;gap:60px;align-items:center;padding-block:34px 50px}.reference-opening p:not(.eyebrow){font-size:18px;color:var(--muted)}.reference-opening-photo{display:block}.reference-opening-photo img{width:100%;height:340px;object-fit:cover;border-radius:0}.reference-opening-photo>span{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:16px 0;font-size:14px;border-bottom:1px solid var(--line)}
.reference-index-entry{gap:60px}.reference-index-photo{border-radius:0}.festival-grid article{box-shadow:none;border-radius:8px}.festival-logo{border-radius:0}
.contact-layout{padding-top:30px;gap:65px}.contact-layout .page-intro{padding:0 0 20px}.contact-layout .page-intro h1{font-size:46px}.contact-option{border-radius:0;border:0;border-bottom:1px solid var(--line);background:transparent;padding:17px 0;margin:0}.contact-option:hover{background:#f2f6f8}.contact-option strong{font-size:24px}.contact-facts{border-top:0;margin-top:24px}.contact-form-link{margin:24px 0 12px}.copy-email{display:block}.inquiry-panel{border-radius:12px;border:1px solid #bfd0dc;background:#f2f6f8;box-shadow:none}.inquiry-panel h2{font-size:30px}.form-field input,.form-field select,.form-field textarea{background:#fff;border-radius:7px}
.regional-intro{grid-template-columns:1.25fr 1fr;gap:60px;padding-block:32px 42px}.regional-intro h1{font-size:44px;line-height:1.2}.regional-intro-visual{border-radius:0;background:transparent;box-shadow:none}.regional-intro-visual img{object-fit:cover;object-position:50% 70%;padding:0;width:100%;height:340px}.regional-intro-copy>p:not(.eyebrow):not(.regional-quick-note){font-size:18px}.regional-quick-note{font-size:14px}.regional-planning-band{background:#dce8ed}.regional-decisions{border-radius:0;box-shadow:none;gap:55px}.regional-price{border-radius:0;background:transparent}.regional-price>.illustration{width:55px;height:55px}.regional-proof-band{background:#edf3f6}.regional-proof-image{border-radius:0}.regional-needs a{border-radius:0}
.standby-hero-band{background:#e3ecef}.standby-hero{grid-template-columns:.95fr 1.05fr;gap:58px;padding-block:34px}.standby-hero>div{order:2}.standby-hero-photo{order:1;border:0;border-radius:0;box-shadow:none;background:transparent}.standby-hero-photo img{height:370px;object-position:center}.standby-hero-photo figcaption{padding:15px 0;border-bottom:1px solid #b8ccd5}.standby-hero h1{font-size:46px;line-height:1.14}.standby-lead{font-size:18px}.standby-urgent{display:flex;font-size:15px;line-height:1.5;border-top:1px solid #b6ccd5;padding-top:18px}.standby-route-band{background:#e3ecef;border-bottom:1px solid var(--line)}.standby-route-band .preparation-route{margin:0;padding-bottom:30px}.standby-route-band .preparation-route li{display:flex;flex-direction:row;align-items:center;gap:18px}
.standby-page h2{font-size:clamp(28px,2.6vw,38px)}.standby-priority{border-radius:8px;background:#f2f6f8}.standby-priority.reserved{background:#e3ecef;border-color:#799daa}.standby-events article,.standby-sector-grid article{border-radius:8px;box-shadow:none}.standby-preparation-band{background:#edf3f6}.standby-scope-band{background:#dce8ed}.standby-events-band{background:#f2f6f8}
.knowledge-band{background:#163345;color:#fff}.knowledge-band .eyebrow,.knowledge-band p{color:#c1d4df}.knowledge-links>a{background:transparent;border-color:#476171;border-radius:0;color:#fff}.knowledge-links>a:hover{background:#24475e;transform:none}.knowledge-links small{color:#c1d4df}.knowledge-links .icon{color:#c1d4df}
.guide-hub>a,.guide-choice-grid>article,.guide-checklist{box-shadow:none;border-radius:10px}.guide-hero .illustration{width:55px;height:55px}.case-hero img,.photo{border-radius:14px;box-shadow:none}.site-footer{background:#f2f6f8}
@media(min-width:1600px){.photo-led-image{max-width:var(--max)}.photo-led-image img{height:560px}}
@media(max-width:1100px){.photo-led-heading{gap:28px}.photo-led-heading>div{padding-left:28px}.photo-led-heading .actions{flex-wrap:wrap}.photo-led-heading h1{font-size:44px}.rental-heading{gap:30px}.rental-heading h1{font-size:38px}.preparedness-grid{gap:30px}.preparedness-grid h2{font-size:32px}.preparation-route{gap:12px}.catalog-nav>a{padding:15px;gap:10px}.catalog-nav span{font-size:16px}.catalog-product-rows .product-copy{grid-template-columns:1fr minmax(205px,.8fr)}.regional-intro{gap:32px}.regional-intro h1{font-size:38px}.standby-hero{gap:30px}.standby-hero h1{font-size:40px}.reference-opening{gap:30px}.services-opening{gap:35px}}
@media(max-width:800px){
 body{font-size:17px}.wrap{width:calc(100% - 40px)}.section{padding-block:48px}.section-heading{gap:22px}.header-inner{min-height:70px}.site-header .brand img{max-height:56px;width:auto}.breadcrumbs{font-size:12px;padding-block:16px}
 .photo-led-heading{display:block;padding-block:26px 24px}.photo-led-heading h1{font-size:36px;max-width:19ch;margin-bottom:18px}.photo-led-heading h1 br{display:none}.photo-led-heading>div{border:0;padding:0}.photo-led-heading p{font-size:17px;margin-bottom:20px;max-width:34ch}.photo-led-heading .actions{display:grid;grid-template-columns:1fr;gap:10px}.photo-led-heading .button{min-height:46px;width:100%}.photo-led-image img{height:210px;object-position:50% 65%}
 .service-scope-inner{grid-template-columns:1fr;padding-block:0}.service-scope a,.service-scope a:first-child{padding:14px 0;border:0;border-bottom:1px solid var(--line);gap:15px}.service-scope a>.icon:first-child{width:24px;height:24px}.service-scope strong{font-size:15px}.service-scope small{font-size:13px}
 .partner-inner,.partner-compact .partner-inner{grid-template-columns:1fr;padding-block:16px;gap:5px}.partner-heading{display:flex;align-items:center;justify-content:space-between}.partner-heading p{font-size:13px}.partner-heading strong{display:inline}.partner-heading a{font-size:12px}.partner-group li,.partner-compact .partner-group li{width:150px;flex-basis:150px;height:80px}.partner-logo,.partner-compact .partner-logo{height:74px;padding:6px 10px}.partner-group img,.partner-compact .partner-group img{height:55px}
 .scenario-panel{padding:24px 20px}.scenario-tabs .illustration{width:42px;height:42px}.scenario-tabs button{padding:15px 8px}.process-grid{gap:24px}.process-card{display:block;padding:24px 0 0}.process-card>p{min-height:0;font-size:16px}.process-symbol{margin-bottom:18px}.process-card h3{margin-bottom:12px}.process-detail{margin-top:18px}.process-symbol,.process-symbol>.illustration{width:48px;height:48px}
 .preparedness-grid{grid-template-columns:1fr;gap:28px;padding-block:40px}.preparedness-grid>img{height:240px;order:2}.preparedness-grid>div{order:1}.preparedness-grid h2{font-size:30px}.preparedness-grid>div>p:not(.eyebrow){font-size:17px}.preparation-route{grid-template-columns:1fr 1fr;gap:20px}.preparation-route li{flex-direction:row;align-items:center;gap:12px;font-size:14px}.preparation-route .icon{flex-shrink:0}.preparedness-grid .actions{gap:18px}
 .rental-heading{display:block;padding-block:18px 22px}.rental-heading h1{font-size:34px}.rental-heading h1 br{display:none}.rental-heading p:not(.eyebrow){font-size:17px}.rental-heading>img{display:none}.rental-heading .actions{display:flex;align-items:flex-start;flex-direction:column;gap:15px}.catalog-nav{grid-template-columns:1fr}.catalog-nav>a{min-height:66px;padding:12px 16px;border:0;border-bottom:1px solid var(--line)}.catalog-nav span{font-size:16px}.catalog-nav small{font-size:12px}.catalog-nav>a>.icon{width:23px;height:23px}.catalog-section{padding-top:38px}.catalog-product-rows .product-card{grid-template-columns:120px 1fr;gap:20px;padding-block:22px}.catalog-product-rows .product-image{height:110px}.catalog-product-rows .product-copy{display:block}.catalog-product-rows h3{font-size:20px}.catalog-product-rows p{font-size:15px}.catalog-product-rows .product-bottom{font-size:14px;border-left:0;border-top:1px solid var(--line);margin-top:14px;padding:12px 0 0}.catalog-product-rows .overline{font-size:11px}
 .product-detail-opening{display:flex;flex-direction:column}.product-detail-opening>div:not(.product-detail-visual){order:1;width:100%}.product-detail-visual{order:2;width:100%;max-height:340px}.product-detail-opening h1{font-size:34px}.specs{font-size:15px}.specs th,.specs td{padding:12px 7px}
 .services-opening,.reference-opening{grid-template-columns:1fr;gap:26px;padding-block:20px 32px}.services-opening>img{height:220px}.reference-opening h1{font-size:36px}.reference-opening-photo img{height:220px;object-position:center}.reference-opening-photo>span{font-size:13px}.reference-opening p:not(.eyebrow){font-size:17px}.reference-index-entry{gap:25px}
 .contact-layout{padding-top:12px;gap:30px}.contact-layout .page-intro h1{font-size:36px}.contact-layout .page-intro{padding-bottom:0}.contact-option{padding:14px 0}.contact-option strong{font-size:22px}.contact-option small{font-size:13px}.contact-facts{font-size:15px}.inquiry-panel{padding:22px 18px}.inquiry-panel h2{font-size:28px}.contact-form-link{width:100%;margin:20px 0 12px}
 .regional-intro{grid-template-columns:1fr;padding-block:20px 28px;gap:24px}.regional-intro h1{font-size:34px}.regional-intro-copy>p:not(.eyebrow):not(.regional-quick-note){font-size:17px}.regional-intro-visual img{height:210px;object-position:50% 65%}.regional-intro-visual{margin:0}.regional-intro .actions{gap:18px}.regional-quick-note{font-size:13px}.regional-decisions{gap:30px}.regional-proof-band .regional-proof{padding-block:40px}
 .standby-hero{display:flex;flex-direction:column;gap:24px;padding-block:22px 28px}.standby-hero>div{order:1}.standby-hero-photo{order:2;width:100%}.standby-hero h1{font-size:36px}.standby-lead{font-size:17px}.standby-hero-photo img{height:210px;aspect-ratio:auto;object-position:center}.standby-hero-photo figcaption{font-size:12px;padding-block:12px}.standby-hero .actions{margin-top:22px;gap:18px}.standby-urgent{font-size:14px;align-items:flex-start}.standby-route-band .preparation-route{gap:18px;padding-bottom:26px}.standby-route-band .preparation-route li{gap:12px}.standby-page{--section-space:48px}.standby-page h2{font-size:30px}.standby-page .section-heading>p{font-size:17px}.standby-priority h3{font-size:21px}.standby-case h2{font-size:27px}
}
@media(max-width:480px){.catalog-product-rows .product-card{grid-template-columns:1fr;gap:18px}.catalog-product-rows .product-image{height:190px;width:100%}.catalog-product-rows .product-image.contain img{object-fit:contain}.catalog-product-rows .product-copy{display:block}.catalog-product-rows h3{font-size:23px}.catalog-product-rows p{font-size:16px}.catalog-product-rows .product-bottom{font-size:15px}.preparation-route{gap:16px 12px}.service-scope-inner{width:calc(100% - 40px)}.rental-heading h1,.regional-intro h1{font-size:32px}.contact-option strong{font-size:21px}.accessory-grid{grid-template-columns:1fr}.photo-led-heading .button{font-size:14px}.standby-hero h1{font-size:34px}}
@media(prefers-reduced-motion:reduce){.button,.button>.icon,.product-card,.reference-card{transition:none}.button:hover>.icon:last-child,.product-card:hover,.reference-card:hover{transform:none}[data-partner-enhanced] .partner-track{animation:none}}

/* V6 review: keep the original vehicle in frame; intentional phone wrapping. */
.phone-nowrap{white-space:nowrap;font-weight:inherit}.regional-intro-visual{padding:0;border:0}.regional-intro-visual img{border:0}.standby-urgent>span{min-width:0}
.guide-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.guide-link-grid>a,.guide-link-grid>a>div{min-width:0}.guide-link-grid h3{overflow-wrap:anywhere}@media(max-width:760px){.guide-link-grid{grid-template-columns:minmax(0,1fr)}}@media(max-width:400px){.guide-link-grid>a{display:grid;grid-template-columns:48px minmax(0,1fr);padding:18px;gap:14px}.guide-link-grid .illustration{width:48px;height:48px}.guide-link-grid>a>.icon{grid-column:2}.guide-link-grid h3{font-size:19px}}

/* Space between trust strip and the service catalogue. */
.services-opening~.service-dossiers{padding-top:48px}@media(max-width:760px){.services-opening~.service-dossiers{padding-top:32px}}

/* V7: shared geometry, purposeful colour and restrained motion. */
:root{--opening-size:clamp(34px,3.2vw,46px);--opening-gap:56px;--opening-photo:320px;--motion-ease:cubic-bezier(.22,1,.36,1);--accent-teal:#287a73;--accent-red:#b44b51;--accent-gold:#947129}
.brand,.site-header .brand,.footer-brand .brand{background:transparent;border:0;box-shadow:none;padding:0;border-radius:0}
.desktop-nav a{position:relative;border-bottom:0;padding-block:17px;transition:color .22s ease}
.desktop-nav a:hover,.desktop-nav a[aria-current]{border-bottom-color:transparent}
.desktop-nav a::after{content:"";position:absolute;left:0;right:0;bottom:5px;height:2px;background:currentColor;transform:scaleX(0);transform-origin:left;transition:transform .32s var(--motion-ease)}
.desktop-nav a:hover::after,.desktop-nav a:focus-visible::after,.desktop-nav a[aria-current]::after{transform:scaleX(1)}
:where(a,button,summary):focus-visible{outline:3px solid #387da4;outline-offset:5px}
:is(.rental-heading,.services-opening,.reference-opening,.regional-intro,.standby-hero,.guide-hero,.case-hero-grid){display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);align-items:center;gap:var(--opening-gap);min-height:432px;padding-block:48px;margin-block:0}
:is(.page-intro,.rental-heading,.services-opening,.reference-opening,.regional-intro,.standby-hero,.guide-hero,.case-hero-grid,.product-detail-opening) h1,.contact-layout .page-intro h1{font-size:var(--opening-size);line-height:1.16;letter-spacing:-.045em;max-width:24ch;margin:0 0 24px}
:is(.rental-heading,.services-opening,.reference-opening,.regional-intro,.standby-hero,.guide-hero,.case-hero-grid)>:is(img,figure),.reference-opening-photo{min-width:0;margin:0}
:is(.rental-heading,.services-opening)>img,:is(.regional-intro-visual,.standby-hero-photo,.reference-opening-photo,.guide-hero figure,.case-hero-grid figure)>img{display:block;width:100%;height:var(--opening-photo);object-fit:cover;aspect-ratio:auto;border-radius:14px;box-shadow:none}
:is(.page-intro,.rental-heading,.services-opening,.reference-opening,.regional-intro,.standby-hero,.guide-hero,.case-hero-grid) p:not(.eyebrow):not(.small):not(.regional-quick-note){font-size:18px;line-height:1.75;max-width:58ch}
.rental-heading .actions,.services-opening .actions,.regional-intro .actions,.standby-hero .actions{margin-top:26px;gap:18px}
.rental-opening{background:linear-gradient(115deg,#f0f5f7,#fff);padding-bottom:26px}
.services-opening~.service-dossiers{padding-top:48px}.standby-hero>div{order:0}.standby-hero-photo{order:1}
.standby-hero-photo figcaption,.reference-opening-photo>span,.case-hero-grid figcaption{font-size:13px;line-height:1.5;padding:12px 0;margin:0;border:0}
.case-hero{padding:0}.guide-hero{padding-bottom:48px}.guide-hero figure{margin:0}.contact-layout{padding-top:48px}.page-intro:not(.services-opening):not(.regional-intro){padding-block:48px}.contact-layout .page-intro{padding:0 0 16px}
.product-detail-opening{padding-top:48px!important;gap:var(--opening-gap);grid-template-columns:minmax(0,1fr) minmax(0,1fr)}
.product-detail-visual{max-height:none;box-shadow:none}.product-detail-visual img{max-height:460px}
/* The photo belongs to the opening canvas, instead of standing below it as a large separate panel. */
.home-intro-canvas{position:relative;isolation:isolate;background:#e8f0f3;overflow:hidden;border-bottom:1px solid #d4e0e6}
.home-intro-photo{position:absolute;inset:0 0 0 40%;z-index:-1}.home-intro-photo img{width:100%;height:100%;object-fit:cover;object-position:64% 60%}
.home-intro-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,#e8f0f3 0%,rgba(232,240,243,.92) 8%,rgba(232,240,243,.15) 35%,transparent 65%)}
.home-intro-layout{min-height:548px;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:56px;align-items:center;position:relative;padding-block:54px}
.home-intro-copy{max-width:570px}.home-intro-copy h1{font-size:clamp(40px,4vw,58px);line-height:1.1;letter-spacing:-.05em;margin:0 0 24px;max-width:16ch}.home-intro-copy>p:not(.eyebrow){font-size:19px;line-height:1.75;max-width:42ch;color:#344e60}.home-intro-copy .eyebrow{max-width:38ch;font-size:12px}.home-intro-copy .actions{gap:12px;margin-top:30px}.home-intro-copy .secondary{background:#fff}.home-intro-advice{display:inline-flex;gap:15px;align-items:center;margin-top:22px;font-size:15px;font-weight:700;color:var(--blue)}
.home-intro-proof{justify-self:end;align-self:end;display:grid;grid-template-columns:1fr auto;gap:4px 20px;background:#fff;color:var(--ink);padding:19px 22px;max-width:340px;border-left:3px solid var(--accent-teal);border-radius:5px}.home-intro-proof>span{font-size:12px;color:var(--muted);grid-column:1}.home-intro-proof strong{font-size:16px;line-height:1.5}.home-intro-proof>.icon{grid-column:2;grid-row:1/3;align-self:center;color:var(--blue)}
/* Transparent symbols. Their colours identify tasks, not a decorative tile. */
.illustration{display:inline-grid;place-items:center;background:transparent!important;border:0!important;box-shadow:none!important;border-radius:0!important;padding:0!important;color:var(--blue);flex-shrink:0}
.illustration>.icon,.illustration>.icon>svg{width:100%;height:100%;display:block;stroke-width:1.4}
.illustration-event-stage,.illustration-consultation,.illustration-price-scope{color:var(--accent-teal)}
.illustration-standby-shield,.illustration-ups-battery,.illustration-ats-switch{color:var(--accent-red)}
.illustration-delivery-planning,.illustration-delivery-truck,.illustration-site-access,.illustration-work-light{color:var(--accent-gold)}
.process-section{background:linear-gradient(115deg,#edf5f5,#f3f6fa)}.process-grid{gap:26px}.process-card{--step-tone:#287a73;border-top:3px solid var(--step-tone);padding-top:26px;display:flex;flex-direction:column}.process-card:nth-child(2){--step-tone:#356787}.process-card:nth-child(3){--step-tone:#947129}.process-card:nth-child(4){--step-tone:#b44b51}.process-card h3{min-height:2.6em;line-height:1.3}.process-card>p{min-height:5.1em}.process-symbol{width:auto;display:flex;gap:20px;align-items:center;margin-bottom:24px}.process-symbol>.illustration{width:44px;height:44px;color:var(--step-tone)}.process-symbol>.process-number{position:static;font-size:32px;font-weight:450;color:var(--step-tone);opacity:.55;width:auto;height:auto}.process-detail{margin-top:auto}
.catalog-product-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px}.catalog-product-cards .product-card{display:flex;flex-direction:column;border:1px solid var(--line);padding:0;border-radius:14px;overflow:hidden}.catalog-product-cards .product-image{height:245px;aspect-ratio:auto}.catalog-product-cards .product-copy{padding:26px;display:flex;flex:1;flex-direction:column}.catalog-product-cards .product-copy h3{min-height:2.5em;line-height:1.25}.catalog-product-cards .product-bottom{margin-top:auto;padding-top:20px;min-height:64px;align-items:center;gap:16px}.catalog-product-cards .product-bottom>.icon{width:22px;height:22px;flex:0 0 22px;display:grid;place-items:center}.product-card:hover .product-bottom>.icon{transform:translateX(4px)}.product-bottom>.icon{transition:transform .3s var(--motion-ease)}
.product-card,.reference-card{transition:transform .3s var(--motion-ease),box-shadow .3s ease,border-color .3s ease}.product-card:hover{border-color:#9bb8c9;box-shadow:0 12px 32px #214b6a10;transform:translateY(-4px)}
.contact-company{margin-top:36px;padding:30px;background:linear-gradient(125deg,#ecf4f4,#f4f7fa);border-radius:12px;border-top:3px solid var(--accent-teal)}.contact-company h2{font-size:28px;margin:0 0 16px}.contact-company dl{display:grid;grid-template-columns:1fr 1fr;gap:22px 28px;margin:28px 0}.contact-company dt{font-size:13px;color:var(--muted);margin-bottom:6px}.contact-company dd{margin:0;font-weight:700;font-size:18px}.contact-company .company-address{grid-column:1/-1}
.region-directory{padding-block:40px}.region-disclosure{border:1px solid var(--line);border-radius:12px;background:#f4f8fa}.region-disclosure>summary{display:flex;align-items:center;gap:22px;padding:27px 30px;list-style:none;cursor:pointer}.region-disclosure summary::-webkit-details-marker{display:none}.region-disclosure summary>span:first-child{flex:1}.region-disclosure .eyebrow{display:block;margin-bottom:8px;font-size:11px}.region-disclosure summary strong{display:block;font-size:24px;line-height:1.25}.region-summary-note{display:block;font-size:15px;margin-top:9px;color:var(--muted)}.region-disclosure summary>.icon{color:var(--blue)}.region-disclosure summary>.icon:last-child{transform:rotate(90deg);transition:transform .3s var(--motion-ease)}.region-disclosure[open] summary>.icon:last-child{transform:rotate(-90deg)}.region-directory-content{padding:0 30px 30px}.region-directory .region-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.region-directory .region-grid>a{padding:16px;background:#fff;font-size:15px}
/* Native disclosures remain usable without JS; enhancement animates actual height. */
details[data-disclosure-enhanced]{overflow:clip}details>summary{scroll-margin-top:110px}details[data-animating]{overflow:hidden}details[data-animating]>.disclosure-content{will-change:opacity}.disclosure-content{display:flow-root}.faq-list details{border-bottom:1px solid var(--line)}.faq-list summary{padding-block:23px}.faq-list details[open]{background:#f0f6f8}.faq-list .disclosure-content{padding:0 20px}.faq-list .disclosure-content>p{margin-top:0;line-height:1.8;font-size:17px}
.mobile-nav:not([hidden]){animation:menu-in .28s var(--motion-ease)}@keyframes menu-in{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
.site-overview{width:min(1100px,calc(100% - 40px));max-height:85vh;border:1px solid var(--line);border-radius:16px;padding:32px;color:var(--ink);background:#fff}.site-overview::backdrop{background:#0c243866;backdrop-filter:blur(3px)}.overview-heading{display:flex;justify-content:space-between;gap:20px;align-items:start}.overview-heading h2{font-size:30px;margin:0}.overview-heading button{padding:10px 16px;background:#edf3f6;border:1px solid var(--line);border-radius:6px;cursor:pointer}.overview-tree{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:32px;margin-top:32px}.overview-tree h3{font-size:18px}.overview-tree ul{padding-left:17px;list-style:none;border-left:1px solid var(--line)}.overview-tree li{margin:12px 0}.overview-tree a{font-size:15px;color:var(--blue)}.overview-tree a:hover{text-decoration:underline}
.standby-priority-list{align-items:stretch}.standby-priority{display:flex;flex-direction:column}.standby-priority h3{min-height:2.6em}.standby-priority p{line-height:1.7}.standby-sector-grid article{border-top:3px solid var(--accent-teal)}.standby-sector-grid article:nth-child(2){border-top-color:var(--accent-red)}.standby-sector-grid article:nth-child(3){border-top-color:var(--blue)}
@media(max-width:1100px){:root{--opening-gap:32px}.home-intro-layout{gap:30px}.home-intro-copy .actions{flex-direction:column;align-items:flex-start}.home-intro-proof{max-width:285px}.catalog-product-cards .product-copy{padding:20px}.catalog-product-cards .product-image{height:205px}}
@media(max-width:800px){:root{--opening-size:34px;--opening-gap:26px;--opening-photo:220px}:is(.rental-heading,.services-opening,.reference-opening,.regional-intro,.standby-hero,.guide-hero,.case-hero-grid){grid-template-columns:1fr;display:grid;padding-block:34px;min-height:0}.rental-heading>img{display:block}.standby-hero>div{order:0}.standby-hero-photo{order:1}.rental-heading h1 br{display:none}.page-intro:not(.services-opening):not(.regional-intro){padding-block:34px}.contact-layout{padding-top:34px}.contact-layout .page-intro{padding-top:0}.product-detail-opening{padding-top:34px!important}.home-intro-layout{display:block;min-height:0;padding-block:34px 24px}.home-intro-photo{position:relative;inset:auto;height:260px;z-index:0}.home-intro-photo::after{background:linear-gradient(180deg,#e8f0f3,transparent 30%)}.home-intro-canvas{display:flex;flex-direction:column}.home-intro-layout{order:0}.home-intro-photo{order:1}.home-intro-copy h1{font-size:42px}.home-intro-copy>p:not(.eyebrow){font-size:17px;max-width:42ch}.home-intro-copy .actions{display:grid;grid-template-columns:1fr 1fr;gap:12px;align-items:stretch}.home-intro-copy .button{padding:13px 14px;font-size:14px;width:100%}.home-intro-proof{display:none}.home-intro-advice{margin-top:20px}.catalog-product-cards{grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}.catalog-product-cards .product-card:last-child{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr}.catalog-product-cards .product-card:last-child .product-image{height:100%;min-height:240px}.catalog-product-cards .product-copy h3{min-height:0}.process-card{display:flex}.process-card h3,.process-card>p{min-height:0}.process-symbol{margin-bottom:20px}.process-detail{margin-top:18px}.region-directory .region-grid{grid-template-columns:1fr 1fr}.overview-tree{grid-template-columns:1fr 1fr}.contact-company{padding:24px}.service-scope strong{font-size:15px}}
@media(max-width:520px){.home-intro-copy h1{font-size:38px}.home-intro-copy .actions{grid-template-columns:1fr}.home-intro-photo{height:225px}.home-intro-copy .eyebrow{font-size:10px}.catalog-product-cards{grid-template-columns:1fr}.catalog-product-cards .product-card:last-child{display:flex;grid-column:auto}.catalog-product-cards .product-card:last-child .product-image,.catalog-product-cards .product-image{height:220px;min-height:0}.catalog-product-cards .product-copy{padding:24px}.region-directory .region-grid{grid-template-columns:1fr}.region-disclosure>summary{padding:22px 20px;gap:12px}.region-disclosure summary strong{font-size:21px}.region-disclosure summary>.icon:nth-last-child(2){display:none}.region-directory-content{padding:0 20px 24px}.overview-tree{grid-template-columns:1fr}.site-overview{padding:24px}.contact-company dl{gap:18px}.contact-company dd{font-size:17px}}
@media(prefers-reduced-motion:reduce){.desktop-nav a::after,.product-bottom>.icon,.product-card,.reference-card,.region-disclosure summary>.icon{transition:none}.mobile-nav:not([hidden]){animation:none}.product-card:hover{transform:none}html{scroll-behavior:auto}}
/* Accessory choices: one family at a time. All content is available without JS. */
.accessory-selector{margin-top:38px}.accessory-tabs{display:none}.accessory-selector[data-ready] .accessory-tabs{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:8px;border-bottom:1px solid var(--line);padding-bottom:20px;margin-bottom:32px}.accessory-tabs button{display:flex;align-items:center;justify-content:center;gap:10px;min-height:58px;padding:12px;background:#edf3f6;color:var(--ink);border:1px solid transparent;border-radius:8px;font:inherit;font-size:14px;font-weight:650;cursor:pointer;transition:background .2s,color .2s}.accessory-tabs button .icon{width:22px;height:22px;flex-shrink:0}.accessory-tabs button[aria-selected=true]{background:var(--blue);color:#fff}.accessory-tabs button:hover:not([aria-selected=true]){border-color:#9db6c5;background:#e3edf2}.accessory-panel{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:48px;margin-block:32px;align-items:start}.accessory-panel[hidden]{display:none}.accessory-figure{margin:0}.accessory-figure img{display:block;width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;border-radius:12px}.accessory-figure figcaption{font-size:12px;line-height:1.6;color:var(--muted);margin-top:12px}.accessory-copy h3{font-size:30px;line-height:1.2;margin:0 0 20px;letter-spacing:-.025em}.accessory-copy>.eyebrow{margin-top:0}.accessory-copy>p:not(.eyebrow):not(.accessory-selection){font-size:17px;line-height:1.75}.accessory-variant{display:block;margin-top:24px;font-size:14px;font-weight:650}.accessory-variant select{display:block;width:100%;min-height:52px;border:1px solid #aac0ce;background:#fff;border-radius:7px;font:inherit;color:var(--ink);padding:12px;margin-top:10px}.accessory-selection{font-size:13px;color:var(--muted);margin:10px 0 20px}.accessory-technical{border-block:1px solid var(--line);margin:26px 0 20px;font-size:15px}.accessory-technical summary{cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 0;font-weight:650}.accessory-technical summary>.icon{flex-shrink:0;transform:rotate(90deg)}.accessory-technical[open] summary>.icon{transform:rotate(-90deg)}.accessory-availability{font-size:14px;color:var(--muted);padding:20px 0;border-top:1px solid var(--line)}.accessory-operation{padding:38px;background:linear-gradient(130deg,#e3efed,#edf3f8);border-radius:12px;border-top:3px solid var(--accent-teal)}.accessory-operation>.icon{width:52px;height:52px;color:var(--accent-teal);margin-bottom:28px}.accessory-operation h3{font-size:27px}.accessory-operation ol{list-style:decimal-leading-zero;padding-left:28px;margin-top:26px}.accessory-operation li{padding:12px 0 12px 10px;line-height:1.65}.accessory-operation li::marker{color:var(--accent-teal);font-weight:700}
@media(max-width:1050px){.accessory-tabs button{flex-direction:column;font-size:13px}.accessory-panel{gap:30px}.accessory-copy h3{font-size:27px}}
@media(max-width:800px){.accessory-selector[data-ready] .accessory-tabs{display:flex;flex-wrap:wrap;gap:8px}.accessory-tabs button{flex-direction:row;flex:1 1 130px;font-size:13px}.accessory-panel{grid-template-columns:1fr;gap:26px}.accessory-figure{max-width:560px}.accessory-copy h3{font-size:28px}.accessory-operation{padding:28px}}
@media(prefers-reduced-motion:reduce){.accessory-tabs button{transition:none}}

/* V7 review corrections: stable sizing and original dimensional symbols. */
.contact-layout .page-intro:not(.services-opening):not(.regional-intro){padding:0 0 16px}
.illustration>img{display:block;width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply}.illustration{isolation:auto}
.process-symbol>.illustration{width:64px;height:64px;flex:0 0 64px}.process-symbol>.illustration>.icon,.process-symbol>.illustration>.icon>svg{width:44px;height:44px}.process-symbol{min-height:64px}
.service-title-row>.illustration{width:60px;height:60px;flex:0 0 60px}
.inquiry-details>.disclosure-content>.form-grid{padding:2px 0 18px}
.scope-stack .illustration>.icon{display:block}
@media(max-width:800px){.process-symbol>.illustration{width:56px;height:56px;flex-basis:56px}.service-title-row>.illustration{width:52px;height:52px;flex-basis:52px}}

.service-card-secondary{grid-column:1/-1;background:#f4f7f9;border-block:1px solid var(--line)}.service-card-secondary>summary{display:block;padding:0 28px}.service-card-secondary .service-thumbnail{display:none}.service-card-secondary .service-summary{padding:24px 0}.service-card-secondary .service-title-row>.illustration{display:none}.service-card-secondary .service-title-row h2{font-size:24px}.service-card-secondary .service-summary p{max-width:76ch}.service-card-secondary .service-body{max-width:900px}
.regional-price{display:block}
/* Real photographs: contextual previews and the shared archive. */
.photo-preview-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:28px}
.photo-preview-heading h2{max-width:24ch}
.photo-preview-heading p:not(.eyebrow){max-width:66ch;color:var(--muted);margin:14px 0 0}
.photo-preview-heading>.text-link{flex-shrink:0}
.photo-preview .story-gallery:has(>figure:only-child){grid-template-columns:1fr;max-width:740px}
.photo-preview .story-gallery img{aspect-ratio:1.65}
.gallery-directory{padding-bottom:48px}
.gallery-directory nav{display:flex;flex-wrap:wrap;gap:10px}
.gallery-directory nav a{display:inline-flex;align-items:center;gap:14px;padding:12px 17px;border:1px solid var(--line);border-radius:999px;font-size:15px;font-weight:650;background:white;transition:background .2s,border-color .2s}
.gallery-directory nav a:hover{border-color:var(--accent);background:#eef7fc}
.gallery-directory nav a>span{font-size:12px;color:var(--muted);font-variant-numeric:tabular-nums}
.gallery-collection .photo-story{scroll-margin-top:120px}
.gallery-story-link{margin-top:30px}
.scope-photographs{min-width:0;background:none;padding:0;border:0}
.scope-photographs .story-gallery{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.scope-photographs .story-gallery img{aspect-ratio:1.15;object-position:center}
.scope-photographs .story-gallery>figure:nth-child(2){padding-top:48px}
.scope-photographs>.text-link{margin-top:24px}
.scope-photographs .gallery-open>span:not(.icon){display:none}
.service-body .photo-story{margin-block:28px}
.service-body .story-gallery{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.regional-gallery-link{display:flex;width:fit-content;margin-top:20px}
@media(max-width:800px){
 .photo-preview-heading{align-items:flex-start;flex-direction:column;gap:18px}
 .scope-photographs{max-width:none;order:2}
 .scope-photographs .story-gallery img{aspect-ratio:1.25}
 .scope-photographs .story-gallery>figure:nth-child(2){padding-top:24px}
}
@media(max-width:600px){
 .gallery-directory{padding-bottom:32px}
 .gallery-directory nav{gap:8px}
 .gallery-directory nav a{padding:10px 13px;gap:10px;font-size:14px;min-height:44px}
 .gallery-collection .photo-story.compact .story-gallery{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px 12px}
 .gallery-collection .photo-story.compact .story-gallery img{aspect-ratio:1.1}
 .gallery-collection .story-gallery figcaption{font-size:13px;line-height:1.55;gap:7px}
 .gallery-collection .story-gallery figcaption>span{display:none}
 .gallery-collection .gallery-open>span:not(.icon){display:none}
 .gallery-collection .gallery-open{right:7px;bottom:7px;padding:7px}
 .scope-photographs .story-gallery,.scope-photographs .story-gallery:has(>figure:nth-child(2):last-child){grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
 .scope-photographs .story-gallery img{aspect-ratio:1.15}
 .scope-photographs .story-gallery figcaption{font-size:13px;gap:7px}
 .scope-photographs .story-gallery figcaption>span{display:none}
 .scope-photographs .story-gallery>figure:nth-child(2){padding-top:20px}
 .service-body .story-gallery,.service-body .story-gallery:has(>figure:nth-child(2):last-child){grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){.gallery-directory nav a{transition:none}}

/* V9: matched photo clipping, readable guide band and balanced service cards. */
.scope-photographs .story-gallery a{background:transparent;border-radius:14px}
.scope-photographs .story-gallery img{border-radius:0;box-shadow:none;display:block}
.knowledge-band h2,.knowledge-band .knowledge-links strong{color:#fff}
.knowledge-band .eyebrow,.knowledge-band p,.knowledge-band .knowledge-links small{color:#d0e1eb}
.knowledge-band .knowledge-links>a>.icon{color:#bcdbe9}
.knowledge-links>a:focus-visible{outline:3px solid #bcdbe9;outline-offset:4px}
.scenario-tabs .illustration{width:64px;height:64px;flex-basis:64px}
.process-symbol>.illustration{width:76px;height:76px;flex-basis:76px}
.service-dossiers{align-items:start;grid-template-columns:minmax(0,1fr)}
.service-card{min-width:0;border-radius:14px}

.service-thumbnail{height:224px;flex-shrink:0;border-radius:0;width:100%}
.service-summary{padding:28px;display:flex;flex-direction:column;flex:1;min-width:0}
.service-title-row{min-height:0;align-items:flex-start}
.service-title-row h2{font-size:24px;line-height:1.3}
.service-summary>p{min-height:0;margin-block:16px 20px;font-size:16px;line-height:1.7}
.service-summary>.text-link{margin-top:auto;display:flex;justify-content:space-between;padding-top:16px;border-top:1px solid var(--line);gap:12px;min-height:44px}
.service-body{border-top:0;padding:0 28px 28px}
.service-body>section{border:0;margin:0;padding:0;min-width:0}
.service-body .photo-story{margin-top:24px}
.service-body .story-gallery{grid-template-columns:repeat(2,minmax(0,1fr))}
.service-body .story-gallery img{aspect-ratio:1.35}
.service-card-secondary .service-summary>p{min-height:0}
.festival-followup{grid-template-columns:1fr}
.festival-followup>div{max-width:660px}
@media(max-width:800px){.service-dossiers{grid-template-columns:1fr}.service-title-row{min-height:0}.service-summary>p{min-height:0}.service-thumbnail{height:240px}.service-summary{padding:24px}.service-body{padding:0 24px 24px}}
@media(max-width:520px){.service-thumbnail{height:200px}.service-title-row h2{font-size:23px}.service-summary{padding:22px}.service-body{padding:0 22px 24px}.service-body .story-gallery{grid-template-columns:1fr}.process-symbol>.illustration{width:64px;height:64px;flex-basis:64px}.scenario-tabs .illustration{width:56px;height:56px;flex-basis:56px}}
.knowledge-band .knowledge-grid>div>p:not(.eyebrow){color:#d0e1eb}
/* Each service has its own complete row; expanding it leaves no empty column. */
.service-dossiers{grid-template-columns:minmax(0,1fr)}
.service-card>summary{display:grid;grid-template-columns:minmax(240px,.7fr) minmax(0,1fr);align-items:stretch;height:auto}
.service-thumbnail{height:100%;min-height:260px;max-height:320px;object-fit:cover}
.service-summary{padding:30px 36px}
.service-title-row,.service-summary>p{min-height:0}
.service-summary>p{max-width:65ch}
.service-body{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 36px;padding:0 36px 32px;border-top:1px solid var(--line)}
.service-body>.photo-story,.service-body>.actions{grid-column:1/-1}
.service-body>.service-preparation{align-self:start}
.service-body>.service-reference{align-self:center}
@media(max-width:800px){.service-card>summary{grid-template-columns:220px minmax(0,1fr)}.service-summary{padding:24px}.service-thumbnail{min-height:230px;height:100%;max-height:none}.service-body{padding:0 24px 24px;gap:0 24px}}
@media(max-width:600px){.service-card>summary{grid-template-columns:minmax(0,1fr)}.service-thumbnail{height:200px;min-height:0}.service-summary{padding:22px}.service-body{display:block;padding:0 22px 24px}.service-body>.service-reference{margin-top:20px}}

.service-card-secondary>summary{display:block;padding:0}.service-card-secondary .service-summary{padding:24px 36px}.service-card-secondary .service-body{max-width:none}
.product-image{position:relative}.product-image-label{position:absolute;bottom:10px;left:12px;padding:4px 8px;background:#ffffffed;color:#405566;font-size:11px;line-height:1.4;border-radius:4px;pointer-events:none}.product-detail-photo{margin:0;min-width:0}.product-detail-photo img{display:block;width:100%;height:auto;border-radius:14px}.product-detail-photo figcaption{font-size:12px;line-height:1.6;color:var(--muted);margin-top:12px}
@media(max-width:800px){.service-card-secondary .service-summary{padding:24px}}

@media(min-width:601px) and (max-width:800px){.service-card>summary{min-height:300px}.service-thumbnail{min-height:300px}.service-card-secondary>summary{min-height:0}}

/* V10: shared semantic accents and the same choice component throughout. */
:root,[data-tone="power"],[data-tone="construction"]{--tone:#28608b;--tone-soft:#edf4f9;--tone-edge:#adc7db;--scenario-end:#e3eef6}
[data-tone="power-large"]{--tone:#244a70;--tone-soft:#e9eff6;--tone-edge:#8ca9c6}
[data-tone="power-twin"]{--tone:#414c7f;--tone-soft:#eef0f8;--tone-edge:#a5aed2}
[data-tone="ups"]{--tone:#71508f;--tone-soft:#f3eef8;--tone-edge:#c7b4da}
[data-tone="neutral"]{--tone:#425b6b;--tone-soft:#f1f5f7;--tone-edge:#d3dfe6}
[data-tone="services"],[data-tone="event"]{--tone:#356e69;--tone-soft:#eff6f4;--tone-edge:#aecdc6;--scenario-end:#e7f2ef}
[data-tone="standby"],[data-tone="preparedness"]{--tone:#7f435e;--tone-soft:#f7f0f3;--tone-edge:#d1b4c2;--scenario-end:#f0e4eb}
[data-tone="outage"]{--tone:#ab3f43;--tone-soft:#fbefef;--tone-edge:#dfb6b8;--scenario-end:#f7e5e5}
[data-tone="long-rental"]{--tone:#61517e;--tone-soft:#f3f0f8;--tone-edge:#c7bcd9;--scenario-end:#ebe6f3}
.choice-band{padding:24px 0;background:#f4f8fa;border-bottom:1px solid var(--line)}
.choice-nav{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border:1px solid #c4d3dd;border-radius:10px;background:#fff;box-shadow:0 5px 18px #19384b05}
.choice-link{position:relative;display:flex;align-items:center;gap:18px;min-width:0;min-height:104px;padding:22px 24px;border-right:1px solid var(--line);transition:background .2s ease,box-shadow .2s ease}
.choice-link:first-child{border-radius:9px 0 0 9px}.choice-link:last-child{border:0;border-radius:0 9px 9px 0}
.choice-link:before{content:"";position:absolute;left:24px;right:24px;bottom:0;height:3px;background:var(--tone-edge);transition:background .2s ease}
.choice-symbol{flex:0 0 44px;width:44px;height:44px;display:grid;place-items:center;background:var(--tone-soft);color:var(--tone);border-radius:11px}
.choice-symbol .icon{width:25px;height:25px}.choice-copy{min-width:0}.choice-copy strong{display:block;font-size:18px;line-height:1.4}.choice-copy small{display:block;font-size:13px;line-height:1.6;color:var(--muted);margin-top:4px}
.choice-link>.icon{width:19px;height:19px;flex:0 0 19px;margin-left:auto;color:var(--tone);transition:transform .2s ease}
.choice-link:hover{background:var(--tone-soft)}.choice-link:hover:before{background:var(--tone)}.choice-link:hover>.icon{transform:translateX(3px)}.choice-link:focus-visible{outline:3px solid var(--tone);outline-offset:3px;z-index:1}
.home-intro-copy .eyebrow{max-width:none;white-space:normal}
.rental-heading>img{object-position:50% 62%}.services-opening>img{object-position:50% 65%}



.catalog-section>.section-heading{border-top:3px solid var(--tone-edge);padding-top:24px}.catalog-section>.section-heading .eyebrow{color:var(--tone)}
.product-card[data-tone]{border-top:4px solid var(--tone-edge);transition:box-shadow .22s ease,border-color .22s ease,transform .22s ease}
.product-card[data-tone]:hover{border-top-color:var(--tone);box-shadow:0 9px 24px #18364a10}
.product-card[data-tone] .overline{display:inline-block;color:var(--tone);background:var(--tone-soft);padding:5px 9px;border-radius:4px;width:fit-content}

.catalog-product-cards .product-image{height:230px;background:#f1f5f8}.catalog-product-cards .product-copy h3{min-height:2.65em}
.product-detail-opening .product-detail-photo{border-top:4px solid var(--tone-edge);border-radius:14px;padding-top:0;overflow:hidden}
.product-detail-opening .facts{border-color:var(--tone-edge)}


@media(min-width:801px){.home-intro-copy .eyebrow{white-space:nowrap;font-size:12px;letter-spacing:.045em}}
@media(max-width:1100px){.choice-link{gap:12px;padding:20px 18px}.choice-link:before{left:18px;right:18px}.choice-copy strong{font-size:16px}.choice-symbol{flex-basis:38px;width:38px;height:38px}}
@media(max-width:800px){.choice-nav{grid-template-columns:1fr}.choice-link{min-height:82px;padding:16px 20px;border-right:0;border-bottom:1px solid var(--line)}.choice-link:first-child{border-radius:9px 9px 0 0}.choice-link:last-child{border-radius:0 0 9px 9px}.choice-link:before{left:0;top:16px;bottom:16px;width:3px;height:auto;right:auto}.choice-symbol{width:40px;height:40px;flex-basis:40px}.choice-copy small{font-size:13px}.choice-band{padding:20px 0}.home-intro-copy .eyebrow{font-size:11px;max-width:48ch}.catalog-product-cards .product-copy h3{min-height:0}}
@media(prefers-reduced-motion:reduce){.choice-link,.choice-link:before,.choice-link>.icon,.product-card[data-tone]{transition:none}.choice-link:hover>.icon{transform:none}}

.scenario-tabs button[data-tone][aria-expanded="true"]{background:var(--tone-soft);border-bottom-color:var(--tone);color:var(--tone)}
.scenario-tabs button[data-tone]:focus-visible{outline-color:var(--tone)}
.preparedness-preview[data-tone] .eyebrow,.standby-hero .eyebrow{color:var(--tone)}
.preparedness-preview[data-tone] .eyebrow:before{background:var(--tone)}

/* V10: clear inquiry hierarchy, phone remains directly accessible. */
.home-intro .hero-phone{display:inline-flex;align-items:center;justify-content:center;gap:12px;min-height:48px;padding:10px 8px;color:var(--ink);font-size:17px;font-weight:700;text-decoration:none;border-radius:6px}.home-intro .hero-phone:hover{text-decoration:underline;text-underline-offset:5px}.home-intro .hero-phone:focus-visible{outline:3px solid var(--blue);outline-offset:4px}
@media(min-width:601px) and (max-width:800px){.rental-heading>img,.services-opening>img{height:320px}}
@media(min-width:801px) and (max-width:900px){.home-intro-copy .eyebrow{font-size:11px}}

.product-image.illustrative{background:#dedede}.product-image.illustrative img{object-fit:contain;transform:none}.product-card:hover .product-image.illustrative img{transform:none}

/* Regional arrivals share the home hero, with city imagery and local content. */
.regional-city-intro .home-intro-layout{min-height:510px;padding-block:48px}
.regional-city-intro .home-intro-copy h1{font-size:clamp(34px,3.2vw,48px);line-height:1.16;max-width:22ch}
.regional-city-intro .home-intro-copy .eyebrow{white-space:normal;max-width:none}
.regional-city-intro .home-intro-copy>p:not(.eyebrow){font-size:18px;max-width:45ch}
.regional-city-intro .home-intro-photo img{object-position:65% 0%}
@media(max-width:800px){.regional-city-intro .home-intro-layout{min-height:0;padding-block:32px 22px}.regional-city-intro .home-intro-copy h1{font-size:34px}.regional-city-intro .home-intro-copy>p:not(.eyebrow){font-size:17px}.regional-city-intro .home-intro-photo{height:250px}.regional-city-intro .home-intro-photo img{object-position:65% 0%}}
@media(max-width:380px){.regional-city-intro .home-intro-copy h1{font-size:30px}}

.city-photo-credit{position:absolute;bottom:10px;left:0;right:0;display:flex;justify-content:flex-end;z-index:1;font-size:12px;line-height:1.6}.city-photo-credit span{background:#ffffffeb;padding:3px 7px;border-radius:3px;color:#334c5d}.city-photo-credit a{text-decoration:underline;text-underline-offset:2px}

@media(min-width:601px) and (max-width:800px){.regional-city-intro .home-intro-photo{height:clamp(340px,55vw,440px)}.regional-city-intro .home-intro-photo img{object-position:65% 60%}.regional-city-intro[data-city="jihlava"] .home-intro-photo{height:360px}.regional-city-intro[data-city="jihlava"] .home-intro-photo img{object-position:65% 0%!important}}

/* V12: a shared opening grid keeps navigation between landing pages steady. */
.page-opening{background:#f0f5f7;border-bottom:1px solid #d4e0e6;position:relative;isolation:isolate;overflow:hidden}
.page-opening-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);gap:56px;align-items:center;min-height:510px;padding-block:48px}
.page-opening-copy{display:grid;grid-template-rows:20px minmax(108px,auto) minmax(95px,auto) 54px 24px;row-gap:18px;position:relative;z-index:1;min-width:0}
.page-opening-copy>.eyebrow{margin:0;align-self:start;font-size:12px;line-height:20px;max-width:none}
.page-opening h1{font-size:clamp(34px,3.2vw,46px);line-height:1.16;letter-spacing:-.045em;margin:0;max-width:none;align-self:start}
.page-opening-lead{font-size:18px;line-height:1.75;color:#425d6d;max-width:55ch;margin:0;align-self:start}
.page-opening-actions{display:flex;gap:20px;align-items:center;min-width:0}
.page-opening-actions>.button{width:230px;min-height:54px;justify-content:space-between;padding:14px 20px;flex-shrink:0;font-size:15px;white-space:nowrap}
.page-opening-secondary{display:inline-flex;gap:12px;align-items:center;font-size:16px;font-weight:650;color:var(--ink);min-height:48px;white-space:nowrap}
.page-opening-secondary>.icon{width:22px;height:22px;flex-shrink:0}
.page-opening-secondary:hover{text-decoration:underline;text-underline-offset:4px}
.page-opening-note{font-size:13px;line-height:1.6;color:var(--muted);min-width:0}
.page-opening-visual{position:relative;min-width:0}
.page-opening-visual>img{display:block;width:100%;height:350px;object-fit:cover;border-radius:14px}
.page-opening-backdrop .page-opening-visual{position:absolute;inset:0 0 0 40%;z-index:0}
.page-opening-backdrop .page-opening-visual>img{height:100%;border-radius:0;object-position:65% 35%}
.page-opening-backdrop .page-opening-visual::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,#f0f5f7 0%,rgba(240,245,247,.96) 12%,rgba(240,245,247,.4) 38%,transparent 70%);pointer-events:none}
.page-opening-backdrop .page-opening-copy{max-width:610px}
.page-opening-backdrop .page-opening-lead{max-width:48ch}
.opening-photo-credit{position:absolute;bottom:12px;right:12px;z-index:2;max-width:calc(100% - 24px);background:#fffffff0;color:#42515b;padding:5px 8px;font-size:12px;line-height:1.5}
.opening-photo-credit a{text-decoration:underline}
.page-opening+.choice-band{margin:0;padding-block:24px}
.page-opening+.choice-band .choice-nav{min-height:106px}
.page-opening~.service-dossiers{padding-top:48px}
@media(min-width:801px) and (max-width:1100px){.page-opening-grid{gap:30px;min-height:550px}.page-opening-copy{grid-template-rows:40px minmax(120px,auto) minmax(120px,auto) 106px 24px}.page-opening-actions{flex-direction:column;align-items:flex-start;gap:4px}.page-opening h1{font-size:36px}.page-opening-lead{font-size:17px}.page-opening-visual>img{height:350px}}
@media(max-width:800px){.page-opening-grid{grid-template-columns:1fr;gap:24px;padding-block:32px 0;min-height:0}.page-opening-copy{grid-template-rows:40px minmax(112px,auto) minmax(120px,auto) 54px 22px;gap:14px}.page-opening h1{font-size:34px}.page-opening-lead{font-size:17px;line-height:1.7;max-width:58ch}.page-opening-backdrop .page-opening-copy{max-width:none}.page-opening-backdrop .page-opening-lead{max-width:58ch}.page-opening-visual,.page-opening-backdrop .page-opening-visual{position:relative;inset:auto;margin-inline:calc(-1 * var(--opening-edge,20px));order:1;z-index:0}.page-opening-visual>img,.page-opening-backdrop .page-opening-visual>img{height:clamp(250px,55vw,440px);border-radius:0;object-position:65% 60%}.page-opening-backdrop .page-opening-visual::after{background:linear-gradient(180deg,#f0f5f7,rgba(240,245,247,.2) 18%,transparent 35%)}.page-opening[data-city="jihlava"] .page-opening-visual>img{object-position:65% 20%!important}.page-opening+.choice-band{padding-block:20px}.page-opening+.choice-band .choice-nav{min-height:0}}
@media(max-width:520px){.page-opening-copy{grid-template-rows:40px minmax(119px,auto) minmax(145px,auto) 110px 22px;gap:12px}.page-opening h1{font-size:32px}.page-opening-actions{flex-direction:column;align-items:stretch;gap:8px}.page-opening-actions>.button{width:100%;justify-content:center;gap:20px}.page-opening-secondary{justify-content:center}.page-opening-note{font-size:12px}.page-opening-visual>img,.page-opening-backdrop .page-opening-visual>img{height:260px}.page-opening-visual,.page-opening-backdrop .page-opening-visual{margin-inline:-20px}}
@media(max-width:360px){.page-opening h1{font-size:29px}.page-opening-copy{grid-template-rows:40px minmax(136px,auto) minmax(174px,auto) 110px 22px}.page-opening-actions>.button{font-size:14px}}

/* Contained category panels keep related cards together without full-bleed colour. */
.rental-catalog{padding:40px 0 0;margin:0;width:100%;max-width:none}
.rental-catalog [data-rental-results]>.catalog-section{width:min(calc(var(--max) + 80px),calc(100% - 40px));margin:0 auto 32px;padding:40px 0 44px;border:1px solid #dce5ea;border-radius:24px;scroll-margin-top:100px}
.rental-catalog [data-rental-results]>.catalog-section>.wrap{width:min(var(--max),calc(100% - 40px))}
.rental-catalog [data-rental-results]>#nabidka-elektrocentraly{background:#eef5fa}
.rental-catalog [data-rental-results]>#nabidka-ups{background:#f3f0f8}
.rental-catalog [data-rental-results]>#nabidka-prislusenstvi{background:#eef6f3}
.catalog-section .section-heading{align-items:start;margin-bottom:30px}
.catalog-section .section-heading h2{color:var(--ink)}
.catalog-section .product-grid{align-items:start}
.catalog-section .accessories-primary{grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}
.rental-catalog>.catalog-note{padding-block:24px;font-size:14px;line-height:1.7}
.accessories-note{font-size:16px;color:#46635c;max-width:78ch;margin:28px 0 0;line-height:1.75}
.product-card-inline{display:flex;flex-direction:column;overflow:hidden;transform:none!important;background:#fff;cursor:default;text-decoration:none;box-shadow:none;border:1px solid #d5e1e8;border-radius:14px}
.product-card-inline:hover{transform:none;box-shadow:none;border-color:#d5e1e8}
.product-card-inline .product-image{width:100%;height:auto!important;min-height:0!important;aspect-ratio:4/3;padding:0;flex-shrink:0;overflow:hidden;background:#edf2f5}
.product-card-inline .product-image img{display:block;width:100%;height:100%;max-width:none;max-height:none;object-fit:cover;transform:none!important;border-radius:0}
.product-card-inline .product-image.contain img{object-fit:contain;padding:20px}
.product-card-inline .product-image.illustrative img{object-fit:cover;padding:0}
.product-card-inline .product-copy{padding:26px;display:flex;flex-direction:column;flex:1;gap:0}
.product-card-inline .product-copy h3{font-size:24px;line-height:1.25;min-height:0;margin:8px 0 14px;color:var(--ink)}
.product-card-inline .product-copy>p{font-size:16px;line-height:1.7;margin:0 0 18px;min-height:0}
.product-power{min-height:78px;display:flex;flex-direction:column;align-items:flex-start;gap:4px;margin:0 0 20px;padding:12px 16px;background:#edf4f9;border-left:3px solid #557e9b;border-radius:4px;color:#23455f}
.product-power strong{font-size:23px;line-height:1.25;letter-spacing:-.02em}
.product-power span{font-size:14px;line-height:1.4}
[data-tone="ups"]>.product-copy .product-power{background:#f1edf7;border-color:#8877a1;color:#574569}
.product-information{margin-top:auto;border-top:1px solid #dbe4ea}
.product-information>summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 0 0;cursor:pointer;font-size:15px;font-weight:650;color:var(--blue)}
.product-information>summary::-webkit-details-marker{display:none}
.product-information>summary>.icon{transform:rotate(90deg);transition:transform .25s ease;flex-shrink:0}
.product-information[open]>summary>.icon{transform:rotate(-90deg)}
.product-information-body{padding-top:18px;font-size:15px;line-height:1.75}
.product-information-body p{margin:0 0 16px}
.product-information-body ul{padding-left:20px;margin:0 0 22px}
.product-information-body .button{font-size:14px;padding:13px 17px;gap:20px;min-width:0}
.product-card-accessory .product-copy>.accessory-card-note{font-size:14px;color:var(--muted);border-top:1px solid var(--line);padding-top:16px;margin-bottom:0}
.ups-catalog{align-items:stretch!important}
.ups-catalog .product-card-inline{align-self:start}
@media(max-width:800px){.catalog-product-cards .product-card-inline:last-child{grid-column:auto;display:flex}.catalog-product-cards{grid-template-columns:repeat(2,minmax(0,1fr))}.catalog-section .accessories-primary{gap:20px}.product-card-inline .product-copy{padding:22px}.product-card-inline .product-copy h3{font-size:22px}}
@media(max-width:600px){.rental-catalog{padding-top:24px}.rental-catalog [data-rental-results]>.catalog-section{width:calc(100% - 20px);padding-block:26px 30px;border-radius:18px;margin-bottom:24px}.rental-catalog [data-rental-results]>.catalog-section>.wrap{width:calc(100% - 20px)}.catalog-product-cards,.catalog-section .accessories-primary{grid-template-columns:1fr}.product-card-inline .product-copy{padding:22px}.product-power strong{font-size:23px}.catalog-section .section-heading{gap:16px;margin-bottom:24px}.accessories-note{font-size:15px}}
@media(prefers-reduced-motion:reduce){.product-information>summary>.icon{transition:none}}

@media(min-width:601px) and (max-width:1100px){.catalog-product-cards .product-copy h3{min-height:2.5em}}

/* The services photograph spans the hero AND its quick choices without moving either. */
.opening-surface{position:relative;isolation:isolate;overflow:hidden;background:#f0f5f7}
.opening-surface>.page-opening{position:static;isolation:auto;overflow:visible;background:transparent;border-color:transparent}
.opening-surface~.service-dossiers{padding-top:48px}
.opening-surface>.choice-band{position:relative;z-index:1;background:transparent}
.opening-surface .page-opening-visual>img{object-position:65% 50%}
@media(max-width:800px){.opening-surface{background-image:linear-gradient(180deg,#f0f5f7 0%,#f0f5f7 70%,rgba(240,245,247,.8) 85%,rgba(240,245,247,.6)),var(--opening-image);background-size:cover;background-position:center,65% bottom}.opening-surface .page-opening-visual{visibility:visible}.opening-surface .choice-nav{background:#fffffff5}}

/* V13: category tabs below the client strip, with one visible offer at a time. */
.rental-catalog{padding-top:28px}
.rental-category-bar{margin-bottom:22px}
.rental-category-tabs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;border:1px solid var(--line);border-radius:14px;padding:7px;background:#fff}
.rental-category-tabs>:is(a,button){display:flex;align-items:center;justify-content:center;gap:12px;padding:18px 16px;min-height:64px;border-radius:9px;color:var(--ink);font-size:18px;font-weight:700;text-decoration:none;border:1px solid transparent;transition:background .2s,border-color .2s}
.rental-category-tabs .icon{color:var(--tone);width:25px;height:25px;flex-shrink:0}
.rental-category-tabs>:is(a,button):hover{background:var(--tone-soft)}
.rental-category-tabs>:is(a,button)[aria-selected="true"]{background:var(--tone-soft);border-color:var(--tone-edge);box-shadow:inset 0 -3px var(--tone);color:var(--tone)}
.rental-category-tabs>:is(a,button):focus-visible{outline:3px solid var(--tone);outline-offset:3px}
.rental-catalog [data-rental-results]>.catalog-section[hidden]{display:none!important}
.rental-catalog [data-rental-results]>.catalog-section{scroll-margin-top:185px}
.rental-catalog .product-image{aspect-ratio:3/2}
.catalog-section .accessories-primary{align-items:stretch!important;grid-auto-rows:1fr}
.accessories-primary>.product-card{height:100%}
.accessories-primary .product-copy h3{min-height:2.5em}
.accessories-primary .accessory-card-note{margin-top:auto!important}
@media(max-width:800px){.opening-photo-credit{visibility:visible}.rental-category-tabs>:is(a,button){font-size:16px;padding:14px 10px}.rental-catalog [data-rental-results]>.catalog-section{scroll-margin-top:175px}}
@media(max-width:600px){.rental-category-bar{width:calc(100% - 40px);margin-bottom:16px}.rental-category-tabs{gap:4px;padding:5px;border-radius:12px}.rental-category-tabs>:is(a,button){flex-direction:column;gap:7px;font-size:13px;line-height:1.3;padding:12px 3px;min-height:83px}.rental-category-tabs .icon{width:23px;height:23px}.accessories-primary .product-copy h3{min-height:0}.rental-catalog{padding-top:22px}}
@media(prefers-reduced-motion:reduce){.rental-category-tabs>:is(a,button){transition:none}}

.page-opening-backdrop .page-opening-visual::after{left:-1px}
@media(max-width:800px){.opening-surface>.choice-band{background:rgba(240,245,247,.78)}}

/* Compact mobile opening: the same photo sits behind the content, not below it. */
@media(max-width:800px){
 .opening-surface{background-image:none}
 .opening-surface .page-opening-grid{padding-block:30px 26px}
 .opening-surface .page-opening-copy{grid-template-rows:none;gap:20px}
 .opening-surface .page-opening-note:empty{display:none}
 .opening-surface .page-opening-visual{position:absolute;inset:0;margin:0;pointer-events:none}
 .opening-surface .page-opening-visual>img{height:100%;width:100%;object-position:65% 50%}
 .opening-surface .page-opening-visual::after{content:"";position:absolute;inset:0;background:linear-gradient(110deg,rgba(240,245,247,.98) 0%,rgba(240,245,247,.94) 45%,rgba(240,245,247,.82) 100%)}
 .opening-surface:has(.opening-photo-credit){padding-bottom:58px}
 .opening-surface .opening-photo-credit{pointer-events:auto;bottom:10px;right:20px;left:20px;max-width:none;width:fit-content;margin-left:auto;font-size:10px}
 .rental-category-tabs>:is(a,button){flex-direction:column;gap:8px}
}
@media(max-width:600px){
 .rental-category-tabs{grid-template-columns:repeat(2,minmax(0,1fr))}
 .rental-category-tabs>:is(a,button){flex-direction:column;justify-content:center;gap:7px;padding:10px 5px;min-height:76px;font-size:13px}
}

/* One product name, readable parameters, then the intended use. */
.product-card-inline .product-copy h3{margin-top:0}
.product-power-pair{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;gap:12px;align-items:start}
.product-power-pair>div{min-width:0}
.product-power-pair dt{font-size:12px;line-height:1.5;margin:0 0 5px;font-weight:500}
.product-power-pair dd{font-size:23px;line-height:1.25;letter-spacing:-.02em;font-weight:700;margin:0;white-space:nowrap}

/* V14: services follow the same five customer situations as the home page. */
.scenarios-unified .scenario-panel{grid-template-columns:minmax(0,1fr) minmax(0,.8fr);gap:28px 40px;align-items:start}
.scenario-service-photo{margin:0;min-width:0;border-radius:12px;overflow:hidden}
.scenario-service-photo img{display:block;width:100%;height:240px;object-fit:cover}
.scenario-service-depth{grid-column:1/-1;min-width:0}
.service-topic{border-top:1px solid var(--line);min-width:0;scroll-margin-top:110px}
.service-topic>summary{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:20px 0;list-style:none;cursor:pointer}
.service-topic>summary::-webkit-details-marker{display:none}
.service-topic>summary>span{display:grid;gap:7px;min-width:0}
.service-topic>summary strong{font-size:20px;line-height:1.35;color:var(--ink)}
.service-topic>summary>span>span{font-size:15px;line-height:1.6;color:var(--muted);max-width:85ch}
.service-topic>summary>.icon{transform:rotate(90deg);flex-shrink:0;color:var(--blue);transition:transform .25s}
.service-topic[open]>summary>.icon{transform:rotate(-90deg)}
.service-topic-body{max-width:85ch;padding:0 0 26px;font-size:16px;line-height:1.75}
.service-topic-body h4{font-size:18px;line-height:1.4;margin:20px 0 10px}
.service-topic-body p{margin:0 0 14px}
.service-topic-body ul{padding-left:22px}
.service-topic-body>.text-link{display:flex;width:fit-content;margin-top:18px}
.services-additional{padding-block:0 60px}
.services-additional>h2{font-size:28px;margin:0 0 12px}
.services-additional>p{color:var(--muted)}
.services-additional-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px;margin-top:24px;align-items:start}
.services-additional-grid .service-topic>summary strong{font-size:18px}
.documents-page{max-width:1000px;padding-block:56px 80px}
.documents-page h1{font-size:clamp(30px,4vw,44px);line-height:1.2;margin:12px 0 20px}
.documents-page>p:not(.eyebrow){font-size:18px;color:var(--muted)}
.document-list{list-style:none;padding:0;margin:32px 0 0;border-top:1px solid var(--line)}
.document-list li{border-bottom:1px solid var(--line)}
.document-list a{display:flex;align-items:center;gap:22px;padding:24px 8px;text-decoration:none;border-radius:8px}
.document-list a:hover{background:var(--blue-soft,#eef5fa)}
.document-type{padding:15px 10px;background:#edf4f9;color:var(--blue);font-size:13px;font-weight:700;border-radius:7px}
.document-name{display:grid;gap:7px;flex:1;min-width:0}
.document-name strong{font-size:18px;line-height:1.5;color:var(--ink)}
.document-name>span{color:var(--muted);font-size:13px}
.document-open{display:flex;gap:12px;align-items:center;color:var(--blue);font-weight:650}
@media(max-width:800px){.scenarios-unified .scenario-panel{grid-template-columns:1fr}.scenario-service-photo img{height:210px}.services-additional-grid{grid-template-columns:1fr;gap:10px}}
@media(max-width:520px){.scenarios-unified .scenario-panel{padding:22px;gap:22px}.service-topic>summary strong{font-size:18px}.service-topic>summary>span>span{font-size:14px}.scenario-service-photo img{height:180px}.documents-page{padding-block:30px 50px}.document-list a{gap:14px;padding:20px 0}.document-open{font-size:0;gap:0}.document-name strong{font-size:16px}.document-type{padding:12px 7px;font-size:11px}}
@media(prefers-reduced-motion:reduce){.service-topic>summary>.icon{transition:none}}

.scenarios-unified{padding-top:28px;padding-bottom:48px;scroll-margin-top:100px}
.scenarios-unified .section-heading{margin-bottom:22px}
.scenarios-unified .section-heading h2{font-size:30px}
.scenarios-unified .scenario-tabs{grid-template-columns:repeat(5,minmax(0,1fr));gap:8px;padding:7px;border:1px solid var(--line);border-radius:14px;background:#fff}
.scenarios-unified .scenario-tabs>button{min-width:0;min-height:64px;justify-content:center;font-size:16px;font-weight:700;padding:16px 10px;border-radius:9px;border:1px solid transparent;background:#fff;color:var(--ink);transform:none}
.scenarios-unified .scenario-tabs>button>.icon{width:25px;height:25px;flex-basis:25px;color:var(--tone)}
.scenarios-unified .scenario-tabs>button[aria-selected=true]{background:var(--tone-soft);border-color:var(--tone-edge);box-shadow:inset 0 -3px var(--tone);color:var(--tone)}
.scenarios-unified .scenario-tabs>button:hover{background:var(--tone-soft)}
.scenarios-unified .scenario-tabs>button:focus-visible{outline:3px solid var(--tone);outline-offset:3px}
@media(max-width:1000px){.scenarios-unified .scenario-tabs>button{flex-direction:column;font-size:14px;gap:9px}}
@media(max-width:600px){.scenarios-unified .scenario-tabs{grid-template-columns:repeat(2,minmax(0,1fr));gap:4px;padding:5px}.scenarios-unified .scenario-tabs>button{font-size:13px;padding:10px 5px;min-height:76px}.scenarios-unified .scenario-tabs>button:last-child{grid-column:1/-1;flex-direction:row;min-height:56px}.scenarios-unified .section-heading h2{font-size:26px}}

/* Primary inquiry stays outside optional technical details on every product card. */
.product-actions{margin-top:auto;padding-top:16px;display:grid;gap:14px}
.product-actions>.product-inquiry{width:100%;min-height:48px;min-width:0;justify-content:space-between;gap:16px;padding:14px 18px;font-size:15px;line-height:1.4;background:var(--blue);color:#fff}
.product-actions>.product-inquiry:hover{background:var(--navy,#193c50)}
.product-actions>.product-information{margin-top:0}
.product-actions .product-information>summary{padding-top:14px;font-size:14px}
.product-actions .product-information-body ul{margin-bottom:0}

.scenarios-unified .scenario-inquiry{margin-top:12px;min-height:48px;min-width:0;padding:14px 20px;font-size:15px;gap:20px;background:var(--blue);color:white}
@media(max-width:520px){.scenarios-unified .scenario-inquiry{width:100%;justify-content:space-between}}

.product-actions .product-information>summary{min-height:40px;line-height:24px}
/* Reserve the collapsed detail row so adjacent card actions share a baseline. */
@media(min-width:601px){.product-card-accessory .product-actions{padding-bottom:55px}}

/* V15: home-page overview; deeper content remains on its relevant page. */
.process-section.compact .section{padding-block:46px}
.process-section.compact .section-heading{margin-bottom:28px}
.process-section.compact .process-card{padding-top:20px}
.process-section.compact .process-symbol{margin-bottom:18px;justify-content:flex-start}
.process-section.compact .process-card h3{min-height:0;margin:0 0 12px;font-size:19px}
.process-section.compact .process-card>p{min-height:0;margin:0;font-size:15px;line-height:1.65}
.process-more{display:flex;width:fit-content;margin-top:26px}
.home-reference-note{margin:24px 0 0;color:var(--muted);font-size:15px;line-height:1.8}
.home-reference-note a{display:inline-flex;align-items:center;gap:8px;color:var(--blue);font-weight:650}
.home-guide-links{margin-top:26px;max-width:360px}
.home-guide-links>p{font-size:13px;color:var(--muted);margin-bottom:8px}
.home-guide-links>a{display:flex;align-items:center;gap:12px;color:var(--blue);font-size:15px;padding:11px 0;text-decoration:none;border-bottom:1px solid var(--line)}
.home-guide-links>a>.icon:last-child{margin-left:auto}
.home-guide-links>a:hover{text-decoration:underline}
@media(max-width:600px){.process-section.compact .process-card{display:grid;grid-template-columns:56px minmax(0,1fr);gap:6px 16px}.process-section.compact .process-symbol{grid-row:1/3;display:block;margin:0}.process-section.compact .process-number{display:none}.process-section.compact .process-card h3{font-size:18px;margin:0}.process-section.compact .process-card>p{font-size:14px}}

/* Consistent, legible navigation at desktop and laptop widths. */
.desktop-nav>a{font-size:16px;white-space:nowrap}
.desktop-nav>a>.icon{display:block;width:20px;height:20px;flex-basis:20px}
.header-phone{font-size:16px;min-height:46px;padding:10px 14px;border:1px solid #bad0e0;border-radius:8px;background:#edf5fa;color:var(--blue);text-decoration:none;transition:background .2s,border-color .2s}.header-phone>.icon{width:22px;height:22px}
.header-phone:hover{background:#deedf6;border-color:var(--blue)}.header-phone:focus-visible{outline:3px solid var(--blue);outline-offset:3px}
.mobile-nav>a{font-size:17px;min-height:48px}.mobile-nav>a>.icon{width:21px;height:21px}
@media(min-width:901px) and (max-width:1180px){.desktop-nav{gap:14px}.desktop-nav>a{font-size:15px;gap:6px}.desktop-nav>a>.icon{width:18px;height:18px;flex-basis:18px}.header-phone{font-size:15px}}
@media(prefers-reduced-motion:reduce){.gallery-thumbnails>button,.gallery-stage>button,.header-phone{transition:none}}
@media(max-width:620px){.gallery-dialog{height:fit-content;max-width:calc(100% - 16px);align-content:start}.gallery-dialog[open]{grid-template-rows:auto auto auto auto}.gallery-stage>img{position:static;height:auto;max-height:calc(100dvh - 245px)}.gallery-stage{min-height:120px}}

.site-survey-note{display:flex;align-items:flex-start;gap:18px;margin-top:30px;padding:24px;border:1px solid var(--line);border-radius:10px;background:#f3f7fa;color:var(--ink)}
.site-survey-note>.icon{flex:0 0 24px;width:24px;height:24px;color:var(--blue);margin-top:3px}
.site-survey-note h3{font-size:18px;line-height:1.4;margin:0 0 10px;letter-spacing:0}
.site-survey-note p{font-size:15px;line-height:1.65;max-width:78ch;margin:0 0 10px}
.site-survey-note .text-link{font-size:15px;margin-top:4px}
.site-survey-note.compact{padding:20px}.site-survey-note.compact p{font-size:14px}
.survey-placement{padding-block:0 clamp(40px,4.5vw,64px)}.survey-placement .site-survey-note{margin-top:0}
@media(max-width:600px){.site-survey-note,.site-survey-note.compact{padding:18px;gap:12px}.site-survey-note>.icon{width:20px;height:20px;flex-basis:20px}.site-survey-note h3{font-size:17px}}

.site-survey-note.survey-featured{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);gap:48px;padding:34px 40px;border:0;border-radius:14px;background:linear-gradient(110deg,#edf4f8 0%,#f5f9fa 51%,#e7f2ef 100%);box-shadow:inset 0 1px 0 #d3e4e8,inset 0 -1px 0 #d3e4e8}
.survey-featured .survey-kicker{display:flex;align-items:center;gap:10px;font-size:11px;font-weight:750;letter-spacing:.1em;text-transform:uppercase;color:#426c73;margin-bottom:12px}
.survey-kicker:before{content:'';width:20px;height:2px;background:var(--red)}
.survey-featured h3{font-size:26px;letter-spacing:-.03em;margin-bottom:14px}
.survey-featured .survey-copy>p:not(.survey-kicker){font-size:15px;max-width:56ch}
.survey-featured .survey-copy>.survey-terms{font-size:13px;color:var(--muted);margin-top:16px}
.survey-featured .button{margin-top:12px;min-height:44px;padding:10px 16px;font-size:14px;background:#fff;border-color:#adc5cf}
.survey-route{position:relative;display:flex;flex-direction:column;justify-content:center;gap:22px;align-self:center;padding:8px 0}
.survey-route:before{content:'';position:absolute;left:25px;top:35px;bottom:35px;width:1px;background:#97bdb7}
.survey-route-stop{display:flex;align-items:center;gap:18px;position:relative}
.survey-route-icon{display:grid;place-items:center;flex:0 0 52px;height:52px;border:1px solid #bed6d0;border-radius:14px;background:#fafffe;box-shadow:0 4px 14px #426c7310;color:#356e69}
.survey-route-icon>.icon{width:25px;height:25px}
.survey-route-number{font-size:11px;color:#527674;font-weight:650;margin-right:9px;font-variant-numeric:tabular-nums}
.survey-route-stop strong{font-size:16px}.survey-route-description{display:block;font-size:13px;line-height:1.5;color:var(--muted);margin-top:4px}
@media(max-width:800px){.site-survey-note.survey-featured{grid-template-columns:1fr;gap:26px;padding:26px}.survey-featured h3{font-size:23px}.survey-route{gap:18px}.survey-route-stop{gap:15px}.survey-featured .survey-copy>p:not(.survey-kicker){font-size:14px}}

/* Situation panels consume the same global category tokens as navigation and CTAs. */
.scenarios-unified .scenario-panel{background:linear-gradient(115deg,var(--tone-soft),var(--scenario-end));border-radius:14px;box-shadow:inset 3px 0 var(--tone-edge)}
.scenarios-unified .scenario-inquiry{background:var(--tone);border-color:var(--tone);color:#fff}
.scenarios-unified .scenario-inquiry:hover{filter:brightness(.92)}
.scenarios-unified .scenario-inquiry:focus-visible{outline:3px solid var(--tone);outline-offset:4px}
.rental-survey{padding-top:32px}.rental-survey .site-survey-note{margin-top:0}

/* Category meaning is carried by key actions and navigation, not every paragraph. */
.desktop-nav>a[data-tone]>.icon,.mobile-nav>a[data-tone]>.icon{color:var(--tone)}
.desktop-nav>a[data-tone]:is(:hover,[aria-current]),.mobile-nav>a[data-tone]:hover{color:var(--tone)}
.desktop-nav>a[data-tone]::after{background:var(--tone)}
.page-opening-actions>.button,.product-inquiry,.preparedness-preview .button,.standby-scope .button{background:var(--tone);border-color:var(--tone);color:#fff}
.page-opening-copy>.eyebrow,.preparedness-preview .text-link{color:var(--tone)}
.page-opening-copy>.eyebrow:before{background:var(--tone)}
.preparedness-preview[data-tone="standby"]{background:var(--tone-soft)}
.cta-section .button{background:var(--tone);border-color:var(--tone);color:#fff}
:is(.page-opening-actions>.button,.product-inquiry,.preparedness-preview .button,.standby-scope .button,.cta-section .button):hover{filter:brightness(.92)}

/* Rental trial: only the bottom page layer is white; component surfaces retain their colors. */
body[data-page-id="pujcovna-elektrocentraly"],body[data-page-id="pujcovna-elektrocentraly"]>main{background:#fff}

/* Standby: visible essentials, optional sector detail, one shared inspection module. */
.standby-focused{--section-space:60px}
.standby-focused .section-heading{gap:40px;margin-bottom:30px}
.standby-focused .section-heading h2{max-width:23ch}
.standby-focused .section-heading>p{font-size:17px;max-width:40ch}
.standby-focused .standby-introduction{padding-bottom:0}
.standby-introduction-copy{max-width:85ch}
.standby-introduction-copy h2{margin-bottom:22px}
.standby-introduction-copy>p:not(.eyebrow){font-size:18px;line-height:1.8;color:var(--muted);margin:0}
.standby-benefits{list-style:none;padding:0;margin:30px 0 0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px}
.standby-benefits>li{display:flex;align-items:flex-start;gap:16px;border-top:1px solid #dce3e7;padding-top:22px}
.standby-benefit-icon{display:grid;place-items:center;flex:0 0 42px;height:42px;border-radius:10px;background:#f1f4f6;color:#7f435e}
.standby-benefit-icon>.icon{width:23px;height:23px}
.standby-benefits h3{font-size:20px;line-height:1.4;margin:0 0 9px}
.standby-benefits p{font-size:16px;line-height:1.7;color:var(--muted);margin:0}
.standby-focused .standby-survey{padding-bottom:var(--section-space)}
@media(max-width:1000px){.standby-benefits{gap:20px}.standby-benefits>li{gap:12px}.standby-benefits h3{font-size:18px}.standby-benefit-icon{flex-basis:36px;height:36px}}
@media(max-width:700px){.standby-introduction-copy>p:not(.eyebrow){font-size:17px;line-height:1.75}.standby-benefits{grid-template-columns:1fr;gap:20px;margin-top:24px}.standby-benefits>li{padding-top:18px;gap:14px}.standby-benefits h3{font-size:19px;margin-bottom:5px}.standby-benefit-icon{flex-basis:40px;height:40px}}
.standby-use-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;align-items:start}
.standby-focused .standby-use-card{margin:0;border:1px solid #d8dfe3;border-radius:14px;background:#fff;overflow:hidden}
.standby-use-card>summary{display:grid;grid-template-columns:48px 1fr;grid-template-rows:48px minmax(70px,auto) 38px;gap:14px;padding:24px;list-style:none}
.standby-use-card>summary::-webkit-details-marker,.standby-inline-detail>summary::-webkit-details-marker{display:none}
.standby-use-icon{width:48px;height:48px;border-radius:12px;display:grid;place-items:center;background:#f1f4f6;color:#7f435e}
.standby-use-icon>.icon{width:25px;height:25px}
.standby-use-card h3{font-size:21px;line-height:1.3;margin:0;align-self:center}
.standby-use-brief{grid-column:1/-1;color:var(--muted);font-weight:400;line-height:1.6;font-size:16px}
.standby-use-more{grid-column:1/-1;display:flex;align-items:center;justify-content:space-between;gap:10px;border-top:1px solid #dce3e7;padding-top:14px;color:#7f435e;font-size:14px}
.standby-use-more>.icon,.standby-inline-detail>summary>.icon:last-child{width:20px;height:20px;flex:0 0 20px;transform:rotate(90deg);transition:transform .3s var(--motion-ease)}
.standby-use-card[open] .standby-use-more>.icon,.standby-inline-detail[open]>summary>.icon:last-child{transform:rotate(-90deg)}
.standby-use-card>summary:hover{background:#f6f8f9}
.standby-use-card>summary:focus-visible,.standby-inline-detail>summary:focus-visible{outline:2px solid #7f435e;outline-offset:-4px;border-radius:12px}
.standby-use-detail{padding:0 24px 24px}.standby-use-detail p{margin:0 0 15px}.standby-use-detail ul{padding-left:18px;margin:0;color:var(--muted);font-size:15px;line-height:1.65}.standby-use-detail li+li{margin-top:9px}
.standby-survey{padding-bottom:0}.standby-focused .survey-featured{margin:0}
.standby-plan-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:36px;list-style:none;margin:0;padding:0}
.standby-plan-steps>li{border-top:2px solid #d1b4c2;padding-top:22px;display:grid;grid-template-columns:38px 1fr;gap:12px}
.standby-plan-number{font-size:15px;font-weight:700;color:#7f435e;padding-top:3px}.standby-plan-steps h3{margin:0;font-size:21px;line-height:1.4}.standby-plan-steps p{grid-column:2;font-size:16px;line-height:1.7;color:var(--muted);margin:0}
.standby-focused .standby-inline-detail{margin-top:28px;border-block:1px solid var(--line);background:#fff}
.standby-inline-detail>summary{display:flex;align-items:center;gap:14px;list-style:none;padding:20px 4px;font-size:16px}
.standby-inline-detail>summary>.icon:first-child{color:#7f435e;width:23px;height:23px;flex:0 0 23px}.standby-inline-detail>summary>span:not(.icon){flex:1}
.standby-inline-detail p{color:var(--muted);max-width:85ch}.standby-inline-detail>.disclosure-content{padding-bottom:20px}.standby-inline-detail>.disclosure-content>p{margin-top:0}
.standby-proof{display:grid;grid-template-columns:1.05fr 1fr;gap:50px;align-items:center;padding:34px;border:1px solid #d8dfe3;border-radius:16px;background:#f3f6f7}
.standby-proof h2{font-size:32px}.standby-proof-copy>p:not(.eyebrow){font-size:16px;line-height:1.7;color:var(--muted)}
.standby-proof-facts{display:flex;gap:38px;padding-block:8px 12px}.standby-proof-facts strong{font-size:34px;color:#7f435e;letter-spacing:-.04em}.standby-proof-facts span{display:block;font-size:13px;font-weight:400;letter-spacing:0;color:var(--muted);margin-top:4px}
.standby-proof-copy .standby-proof-note{border-top:1px solid var(--line);padding-top:14px;margin-bottom:0;font-size:14px!important}
.standby-proof figure{margin:0;min-width:0}.standby-proof figure img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:10px}.standby-proof figcaption{font-size:12px;color:var(--muted);margin-top:10px;line-height:1.5}
.standby-outage-context{padding-top:24px}.standby-focused .standby-outage-context details{margin-top:0}
.standby-outage-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px}.standby-outage-list h3{font-size:20px;line-height:1.35}.standby-outage-list p{font-size:15px!important}.standby-outage-list .overline{font-size:12px!important}.standby-outage-list .text-link{font-size:14px}
@media(max-width:1000px){.standby-use-grid{gap:14px}.standby-use-card>summary{padding:20px;grid-template-columns:40px 1fr;gap:12px;grid-template-rows:54px minmax(90px,auto) 42px}.standby-use-icon{width:40px;height:40px}.standby-use-card h3{font-size:19px}.standby-plan-steps{gap:20px}.standby-plan-steps>li{grid-template-columns:1fr}.standby-plan-steps p{grid-column:1}.standby-proof{gap:28px;padding:26px}.standby-proof-facts{gap:22px}.standby-proof-facts strong{font-size:29px}}
@media(max-width:700px){.standby-focused{--section-space:42px}.standby-focused .section-heading{margin-bottom:24px}.standby-use-grid,.standby-plan-steps,.standby-proof,.standby-outage-list{grid-template-columns:1fr}.standby-use-card>summary{grid-template-rows:auto auto auto;grid-template-columns:42px 1fr;padding:20px;gap:10px 14px}.standby-use-brief{grid-column:2}.standby-use-more{margin-top:6px;padding-top:12px}.standby-use-card h3{font-size:21px}.standby-plan-steps>li{grid-template-columns:32px 1fr;padding-top:18px}.standby-plan-steps p{grid-column:2}.standby-proof{padding:24px;gap:25px}.standby-proof h2{font-size:28px}.standby-proof-facts strong{font-size:30px}.standby-proof-facts{gap:24px}.standby-inline-detail>summary{font-size:15px}.standby-outage-list{gap:22px}.standby-outage-list article+article{border-top:1px solid var(--line);padding-top:20px}}

/* Compact neutral footer. The preceding CTA owns the inquiry and telephone action. */
.site-footer{--ink:#fff;--muted:#e6ebef;--line:#494c50;--blue:#83c5f4;background:#282a2d;color:var(--ink);padding-top:0;border-top:1px solid #414448}
.site-footer .footer-grid{display:grid;grid-template-columns:1.15fr 1fr 1fr;gap:72px;align-items:start;padding-block:40px 32px}
.site-footer .footer-logo{display:block;width:78px;background:transparent;border:0;border-radius:0;padding:0;margin:0 0 22px;box-shadow:none}
.site-footer .footer-logo img{filter:grayscale(1) invert(1);mix-blend-mode:screen;width:100%;height:auto}
.site-footer .footer-grid h2{font-size:16px;line-height:1.5;font-weight:700;margin:0 0 14px;color:var(--ink)}
.site-footer .footer-grid a:not(.brand){font-size:15px;color:#f5f7fa;text-decoration:none}
.site-footer .footer-links{padding-top:4px}
.site-footer .footer-links>a{display:flex!important;align-items:center;gap:12px;min-height:40px;padding-block:5px;line-height:1.5}
.site-footer .footer-links>a>.icon{width:19px;height:19px;flex:0 0 19px;color:var(--footer-accent,#83c5f4)}
.site-footer .footer-company p{font-size:13px;line-height:1.7;color:var(--muted);margin:0 0 8px}
.site-footer .footer-company .footer-email{display:flex;align-items:center;gap:10px;min-height:36px;margin-bottom:12px;color:#fff;font-size:15px}
.site-footer .footer-email>.icon{width:18px;height:18px;flex:0 0 18px;color:#83c5f4}
.site-footer .footer-company dl{margin:0;font-size:12px;line-height:1.9;color:var(--muted)}
.site-footer .footer-company dl>div{display:flex;gap:18px}.site-footer .footer-company dt{min-width:102px}.site-footer .footer-company dd{margin:0;color:#f1f4f6}
.site-footer .footer-bottom{border-color:var(--line);font-size:13px;color:#dce3e8;padding-block:16px;align-items:center}
.site-footer .footer-bottom :is(a,button){color:inherit;font-size:13px;min-height:36px;display:inline-flex;align-items:center}
.site-footer a:not(.brand):hover,.site-footer .footer-bottom button:hover{color:#fff;text-decoration:none}
.site-footer :is(a,button):focus-visible{outline:2px solid #fff;outline-offset:4px;border-radius:3px}
@media(max-width:1000px){.site-footer .footer-grid{gap:32px;grid-template-columns:1.15fr 1fr 1fr}}
@media(max-width:700px){.site-footer .footer-grid{grid-template-columns:1fr 1fr;gap:26px 20px;padding-block:30px}.site-footer .footer-company{grid-column:1/-1;padding-bottom:24px;border-bottom:1px solid var(--line)}.site-footer .footer-logo{width:68px;margin-bottom:18px}.site-footer .footer-links>a{font-size:14px;gap:8px}.site-footer .footer-links>a>.icon{width:17px;height:17px;flex-basis:17px}.site-footer .footer-bottom{flex-direction:column;align-items:flex-start;gap:6px}.site-footer .footer-bottom>div{gap:4px 18px}.site-footer{padding-bottom:68px}}

/* References share the opening, category accents and card rhythm of rental/services. */
.reference-showcase .section-heading{margin-bottom:30px}
.reference-showcase-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;align-items:stretch}
.reference-feature{display:flex;flex-direction:column;color:var(--ink);background:white;border:1px solid var(--line);border-top:4px solid var(--tone);border-radius:14px;overflow:hidden;text-decoration:none;transition:box-shadow .25s,border-color .25s}
.reference-feature:hover{box-shadow:0 12px 32px #173c5012;border-color:var(--tone)}
.reference-feature-image{overflow:hidden;aspect-ratio:1.5}
.reference-feature-image img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.reference-feature:hover img{transform:scale(1.025)}
.reference-feature-copy{padding:25px;display:flex;flex-direction:column;flex:1}
.reference-feature-copy .reference-feature-context{color:var(--tone);font-size:13px;line-height:1.5;margin:0 0 10px}
.reference-feature h3{font-size:27px;line-height:1.25;margin:0 0 15px}
.reference-feature-copy>p{font-size:16px;line-height:1.75;color:var(--muted);margin:0 0 22px}
.reference-feature-facts{display:flex;flex-wrap:wrap;gap:8px;margin-top:auto;padding-bottom:22px}
.reference-feature-facts span{font-size:13px;background:var(--tone-soft);color:var(--tone);padding:6px 10px;border-radius:5px}
.reference-feature-action{display:flex;align-items:center;justify-content:space-between;gap:12px;border-top:1px solid var(--line);padding-top:18px;color:var(--blue);font-size:15px;font-weight:700}
.recurring-festivals{border:1px solid var(--line);border-radius:16px;background:#f5f8f9;padding:34px}
.recurring-festivals-heading{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start;margin-bottom:26px}
.recurring-festivals h2{font-size:27px;line-height:1.3;margin:0}
.recurring-festivals-heading>p{font-size:16px;line-height:1.75;color:var(--muted);margin:0}
.recurring-festivals ul{padding:0;margin:0;list-style:none;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.recurring-festivals li{background:#fff;border:1px solid var(--line);border-radius:8px;padding:18px;text-align:center;display:flex;flex-direction:column;align-items:center}
.recurring-festivals li img{height:82px;width:100%;object-fit:contain;margin-bottom:16px}
.recurring-festivals li strong{font-size:15px}.recurring-festivals li span{font-size:13px;color:var(--muted);margin-top:4px}
.reference-gallery-link{display:flex;justify-content:space-between;align-items:center;gap:28px;padding-block:40px}
.reference-gallery-link>div{display:flex;align-items:center;gap:20px}.reference-gallery-link>div>.icon{width:34px;height:34px;color:var(--blue)}
.reference-gallery-link h2{font-size:22px;margin:0 0 6px}.reference-gallery-link p{font-size:15px;color:var(--muted);margin:0}
.case-study-unified .case-period{font-size:14px;color:var(--muted)}
.case-fact-wrap{position:relative;z-index:1;padding-bottom:28px}
.case-key-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));background:white;border:1px solid var(--line);border-radius:10px;margin:0;overflow:hidden}
.case-key-facts>div{position:relative;padding:24px 28px;display:flex;flex-direction:column-reverse;justify-content:flex-end;gap:10px;border-right:1px solid var(--line)}
.case-key-facts>div:last-child{border-right:0}
.case-key-facts>div::after{content:'';position:absolute;bottom:0;left:28px;right:28px;height:3px;background:var(--tone-edge)}
.case-key-facts dt{font-size:14px;color:var(--muted);line-height:1.5}.case-key-facts dd{font-size:clamp(23px,2.1vw,30px);line-height:1.3;font-weight:700;margin:0;letter-spacing:-.03em}
.case-story-steps{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.case-story-steps li{padding:25px;background:linear-gradient(140deg,var(--tone-soft),#fff 85%);border:1px solid var(--line);border-radius:12px}
.case-step-top{display:flex;gap:14px;align-items:center;margin-bottom:20px;color:var(--tone);font-weight:600;font-size:14px}
.case-step-icon{display:grid;place-items:center;flex:0 0 44px;height:44px;border:1px solid var(--tone-edge);background:#fff;border-radius:10px}.case-step-icon>.icon{width:24px;height:24px}
.case-story-steps h3{font-size:22px;line-height:1.4;margin:0 0 12px}.case-story-steps p{font-size:16px;line-height:1.75;color:var(--muted);margin:0}
.case-technical-details{margin-top:38px;display:grid;grid-template-columns:minmax(200px,.65fr) minmax(0,1.35fr);gap:48px}.case-technical-details>h3{font-size:23px;line-height:1.4;margin:14px 0 0}
.case-technical-details .content-details{margin-top:0}
.case-film{margin-top:48px;border-top:1px solid var(--line);padding-top:36px;display:grid;grid-template-columns:.65fr 1.35fr;column-gap:48px;align-items:start}
.case-film h2{font-size:28px;line-height:1.3}.case-film>div>p:not(.eyebrow){font-size:16px;line-height:1.7;color:var(--muted)}
.case-video-player{aspect-ratio:16/9;border-radius:12px;overflow:hidden;background:#172d3a;min-width:0}
.case-video-start{width:100%;height:100%;position:relative;display:grid;place-items:center;padding:0;border:0;cursor:pointer;color:#fff;background:#172d3a}
.case-video-start>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.6}
.case-video-start>span{position:relative;display:flex;align-items:center;gap:14px;background:#fff;color:var(--ink);padding:16px 24px;border-radius:8px;font-weight:700}.case-video-start .icon{color:var(--blue)}
.case-video-player iframe{width:100%;height:100%;border:0;display:block}
.case-video-privacy{grid-column:2;font-size:13px;line-height:1.6;color:var(--muted);margin:12px 0 0}.case-video-privacy a{text-decoration:underline;text-underline-offset:3px}
.footer-link-label{position:relative;display:inline-block;background:linear-gradient(currentColor,currentColor) left bottom/0% 1px no-repeat;transition:background-size .28s ease;padding-bottom:2px}
.site-footer :is(a,button):is(:hover,:focus-visible) .footer-link-label{background-size:100% 1px}
@media(max-width:1000px){.reference-showcase-grid{gap:18px}.reference-feature-copy{padding:20px}.reference-feature h3{font-size:24px}.case-story-steps{gap:18px}.case-story-steps li{padding:20px}.case-story-steps h3{font-size:20px}.case-technical-details,.case-film{gap:24px}.recurring-festivals-heading{gap:24px}}
@media(max-width:800px){.reference-showcase-grid{grid-template-columns:1fr}.reference-feature{display:grid;grid-template-columns:1fr 1.2fr}.reference-feature-image{aspect-ratio:auto;min-height:230px}.reference-feature-copy>p{margin-bottom:16px}.recurring-festivals{padding:24px}.recurring-festivals-heading{grid-template-columns:1fr;gap:14px}.recurring-festivals ul{grid-template-columns:repeat(2,minmax(0,1fr))}.case-story-steps{grid-template-columns:1fr}.case-story-steps li{padding:24px}.case-step-top{margin-bottom:14px}.case-technical-details,.case-film{grid-template-columns:1fr}.case-video-privacy{grid-column:1}.case-key-facts>div{padding:20px}.case-key-facts dd{font-size:22px}.case-key-facts dt{font-size:13px}.reference-gallery-link{align-items:flex-start;flex-direction:column}.case-film{gap:18px}}
@media(max-width:520px){.reference-feature{display:flex}.reference-feature-image{aspect-ratio:1.65;min-height:0}.reference-feature-copy{padding:22px}.case-key-facts{grid-template-columns:1fr}.case-key-facts>div{padding:18px 20px;border-right:0;border-bottom:1px solid var(--line);gap:5px}.case-key-facts>div:last-child{border-bottom:0}.case-key-facts>div::after{left:0;top:18px;bottom:18px;right:auto;width:3px;height:auto}.case-key-facts dd{font-size:23px}.case-fact-wrap{padding-bottom:22px}.recurring-festivals{padding:22px 16px}.recurring-festivals li{padding:14px 10px}.recurring-festivals li img{height:66px}.recurring-festivals h2{font-size:24px}.case-story-steps li{padding:22px}.case-film h2{font-size:25px}}
@media(prefers-reduced-motion:reduce){.reference-feature,.reference-feature-image img,.footer-link-label{transition:none}.reference-feature:hover img{transform:none}}
.about-company-intro{display:grid;grid-template-columns:1.3fr .7fr;gap:70px;align-items:start}
.about-company-intro h2{font-size:34px;line-height:1.3}.about-company-intro>div>p:not(.eyebrow){font-size:17px;line-height:1.85;color:var(--muted)}
.about-experience{padding:32px;border:1px solid #c4dcd7;border-radius:14px;background:linear-gradient(135deg,#eaf4f1,#f7faf9);display:flex;flex-direction:column;align-items:flex-start}
.about-experience>.icon{width:38px;height:38px;color:#356e69;margin-bottom:24px}.about-experience>strong{font-size:24px;line-height:1.4}.about-experience>span{font-size:14px;color:#356e69;margin-top:7px}.about-experience p{margin-block:22px}.about-experience .text-link{font-size:15px}
.about-photo-section{padding-bottom:0}.about-history .company-timeline{gap:22px}.about-history .company-timeline p{font-size:15px;line-height:1.75}
@media(min-width:901px) and (max-width:1280px){.desktop-nav{gap:14px}.desktop-nav>a{font-size:15px;gap:6px}.desktop-nav>a>.icon{width:17px;height:17px;flex-basis:17px}}
@media(max-width:800px){.about-company-intro{grid-template-columns:1fr;gap:28px}.about-company-intro h2{font-size:29px}.about-experience{padding:26px}.about-history .company-timeline{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.about-history .company-timeline{grid-template-columns:1fr}.about-history .company-timeline li{padding:20px;border-top:0;border-left:3px solid var(--tone-edge);background:#f4f8fa}.about-company-intro>div>p:not(.eyebrow){font-size:16px}}
/* One FAQ treatment for the homepage, rental, standby and regional pages. */
.faq-section{gap:28px 64px;align-items:start}
.faq-section>div:first-child h2{margin-bottom:18px}
.faq-list{padding:0;min-width:0;border:1px solid var(--line);border-radius:12px;overflow:hidden;background:#fff}
.faq-list details{margin:0;border:0;border-bottom:1px solid var(--line);border-radius:0;background:#fff;transition:background .2s}
.faq-list details:last-child{border-bottom:0}
.faq-list summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:22px;min-height:76px;padding:20px 24px;font-size:17px;line-height:1.55;font-weight:700;color:var(--ink)}
.faq-list summary::-webkit-details-marker{display:none}.faq-list summary::marker{content:''}
.faq-question{flex:1;min-width:0}.faq-toggle{flex:0 0 32px;width:32px;height:32px;border:1px solid var(--line);border-radius:50%;background:#f5f8fa;display:grid;place-items:center;color:var(--tone);transition:background .2s,transform .28s}
.faq-toggle>.icon{width:18px;height:18px;transform:rotate(90deg)}
.faq-list summary:hover{color:var(--tone);background:var(--tone-soft)}
.faq-list summary:focus-visible{outline:2px solid var(--tone);outline-offset:-4px;border-radius:8px}
.faq-list details[open]{background:var(--tone-soft)}.faq-list details[open]>summary{color:var(--tone)}
.faq-list details[open] .faq-toggle{background:#fff;border-color:var(--tone-edge);transform:rotate(180deg)}
.faq-list .disclosure-content{padding:0}
.faq-list details>p,.faq-list .disclosure-content>p{padding:0 78px 24px 24px;margin:0;font-size:16px;line-height:1.85;color:var(--muted)}
@media(max-width:800px){.faq-section{gap:24px}.faq-list summary{font-size:16px;min-height:72px;padding:18px 20px;gap:16px}.faq-list details>p,.faq-list .disclosure-content>p{padding:0 20px 22px;font-size:16px;line-height:1.8}.faq-section>div:first-child h2{margin-bottom:12px}}
@media(prefers-reduced-motion:reduce){.faq-list details,.faq-toggle{transition:none}}
/* Advice reads as an article, with the site's typography and restrained accents. */
.editorial-header{padding-block:50px 34px;max-width:1080px}
.editorial-category{display:inline-block;font-size:14px;font-weight:600;color:var(--blue);margin-bottom:25px}.editorial-category span{color:var(--muted);font-weight:400}
.editorial-header h1{font-size:clamp(34px,4.2vw,56px);line-height:1.14;max-width:22ch;margin:0 0 24px;letter-spacing:-.035em}
.editorial-lead{font-size:21px;line-height:1.7;max-width:70ch;color:var(--muted);margin:0 0 24px}
.editorial-byline{display:flex;align-items:center;gap:24px;font-size:14px;color:var(--muted)}.editorial-byline>a{font-weight:600;color:var(--ink)}.editorial-byline>span{display:flex;align-items:center;gap:8px}.editorial-byline .icon{width:17px;height:17px}
.editorial-layout{max-width:1080px;display:grid;grid-template-columns:230px minmax(0,1fr);gap:60px;align-items:start}
.editorial-sidebar{position:sticky;top:130px;padding-top:6px}.editorial-sidebar nav>p{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:var(--muted);margin:0 0 16px}.editorial-sidebar ol{list-style:none;padding:0;margin:0;counter-reset:article}.editorial-sidebar li{counter-increment:article;border-top:1px solid var(--line)}.editorial-sidebar a{display:flex;gap:10px;padding:15px 0;font-size:14px;line-height:1.6;color:var(--ink)}.editorial-sidebar a::before{content:counter(article,decimal-leading-zero);font-size:12px;color:var(--blue);padding-top:2px}.editorial-sidebar a:hover{color:var(--blue);text-decoration:underline;text-underline-offset:4px}
.editorial-body{min-width:0}.editorial-photo{margin:0 0 30px}.editorial-photo img{width:100%;aspect-ratio:1.7;object-fit:cover;border-radius:12px;display:block}.editorial-photo figcaption{font-size:13px;line-height:1.6;color:var(--muted);margin-top:10px}
.editorial-takeaway{padding:22px 25px;background:#eef5f8;border-left:3px solid #9cc5dd;border-radius:0 10px 10px 0;font-size:18px;font-weight:600;line-height:1.7;margin:0 0 40px}
.editorial-body section{margin-bottom:38px;scroll-margin-top:130px}.editorial-body h2{font-size:28px;line-height:1.35;letter-spacing:-.025em;margin:0 0 18px}.editorial-body section p{font-size:17px;line-height:1.9;color:#465e6b;margin:0 0 18px}
.editorial-practice{display:flex;align-items:center;gap:18px;padding:24px;border:1px solid var(--line);border-radius:10px;font-weight:600;color:var(--blue);line-height:1.6}.editorial-practice>.icon{flex:0 0 24px}.editorial-practice>.icon:last-child{margin-left:auto}.editorial-practice:hover{background:#f0f6fa}
.editorial-related{max-width:1080px;padding-block:65px}.editorial-related>h2{font-size:27px;margin-bottom:25px}.editorial-related>div{display:grid;grid-template-columns:1fr 1fr;gap:26px}.editorial-related a{display:grid;grid-template-columns:125px 1fr;border:1px solid var(--line);border-radius:12px;overflow:hidden;min-width:0}.editorial-related img{height:100%;width:100%;object-fit:cover}.editorial-related a>span{padding:22px}.editorial-related h3{font-size:19px;line-height:1.4;margin:0 0 18px}.editorial-related .text-link{font-size:14px}.editorial-related a:hover{background:#f5f9fb}
@media(max-width:1000px){.editorial-layout{grid-template-columns:200px minmax(0,1fr);gap:32px}.editorial-related a{grid-template-columns:100px 1fr}}
@media(max-width:800px){.editorial-header{padding-block:34px 26px}.editorial-lead{font-size:18px}.editorial-layout{display:flex;flex-direction:column;gap:28px}.editorial-sidebar{position:static;width:100%;padding:18px 20px;border:1px solid var(--line);border-radius:10px}.editorial-sidebar nav>p{margin-bottom:8px}.editorial-sidebar a{padding:10px 0}.editorial-sidebar li:first-child{border-top:0}.editorial-body h2{font-size:25px}.editorial-related>div{grid-template-columns:1fr}.editorial-related a{grid-template-columns:130px 1fr}.editorial-related{padding-block:40px}}
@media(max-width:480px){.editorial-category{font-size:13px;margin-bottom:20px}.editorial-header h1{font-size:34px}.editorial-photo img{aspect-ratio:1.5}.editorial-takeaway{font-size:17px;padding:20px}.editorial-body section p{font-size:16px;line-height:1.85}.editorial-related a{grid-template-columns:95px 1fr}.editorial-related a>span{padding:18px}.editorial-related h3{font-size:18px}}

.editorial-survey{display:flex;gap:20px;margin-top:32px;padding:28px;background:linear-gradient(125deg,#eaf4f1,#f7faf9);border:1px solid #c4dcd7;border-radius:12px;align-items:flex-start}.editorial-survey-icon{display:grid;place-items:center;flex:0 0 44px;height:44px;border:1px solid #bcd8d1;background:#fff;border-radius:11px;color:#356e69}.editorial-survey h2{font-size:24px;margin:0 0 15px}.editorial-survey p{font-size:16px;line-height:1.8;color:#465e6b;margin:0 0 15px}.editorial-survey .editorial-survey-terms{font-size:14px}.editorial-survey .text-link{font-size:15px;color:#356e69}.editorial-survey>div{min-width:0}@media(max-width:520px){.editorial-survey{display:block;padding:24px}.editorial-survey-icon{width:44px;margin-bottom:18px}.editorial-survey h2{font-size:23px}}

.site-footer [data-tone="power"]{--footer-accent:#83c5f4}.site-footer [data-tone="ups"]{--footer-accent:#c9a2ee}.site-footer [data-tone="standby"]{--footer-accent:#ed98bd}.site-footer [data-tone="services"]{--footer-accent:#80d1bb}

/* A continuous history, with room for the years of work between dated milestones. */
.company-history{padding:0;margin:0;list-style:none;max-width:1100px}.company-history>li{display:grid;grid-template-columns:210px minmax(0,1fr);gap:42px}.history-period{display:flex;justify-content:space-between;position:relative;padding-top:27px;font-size:29px;font-weight:700;letter-spacing:-.035em;color:#2d678e;line-height:1.3}.history-period::after{content:'';position:absolute;right:8px;top:43px;bottom:-35px;width:2px;background:#c7dce5}.history-period i{width:18px;height:18px;background:#fff;border:4px solid #72a6c0;border-radius:50%;flex:0 0 18px;margin-top:8px;position:relative;z-index:1}.company-history>li:last-child .history-period::after{display:none}.history-content{padding:28px 0;border-bottom:1px solid #dae4e9;min-width:0}.history-content h3{font-size:23px;line-height:1.4;margin:0 0 12px}.history-content p{font-size:16px;line-height:1.85;margin:0;color:#4c6470;max-width:75ch}.history-content .text-link{font-size:14px;margin-top:14px}.history-continuity .history-content{background:linear-gradient(120deg,#edf6f3,#f8fbfa);border:1px solid #ccdfd8;border-radius:12px;padding:26px 28px;margin-block:14px}.history-continuity .history-period{padding-top:40px;color:#356e69}.history-continuity .history-period i{border-color:#79b5a3}.history-present .history-period i{border-color:#2d678e;background:#2d678e;box-shadow:0 0 0 5px #e3f0f8}.history-fields{display:flex;flex-wrap:wrap;gap:14px 22px;margin-top:20px}.history-fields>span{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:#356e69}.history-fields .icon{width:18px;height:18px}.history-present .history-content{border-bottom:0}
.history-content p+p{margin-top:14px}
@media(max-width:800px){.company-history>li{grid-template-columns:145px minmax(0,1fr);gap:26px}.history-period{font-size:25px}.history-content h3{font-size:21px}.history-continuity .history-content{padding:22px}.history-fields{gap:12px}}
@media(max-width:520px){.company-history>li{display:block;position:relative;padding-left:28px}.company-history>li:before{content:'';position:absolute;left:7px;top:32px;bottom:-32px;width:2px;background:#c7dce5}.company-history>li:last-child:before{display:none}.history-period{position:static;padding-top:22px;font-size:23px;justify-content:flex-start}.history-period::after{display:none}.history-period i{position:absolute;left:0;top:21px;margin-top:8px;width:16px;height:16px}.history-content{padding:12px 0 26px}.history-content h3{font-size:21px}.history-content p{font-size:16px;line-height:1.8}.history-continuity .history-period{padding-top:22px}.history-continuity .history-content{padding:20px;margin-block:14px 8px}.history-fields{flex-direction:column}.history-present .history-period i{box-shadow:0 0 0 3px #e3f0f8}}

.outage-direct-contacts{display:flex;flex-wrap:wrap;gap:12px 26px;margin-top:24px}.outage-direct-contacts>a{display:inline-flex;align-items:center;gap:12px;min-height:44px;color:var(--tone);font-size:18px;font-weight:700;line-height:1.5;text-decoration:none}.outage-direct-contacts>a:last-child{font-size:16px;font-weight:600;color:var(--ink)}.outage-direct-contacts>a>.icon{width:23px;height:23px;flex:0 0 23px}.outage-direct-contacts>a:hover{text-decoration:underline;text-underline-offset:5px}.outage-direct-contacts>a:focus-visible{outline:2px solid var(--tone);outline-offset:5px;border-radius:3px}@media(max-width:520px){.outage-direct-contacts{flex-direction:column;gap:4px}.outage-direct-contacts>a{font-size:19px}.outage-direct-contacts>a:last-child{font-size:15px}}

/* Regional landing pages use the shared opening, catalog and inspection system. */
.regional-page{--region-space:clamp(40px,4.5vw,64px);background:#fff}
.regional-page .section{padding-block:var(--region-space)}
.regional-page .section-heading{gap:28px;margin-bottom:28px;align-items:end}
.regional-page .section-heading h2{max-width:27ch}
.regional-page .section-heading>p{font-size:17px;line-height:1.7;max-width:42ch}
.regional-page .section-heading>.text-link{font-size:15px;flex-shrink:0}
.regional-product-grid{grid-template-columns:repeat(3,minmax(0,1fr));align-items:stretch;gap:24px}
.regional-product-grid .product-card{display:flex;flex-direction:column;min-width:0;height:100%}
.regional-product-grid .product-copy{display:flex;flex-direction:column;flex:1;min-width:0;padding:24px}
.regional-product-grid .product-copy h3{font-size:23px;line-height:1.3;min-height:2.6em}
.regional-product-grid .product-image{aspect-ratio:4/3;height:auto;min-height:0;width:100%}
.regional-product-grid .product-image img{width:100%;height:100%;object-fit:cover}
.regional-product-grid .product-image.contain img{object-fit:contain}
.regional-product-grid .product-copy>p{font-size:16px;line-height:1.7;margin-bottom:24px}
.regional-product-grid .product-actions{margin-top:auto}
.regional-project{border:1px solid #d8e2e8;border-radius:16px;padding:clamp(24px,3.4vw,44px);background:#f7f9fa}
.regional-project-heading{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);gap:clamp(28px,4vw,56px);align-items:start}
.regional-project-heading h2{font-size:clamp(28px,2.5vw,36px);line-height:1.25;max-width:25ch;margin-bottom:20px}
.regional-project-heading p:not(.eyebrow){font-size:17px;line-height:1.8;color:var(--muted);margin:0;max-width:60ch}
.regional-checks{list-style:none;margin:0;padding:0;display:grid;gap:20px}
.regional-checks li{display:flex;align-items:center;gap:16px;line-height:1.6;font-size:16px;min-width:0}
.regional-check-icon{display:grid;place-items:center;width:44px;height:44px;flex:0 0 44px;border:1px solid #d5e8e5;border-radius:11px;background:#eef7f5;color:#367a77}
.regional-check-icon .icon{width:23px;height:23px}
.regional-area-detail{border-top:1px solid var(--line);margin-top:28px}
.regional-area-detail>summary{list-style:none;display:flex;gap:12px;align-items:center;cursor:pointer;padding:20px 0;font-size:15px;line-height:1.5}
.regional-area-detail>summary::-webkit-details-marker{display:none}
.regional-area-detail>summary>span:not(.icon){flex:1}
.regional-area-detail>summary>.icon{width:20px;height:20px;flex:0 0 20px;color:var(--blue)}
.regional-area-detail>summary>.icon:last-child{transform:rotate(90deg);transition:transform .3s ease}
.regional-area-detail[open]>summary>.icon:last-child{transform:rotate(270deg)}
.regional-area-detail p{font-size:16px;line-height:1.8;color:var(--muted);margin:0 0 22px}
.regional-quote{display:flex;align-items:center;gap:22px;border-top:1px solid var(--line);padding-top:26px}
.regional-quote-icon{color:var(--blue)}.regional-quote-icon>.icon{width:30px;height:30px}
.regional-quote>div{flex:1;min-width:0}.regional-quote h3{font-size:22px;margin:0 0 8px}.regional-quote p{font-size:16px;line-height:1.7;margin:0;color:var(--muted);max-width:75ch}
.regional-quote>.text-link{flex-shrink:0;font-size:15px}
.regional-survey{padding-block:var(--region-space)}.regional-survey .site-survey-note{margin:0}
.regional-evidence{padding-bottom:var(--region-space)}
.regional-evidence-card{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(28px,4vw,56px);padding:28px;border:1px solid #d8e2e8;border-radius:16px;align-items:center;background:#f7f9fa}
.regional-evidence-image{height:280px;min-width:0;overflow:hidden;border-radius:10px}.regional-evidence-image img{width:100%;height:100%;object-fit:cover}
.regional-evidence-logo{background:#fff;padding:32px;display:flex;align-items:center;justify-content:center}.regional-evidence-logo img{object-fit:contain;min-width:0;min-height:0;max-height:100%;max-width:100%}.regional-evidence-logo.logo-monochrome img{filter:brightness(0)}
.regional-evidence-card h2{font-size:32px;margin:0 0 15px}.regional-evidence-card p:not(.eyebrow){font-size:16px;line-height:1.75;color:var(--muted)}
.regional-evidence-card .text-link{font-size:15px}.regional-evidence-card .regional-gallery-link{display:flex;margin-top:15px}
.regional-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.regional-service-grid article{min-width:0;padding:28px;border:1px solid #d8e2e8;border-radius:14px;background:#fff}
.regional-service-grid h3{font-size:23px;line-height:1.35;margin:20px 0 12px}.regional-service-grid p{font-size:16px;line-height:1.75;color:var(--muted);margin:0}
.regional-service-links{display:flex;flex-wrap:wrap;gap:20px 32px;border-top:1px solid var(--line);padding-top:26px;margin-top:28px;font-size:16px}
@media(max-width:1000px){.regional-product-grid{gap:16px}.regional-product-grid .product-copy{padding:20px}.regional-product-grid .product-copy h3{font-size:21px}.regional-page .section-heading{align-items:start;flex-direction:column}.regional-evidence-image{height:250px}.regional-quote{flex-wrap:wrap}.regional-quote>.text-link{margin-left:52px}.regional-service-grid{gap:16px}.regional-service-grid article{padding:22px}.regional-service-grid h3{font-size:21px}}
@media(max-width:800px){.regional-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.regional-product-grid .product-card:last-child{grid-column:1/-1;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr)}.regional-product-grid .product-card:last-child .product-image{height:100%;aspect-ratio:auto}.regional-product-grid .product-copy h3{min-height:0}.regional-project-heading{grid-template-columns:1fr;gap:28px}.regional-evidence-card{gap:24px;padding:24px}.regional-service-grid{grid-template-columns:1fr}.regional-service-grid article{display:grid;grid-template-columns:44px 1fr;gap:0 18px}.regional-service-grid h3{margin:0 0 9px}.regional-service-grid p{grid-column:2}.regional-service-grid .regional-check-icon{grid-row:1/3}}
@media(max-width:560px){.regional-product-grid{grid-template-columns:1fr;gap:20px}.regional-product-grid .product-card:last-child{grid-column:auto;display:flex}.regional-product-grid .product-card:last-child .product-image{height:auto;aspect-ratio:4/3}.regional-product-grid .product-copy{padding:24px}.regional-product-grid .product-copy h3{font-size:24px}.regional-project{padding:24px}.regional-project-heading p:not(.eyebrow){font-size:16px}.regional-checks li{font-size:15px;gap:12px}.regional-quote{gap:14px;align-items:start}.regional-quote>div{flex-basis:calc(100% - 44px)}.regional-quote h3{font-size:21px}.regional-quote>.text-link{margin-left:44px}.regional-evidence-card{grid-template-columns:1fr;padding:20px}.regional-evidence-image{height:225px}.regional-evidence-card h2{font-size:28px}.regional-service-grid article{padding:22px 20px}.regional-service-grid h3{font-size:20px}.regional-service-grid p{font-size:16px}}
@media(prefers-reduced-motion:reduce){.regional-area-detail>summary>.icon:last-child{transition:none}}

/* Secondary locality navigation stays discoverable in the footer. */
.footer-regions{margin-top:1px;min-width:0}
.footer-regions summary{display:flex;align-items:center;gap:10px;padding:8px 0;list-style:none;cursor:pointer;color:#f5f7fa;font-size:15px;line-height:1.5;font-weight:400}
.footer-regions summary::-webkit-details-marker{display:none}
.footer-regions summary>.icon{width:19px;height:19px;color:#83c5f4;flex:0 0 19px}
.footer-regions summary>.icon:last-child{width:15px;height:15px;flex-basis:15px;margin-left:4px;transform:rotate(90deg);transition:transform .25s ease}
.footer-regions details[open]>summary>.icon:last-child{transform:rotate(270deg)}
.footer-regions nav{display:grid;gap:0;border-left:1px solid #64727c;margin:12px 0 6px 9px;padding-left:20px}
.footer-regions nav>a{font-size:14px;color:#e6ebef;line-height:1.5;padding:8px 0;text-decoration:underline;text-decoration-color:transparent;text-underline-offset:4px}
.footer-regions nav>a:hover{text-decoration-color:currentColor;color:#fff}
.footer-regions summary:hover .footer-link-label,.footer-regions summary:focus-visible .footer-link-label{background-size:100% 1px}
.footer-regions :is(summary,a):focus-visible{outline:2px solid #fff;outline-offset:4px;border-radius:2px}
/* Prepared consent UI: compact, non-blocking, equal acceptance and rejection. */
.consent-banner{width:min(460px,calc(100% - 32px));left:16px;bottom:16px;padding:20px;border-radius:12px;background:#fff;font-size:13px;box-shadow:0 8px 30px #17313f20}
.consent-banner strong{font-size:16px}.consent-banner p{font-size:14px;line-height:1.6;margin:8px 0}.consent-banner>a,.consent-banner a{font-size:13px}
.consent-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:15px}
.consent-actions>[data-consent-choice]{background:#edf4f8;border:1px solid #b9cedb;color:#20455d;font-size:14px;font-weight:650;min-height:44px;padding:10px 12px;grid-row:1}
.consent-actions>[data-open-consent]{grid-column:1/-1;grid-row:2;justify-self:center;background:none;border:0;min-height:36px;font-size:13px;padding:5px 14px;flex:none;text-decoration:underline;text-underline-offset:3px}
.consent-actions button:focus-visible{outline:3px solid #29668d;outline-offset:3px}
.consent-dialog>p a{color:var(--blue);text-decoration:underline}.consent-dialog [hidden]{display:none!important}
@media(max-width:800px){.consent-banner{bottom:calc(80px + env(safe-area-inset-bottom));padding:16px}.footer-regions summary{font-size:14px}.footer-regions summary>.icon{width:17px;height:17px;flex-basis:17px}}
@media(prefers-reduced-motion:reduce){.footer-regions summary>.icon:last-child{transition:none}}

/* Contact page: direct telephone and email for the first release. */

  .contact-direct{padding-block:48px 80px;scroll-margin-top:110px}
  .contact-direct .page-intro:not(.services-opening):not(.regional-intro){padding:0;margin-bottom:40px;max-width:780px}
  .contact-direct h1{font-size:clamp(34px,3.4vw,54px);line-height:1.15;margin-bottom:22px}
  .contact-direct .page-intro>p:last-child{max-width:65ch}
  .contact-direct-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:clamp(32px,6vw,88px);align-items:start}
  .contact-direct-channels{min-width:0}
  .contact-direct .contact-channel-label{margin:0 0 12px;font-weight:700;color:var(--ink);font-size:16px}
  .contact-direct .contact-option{display:flex;align-items:center;border:1px solid var(--line);border-radius:12px;padding:22px 24px;gap:18px;margin:0;background:#fff;transition:background .2s,border-color .2s}
  .contact-direct .contact-phone-pair{display:grid;gap:12px}
  .contact-direct .contact-phone-pair .contact-option{background:#f0f6fb;border-color:#bfd4e4}
  .contact-direct .contact-option strong{min-width:0;flex:1;font-size:clamp(22px,2vw,30px);line-height:1.4;letter-spacing:-.025em;color:var(--ink);white-space:nowrap}
  .contact-direct .contact-option>.icon{flex-shrink:0;width:24px;height:24px;color:var(--blue)}
  .contact-direct .contact-email-label{margin-top:28px}
  .contact-direct .copy-email{margin-top:12px}
  .contact-direct .contact-option:hover{border-color:var(--blue);background:#e5eff7}
  .contact-direct .contact-company{margin:0;padding:32px;border-top:3px solid var(--blue);background:#f5f8fa}
  .contact-direct .contact-company h2{font-size:26px}
  .contact-direct .contact-facts{font-size:15px;margin-top:24px}
  @media(max-width:800px){.contact-direct{padding-block:32px 56px}.contact-direct-grid{grid-template-columns:1fr;gap:32px}.contact-direct .page-intro{margin-bottom:26px}.contact-direct .contact-option{padding:18px;gap:14px}.contact-direct .contact-company{padding:24px}.contact-direct .contact-option strong{font-size:clamp(20px,5.5vw,28px)}}
  @media(max-width:420px){.contact-direct .contact-option{padding:18px 14px;gap:12px}.contact-direct .contact-option>.icon:last-child{display:none}.contact-direct .contact-email strong{font-size:clamp(18px,5.2vw,22px)}}
