
:root{
  --navy:#03162a;
  --navy2:#071f38;
  --gold:#b58d48;
  --gold2:#d6bd82;
  --ivory:#fbfaf7;
  --paper:#f7f6f2;
  --text:#172433;
  --muted:#5f6a75;
  --line:rgba(4,27,51,.13);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--text);
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* HEADER */
.header{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:20;
}
.header__inner{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:34px 48px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
}
.logo img{
  width:620px;
  height:auto;
  margin-left:-22px;
}
.nav{
  display:flex;
  align-items:center;
  gap:15px;
  padding-top:22px;
  white-space:nowrap;
  color:#fff;
  font-size:8.8px;
  letter-spacing:.065em;
  text-transform:uppercase;
  font-weight:600;
}
.nav a{
  opacity:.86;
  position:relative;
  padding-bottom:8px;
  transition:.2s;
}
.nav a:hover,
.nav a.active{
  opacity:1;
  color:var(--gold2);
}
.nav a.active:after,
.nav a:hover:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:var(--gold);
}

/* HERO */
.hero{
  min-height:640px;
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 45% 10%, rgba(39,87,124,.25), transparent 34%),
    linear-gradient(90deg,#020d19 0%,#03172a 45%,#061f38 100%);
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(0deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:86px 86px;
  opacity:.35;
}
.hero__inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:150px 48px 72px;
  display:grid;
  grid-template-columns: 43% 57%;
  gap:34px;
  align-items:center;
}
.hero__copy h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:58px;
  line-height:1;
  letter-spacing:-.045em;
  font-weight:400;
}
.hero__copy h1 span{
  display:block;
  color:var(--gold2);
}
.rule{
  width:68px;
  height:2px;
  background:var(--gold);
  margin:30px 0 25px;
}
.hero__copy p{
  margin:0;
  max-width:520px;
  font-size:16px;
  line-height:1.72;
  color:rgba(255,255,255,.84);
  font-weight:300;
}
.button{
  display:inline-flex;
  align-items:center;
  gap:14px;
  margin-top:28px;
  padding:14px 22px;
  border:1px solid var(--gold);
  color:var(--gold2);
  font-size:11px;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight:800;
  transition:.2s;
}
.button:hover{
  background:rgba(181,141,72,.12);
}
.hero__visual{
  display:grid;
  grid-template-columns:1fr 190px;
  gap:28px;
  align-items:center;
}
.architecture{
  min-height:470px;
  background:url("hero-bg.svg") center bottom/contain no-repeat;
}
.stats{
  border-left:1px solid rgba(181,141,72,.55);
  padding-left:20px;
}
.stat{
  padding-bottom:22px;
  margin-bottom:22px;
  border-bottom:1px solid rgba(181,141,72,.5);
}
.stat:last-child{
  border-bottom:0;
  margin-bottom:0;
}
.stat strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:29px;
  line-height:1;
  color:var(--gold2);
  font-weight:400;
  margin-bottom:10px;
}
.stat span{
  display:block;
  color:rgba(255,255,255,.82);
  font-size:11px;
  line-height:1.5;
  letter-spacing:.06em;
  text-transform:uppercase;
}

/* MAIN WRAP */
.wrap{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 48px;
  background:var(--ivory);
}

/* SERVICES */
.services{
  background:var(--ivory);
}
.services__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-bottom:1px solid var(--line);
}
.service{
  min-height:220px;
  padding:36px 28px 30px;
  border-right:1px solid var(--line);
  transition:.2s;
}
.service:last-child{border-right:0}
.service:hover{background:rgba(255,255,255,.55)}
.icon{
  width:36px;
  height:36px;
  margin-bottom:20px;
}
.icon svg{
  width:36px;
  height:36px;
  stroke:var(--gold);
  stroke-width:1.45;
  fill:none;
}
.service h3{
  margin:0 0 12px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:.015em;
  line-height:1.15;
  color:#172433;
  font-weight:400;
}
.service p{
  margin:0;
  font-size:14px;
  line-height:1.68;
  color:#4f5b66;
  font-weight:300;
}
.arrow{
  display:inline-block;
  margin-top:18px;
  color:var(--gold);
  transition:.2s;
}
.service:hover .arrow,
.insight:hover .arrow,
.expert:hover .arrow{
  transform:translateX(4px);
}

/* ABOUT */
.about{
  display:grid;
  grid-template-columns:46% 54%;
  border-bottom:1px solid var(--line);
}
.about__copy{
  padding:44px 28px 40px;
}
.eyebrow{
  margin-bottom:18px;
  color:var(--gold);
  font-size:10px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.about h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:30px;
  line-height:1.14;
  letter-spacing:-.03em;
  font-weight:400;
}
.about p{
  margin:0;
  max-width:520px;
  font-size:14px;
  line-height:1.78;
  color:#4f5b66;
  font-weight:300;
}
.small-rule{
  width:58px;
  height:1px;
  background:var(--gold);
  margin:24px 0 20px;
}
.text-link{
  display:inline-flex;
  gap:10px;
  align-items:center;
  margin-top:22px;
  color:var(--gold);
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:900;
  transition:.2s;
}
.text-link:hover{transform:translateX(4px)}
.about__image{
  min-height:315px;
  background:url("about-bg.svg") center/cover no-repeat;
}

