
: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));
  }
}