/* LOWER */
.lower{
  display:grid;
  grid-template-columns:48% 52%;
  background:var(--ivory);
}
.panel{
  padding:28px 28px 34px;
  border-right:1px solid var(--line);
}
.panel:last-child{border-right:0}
.panel__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}
.panel__title{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#172433;
  font-weight:900;
}
.panel__link{
  color:var(--gold);
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:900;
}
.insights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.insight img{
  width:100%;
  height:92px;
  object-fit:cover;
  margin-bottom:10px;
}
.date{
  font-size:9px;
  color:#707a84;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:6px;
}
.insight h4{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:13.5px;
  line-height:1.34;
  font-weight:400;
}
.expertise{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.expert{
  min-height:180px;
  padding:22px 18px 18px;
  border:1px solid var(--line);
  text-align:center;
  background:rgba(255,255,255,.25);
  transition:.2s;
}
.expert:hover{background:rgba(255,255,255,.65)}
.expert svg{
  width:38px;
  height:38px;
  margin:0 auto 18px;
  stroke:var(--gold);
  stroke-width:1.45;
  fill:none;
}
.expert h4{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.expert p{
  margin:0;
  font-size:12.5px;
  line-height:1.62;
  color:#4f5b66;
  font-weight:300;
}
.expert .arrow,
.insight .arrow{
  text-align:left;
  margin-top:12px;
  color:var(--gold);
}

/* FOOTER */
.footer{
  background:linear-gradient(90deg,#020d19 0%,#03192f 55%,#06233d 100%);
  color:#fff;
}
.footer__inner{
  max-width:1280px;
  margin:0 auto;
  padding:34px 48px 24px;
  display:grid;
  grid-template-columns:1.35fr .95fr .95fr .75fr;
  gap:30px;
  align-items:start;
}
.footer__logo img{
  width:380px;
}
.footer-title{
  margin-bottom:10px;
  font-size:10px;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight:900;
}
.footer p,
.footer a{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.7;
}
.footer a:hover{color:var(--gold2)}
.linkedin{
  color:var(--gold2);
  font-size:21px;
  font-weight:700;
}
.copy{
  max-width:1280px;
  margin:0 auto;
  padding:0 48px 22px;
  font-size:11px;
  color:rgba(255,255,255,.5);
}

/* SUBPAGES */
.page-hero{
  padding-top:118px;
  background:linear-gradient(90deg,#020d19,#06223e);
  color:#fff;
}
.page-hero .wrap{
  background:transparent;
  padding-top:76px;
  padding-bottom:70px;
}
.page-hero h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:56px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:400;
}
.page-hero p{
  max-width:860px;
  margin:24px 0 0;
  font-size:17px;
  line-height:1.75;
  color:rgba(255,255,255,.82);
  font-weight:300;
}
.content{
  max-width:980px;
  margin:0 auto;
  padding:68px 48px;
}
.content h2{
  margin:0 0 20px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:36px;
  line-height:1.12;
  font-weight:400;
}
.content h3{
  margin:32px 0 8px;
  font-size:21px;
}
.content p,
.content li{
  font-size:16px;
  line-height:1.85;
  color:#596571;
  font-weight:300;
}
.cards-simple{
  max-width:1280px;
  margin:0 auto 70px;
  padding:0 48px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.simple{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  border-right:1px solid var(--line);
  padding:32px 24px;
}
.simple:last-child{border-right:0}
.simple h3{
  margin:0 0 12px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  line-height:1.15;
  font-weight:400;
}
.simple p{
  margin:0;
  font-size:14.5px;
  line-height:1.7;
  color:#596571;
  font-weight:300;
}

@media(max-width:1100px){
  .nav{display:none}
  .header__inner,.hero__inner,.wrap,.footer__inner,.copy,.content,.cards-simple{padding-left:28px;padding-right:28px}
  .logo img{width:460px;margin-left:-14px}
  .hero__inner{grid-template-columns:1fr}
  .hero__visual{grid-template-columns:1fr 190px}
  .services__grid,.about,.lower,.footer__inner,.cards-simple{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  .hero{min-height:auto}
  .hero__inner{padding-top:132px}
  .hero__copy h1{font-size:44px}
  .hero__visual,.services__grid,.about,.lower,.insights,.expertise,.footer__inner,.cards-simple{grid-template-columns:1fr}
  .architecture{min-height:300px}
  .stats{border-left:0;padding-left:0}
  .service,.panel,.simple{border-right:0}
  .footer__logo img{width:320px}
}


/* Finalisierte Unterseiten-Texte */
.content-wide{
  max-width:1180px;
  margin:0 auto;
  padding:72px 48px 84px;
}
.text-section{
  max-width:920px;
  margin-bottom:56px;
}
.text-section h2{
  margin:0 0 22px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:39px;
  line-height:1.12;
  font-weight:400;
  letter-spacing:-.025em;
  color:var(--text);
}
.text-section h3{
  margin:34px 0 12px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:27px;
  line-height:1.18;
  font-weight:400;
  letter-spacing:-.015em;
}
.text-section p{
  margin:0 0 20px;
  font-size:17px;
  line-height:1.88;
  color:#596571;
  font-weight:300;
}
.statement{
  margin:50px 0 56px;
  max-width:980px;
  padding:42px 46px;
  background:linear-gradient(135deg,#03162a,#082541);
  color:#fff;
  border-left:3px solid var(--gold);
}
.statement h2,
.statement h3{
  margin:0 0 14px;
  color:#fff;
  font-family:Georgia,"Times New Roman",serif;
  font-size:35px;
  line-height:1.12;
  font-weight:400;
}
.statement p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:17px;
  line-height:1.75;
  font-weight:300;
}
.topic-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
  margin:42px 0 60px;
}
.topic{
  padding:34px 32px 32px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.42);
}
.topic h3{
  margin:0 0 14px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:27px;
  line-height:1.15;
  font-weight:400;
  color:var(--text);
}
.topic p{
  margin:0 0 17px;
  color:#596571;
  font-size:15.5px;
  line-height:1.75;
  font-weight:300;
}
.topic ul{
  margin:0;
  padding:0;
  list-style:none;
}
.topic li{
  position:relative;
  padding-left:17px;
  margin:8px 0;
  font-size:14.5px;
  line-height:1.6;
  color:#596571;
  font-weight:300;
}
.topic li:before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--gold);
}
.page-cta{
  margin:22px 0 0;
  padding:44px 46px;
  background:var(--ivory);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.page-cta h2{
  margin:0 0 16px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;
  line-height:1.13;
  font-weight:400;
}
.page-cta p{
  margin:0 0 18px;
  font-size:16.5px;
  line-height:1.75;
  color:#596571;
  font-weight:300;
}
.article-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin:42px 0 58px;
}
.article-teaser{
  padding:30px 28px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.45);
}
.article-teaser .kicker{
  margin-bottom:14px;
  color:var(--gold);
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:800;
}
.article-teaser h3{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  line-height:1.2;
  font-weight:400;
}
.contact-card{
  max-width:920px;
  padding:38px 40px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.5);
}
.contact-form-visual{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:26px;
}
.fake-field{
  border:1px solid var(--line);
  padding:14px 16px;
  color:#7a858f;
  font-size:14px;
  background:#fff;
}
.fake-field.full{
  grid-column:1/-1;
  min-height:112px;
}
@media(max-width:760px){
  .content-wide{padding-left:24px;padding-right:24px}
  .topic-grid,.article-list,.contact-form-visual{grid-template-columns:1fr}
  .fake-field.full{grid-column:auto}
  .statement,.page-cta{padding:32px 26px}
}


/* Insight-Artikel */
.article-page{
  max-width:980px;
  margin:0 auto;
  padding:72px 48px 92px;
}
.article-meta{
  color:var(--gold);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:24px;
}
.article-page h2{
  margin:48px 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;
  line-height:1.15;
  font-weight:400;
  letter-spacing:-.018em;
}
.article-page p{
  margin:0 0 20px;
  font-size:17px;
  line-height:1.88;
  color:#596571;
  font-weight:300;
}
.article-page ul{
  margin:0 0 26px;
  padding:0;
  list-style:none;
}
.article-page li{
  position:relative;
  padding-left:20px;
  margin:10px 0;
  font-size:16px;
  line-height:1.75;
  color:#596571;
  font-weight:300;
}
.article-page li:before{
  content:"";
  position:absolute;
  left:0;
  top:.78em;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--gold);
}
.article-intro{
  font-size:19px!important;
  line-height:1.78!important;
  color:#334252!important;
}
.article-back{
  display:inline-flex;
  gap:10px;
  align-items:center;
  margin-top:34px;
  color:var(--gold);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:900;
}
.article-back:hover{
  transform:translateX(-3px);
}
@media(max-width:760px){
  .article-page{padding-left:24px;padding-right:24px}
}


/* Language switch */
.lang-switch{
  display:flex;
  align-items:center;
  gap:7px;
  padding-top:17px;
  margin-left:4px;
  color:rgba(255,255,255,.75);
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
}
.lang-switch a{
  color:rgba(255,255,255,.75);
}
.lang-switch a.active,
.lang-switch a:hover{
  color:var(--gold2);
}
.en-page .architecture{background-image:url("../assets/hero-bg.svg")}
.en-page .about__image{background-image:url("../assets/about-bg.svg")}
@media(max-width:1100px){
  .lang-switch{display:none}
}


/* Mobile refinement: logo/headline spacing + language switch */
@media(max-width:1100px){
  .header__inner{
    align-items:flex-start;
    flex-wrap:wrap;
    row-gap:8px;
  }
  .lang-switch{
    display:flex;
    width:100%;
    padding-top:0;
    margin-left:0;
    justify-content:flex-start;
    font-size:11px;
    letter-spacing:.14em;
  }
}

@media(max-width:760px){
  .header{
    position:absolute;
  }
  .header__inner{
    padding-top:28px;
  }
  .lang-switch{
    padding-left:0;
    margin-top:2px;
  }
  .hero__inner{
    padding-top:190px;
  }
  .page-hero .wrap{
    padding-top:112px;
  }
}

@media(max-width:480px){
  .hero__inner{
    padding-top:205px;
  }
}


/* Functional contact form */
.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:26px;
}
.contact-form label{
  display:block;
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--gold);
  margin-bottom:8px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  padding:15px 16px;
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size:15px;
  color:var(--text);
  outline:none;
  border-radius:0;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--gold);
}
.contact-form .form-full{
  grid-column:1/-1;
}
.contact-form textarea{
  min-height:145px;
  resize:vertical;
}
.contact-form button{
  border:1px solid var(--gold);
  background:transparent;
  color:var(--gold);
  padding:14px 22px;
  font-size:11px;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight:900;
  cursor:pointer;
  justify-self:start;
}
.contact-form button:hover{
  background:rgba(181,141,72,.10);
}
.form-note{
  margin-top:18px!important;
  font-size:13.5px!important;
  line-height:1.65!important;
  color:#6b747d!important;
}
@media(max-width:760px){
  .contact-form{
    grid-template-columns:1fr;
  }
  .contact-form .form-full{
    grid-column:auto;
  }
}


/* Contact form status pages */
.form-status{
  max-width:760px;
  margin:0 auto;
  padding:80px 48px 100px;
}
.form-status h2{
  margin:0 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:38px;
  line-height:1.13;
  font-weight:400;
}
.form-status p{
  margin:0 0 20px;
  font-size:17px;
  line-height:1.78;
  color:#596571;
  font-weight:300;
}


/* Reference basis section */
.reference-basis{
  margin-top:76px;
  padding:58px 54px 54px;
  border-top:1px solid var(--gold);
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,rgba(245,242,235,.72),rgba(255,255,255,.92));
}
.reference-basis h2{
  margin:0 0 24px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:42px;
  line-height:1.14;
  font-weight:400;
  color:var(--navy);
}
.reference-basis p{
  max-width:980px;
  margin:0 0 20px;
  font-size:16.5px;
  line-height:1.82;
  color:#4b5662;
  font-weight:300;
}
.reference-basis .reference-quote{
  margin-top:30px;
  padding-top:24px;
  border-top:1px solid rgba(181,141,72,.34);
  font-family:Georgia,"Times New Roman",serif;
  font-size:26px;
  line-height:1.35;
  color:var(--navy);
}
@media(max-width:760px){
  .reference-basis{
    margin-top:54px;
    padding:42px 28px 40px;
  }
  .reference-basis h2{
    font-size:32px;
  }
  .reference-basis p{
    font-size:15.5px;
  }
  .reference-basis .reference-quote{
    font-size:22px;
  }
}






/* Homepage reference / track-record section – refined editorial */
.home-reference{
  margin:42px 0 76px;
  padding:0;
  background:transparent;
  color:var(--text);
  position:relative;
}

.home-reference__frame{
  display:grid;
  grid-template-columns:minmax(280px, .82fr) 1.18fr;
  gap:58px;
  padding:54px 0 48px;
  border-top:1px solid rgba(181,141,72,.48);
  border-bottom:1px solid var(--line);
}

.home-reference__copy{
  position:relative;
}

.home-reference__copy:before{
  content:"";
  position:absolute;
  left:0;
  top:-55px;
  width:132px;
  height:2px;
  background:var(--gold);
}

.home-reference .eyebrow{
  color:var(--gold);
}

.home-reference h2{
  margin:0 0 20px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:42px;
  line-height:1.13;
  font-weight:400;
  color:var(--navy);
}

.home-reference__copy p{
  margin:0 0 24px;
  font-size:16.3px;
  line-height:1.82;
  color:#4b5662;
  font-weight:300;
}

.home-reference__link{
  display:inline-flex;
  align-items:center;
  color:var(--gold);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:900;
}

.home-reference__link span{
  margin-left:8px;
}

.home-reference__list{
  display:grid;
  grid-template-columns:1fr;
  border-top:1px solid var(--line);
}

.home-reference__row{
  display:grid;
  grid-template-columns:230px 1fr;
  gap:28px;
  padding:23px 0 22px;
  border-bottom:1px solid var(--line);
}

.home-reference__row strong{
  overflow-wrap:anywhere;
  display:block;
  color:var(--navy);
  font-size:12px;
  line-height:1.45;
  letter-spacing:.095em;
  text-transform:uppercase;
  font-weight:900;
}

.home-reference__row p{
  margin:0;
  color:#5f6d79;
  font-size:15px;
  line-height:1.72;
  font-weight:300;
}

.home-reference__row em{
  font-style:normal;
  color:var(--navy);
  font-weight:500;
}

@media(max-width:980px){
  .home-reference__frame{
    grid-template-columns:1fr;
    gap:34px;
  }
  .home-reference__row{
    grid-template-columns:1fr;
    gap:10px;
  }
}

@media(max-width:760px){
  .home-reference{
    margin:28px 0 58px;
  }
  .home-reference__frame{
    padding:42px 0 38px;
  }
  .home-reference__copy:before{
    top:-43px;
  }
  .home-reference h2{
    font-size:32px;
  }
  .home-reference__copy p,
  .home-reference__row p{
    font-size:15.3px;
  }
}




/* Mobile headline readability fix */
@media (max-width: 760px){
  html, body{
    overflow-x:hidden;
  }

  .hero__copy h1,
  .page-hero h1,
  .article-page h1,
  .home-reference h2,
  .text-section h2,
  .panel__title,
  .insight h4,
  .article-teaser h3,
  .service h3,
  .topic h3,
  .expert h4{
    overflow-wrap:anywhere;
    word-break:normal;
    hyphens:auto;
  }

  .hero__copy h1{
    font-size:clamp(42px, 13vw, 58px);
    line-height:1.04;
    letter-spacing:-0.045em;
  }

  .hero__copy h1 span{
    display:block;
  }

  .page-hero h1{
    font-size:clamp(34px, 9.6vw, 46px);
    line-height:1.08;
    letter-spacing:-0.035em;
    max-width:100%;
  }

  .article-page{
    max-width:100%;
  }

  .article-page h2{
    font-size:clamp(25px, 7.2vw, 34px);
    line-height:1.16;
    overflow-wrap:anywhere;
    hyphens:auto;
  }

  .article-intro{
    font-size:18px;
    line-height:1.58;
  }

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

  .insight h4{
    font-size:20px;
    line-height:1.22;
    letter-spacing:-0.015em;
  }

  .article-list{
    grid-template-columns:1fr;
  }

  .article-teaser h3{
    font-size:22px;
    line-height:1.22;
    letter-spacing:-0.015em;
  }

  .home-reference__row{
    grid-template-columns:1fr;
    gap:8px;
  }

  .home-reference__row strong{
    overflow-wrap:normal;
    word-break:normal;
    letter-spacing:.08em;
  }
}

@media (max-width: 420px){
  .hero__copy h1{
    font-size:clamp(38px, 12.2vw, 50px);
    letter-spacing:-0.05em;
  }

  .page-hero h1{
    font-size:clamp(30px, 8.8vw, 38px);
    line-height:1.1;
  }

  .article-page h2{
    font-size:clamp(23px, 7vw, 30px);
  }

  .insight h4,
  .article-teaser h3{
    font-size:20px;
    line-height:1.24;
  }

  .wrap,
  .hero__inner,
  .header__inner,
  .footer__inner{
    width:min(100% - 34px, var(--max));
  }
}


/* Reference accordion cards */
.reference-basis .reference-cards{
  margin:34px 0 36px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.reference-card{
  border:1px solid rgba(18,35,52,.14);
  background:rgba(255,255,255,.78);
  box-shadow:0 18px 44px rgba(14,28,43,.06);
  transition:border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.reference-card[open]{
  border-color:rgba(181,141,72,.48);
  box-shadow:0 24px 58px rgba(14,28,43,.09);
}

.reference-card summary{
  list-style:none;
  cursor:pointer;
  display:grid;
  grid-template-columns:220px 1fr 28px;
  gap:26px;
  align-items:start;
  padding:24px 28px;
  position:relative;
}

.reference-card summary::-webkit-details-marker{
  display:none;
}

.reference-card summary:after{
  content:"+";
  grid-column:3;
  grid-row:1 / span 3;
  color:var(--gold);
  font-size:26px;
  line-height:1;
  font-weight:300;
  justify-self:end;
  margin-top:2px;
}

.reference-card[open] summary:after{
  content:"–";
}

.reference-card summary span{
  color:var(--gold);
  font-size:11px;
  line-height:1.35;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
}

.reference-card summary strong{
  display:block;
  color:var(--navy);
  font-family:Georgia,"Times New Roman",serif;
  font-size:25px;
  line-height:1.18;
  font-weight:400;
  letter-spacing:-.018em;
}

.reference-card summary em{
  grid-column:2;
  display:block;
  margin-top:7px;
  color:#5b6670;
  font-style:normal;
  font-size:15.5px;
  line-height:1.55;
  font-weight:300;
}

.reference-card__body{
  padding:0 28px 28px 274px;
  margin-top:-4px;
}

.reference-card__body p{
  margin:0 0 16px;
  max-width:880px;
}

.reference-card__body p:last-child{
  margin-bottom:0;
}

@media (max-width: 860px){
  .reference-card summary{
    grid-template-columns:1fr 28px;
    gap:10px 18px;
    padding:22px 22px;
  }

  .reference-card summary span,
  .reference-card summary strong,
  .reference-card summary em{
    grid-column:1;
  }

  .reference-card summary:after{
    grid-column:2;
    grid-row:1 / span 3;
  }

  .reference-card summary strong{
    font-size:22px;
    overflow-wrap:anywhere;
  }

  .reference-card__body{
    padding:0 22px 24px;
  }
}

@media (max-width: 520px){
  .reference-basis{
    padding:40px 22px 40px;
  }

  .reference-card summary{
    padding:20px 18px;
  }

  .reference-card summary strong{
    font-size:20px;
    line-height:1.22;
  }

  .reference-card summary em{
    font-size:14.5px;
  }

  .reference-card__body{
    padding:0 18px 22px;
  }
}


/* Prominent reference base blocks */
.home-reference--strong .home-reference__frame{
  align-items:stretch;
}

.home-proof-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.home-proof{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:20px 20px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(18,35,52,.12);
  text-decoration:none;
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-proof:hover{
  transform:translateY(-2px);
  border-color:rgba(181,141,72,.55);
  box-shadow:0 18px 42px rgba(14,28,43,.08);
}

.home-proof span{
  color:var(--gold);
  font-size:12px;
  letter-spacing:.12em;
  font-weight:800;
}

.home-proof strong{
  color:var(--navy);
  font-family:Georgia,"Times New Roman",serif;
  font-size:20px;
  line-height:1.2;
  font-weight:400;
}

.reference-cta{
  margin-top:62px;
  padding:46px 48px;
  background:linear-gradient(135deg,rgba(245,242,235,.86),rgba(255,255,255,.96));
  border-top:1px solid var(--gold);
  border-bottom:1px solid rgba(18,35,52,.12);
}

.reference-cta h2{
  margin:0 0 16px;
  font-family:Georgia,"Times New Roman",serif;
  color:var(--navy);
  font-size:40px;
  line-height:1.14;
  font-weight:400;
}

.reference-cta p{
  max-width:940px;
  color:#4b5662;
  line-height:1.75;
  font-size:16.5px;
}

@media (max-width:860px){
  .home-proof-grid{
    grid-template-columns:1fr;
  }

  .reference-cta{
    padding:36px 28px;
  }

  .reference-cta h2{
    font-size:32px;
  }
}

@media (max-width:520px){
  .home-proof{
    padding:18px 16px;
  }

  .home-proof strong{
    font-size:18px;
  }

  .reference-cta{
    padding:32px 22px;
  }

  .reference-cta h2{
    font-size:28px;
  }
}


/* Reference page corrections */
.reference-closing{
  margin:46px 0 30px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.reference-closing > div{
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(245,242,235,.86));
  border:1px solid rgba(181,141,72,.34);
  padding:30px 32px;
  box-shadow:0 22px 54px rgba(14,28,43,.07);
}

.reference-closing span{
  display:block;
  margin-bottom:14px;
  color:var(--gold);
  font-size:11px;
  line-height:1.35;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:800;
}

.reference-closing p{
  max-width:none;
  margin:0;
  color:#3f4b56;
  font-size:17px;
  line-height:1.82;
}

@media (max-width:860px){
  .reference-closing{
    grid-template-columns:1fr;
  }

  .reference-closing > div{
    padding:26px 24px;
  }
}

@media (max-width:520px){
  .reference-closing{
    margin-top:34px;
  }

  .reference-closing > div{
    padding:24px 20px;
  }

  .reference-closing p{
    font-size:16px;
    line-height:1.72;
  }
}


/* Reference page width harmonisation */
.reference-wrap{
  width:min(100% - 64px, var(--max));
  margin:0 auto;
}

.reference-wrap .reference-basis{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}

.reference-wrap .reference-card summary{
  box-sizing:border-box;
}

.reference-wrap .reference-card__body{
  box-sizing:border-box;
}

.reference-wrap .reference-closing{
  width:100%;
  box-sizing:border-box;
}

@media (max-width:760px){
  .reference-wrap{
    width:min(100% - 34px, var(--max));
  }
}

@media (max-width:520px){
  .reference-wrap{
    width:min(100% - 28px, var(--max));
  }
}


/* Reference group labels */
.reference-group-label{
  margin:30px 0 2px;
  color:var(--navy);
  font-family:var(--serif);
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.01em;
  border-top:1px solid rgba(18,35,52,.12);
  padding-top:24px;
}

.reference-cards .reference-group-label:first-child{
  margin-top:0;
  border-top:0;
  padding-top:0;
}

@media (max-width:760px){
  .reference-group-label{
    font-size:20px;
    margin-top:26px;
    padding-top:20px;
  }
}


/* Home reference proof descriptions */
.home-proof{
  flex-direction:column;
  gap:10px;
}

.home-proof span{
  margin-bottom:2px;
}

.home-proof strong{
  display:block;
}

.home-proof em{
  display:block;
  font-style:normal;
  color:#5f6b75;
  font-size:14px;
  line-height:1.55;
  letter-spacing:0;
  max-width:34ch;
}

@media (max-width:860px){
  .home-proof em{
    max-width:none;
  }
}

@media (max-width:520px){
  .home-proof{
    gap:8px;
  }

  .home-proof em{
    font-size:13.5px;
    line-height:1.5;
  }
}


/* Home insights reduced list */
.home-insights-link{
  width:min(100% - 64px, var(--max));
  margin:24px auto 0;
  text-align:center;
}

.home-insights-link .text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}

@media (max-width:760px){
  .home-insights-link{
    width:min(100% - 34px, var(--max));
    margin-top:20px;
  }
}


/* Home insight category labels */
.home-insights .article-meta,
.home-insights .insight-meta,
.home-insights .card-meta,
.home-insights .eyebrow,
.insights-preview .article-meta,
.insights-preview .insight-meta,
.insights-preview .card-meta{
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:800;
}


/* Home reference access sentence */
.home-reference__access{
  margin:18px 0 0;
  color:#53616d;
  font-size:15px;
  line-height:1.7;
  max-width:62ch;
}


/* Homepage reference focus - stable layout */
.home-reference__copy h2{
  max-width:11.5em;
}

.home-reference__access{
  margin:18px 0 0;
  color:#53616d;
  font-size:15px;
  line-height:1.7;
  max-width:62ch;
}

.home-proof em{
  display:block;
  font-style:normal;
  color:#5f6b75;
  font-size:14px;
  line-height:1.55;
  letter-spacing:0;
  max-width:34ch;
}

@media (max-width:980px){
  .home-reference__copy h2{
    max-width:none;
  }

  .home-proof em{
    max-width:none;
  }
}



/* Typography harmonisation - restrained */
:root{
  --fs-body:15px;
  --fs-body-large:15.75px;
  --fs-small:13px;
  --fs-card:14px;
  --lh-body:1.72;
}

body{
  font-size:var(--fs-body);
  line-height:var(--lh-body);
}

.hero h1{
  font-size:clamp(38px,4.9vw,64px);
  line-height:1.02;
  letter-spacing:-.038em;
}

.hero-accent{
  color:var(--gold);
  font-weight:inherit;
}

.hero p,
.hero__text p,
.hero-copy p{
  font-size:var(--fs-body-large);
  line-height:1.72;
  max-width:720px;
}

h2,
.section-title,
.home-reference__copy h2,
.content-section h2,
.page-intro h1{
  letter-spacing:-.022em;
}

.home-reference__copy h2{
  font-size:clamp(26px,2.8vw,38px);
  line-height:1.12;
}

.home-reference__copy > p,
.section-copy p,
.content-section p,
.page-intro p,
.reference-basis p{
  font-size:var(--fs-body);
  line-height:var(--lh-body);
}

.home-proof strong,
.reference-card summary strong,
.insight-card h3,
.service-card h3{
  font-size:clamp(14.5px,1.05vw,15.75px);
  line-height:1.38;
}

.home-proof em,
.reference-card summary em,
.insight-card p,
.service-card p{
  font-size:var(--fs-card);
  line-height:1.58;
}

.eyebrow,
.article-meta,
.insight-meta,
.card-meta{
  font-size:11.5px;
  letter-spacing:.12em;
}

.reference-group-label{
  font-size:clamp(18px,1.7vw,21px);
  line-height:1.28;
}

/* Index-specific restraint */
.home-reference{
  font-size:15px;
}

.home-reference__copy{
  max-width:620px;
}

.home-proof{
  padding-top:22px;
  padding-bottom:22px;
}

.home-proof span{
  font-size:12px;
}

.home-proof em{
  max-width:36ch;
}

@media (max-width:720px){
  .hero h1{
    font-size:clamp(34px,9.2vw,48px);
    line-height:1.04;
  }

  .hero p,
  .hero__text p,
  .hero-copy p{
    font-size:15px;
  }

  .home-reference__copy h2{
    font-size:clamp(24px,7vw,32px);
  }
}


/* Reference headline emphasis */
.home-proof strong{
  font-size:clamp(16.25px,1.35vw,18.5px);
  line-height:1.32;
  letter-spacing:-.01em;
}

.reference-card summary strong{
  font-size:clamp(17px,1.55vw,20px);
  line-height:1.32;
  letter-spacing:-.012em;
}

.reference-card summary span{
  font-size:12.5px;
}

.reference-group-label{
  font-size:clamp(20px,2.1vw,24px);
  line-height:1.24;
}

@media (max-width:720px){
  .home-proof strong{
    font-size:16px;
  }

  .reference-card summary strong{
    font-size:17px;
  }
}





/* Reference cards: left labels without collision */
.reference-card summary{
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  column-gap:28px;
  row-gap:8px;
  align-items:start;
}

.reference-card summary span{
  grid-column:1;
  grid-row:1 / span 2;
  display:block;
  margin:2px 0 0 0;
  max-width:170px;
  color:var(--gold);
  font-size:11.5px;
  line-height:1.35;
  font-weight:800;
  letter-spacing:.11em;
  text-transform:uppercase;
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
  -webkit-hyphens:none;
  -ms-hyphens:none;
}

.reference-card summary strong{
  grid-column:2;
  grid-row:1;
  display:block;
  margin:0 0 8px 0;
  max-width:100%;
  line-height:1.32;
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
  -webkit-hyphens:none;
  -ms-hyphens:none;
}

.reference-card summary em{
  grid-column:2;
  grid-row:2;
  display:block;
  margin:0;
  max-width:100%;
  line-height:1.58;
  font-weight:700;
  font-style:normal;
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
  -webkit-hyphens:none;
  -ms-hyphens:none;
}

.reference-card__body,
.reference-card__body p,
.reference-basis,
.reference-basis p,
.home-proof,
.home-proof strong,
.home-proof em,
body,
p,
li,
h1,
h2,
h3,
h4,
strong,
em,
summary,
.article-card,
.insight-card,
.service-card,
.reference-card{
  hyphens:none;
  -webkit-hyphens:none;
  -ms-hyphens:none;
}

/* Tablet/mobile: stack label above heading to avoid cramped columns */
@media (max-width:820px){
  .reference-card summary{
    display:block;
  }

  .reference-card summary span{
    max-width:none;
    margin:0 0 10px 0;
  }

  .reference-card summary strong{
    margin:0 0 11px 0;
    font-size:17px;
    line-height:1.34;
  }

  .reference-card summary em{
    font-size:14px;
    line-height:1.58;
  }

  .reference-card__body p{
    overflow-wrap:normal;
    word-break:normal;
  }
}







/* Keep header layout intact: label left, headline/teaser right */
.reference-card summary{
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  column-gap:28px;
  row-gap:8px;
  align-items:start;
}

.reference-card summary span{
  grid-column:1;
  grid-row:1 / span 2;
}

.reference-card summary strong{
  grid-column:2;
  grid-row:1;
}

.reference-card summary em{
  grid-column:2;
  grid-row:2;
}

@media (max-width:820px){
  .reference-card summary{
    display:block;
  }

  .reference-card > .reference-card__body,
  .reference-card[open] > .reference-card__body{
    margin-left:0 !important;
    max-width:100% !important;
    grid-column:auto !important;
  }
}



/* no automatic hyphenation */
.reference-card,
.reference-card *,
.reference-basis,
.reference-basis *{
  hyphens:none;
  -webkit-hyphens:none;
  -ms-hyphens:none;
}

@media (max-width:820px){
  .reference-card summary{
    display:block;
  }

  .reference-card summary span{
    max-width:none;
    margin:0 0 10px 0;
  }

  .reference-card summary strong{
    margin:0 0 10px 0;
  }

  .reference-card > .reference-card__body,
  .reference-card[open] > .reference-card__body{
    margin-left:0 !important;
    width:100% !important;
    max-width:100% !important;
  }
}



/* no automatic hyphenation */
.reference-card,
.reference-card *,
.reference-basis,
.reference-basis *{
  hyphens:none;
  -webkit-hyphens:none;
  -ms-hyphens:none;
}

@media (max-width:820px){
  .reference-card summary{
    display:block;
  }

  .reference-card summary span{
    max-width:none;
    margin:0 0 10px 0;
  }

  .reference-card summary strong{
    margin:0 0 10px 0;
  }

  .reference-card > .reference-card__body,
  .reference-card[open] > .reference-card__body{
    margin-left:0 !important;
    width:100% !important;
    max-width:100% !important;
  }
}



/* Body starts at the same x-axis as the headline/short description */
.reference-card > .reference-card__body,
.reference-card[open] > .reference-card__body{
  display:block !important;
  width:auto !important;
  max-width:none !important;
  margin-left:calc(var(--reference-label-col) + var(--reference-col-gap)) !important;
  margin-right:0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
  clear:both !important;
}

.reference-card > .reference-card__body p,
.reference-card[open] > .reference-card__body p{
  margin-left:0 !important;
  margin-right:0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
  text-indent:0 !important;
  max-width:100% !important;
}

/* no automatic hyphenation */
.reference-card,
.reference-card *,
.reference-basis,
.reference-basis *{
  hyphens:none;
  -webkit-hyphens:none;
  -ms-hyphens:none;
}

@media (max-width:820px){
  .reference-card summary{
    display:block;
  }

  .reference-card summary span{
    max-width:none;
    margin:0 0 10px 0;
  }

  .reference-card summary strong{
    margin:0 0 10px 0;
  }

  .reference-card > .reference-card__body,
  .reference-card[open] > .reference-card__body{
    margin-left:0 !important;
    width:100% !important;
    max-width:100% !important;
  }
}


/* Reference body final axis correction */
:root{
  --reference-label-col:210px;
  --reference-col-gap:28px;
  --reference-body-offset:273px;
}

.reference-card summary{
  display:grid;
  grid-template-columns:var(--reference-label-col) minmax(0,1fr);
  column-gap:var(--reference-col-gap);
  row-gap:8px;
  align-items:start;
}

.reference-card summary span{
  grid-column:1;
  grid-row:1 / span 2;
  display:block;
  margin:2px 0 0 0;
  max-width:185px;
}

.reference-card summary strong{
  grid-column:2;
  grid-row:1;
  display:block;
  margin:0 0 8px 0;
}

.reference-card summary em{
  grid-column:2;
  grid-row:2;
  display:block;
  margin:0;
  font-weight:700;
  font-style:normal;
}

.reference-card > .reference-card__body,
.reference-card[open] > .reference-card__body{
  display:block !important;
  width:auto !important;
  max-width:none !important;
  margin-left:var(--reference-body-offset) !important;
  margin-right:0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
  clear:both !important;
}

.reference-card > .reference-card__body p,
.reference-card[open] > .reference-card__body p{
  margin-left:0 !important;
  margin-right:0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
  text-indent:0 !important;
  max-width:100% !important;
}

/* no automatic hyphenation */
.reference-card,
.reference-card *,
.reference-basis,
.reference-basis *{
  hyphens:none;
  -webkit-hyphens:none;
  -ms-hyphens:none;
}

@media (max-width:820px){
  .reference-card summary{
    display:block;
  }

  .reference-card summary span{
    max-width:none;
    margin:0 0 10px 0;
  }

  .reference-card summary strong{
    margin:0 0 10px 0;
  }

  .reference-card > .reference-card__body,
  .reference-card[open] > .reference-card__body{
    margin-left:0 !important;
    width:100% !important;
    max-width:100% !important;
  }
}








/* Desktop logo large, layout balanced */
@media (min-width:821px){
  .site-logo img,
  .logo img,
  .brand img,
  .header-logo img,
  .navbar-brand img,
  .header__logo img{
    height:128px !important;
    width:auto !important;
    max-width:560px !important;
    object-fit:contain !important;
  }

  .site-logo,
  .logo,
  .brand,
  .header-logo,
  .navbar-brand,
  .header__logo{
    display:flex !important;
    align-items:center !important;
    min-width:0 !important;
    flex:0 0 auto !important;
  }

  .site-header,
  .header,
  .navbar{
    min-height:150px !important;
  }

  .site-header .container,
  .header .container,
  .navbar .container,
  .nav-wrap,
  .header-inner,
  .site-header__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:34px;
  }

  .nav,
  .navigation,
  .main-nav,
  .site-nav{
    margin-left:auto !important;
    align-items:center !important;
    flex:0 1 auto !important;
  }

  .hero,
  .page-hero,
  .subhero{
    padding-top:56px !important;
  }
}

/* Mobile/tablet remains restrained */
@media (max-width:820px){
  .site-logo img,
  .logo img,
  .brand img,
  .header-logo img,
  .navbar-brand img,
  .header__logo img{
    height:54px !important;
    width:auto !important;
    max-width:260px !important;
    object-fit:contain !important;
  }

  .site-logo,
  .logo,
  .brand,
  .header-logo,
  .navbar-brand,
  .header__logo{
    min-width:0 !important;
  }

  .site-header,
  .header,
  .navbar{
    min-height:86px !important;
  }
}


/* Content lowered after larger header */
@media (min-width:821px){
  main{
    padding-top:34px !important;
  }

  .hero,
  .page-hero,
  .subhero,
  .section-hero{
    padding-top:76px !important;
  }

  main > section:first-child,
  main > header:first-child{
    margin-top:0 !important;
  }
}

@media (max-width:820px){
  main{
    padding-top:18px !important;
  }
}


/* Index spacing reduced after larger header */
@media (min-width:821px){
  body.home main{
    padding-top:17px !important;
  }

  body.home .hero,
  body.home .page-hero,
  body.home .subhero,
  body.home .section-hero{
    padding-top:38px !important;
  }
}

@media (max-width:820px){
  body.home main{
    padding-top:10px !important;
  }
}





/* Reference text exact description column + mobile logo old size */

/* Desktop reference cards:
   Original summary geometry:
   padding-left 28 + label column 220 + gap 26 = 274px left text axis
   right edge of description column: card width - 28 padding - 28 plus column - 26 gap = 82px right inset
*/
@media (min-width:861px){
  .reference-card summary{
    display:grid !important;
    grid-template-columns:220px minmax(0,1fr) 28px !important;
    gap:26px !important;
    align-items:start !important;
    padding:24px 28px !important;
  }

  .reference-card summary span{
    grid-column:1 !important;
    grid-row:1 / span 2 !important;
  }

  .reference-card summary strong{
    grid-column:2 !important;
    grid-row:1 !important;
    max-width:100% !important;
  }

  .reference-card summary em{
    grid-column:2 !important;
    grid-row:2 !important;
    max-width:100% !important;
  }

  .reference-card summary:after{
    grid-column:3 !important;
    grid-row:1 / span 3 !important;
  }

  .reference-card__body,
  .reference-card .reference-text-block,
  .reference-card[open] .reference-card__body,
  .reference-card[open] .reference-text-block{
    margin:0 !important;
    padding:0 82px 28px 274px !important;
    width:100% !important;
    max-width:none !important;
    box-sizing:border-box !important;
  }

  .reference-card__body p,
  .reference-card .reference-text-block p,
  .reference-card[open] .reference-card__body p,
  .reference-card[open] .reference-text-block p{
    margin:0 0 16px !important;
    padding:0 !important;
    width:100% !important;
    max-width:none !important;
    text-align:justify !important;
    text-align-last:left !important;
    text-justify:inter-word !important;
    hyphens:none !important;
    -webkit-hyphens:none !important;
    -ms-hyphens:none !important;
  }

  .reference-card__body p:last-child,
  .reference-card .reference-text-block p:last-child{
    margin-bottom:0 !important;
  }
}

/* Tablet/mobile reference cards stay readable */
@media (max-width:860px){
  .reference-card__body,
  .reference-card .reference-text-block,
  .reference-card[open] .reference-card__body,
  .reference-card[open] .reference-text-block{
    margin:0 !important;
    padding:0 22px 24px !important;
    width:100% !important;
    max-width:none !important;
  }

  .reference-card__body p,
  .reference-card .reference-text-block p{
    text-align:left !important;
    max-width:none !important;
  }
}

/* restore previous stronger mobile/tablet logo sizing */
@media (max-width:1100px){
  .logo img,
  .site-logo img,
  .brand img,
  .header-logo img,
  .navbar-brand img,
  .header__logo img,
  header .logo img{
    width:460px !important;
    height:auto !important;
    max-width:calc(100vw - 56px) !important;
    max-height:none !important;
    object-fit:contain !important;
    margin-left:-14px !important;
  }
}

@media (max-width:760px){
  .logo img,
  .site-logo img,
  .brand img,
  .header-logo img,
  .navbar-brand img,
  .header__logo img,
  header .logo img{
    width:420px !important;
    height:auto !important;
    max-width:calc(100vw - 56px) !important;
    max-height:none !important;
    margin-left:-14px !important;
  }

  .header,
  .site-header,
  .navbar{
    min-height:auto !important;
  }
}

@media (max-width:480px){
  .logo img,
  .site-logo img,
  .brand img,
  .header-logo img,
  .navbar-brand img,
  .header__logo img,
  header .logo img{
    width:360px !important;
    max-width:calc(100vw - 42px) !important;
  }
}


/* FINAL OVERRIDE: reference body in same grid column as description + mobile logo restored */
@media (min-width:861px){
  .reference-card summary{
    display:grid !important;
    grid-template-columns:220px minmax(0,1fr) 28px !important;
    column-gap:26px !important;
    row-gap:8px !important;
    align-items:start !important;
    padding:24px 28px !important;
  }

  .reference-card summary span{
    grid-column:1 !important;
    grid-row:1 / span 2 !important;
  }

  .reference-card summary strong{
    grid-column:2 !important;
    grid-row:1 !important;
    margin:0 0 8px 0 !important;
    max-width:100% !important;
  }

  .reference-card summary em{
    grid-column:2 !important;
    grid-row:2 !important;
    margin:0 !important;
    max-width:100% !important;
  }

  .reference-card summary::after{
    grid-column:3 !important;
    grid-row:1 / span 2 !important;
  }

  .reference-card__body,
  .reference-card .reference-text-block,
  .reference-card[open] .reference-card__body,
  .reference-card[open] .reference-text-block{
    display:grid !important;
    grid-template-columns:220px minmax(0,1fr) 28px !important;
    column-gap:26px !important;
    padding:0 28px 28px 28px !important;
    margin:0 !important;
    width:100% !important;
    max-width:none !important;
    box-sizing:border-box !important;
  }

  .reference-card__body p,
  .reference-card .reference-text-block p,
  .reference-card[open] .reference-card__body p,
  .reference-card[open] .reference-text-block p{
    grid-column:2 !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 0 16px 0 !important;
    padding:0 !important;
    text-indent:0 !important;
    text-align:justify !important;
    text-align-last:left !important;
    text-justify:inter-word !important;
    hyphens:none !important;
    -webkit-hyphens:none !important;
    -ms-hyphens:none !important;
  }

  .reference-card__body p:last-child,
  .reference-card .reference-text-block p:last-child{
    margin-bottom:0 !important;
  }
}

@media (max-width:860px){
  .reference-card__body,
  .reference-card .reference-text-block,
  .reference-card[open] .reference-card__body,
  .reference-card[open] .reference-text-block{
    display:block !important;
    padding:0 22px 24px 22px !important;
    margin:0 !important;
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }

  .reference-card__body p,
  .reference-card .reference-text-block p{
    display:block !important;
    text-align:left !important;
    max-width:100% !important;
  }
}

/* FINAL OVERRIDE: mobile logo back to larger visual presence */
@media (max-width:820px){
  .header .logo img,
  header.header .logo img,
  a.logo img{
    width:420px !important;
    height:auto !important;
    max-width:calc(100vw - 44px) !important;
    max-height:none !important;
    object-fit:contain !important;
  }

  .header{
    min-height:104px !important;
  }
}

@media (max-width:480px){
  .header .logo img,
  header.header .logo img,
  a.logo img{
    width:360px !important;
    max-width:calc(100vw - 36px) !important;
  }
}


/* Mobile headline hyphenation removed */
@media (max-width:860px){
  h1, h2, h3, h4, h5, h6,
  .hero h1,
  .page-hero h1,
  .subhero h1,
  .section-hero h1,
  .reference-card summary strong,
  .reference-card summary em,
  .reference-group-label,
  .eyebrow,
  .kicker,
  .lead,
  .section-title,
  .card h2,
  .card h3,
  .home-proof strong,
  .home-reference__copy h2,
  .insight-card h2,
  .insight-card h3{
    hyphens:none !important;
    -webkit-hyphens:none !important;
    -ms-hyphens:none !important;
    word-break:normal !important;
    overflow-wrap:normal !important;
    text-wrap:balance;
  }

  body,
  p,
  li,
  a,
  span,
  strong,
  em{
    hyphens:none !important;
    -webkit-hyphens:none !important;
    -ms-hyphens:none !important;
  }
}
