:root{
  --bg:#ffffff;
  --card:#f4f4f4;
  --text:#111111;
  --muted:#6d6d6d;
  --line:#d8d8d8;
  --accent:#da291c;
  --accent-dark:#b52115;
  --container:1688px;
  --radius:20px;
  --soft:#f5f5f5;
  --soft-2:#f0f0f0;
  --shadow:0 14px 32px rgba(0,0,0,.08);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter",sans-serif;
  background:#fff;
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  font-size:18px;
  line-height:1.45;
}

img{
  display:block;
  max-width:100%;
}

a{
  text-decoration:none;
  color:inherit;
}

button,input,select,textarea{
  font:inherit;
}

.container{
  width:min(calc(100% - 40px),var(--container));
  margin:0 auto;
  margin-inline:auto;
}

.site-header{
  padding:18px 0;
  background:var(--bg);
  position:sticky;
  top:0;
  z-index:30;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:78px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:1.1rem;
  text-transform:lowercase;
  letter-spacing:.05em;
}

.brand-mark{
  width:40px;
  height:40px;
 
  display:grid;
  place-items:center;
  position:relative;
 
}

.brand-mark::after{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
  display:block;
}

.brand-text{
  font-family:"Nunito",sans-serif;
  font-size:42px;
  font-weight:300;
  line-height:1;
  letter-spacing:-.05em;
  text-transform:lowercase;
}

.nav-menu,.mobile-nav-menu{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap:22px;
  align-items:center;
}

.nav-menu a{
  font-size:10px;
  font-weight:600;
  letter-spacing:.08em;
}

.header-tools{
  display:flex;
  align-items:center;
  gap:12px;
}

.tool-button{
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
}

.tool{
  display:block;
  width:16px;
  height:16px;
  position:relative;
}

.tool.search::before{
  content:"";
  position:absolute;
  inset:1px 1px 4px 1px;
  border:1.5px solid #111;
  border-radius:50%;
}

.tool.search::after{
  content:"";
  position:absolute;
  width:6px;
  height:1.5px;
  background:#111;
  right:-1px;
  bottom:1px;
  transform:rotate(45deg);
}

.lang-switcher ul,.lang-switcher-fallback{
  list-style:none;
  padding:0;
  margin:0;
 /* display:flex;*/
  gap:8px;
}

.lang-switcher img{
 /* width:16px;
  height:auto; */
}

.lang-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.lang-dropdown__flag {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 30px;
}

.lang-dropdown__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.lang-dropdown__arrow {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #d9d9d9;
    flex: 0 0 16px;
}

.lang-dropdown__arrow::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 5px solid #111;
}

.lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    /*min-width: 170px;*/
    margin: 0;
    padding: 8px;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    z-index: 100;
    display: none;
}

.lang-dropdown.is-open .lang-dropdown__menu {
    display: block;
}

.lang-dropdown__item + .lang-dropdown__item {
    margin-top: 4px;
}

.lang-dropdown__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    transition: background 0.2s ease;
}

.lang-dropdown__link:hover {
    background: #f4f4f4;
}

.lang-dropdown__link.is-current {
    background: #f7f7f7;
}

.lang-dropdown__name {
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
}

.hamburger{
  display:none;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  padding:0;
  cursor:pointer;
  width:46px;
  height:46px;
  border-radius:50%;
}

.hamburger span{
  display:block;
  width:18px;
  height:2px;
  background:#111;
  margin:4px auto;
}

.mobile-menu{
  display:none;
  background:#f7f7f7;
  border-top:1px solid rgba(0,0,0,.08);
}

.mobile-menu.is-open{
  display:block;
}

.mobile-nav-menu{
  flex-direction:column;
  align-items:flex-start;
  padding:18px 0;
}

.section{
  padding:96px 0;
}

.section-light{
  background:transparent;
}

.eyebrow{

  color: #DA291C;
  font-family: Nunito;
  font-size: 36px;
  font-style: normal;
font-weight: 300;
  text-transform:uppercase;
  color:var(--accent);
  margin:0 0 8px;
  display:inline-block;
  margin-bottom:16px;
}

.eyebrow.accent,.accent{
  color:var(--accent);
}

.section-title{
  margin:0;
  font-family:"Nunito",sans-serif;
  font-weight:300;
  font-size:clamp(2.3rem,4vw,3.6rem);
  line-height:1.05;
  letter-spacing:-.04em;
}

.section-title.accent{
  color:var(--accent);
}

.section-title.center{
  text-align:center;
}

.section-lead{
  margin:20px auto;
  max-width:860px;
  color:#7d7d7d;
  font-size:clamp(1rem,1.28vw,1.18rem);
  line-height:1.7;
}

.section-lead.dark{
  color:#1f1f1f;
}

.section-lead.centered{
  text-align:center;
}

.section-lead.narrow{
  max-width:620px;
}

.divider{
  position:relative;
  border-top:1px solid #dcdcdc;
  margin:36px 0 32px;
}

.divider::before,.divider::after{
  content:"✦";
  position:absolute;
  top:-8px;
  color:var(--accent);
  font-size:8px;
}

.divider::before{
  left:0;
}

.divider::after{
  right:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:52px;
  padding:0 30px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  gap:10px;
  min-height:50px;
  cursor:pointer;
  transition:.25s ease;
  white-space:nowrap;
}

.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 14px 28px rgba(218,41,28,.18);
}

.btn-primary:hover{
  background:var(--accent-dark);
  transform:translateY(-1px);
}

.btn-secondary{
  background:#fff;
  border-color:rgba(0,0,0,.16);
  color:#111;
}

.btn-soft{
  background:#ebebeb;
  color:#111;
}

/* HOME */

.hero{
  padding:10px 0 0px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,834px) minmax(0,834px);
  justify-content:space-between;
  gap:15px;
  align-items:center;
}

.hero-copy{
  padding:56px 107px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(0deg, #F2F2F2 0%, #F2F2F2 100%), #F4EDE4;
  height: 100%;
}

.google-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex-wrap:nowrap;
  padding:6px 12px;
  border-radius:4px;
  background:#f5f5f5;
  border:1px solid rgba(255,255,255,.72);
  margin-bottom:20px;
  font-size:.82rem;
  line-height:1.4;
}

.google-chip strong{
  font-weight:700;
}

.google-chip span{
  white-space:nowrap;
}

.stars{
  letter-spacing:.08em;
  color:#f4b400;
  font-weight:700;
}

.hero-title{
  margin:0 0 18px;
  font-family:"Nunito",sans-serif;
  font-weight:400;
  font-size:clamp(2.8rem,5vw,4.05rem);
  line-height:1.04;
  letter-spacing:-.052em;
  max-width:600px;
}

.hero-text{
  max-width:500px;
  font-size:.98rem;
  line-height:2.1;
  margin:0 0 16px;
  color:#111;
}

.hero-text em{
  display:inline-block;
  font-style:italic;
  color:#444;
  font-size:.92rem;
  line-height:1.7;
  margin:2px 0;
}

.hero-bullets{
  list-style:none;
  padding:0;
  margin:0 0 32px;
  display:grid;
  gap:10px;
}

.hero-bullets li{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:500;
  font-size:1rem;
  line-height:1.5;
}

.hero-bullets li::before{
  content:"✓";
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(218,41,28,.1);
  color:var(--accent);
  font-size:.8rem;
  font-weight:900;
  flex:0 0 24px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:2px;
}

.hero-image-wrap{
  position:relative;
  min-height:725px;
  border-radius:10px;
  overflow:hidden;
  background:linear-gradient(135deg,#f4ede4,#f2f2f2);
  box-shadow:var(--shadow);
}

.hero-image-wrap img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  transform:scale(1.015);
}

.stats-strip{
  margin-top:17px;
  background:#f0f0f0;
  padding:34px 18px 30px;
  border-radius:10px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:8px;
}

.stat{
  text-align:center;
  padding:0 8px;
}

.stat strong{
  display:block;
  font-family:"Nunito",sans-serif;
  font-size:clamp(2rem,3.5vw,3.75rem);
  font-weight:300;
  line-height:1;
  margin-bottom:10px;
}

.stat span{
  display:block;
  color:#3f3f3f;
  font-size:1rem;
  line-height:1.4;
}

.situation{
  text-align:center;
}

.cards-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:42px;
}

.card{
  background:#fff;
  border:1px solid rgba(218,41,28,.18);
  border-radius:20px;
  padding:36px 28px;
  transition:.25s ease;
  height:100%;
  min-height:426px;
  display:flex;
  flex-direction:column;
}

.card.featured{
  border-color:var(--accent);
  box-shadow:var(--shadow);
}

.icon-box{
  width:70px;
  height:70px;
  border-radius:13px;
  background:#e6e7e9;
  display:grid;
  place-items:center;
  font-size:1.7rem;
  margin:0 0 22px;
}

.card.featured .icon-box{
  background:var(--accent);
  color:#fff;
}

.card h3{
  margin:0 0 14px;
  font-size:1.34rem;
  line-height:1.42;
  text-align:left;
}

.card p{
  margin:0;
  color:#575757;
  text-align:left;
  line-height:1.75;
}

.specialty-block{
  background:linear-gradient(180deg,rgba(245,245,245,.95),#fff);
  padding:110px 0 104px;
}

.headline-center{
  text-align:center;
  max-width:860px;
  margin:0 auto 46px;
}

.specialty-grid{
  display:grid;
  grid-template-columns:0.95fr 1.15fr;
  gap:64px;
  align-items:center;
}

.specialty-grid.reverse{
  grid-template-columns:1.1fr 0.9fr;
}

.underlined{
  position:relative;
  padding-bottom:60px;
  margin-bottom:60px;
}

.underlined::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg,#111 0%, rgba(0,0,0,.15) 100%);
}

.media-card{
  position:relative;
  overflow:hidden;
  border-radius:8px;
  background:#ebebeb;
  min-height:440px;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
}

.media-card.large{
  min-height:670px;
  max-height: 670px;
}

.media-card img{
  position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto; /* important */
    transform: translate(-50%, -50%);
}

#specialty .specialty-grid:nth-of-type(1) .media-card img{
  object-position:60% 40%;
}

#specialty .specialty-grid:nth-of-type(2) .media-card.large img{
  object-position:50% 30%;
}

#specialty .specialty-grid:nth-of-type(3){
  align-items:start;
}

#specialty .specialty-grid:nth-of-type(3) .text-block{
  padding-top:40px;
}

#specialty .specialty-grid:nth-of-type(3) .media-card.large img{
  object-position:20% 15%;
  transform:scale(1.05);
}

.play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:74px;
  height:74px;
  border-radius:50%;
  background:rgba(255,255,255,.96);
  display:grid;
  place-items:center;
  box-shadow:0 14px 28px rgba(0,0,0,.16);
  font-size:1.6rem;
}

.text-block p{
  margin:0 0 12px;
  font-size:0.98rem;
  line-height:2.05;
  color:#2e2e2e;
  max-width:520px;
}

.feature-list{
  list-style:none;
  padding:0;
  margin:24px 0 18px;
  display:grid;
  gap:10px;
}

.feature-list li{
  position:relative;
  padding-left:32px;
  font-size:1.18rem;
  font-weight:600;
  line-height:1.5;
}

.feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:rgba(218,41,28,.14);
  box-shadow:inset 0 0 0 5px var(--accent);
}

.results-grid{
  display:grid;
  grid-template-columns:407px 1fr 407px;
  gap:26px;
  margin-top:44px;
  align-items:stretch;
}

.panel{
  background:#f7f7f7;
  border:1px solid rgba(0,0,0,.08);
  border-radius:8px;
  overflow:hidden;
  height:100%;
  display:flex;
  flex-direction:column;
  transition:.2s ease;
}

.panel.featured{
  background:#fff;
  border-color:rgba(218,41,28,.25);
  box-shadow:0 12px 26px rgba(0,0,0,.08);
}

.panel-media{
  position:relative;
  min-height:310px;
  background:#ebebeb;
}

.panel.featured .panel-media{
  min-height:320px;
}

.panel-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.before-after{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:310px;
}

.before-after .half{
  position:relative;
}

.before-after .half img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.label{
  position:absolute;
  top:14px;
  left:14px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:.65rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.panel-body{
  padding:18px 20px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.panel-number{
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#555;
}

.panel h3{
  margin:0;
  font-size:1.6rem;
  font-family:"Nunito",sans-serif;
  font-weight:500;
  line-height:1.15;
  letter-spacing:-.02em;
}

.panel p{
  margin:0;
  color:#555;
  line-height:1.7;
  font-size:.95rem;
}

.cta-band{
  background:#f0f0f0;
  border-radius:10px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:0 0 56px;
}

.cta-band img{
  position:static;
  width:100%;
  height:430px;
  object-fit:cover;
  object-position:center 22%;
  display:block;
}

.cta-content{
  max-width:760px;
  padding:20px 20px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.small-note{
  margin:18px 0 0;
  color:#222;
  font-size:.92rem;
}

/* ABOUT PAGE */

.hero-grid-about{
  display:grid;
  grid-template-columns:520px 1fr;
  gap:80px;
  align-items:center;
  padding-top:20px;
}

.hero-title-about{
  margin:0;
  font-family:"Nunito",sans-serif;
  font-weight:300;
  font-size:68px;
  line-height:.95;
  letter-spacing:-.05em;
}

.hero-sub-about{
  margin-top:6px;
  font-size:18px;
  font-weight:300;
  color:#1a1a1a;
}

.hero-text-about{
  margin-top:140px;
  max-width:420px;
  font-size:16px;
  font-weight:400;
  line-height:1.75;
  color:#1f1f1f;
}

.about-hero-image{
  background:#ddd;
  border-radius:6px;
  overflow:hidden;
  height:440px;
}

.about-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 12%;
}

.about-section-title{
  font-size:48px;
}

.feature-card{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:80px;
  background:#f2f2f2;
  padding:60px 70px;
  border-radius:6px;
}

.feature-name{
  margin:0;
  font-family:"Nunito",sans-serif;
  font-weight:300;
  font-size:48px;
  line-height:1.05;
  color:var(--accent);
  letter-spacing:-.03em;
}

.feature-role{
  margin:8px 0 30px;
  font-size:14px;
  font-weight:400;
  color:#111;
  line-height:1.7;
}

.feature-text{
  max-width:600px;
  font-size:16px;
  font-weight:400;
  line-height:1.8;
  color:#222;
}

.feature-text p{
  margin:0 0 20px;
}

.feature-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 20px;
  border:1px solid rgba(0,0,0,.16);
  border-radius:999px;
  background:#fff;
  font-size:8px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-top:8px;
}

.feature-image{
  width:100%;
  height:420px;
  background:#ddd;
  overflow:hidden;
  border-radius:4px;
}

.feature-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 18%;
}

.team-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin:10px 0 30px;
}

.team-title{
  font-size:42px;
  margin:0;
}

.team-note{
  font-size:14px;
  font-weight:400;
  color:#4a4a4a;
}

.team-grid-about{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px 40px;
}

.member{
  display:flex;
  flex-direction:column;
}

.member-image{
  background:#e2e2e2;
  height:420px;
  position:relative;
  overflow:hidden;
  border-radius:6px;
}

.member-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.member-badge{
  position:absolute;
  left:10px;
  top:10px;
  width:12px;
  height:12px;
  border:1.5px solid #111;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fff;
}

.member-badge::after{
  content:"";
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--accent);
}

.member-meta{
  padding:10px 2px 0;
}

.member-kicker{
  font-size:12px;
  font-weight:400;
  color:#6a6a6a;
  letter-spacing:0;
  text-transform:none;
  margin-bottom:8px;
}

.member-name{
  margin:0 0 8px;
  font-family:"Nunito",sans-serif;
  font-size:30px;
  font-weight:300;
  line-height:1.1;
  color:#111;
  letter-spacing:-.02em;
}

.member-role{
  margin:0 0 12px;
  font-size:14px;
  font-weight:400;
  color:#222;
  line-height:1.7;
}

.member-bio{
  font-size:14px;
  font-weight:400;
  color:#2a2a2a;
  line-height:1.8;
}

.member-line{
  margin-top:10px;
  border-top:1px solid var(--accent);
  width:100%;
}

.results-wrap{
  padding-top:6px;
}

.about-results-grid{
  max-width:none;
}

.result-card{
  background:#f3f3f3;
  padding:10px 10px 14px;
}

.result-stack{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:3px;
  height:176px;
  background:#cfcfcf;
  overflow:hidden;
}

.result-stack img,.result-stack .ph{
  width:100%;
  height:100%;
  object-fit:cover;
  background:#8e8e8e;
}

.result-stack .ph.light{
  background:#bfbfbf;
}

.result-label{
  position:absolute;
  top:7px;
  left:7px;
  background:rgba(255,255,255,.8);
  padding:2px 6px;
  border-radius:999px;
  font-size:6px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#555;
}

.result-half{
  position:relative;
}

.result-meta{
  padding-top:8px;
}

.result-meta .name{
  font-size:10px;
  color:#444;
  margin-bottom:4px;
}

.result-meta .age{
  font-size:12px;
  color:#111;
  margin-bottom:4px;
}

.result-meta .desc{
  font-size:10px;
  color:#333;
  line-height:1.7;
}

.section-subtitle{
  margin:-10px 0 26px;
  font-family:"Nunito",sans-serif;
  font-size:16px;
  font-weight:300;
  text-align:center;
  color:#232323;
}

.center-btn{
  display:flex;
  justify-content:center;
  margin-top:20px;
}

.contact-block{
  background:#f1f1f1;
  padding:34px 38px 42px;
  display:grid;
  grid-template-columns:300px 1fr;
  gap:30px;
  align-items:start;
}

.contact-visual{
  background:#f6f6f6;
  min-height:410px;
  display:grid;
  place-items:center;
  color:#666;
  font-size:8px;
  letter-spacing:.12em;
  text-transform:uppercase;
  border-radius:2px;
}

.contact-copy{
  padding-top:0;
  max-width:690px;
}

.contact-title{
  margin:0 0 14px;
  font-family:"Nunito",sans-serif;
  font-weight:300;
  font-size:38px;
  line-height:1.06;
  letter-spacing:-.03em;
  color:var(--accent);
  max-width:560px;
}

.contact-text{
  font-size:14px;
  font-weight:400;
  line-height:1.65;
  max-width:620px;
  margin:0 0 18px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 12px;
}

.field,.field-full{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.field-full{
  grid-column:1/-1;
}

label{
  font-size:9px;
  font-weight:400;
  color:#6a6a6a;
  text-transform:none;
  line-height:1.3;
}

input,select,textarea{
  width:100%;
  border:0;
  background:#f8f8f8;
  height:48px;
  padding:0 16px;
  font-size:14px;
  color:#111;
  border-radius:10px;
  box-shadow:none;
  appearance:none;
  -webkit-appearance:none;
}

textarea{
  height:50px;
  padding-top:14px;
  resize:none;
}

.form-note{
  margin:18px 0 8px;
  font-size:10px;
  color:var(--accent);
  letter-spacing:.08em;
  text-transform:uppercase;
  grid-column:1/-1;
}

.upload-wrap{
  max-width:322px;
}

.submit-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:64px;
  min-width:324px;
  padding:0 56px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  border:0;
  margin-top:22px;
  cursor:pointer;
}

.submit-btn:hover{
  background:var(--accent-dark);
}

.site-footer{
  padding:34px 0 0;
}

.footer-top{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr 1fr;
  gap:34px;
  padding:18px 0 28px;
}

.footer-logo{
  font-family:"Nunito",sans-serif;
  font-size:58px;
  font-weight:300;
  letter-spacing:-.05em;
  line-height:1;
}

.footer-desc{
  font-size:12px;
  line-height:1.8;
  color:#333;
  max-width:240px;
  margin-top:10px;
}

.site-footer h4{
  margin:0 0 12px;
  font-size:14px;
  font-weight:700;
}

.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:7px;
}

.site-footer li,.site-footer a{
  font-size:12px;
  line-height:1.6;
  color:#222;
  text-decoration:underline;
  text-underline-offset:2px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  border-top:1px solid rgba(0,0,0,.08);
  padding:12px 0 0;
  font-size:.95rem;
  color:#555;
  margin-top:36px;
  padding-top:18px;
  flex-wrap:wrap;
}

.footer-bottom .links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 1300px){
  .hero-grid,.hero-grid-about,.specialty-grid,.specialty-grid.reverse,.results-grid,.team-grid-about,.footer-top{
    grid-template-columns:1fr 1fr;
  }

  .cards-4{
    grid-template-columns:1fr 1fr;
  }

  .feature-card{
    grid-template-columns:1fr;
  }

  .contact-block{
    grid-template-columns:1fr;
    padding:28px;
  }

  .nav{
    display:none;
  }

  .hero-grid,.specialty-grid,.pricing-grid,.journey-grid,.network-top,.results-grid,.testimonials-grid,.solutions-grid,.cards-4,.expertise-grid,.clinics-grid,.footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .results-grid > :first-child,.results-grid > :last-child,.solutions-grid > :first-child,.network-top > :last-child,.footer-grid > :first-child,.journey-grid > :first-child{
    grid-column:1/-1;
  }

  .stats-strip{
    grid-template-columns:repeat(3,1fr);
  }

  .hero-image-wrap{
    min-height:580px;
  }
}

@media (max-width: 980px){
  .container{
    width:min(calc(100% - 40px),var(--container));
  }

  .hamburger{
    display:inline-block;
  }

  .hero-grid,.hero-grid-about,.specialty-grid,.specialty-grid.reverse,.results-grid,.cards-4,.team-grid-about,.footer-top{
    grid-template-columns:1fr;
  }

  .stats-strip{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-copy,.hero-copy-about{
    padding:8px 0;
  }

  .hero-image-wrap,.about-hero-image{
    min-height:430px;
    height:430px;
  }

  .hero-text-about,.hero-text{
    margin-top:28px;
    max-width:none;
  }

  .media-card.large{
    min-height:520px;
  }

  .cta-band img{
    height:320px;
    object-position:center 18%;
  }

  .nav,.header-actions .btn{
    display:none;
  }

  .hero-grid,.specialty-grid,.pricing-grid,.journey-grid,.network-top,.results-grid,.testimonials-grid,.solutions-grid,.cards-4,.expertise-grid,.clinics-grid,.footer-grid{
    grid-template-columns:1fr;
  }

  .hero-image-wrap{
    min-height:460px;
    order:-1;
  }

  .clinic-card{
    min-height:500px;
  }

  .section,.specialty-block,.network-block{
    padding:72px 0;
  }

  .journey-grid{
    gap:28px;
  }

  .journey-grid > :first-child{
    grid-column:auto;
  }
}

@media (max-width: 720px){
  .container{
    width:min(calc(100% - 24px),var(--container));
  }

  .brand-text{
    font-size:36px;
  }

  .section{
    padding:18px 0;
  }

  .hero-title-about,.hero-title{
    font-size:40px;
  }

  .section-title{
    font-size:40px;
  }

  .about-section-title{
    font-size:34px;
  }

  .feature-name{
    font-size:30px;
  }

  .member-name{
    font-size:24px;
  }

  .member-image{
    height:320px;
  }

  .hero-image-wrap,.about-hero-image{
    height:260px;
    min-height:260px;
  }

  .stats-strip{
    grid-template-columns:1fr;
  }

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

  .submit-btn{
    min-width:0;
    width:100%;
    height:58px;
  }

  .footer-bottom{
    display:block;
  }

  .footer-bottom .links{
    margin-top:8px;
  }
}

.stats-section-pad{
  padding-top:0;
}

.testimonials-wrap{
  background:rgba(235,235,235,.4);
  padding:84px 0;
  border-radius:5px;
}

.testimonials-inner{
  width:min(calc(100% - 36px),var(--container));
  padding:0;
}

.testimonials-grid{
  display:grid;
  grid-template-columns:1fr 408px 407px;
  gap:24px;
  margin-top:30px;
}

.testimonials-title{
  font-size:3rem;
}

.review-box{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  border-radius:6px;
  background:#f5f5f5;
  margin:10px 0 20px;
  border:1px solid rgba(255,255,255,.6);
}

.testimonials-lead{
  margin-top:0;
  max-width:430px;
  color:#111;
}

.testimonials-copy{
  color:#555;
  line-height:1.85;
  max-width:410px;
}

.quote-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.14);
  border-radius:20px;
  padding:28px;
  min-height:451px;
  display:flex;
  flex-direction:column;
}

.quote-card blockquote{
  margin:18px 0 20px;
  font-style:italic;
  line-height:1.85;
  color:#2f2f2f;
  flex:1;
}

.quote-card cite{
  font-style:normal;
  color:#555;
  line-height:1.6;
}

.solutions-grid{
  display:grid;
  grid-template-columns:.95fr 1fr 1fr;
  gap:24px;
  align-items:start;
  margin-top:40px;
}

.solutions-title{
  font-size:3.2rem;
  max-width:520px;
}

.solution-text p{
  margin:0 0 18px;
  color:#3c3c3c;
  line-height:1.85;
  font-size:1rem;
}

.solutions-last{
  margin-top:28px !important;
}

.solution-card{
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
}

.solution-card.featured{
  border-color:var(--accent);
  box-shadow:var(--shadow);
}

.solution-head{
  min-height:334px;
  background:#f6f6f6;
}

.solution-head img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.solution-body{
  padding:24px 28px 26px;
}

.solution-body h3{
  margin:0 0 18px;
  font-size:1.55rem;
}

.spec{
  padding:14px 0;
  border-top:1px solid rgba(0,0,0,.08);
  line-height:1.7;
  color:#3d3d3d;
}

.spec:first-of-type{
  border-top:0;
  padding-top:0;
}

.spec strong{
  display:block;
  margin-bottom:6px;
  color:#111;
}

.network-block{
  background:linear-gradient(180deg,rgba(245,245,245,.96),#fff);
  padding:100px 0;
}

.network-intro{
  text-align:center;
  max-width:980px;
  margin:0 auto 28px;
}

.network-top{
  display:grid;
  grid-template-columns:1fr 407px 1fr;
  gap:24px;
  align-items:stretch;
  margin-top:34px;
}

.copy-card,.portrait-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:20px;
  overflow:hidden;
}

.copy-card{
  padding:28px;
}

.copy-card p{
  margin:0;
  color:#3d3d3d;
  line-height:1.9;
}

.portrait-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.network-prof-title{
  margin:0 0 14px;
  font-size:2rem;
  color:var(--accent);
  font-family:"Nunito",sans-serif;
  font-weight:300;
}

.network-prof-btn{
  margin-top:20px;
}

.clinics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:46px;
}

.clinic-card{
  position:relative;
  min-height:600px;
  border-radius:10px;
  overflow:hidden;
  isolation:isolate;
  box-shadow:var(--shadow);
  color:#fff;
}

.clinic-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

.clinic-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 44%,rgba(0,0,0,.56) 100%);
  z-index:-1;
}

.clinic-no{
  position:absolute;
  top:18px;
  left:22px;
  font-family:"Nunito",sans-serif;
  font-weight:300;
  font-size:5rem;
  letter-spacing:-.07em;
}

.clinic-content{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
}

.clinic-content h3{
  margin:0 0 2px;
  font-size:1.55rem;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.clinic-content p{
  margin:0 0 16px;
  color:rgba(255,255,255,.9);
}

.expertise-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:42px;
}

.expert-card{
  background:#fff;
  border:1px solid rgba(218,41,28,.18);
  border-radius:20px;
  padding:34px 28px;
  display:flex;
  flex-direction:column;
  min-height:426px;
}

.expert-card.featured{
  border-color:var(--accent);
  box-shadow:var(--shadow);
}

.expert-card h3{
  margin:18px 0 12px;
  font-size:1.34rem;
  line-height:1.35;
}

.expert-card p{
  margin:0;
  color:#555;
  line-height:1.75;
  flex:1;
}

.expert-card-btn{
  margin-top:20px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}

.pricing-visual{
  background:linear-gradient(135deg,#f5f5f5,#efefef);
  border-radius:10px;
  overflow:hidden;
  min-height:650px;
  box-shadow:var(--shadow);
}

.pricing-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.pricing-title{
  font-size:2.8rem;
  max-width:540px;
}

.pricing-lead{
  max-width:none;
}

.pricing-list{
  margin-top:30px;
}

.pricing-copy{
  margin:18px 0 0;
  color:#454545;
  line-height:1.8;
}

.journey-grid{
  display:grid;
  grid-template-columns:620px 1fr;
  gap:48px;
  align-items:start;
}

.journey-title{
  font-size:2.9rem;
}

.timeline{
  display:grid;
  gap:0;
  margin-top:24px;
}

.timeline-step{
  display:grid;
  grid-template-columns:auto auto 1fr;
  gap:16px;
  align-items:start;
  padding:20px 0;
  border-bottom:1px solid rgba(0,0,0,.1);
}

.timeline-step:last-child{
  border-bottom:0;
}

.step-no{
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding-top:8px;
}

.step-icon{
  width:30px;
  height:30px;
  border-radius:50%;
  border:2px solid var(--accent);
  display:grid;
  place-items:center;
  color:var(--accent);
  font-size:.95rem;
  margin-top:2px;
}

.timeline-step h4{
  margin:0 0 8px;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:1rem;
}

.timeline-step p{
  margin:0;
  color:#535353;
  line-height:1.8;
}

@media (max-width:1300px){
  .testimonials-grid,.solutions-grid,.network-top,.clinics-grid,.expertise-grid,.pricing-grid,.journey-grid{
    grid-template-columns:1fr 1fr;
  }

  .solutions-grid > :first-child,.network-top > :last-child,.journey-grid > :first-child{
    grid-column:1/-1;
  }

  .hero-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }

  .hero-copy{
    padding:38px 0 8px;
  }

  .hero-image-wrap img{
    object-position:60% top;
  }

  .hero-image-wrap{
    min-height:600px;
  }

  .specialty-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }

  .media-card.large{
    min-height:600px;
  }

  .results-grid{
    grid-template-columns:1fr 1fr;
    gap:20px;
  }
}

@media (max-width:980px){
  .testimonials-grid,.solutions-grid,.network-top,.clinics-grid,.expertise-grid,.pricing-grid,.journey-grid{
    grid-template-columns:1fr;
  }

  .cta-band img{
    height:320px;
    object-position:center 18%;
  }

  .hero{
    padding:14px 0 0;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .hero-copy{
    padding:8px 0;
  }

  .hero-title{
    max-width:none;
    font-size:clamp(2.25rem,8vw,3.3rem);
    margin-bottom:18px;
  }

  .hero-text{
    max-width:none;
    line-height:1.9;
  }

  .hero-actions{
    gap:14px;
  }

  .hero-image-wrap img{
    object-position:center top;
    transform:none;
  }

  .hero-image-wrap{
    min-height:430px;
    order:-1;
    border-radius:10px;
  }

  .specialty-block{
    padding:72px 0;
  }

  .specialty-grid,.specialty-grid.reverse{
    grid-template-columns:1fr;
    gap:22px;
  }

  .media-card{
    min-height:320px;
  }

  .media-card.large{
    min-height:480px;
  }

  .text-block p{
    max-width:none;
  }

  .results-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
}

button{
  font:inherit;
}

.soft-section{
  background:linear-gradient(180deg,#fafafa 0%,#fff 100%);
}

.section-title.red{
  color:var(--accent);
}

.btn-secondary:hover{
  border-color:rgba(0,0,0,.28);
}

.btn-soft:hover{
  background:#e2e2e2;
}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a{
  font-size:.86rem;
  font-weight:600;
  color:#222;
  letter-spacing:.02em;
}

.nav a:hover{
  color:var(--accent);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.mobile-drawer{
  position:fixed;
  left:0;
  right:0;
  top:78px;
  background:rgba(255,255,255,.98);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.06);
  transform:translateY(-120%);
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  z-index:999;
}

.mobile-drawer.open{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

.mobile-drawer .inner{
  width:min(calc(100% - 32px),var(--container));
  margin-inline:auto;
  padding:20px 0 26px;
  display:grid;
  gap:14px;
}

.mobile-drawer a{
  padding:8px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
  font-weight:700;
}

@media (max-width:640px){
  .hero-title{
    font-size:clamp(2.1rem,8vw,3rem);
  }

  .hero-title br{
    display:none;
  }

  .google-chip{
    flex-wrap:wrap;
    row-gap:4px;
    font-size:.8rem;
    margin-bottom:16px;
  }

  .hero-text{
    font-size:.95rem;
    line-height:1.8;
  }

  .hero-bullets{
    margin-bottom:24px;
  }

  .hero-btn-primary,.hero-btn-secondary{
    min-height:50px;
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-image-wrap{
    min-height:320px;
  }

  .cta-band{
    padding-bottom:40px;
  }

  .cta-band img{
    height:220px;
    object-position:center 16%;
  }
}

.hero-btn-primary,.hero-btn-secondary{
  min-height:52px;
  padding:0 32px;
  font-size:.72rem;
  letter-spacing:.18em;
}

.hero-btn-secondary{
  border-width:1.2px;
}

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

.headline-center .section-lead{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}

/* per-block focal tuning */

.text-block p:last-child{
  margin-bottom:0;
}

.panel:hover{
  transform:translateY(-3px);
}

.rating-blurb{
  padding-right:20px;
}

.cta-band::after{
  display:none;
}

footer{
  margin-top:80px;
  background:#f5f5f5;
  border-top:1px solid rgba(0,0,0,.06);
}

.footer-main{
  padding:88px 0 34px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr 1fr;
  gap:30px;
}

footer h4{
  margin:0 0 16px;
  font-size:1.22rem;
}

footer p,footer a,footer li{
  color:#444;
  line-height:1.8;
}

footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}

@media (max-width: 640px){
  .container{
    width:min(calc(100% - 24px),var(--container));
  }

  .section,.specialty-block,.network-block{
    padding:58px 0;
  }

  .hero{
    padding:18px 0 0px;
  }

  .stats-strip{
    grid-template-columns:1fr;
    padding:22px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .timeline-step{
    grid-template-columns:auto 1fr;
  }

  .step-no{
    grid-column:1/-1;
    padding-top:0;
  }

  .card,.expert-card,.solution-body,.copy-card,.panel-body,.quote-card{
    padding:22px;
  }

  .hero-image-wrap,.media-card,.pricing-visual,.cta-band{
    border-radius:18px;
  }
}

/* CF7 */

.anveli-cf7-wrap .wpcf7{
  max-width:100%;
}

.anveli-cf7-wrap .wpcf7-form{
  display:block;
}

.anveli-cf7-wrap .form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 12px;
}

.anveli-cf7-wrap .field,
.anveli-cf7-wrap .field-full{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.anveli-cf7-wrap .field-full{
  grid-column:1 / -1;
}

.anveli-cf7-wrap label{
  font-size:9px;
  font-weight:400;
  color:#6a6a6a;
  text-transform:none;
  line-height:1.3;
  display:block;
}

.anveli-cf7-wrap .form-note{
  margin:18px 0 8px;
  font-size:10px;
  color:var(--accent);
  letter-spacing:.08em;
  text-transform:uppercase;
  grid-column:1 / -1;
}

.anveli-cf7-wrap .upload-wrap{
  max-width:322px;
}

.anveli-cf7-wrap .wpcf7-form-control-wrap{
  display:block;
  width:100%;
}

.anveli-cf7-wrap input[type="text"],
.anveli-cf7-wrap input[type="email"],
.anveli-cf7-wrap input[type="tel"],
.anveli-cf7-wrap select,
.anveli-cf7-wrap textarea,
.anveli-cf7-wrap input[type="file"]{
  width:100%;
  border:0;
  background:#f8f8f8;
  min-height:48px;
  padding:0 16px;
  font-size:14px;
  color:#111;
  border-radius:10px;
  box-shadow:none;
  appearance:none;
  -webkit-appearance:none;
}

.anveli-cf7-wrap textarea{
  height:50px;
  padding-top:14px;
  resize:none;
}

.anveli-cf7-wrap input[type="file"]{
  padding:12px 16px;
}

.anveli-cf7-wrap .wpcf7-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:64px;
  min-width:324px;
  padding:0 56px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  border:0;
  margin-top:22px;
  cursor:pointer;
}

.anveli-cf7-wrap .wpcf7-spinner{
  display:block;
  margin-top:10px;
}

.anveli-cf7-wrap .wpcf7-not-valid-tip{
  font-size:12px;
  margin-top:6px;
}

.anveli-cf7-wrap .wpcf7-response-output{
  margin:16px 0 0 !important;
  padding:12px 14px !important;
  border-radius:10px;
  font-size:13px;
}

@media (max-width:720px){
  .anveli-cf7-wrap .form-grid{
    grid-template-columns:1fr;
  }

  .anveli-cf7-wrap .wpcf7-submit{
    min-width:0;
    width:100%;
    height:58px;
  }
}

.lang-switcher-fallback li a{
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
}


.brand:hover .brand-text,
.nav-menu a:hover,
.mobile-nav-menu a:hover,
.footer-logo:hover,
.footer-top a:hover{
  color:var(--accent);
}

.brand:focus-visible,
.nav-menu a:focus-visible,
.mobile-nav-menu a:focus-visible,
.footer-top a:focus-visible,
.blog-filter:focus-visible,
.post-card__title a:focus-visible,
.post-card__button:focus-visible,
.blog-feature-card__media:focus-visible,
.blog-pagination a:focus-visible,
.single-post-category:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
}

.brand-mark{
  width:40px;
  height:40px;
  object-fit:contain;
  display:block;
}

.brand-mark::after{
  display:none;
}

/* BLOG */

.page-blog .section{
  padding-top:88px;
  padding-bottom:88px;
}

.blog-hero-section{
  padding-top:28px !important;
}

.blog-hero-grid{
  grid-template-columns:440px minmax(0, 1fr);
  gap:72px;
}

.blog-hero-eyebrow{
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  margin-bottom:18px;
}

.blog-hero-title{
  font-size:72px;
  max-width:330px;
}

.blog-hero-subtitle{
  max-width:360px;
}

.blog-hero-text{
  margin-top:128px;
  max-width:420px;
}

.blog-hero-image{
  height:520px;
  border-radius:10px;
}

.blog-posts-section,
.blog-see-also-section{
  background:#f3f3f3;
}

.blog-posts-head{
  text-align:center;
}

.blog-posts-title{
  margin-bottom:10px;
}

.blog-posts-subtitle,
.blog-see-also__eyebrow{
  font-size:10px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#8a8a8a;
}

.blog-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px 28px;
  margin:32px 0 44px;
}

.blog-filter{
  position:relative;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#111;
}

.blog-filter.is-active,
.blog-filter:hover{
  color:var(--accent);
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:26px 18px;
}

.post-card{
  min-width:0;
}

.post-card__media{
  position:relative;
  display:block;
  height:236px;
  overflow:hidden;
  background:#cfcfcf;
}

.post-card__media img,
.post-card__placeholder{
  width:100%;
  height:100%;
  object-fit:cover;
  background:#bfbfbf;
}

.post-card__tags{
  position:absolute;
  top:8px;
  left:8px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  z-index:2;
}

.post-card__tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:18px;
  padding:3px 7px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(0,0,0,.08);
  font-size:7px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.post-card__body{
  padding:16px 0 0;
}

.post-card__title{
  margin:0;
  font-family:"Nunito",sans-serif;
  font-size:34px;
  font-weight:300;
  line-height:1.08;
  letter-spacing:-.03em;
}

.post-card__title a:hover{
  color:var(--accent);
}

.post-card__line{
  width:100%;
  max-width:164px;
  border-top:1px solid rgba(0,0,0);
  margin:16px 0 14px;
}

.post-card__excerpt{
  margin:0 0 20px;
  color:#4a4a4a;
  font-size:14px;
  line-height:1.75;
}

.post-card__button{
  min-height:30px;
  height:36px;
  padding:21px 30px;
  font-size:12px;
  letter-spacing:.14em;
  box-shadow:none;
  letter-spacing: 0.24px;
  font-weight: normal;
}

.blog-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:42px;
  flex-wrap:wrap;
}

.blog-pagination__item a,
.blog-pagination__item span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:13px;
}

.blog-pagination .current{
  background:var(--accent);
  color:#fff;
}

.page-blog .blog-see-also-section{
  background:#fff;
}
.blog-see-also__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:20px;
}

.blog-feature-card{
  min-width:0;
}

.blog-feature-card__media{
  position:relative;
  display:block;
  min-height:420px;
  overflow:hidden;
  border-radius:6px;
  color:#fff;
}

.blog-feature-card__media img,
.blog-feature-card__placeholder{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  background:#d2d2d2;
}

.blog-feature-card__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.46) 100%);
}

.blog-feature-card__content{
  position:absolute;
  inset:auto 18px 18px;
  z-index:1;
}

.blog-feature-card__content h3{
  margin:0 0 16px;
  font-family:"Nunito",sans-serif;
  font-weight:300;
  font-size:40px;
  line-height:1.02;
  letter-spacing:-.03em;
}
.blog-feature-card__line{
  width:100%;
  max-width:250px;
  border-top:1px solid rgba(255,255,255);
  margin:16px 0 14px;
}

.blog-feature-card__button{
  min-height:38px;
  height:38px;
  padding:0 18px;
  font-size:9px;
  box-shadow:none;
}


.blog-feature-card__dots{
  position:absolute;
  top:24px;
  right:24px;
  width:139px;
  height:128px;
  z-index:2;
  pointer-events:none;
}

.blog-feature-card__dots svg{
  display:block;
  width:100%;
  height:100%;
}

.blog-see-also-section{
  padding-top:74px !important;
  padding-bottom:76px !important;
}

.blog-see-also-section .blog-see-also__grid{
  display:grid;
  grid-template-columns:repeat(3, 406px);
  justify-content:center;
  gap:25px;
  margin-top:22px;
}

.blog-see-also-section .blog-feature-card{
  width:406px;
  min-width:406px;
}

.page-single-post{
  background:#fff;
}

.single-post-wrap{
  max-width:980px;
}

.single-post-title{
  max-width:860px;
  margin-bottom:26px;
}

.single-post-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.single-post-category{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:#f4f4f4;
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.single-post-image{
  margin-bottom:28px;
  border-radius:10px;
  overflow:hidden;
}

.single-post-image img{
  width:100%;
  height:auto;
}

.single-post-content{
  font-size:18px;
  line-height:1.8;
}

.single-post-content p{
  margin:0 0 1.2em;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4{
  margin:1.6em 0 .7em;
  font-family:"Nunito",sans-serif;
  font-weight:300;
  line-height:1.1;
}

.single-post-content ul,
.single-post-content ol{
  padding-left:1.25em;
}


@media (max-width: 1300px){
  .blog-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px){
  .blog-grid,
  .blog-see-also__grid,
  .blog-hero-grid{
    grid-template-columns:1fr;
  }

  .blog-hero-title{
    font-size:52px;
    max-width:none;
  }

  .blog-hero-text{
    margin-top:28px;
    max-width:none;
  }

  .blog-hero-image{
    order:-1;
    height:420px;
  }
}

@media (max-width: 720px){
  .page-blog .section{
    padding-top:56px;
    padding-bottom:56px;
  }

  .blog-hero-title,
  .post-card__title,
  .blog-feature-card__content h3{
    font-size:32px;
  }

  .blog-hero-image{
    height:260px;
  }

  .post-card__media{
    height:220px;
  }

  .blog-filters{
    justify-content:flex-start;
    gap:12px 16px;
  }

  .blog-pagination__item a,
  .blog-pagination__item span{
    min-width:36px;
    height:36px;
    padding:0 10px;
  }


}


/* BLOG REFINEMENTS */

.page-blog .blog-hero-section{
  padding-top:32px !important;
  padding-bottom:96px !important;
}

.page-blog .blog-hero-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:56px;
  align-items:stretch;
  padding-top:0;
}

.page-blog .blog-hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:500px;
  padding:28px 0 18px;
}

.page-blog .blog-hero-copy__top,
.page-blog .blog-hero-copy__bottom{
  max-width:460px;
}

.page-blog .blog-hero-eyebrow{
  display:inline-block;
  margin:0 0 24px;
  color:var(--accent);
  font-family:"Inter",sans-serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:.28em;
  text-transform:uppercase;
}

.page-blog .blog-hero-title{
  margin:0;
  max-width:430px;
  font-family:"Nunito",sans-serif;
  font-size:clamp(64px, 5.2vw, 84px);
  font-weight:300;
  line-height:.92;
  letter-spacing:-.05em;
}

.page-blog .blog-hero-subtitle{
  margin-top:12px;
  max-width:380px;
  font-size:18px;
  line-height:1.2;
  color:#1a1a1a;
}

.page-blog .blog-hero-text{
  margin:0;
  max-width:470px;
  font-size:16px;
  line-height:1.85;
  color:#1f1f1f;
}

.page-blog .blog-hero-image{
  position:relative;
  min-width:0;
  height:500px;
  border-radius:10px;
  overflow:hidden;
  background:#ddd;
}

.page-blog .blog-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.page-blog .blog-posts-section{
  background:#f3f3f3;
}

.page-blog .blog-posts-section{
  padding-top:82px !important;
  padding-bottom:88px !important;
}

.page-blog .blog-posts-head{
  text-align:center;
}

.page-blog .blog-posts-title{
  margin-bottom:14px;
  font-size:clamp(56px,4.2vw,76px);
  line-height:.96;
}

.page-blog .blog-posts-subtitle,
.page-blog .blog-see-also__eyebrow{
  font-size:12px;
  font-weight:500;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:#8a8a8a;
}

.page-blog .blog-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px 20px;
  margin:26px auto 54px;
  max-width:1180px;
}

.page-blog .blog-filter{
  position:relative;
  padding-bottom:5px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#171717;
}

.page-blog .blog-filter::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:transparent;
  transition:background-color .2s ease;
}

.page-blog .blog-filter:hover,
.page-blog .blog-filter.is-active{
  color:var(--accent);
}

.page-blog .blog-filter:hover::after,
.page-blog .blog-filter.is-active::after{
  background:var(--accent);
}

.page-blog .blog-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:36px 20px;
}

.page-blog .post-card{
  min-width:0;
  border-radius: 5px;
  border-bottom: 1px solid #DA291C;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%), #EBEBEB;
}

.page-blog .post-card__media{
  height:300px;
  border-radius:5px;
  border-bottom:1px solid #DA291C;
  background:#A9A9A9;
}

.page-blog .post-card__media img,
.page-blog .post-card__placeholder{
  background:#A9A9A9;
}

.page-blog .post-card__tags{
  top:12px;
  left:12px;
  gap:8px;
}

.page-blog .post-card__tag{
  min-height:22px;
  padding:4px 10px;
  border:none;
  border-radius:5px;
  
  background: #D9D9D9;
  font-size:10px;
  font-weight:700;
  line-height:1;
  letter-spacing:.08em;
  color:#111;
}

.page-blog .post-card__body{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  min-height:352px;
  padding:18px 23px 38px;
}

.page-blog .post-card__title{
  margin:0;
  font-family:"Inter",sans-serif;
  font-size:27px;
  font-weight:300;
  line-height:1.22;
  letter-spacing:-.035em;
  color:#000;
}

.page-blog .post-card__title a{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.page-blog .post-card__line{
  width:100%;
  max-width:228px;
  margin:20px 0 22px;
}

.page-blog .post-card__excerpt{
  margin:0 0 28px;
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:15px;
  line-height:1.82;
  color:#000;
}

.page-blog .post-card__button{
  margin-top:auto;
}

.page-blog .blog-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:56px;
}

.page-blog .blog-pagination__nav{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:22px;
  line-height:1;
  box-shadow:0 1px 0 rgba(0,0,0,.04);
}

.page-blog .blog-pagination__nav:hover{
  color:var(--accent);
}

.page-blog .blog-pagination__nav.is-disabled{
  opacity:.45;
  pointer-events:none;
}

.page-blog .blog-pagination__status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-width:86px;
  justify-content:center;
  font-size:10px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#6f6f6f;
}

.page-blog .blog-pagination__divider{
  display:inline-block;
  width:28px;
  height:1px;
  background:#989898;
}



.page-blog .blog-feature-card__media {
    position: relative;
    width: 406px;
    height: 555px;
    min-height: 555px;
    overflow: hidden;
    border-radius: 6px;
    color: #fff;
    display: block;
    isolation: isolate;
    background: #d2d2d2;
}

.page-blog .blog-feature-card__media img,
.page-blog .blog-feature-card__placeholder{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  background:#d2d2d2;
}

.page-blog .blog-feature-card__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.42) 100%);
}



.page-blog .blog-feature-card__content{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:3;
}

.page-blog .blog-feature-card__title{
  margin:0 0 16px;
  font-family:"Nunito",sans-serif;
  font-size:38px;
  font-weight:300;
  line-height:1.02;
  letter-spacing:-.03em;
}

.page-blog .blog-feature-card__title a{
  color:#fff;
}

.page-blog .blog-feature-card__title a:hover{
  color:#fff;
}

.page-blog .blog-feature-card__button {
    min-height: 36px;
    height: 50px;
    padding: 0 18px;
    font-size: 12px;
    box-shadow: none;
}


@media (max-width: 1500px){
  .page-blog .post-card__media{
    height:270px;
  }

  .page-blog .post-card__title{
    font-size:24px;
  }

  .page-blog .post-card__excerpt{
    font-size:14px;
  }

  .page-blog .post-card__tag{
    font-size:10px;
  }
}

@media (max-width: 1300px){
  .page-blog .blog-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}


@media (max-width: 980px){
  .blog-feature-card__dots{
    top:20px;
    right:20px;
    transform:scale(.9);
    transform-origin:top right;
  }

  .page-blog .blog-hero-grid,
  .page-blog .blog-grid,
  .blog-see-also-section .blog-see-also__grid{
    grid-template-columns:1fr;
  }

  .page-blog .blog-hero-copy{
    min-height:0;
    padding:0;
    gap:28px;
  }

  .page-blog .blog-hero-image{
    order:-1;
    height:420px;
  }

  .page-blog .blog-posts-title{
    font-size:48px;
  }

  .blog-see-also-section .blog-feature-card{
    width:100%;
    min-width:0;
  }

  .blog-feature-card__media{
    width:100%;
    height:420px;
    min-height:420px;
  }
}

@media (max-width: 720px){
  .blog-feature-card__dots{
    top:18px;
    right:18px;
    transform:scale(.78);
  }

  .page-blog .blog-hero-title{
    font-size:48px;
    max-width:none;
  }

  .page-blog .blog-hero-image{
    height:260px;
  }

  .page-blog .post-card__media{
    height:260px;
  }

  .blog-see-also-section .blog-feature-card{
    width:100%;
    min-width:0;
  }

  .page-blog .blog-feature-card__media{
    width:100%;
    min-height:420px;
    height:420px;
  }
  .page-blog .blog-feature-card__title{
    font-size:30px;
  }

  .page-blog .blog-filters{
    justify-content:flex-start;
  }
}



/* BEFORE / AFTER PAGE */
.page-before-after{
  background:#fff;
}

.page-before-after .section{
  padding-top:78px;
  padding-bottom:78px;
}

.before-after-hero-section{
  padding-top:32px !important;
  padding-bottom:78px !important;
}

.before-after-hero-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:56px;
  align-items:stretch;
}

.before-after-hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:520px;
  padding:22px 0 12px;
}

.before-after-hero-copy__top,
.before-after-hero-copy__bottom{
  max-width:430px;
}

.before-after-hero-eyebrow{
  display:inline-block;
  margin:0 0 20px;
  color:#8b8b8b;
  font-family:"Inter",sans-serif;
  font-size:10px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.before-after-hero-title{
  margin:0;
  max-width:440px;
  font-family:"Nunito",sans-serif;
  font-size:clamp(54px, 5vw, 80px);
  font-weight:300;
  line-height:.94;
  letter-spacing:-.05em;
  color:#171717;
}

.before-after-hero-subtitle{
  margin-top:10px;
  max-width:320px;
  font-size:18px;
  line-height:1.2;
  color:#1b1b1b;
}

.before-after-hero-subtitle strong,
.before-after-hero-subtitle a{
  color:var(--accent);
}

.before-after-hero-text{
  margin:0 0 24px;
  max-width:410px;
  font-size:14px;
  line-height:1.9;
  color:#363636;
}

.before-after-hero-button{
  min-height:36px;
  height:36px;
  padding:0 18px;
  font-size:9px;
  font-weight:500;
  letter-spacing:.02em;
  box-shadow:none;
}

.before-after-hero-image{
  position:relative;
  min-width:0;
  height:520px;
  border-radius:8px;
  overflow:hidden;
  background:#ddd;
}

.before-after-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.before-after-results-section{
  background:#f3f3f3;
}

.before-after-results-head{
  text-align:center;
  margin-bottom:46px;
}

.before-after-results-title{
  margin-bottom:10px;
  color:var(--accent);
}

.before-after-results-subtitle{
  font-size:10px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#8a8a8a;
}

.before-after-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:42px 56px;
}

.before-after-grid__item{
  min-width:0;
}

.ba-card{
  min-width:0;
}

.ba-card__media{
  position:relative;
  height:404px;
  overflow:hidden;
  background:#d7d7d7;
  border-radius:4px;
}

.ba-card__image,
.ba-card__placeholder{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.ba-card__placeholder--before{
  background:#a8a8a8;
}

.ba-card__placeholder--after{
  background:#c9c9c9;
}

.ba-card__before-wrap{
  position:absolute;
  inset:0;
  overflow:hidden;
  z-index:2;
  clip-path:inset(0 calc(100% - var(--ba-position, 50%)) 0 0);
}

.ba-card__before-wrap .ba-card__image,
.ba-card__before-wrap .ba-card__placeholder{
  width:100%;
  min-width:0;
  transform:none;
}

.ba-card__tag{
  position:absolute;
  top:10px;
  z-index:5;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:18px;
  padding:3px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  color:#8a8a8a;
  font-size:7px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.ba-card__tag--before{
  left:10px;
}

.ba-card__tag--after{
  right:10px;
}

.ba-card__divider{
  position:absolute;
  top:0;
  bottom:0;
  left:var(--ba-position, 50%);
  width:1px;
  background:rgba(255,255,255,.92);
  z-index:4;
  transform:translateX(-50%);
  pointer-events:none;
}

.ba-card__handle{
  position:absolute;
  top:50%;
  left:50%;
  width:26px;
  height:26px;
  border-radius:50%;
  background:#fff;
  color:#444;
  display:grid;
  place-items:center;
  box-shadow:0 6px 16px rgba(0,0,0,.16);
  transform:translate(-50%, -50%);
}

.ba-card__range{
  position:absolute;
  inset:0;
  z-index:6;
  width:100%;
  height:100%;
  opacity:0;
  cursor:ew-resize;
}

.ba-card__meta{
  padding-top:14px;
}

.ba-card__patient-label{
  margin-bottom:10px;
  font-size:10px;
  line-height:1.2;
  color:#989898;
}

.ba-card__name{
  margin:0 0 8px;
  font-family:"Nunito",sans-serif;
  font-size:18px;
  font-weight:300;
  line-height:1.1;
  color:#111;
}

.ba-card__details{
  margin:0;
  max-width:360px;
  font-size:12px;
  line-height:1.7;
  color:#1f1f1f;
}

.before-after-load-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.before-after-load-more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:32px;
  padding:0 14px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:10px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
}

.before-after-load-more[hidden]{
  display:none;
}

.before-after-see-also-section{
  background:#fff;
}

#before-after-contact{
  scroll-margin-top:110px;
}

@media (max-width: 980px){
  .before-after-hero-grid,
  .before-after-grid{
    grid-template-columns:1fr;
  }

  .before-after-hero-copy{
    min-height:0;
    gap:28px;
  }

  .before-after-hero-copy__top,
  .before-after-hero-copy__bottom,
  .before-after-hero-title,
  .before-after-hero-text{
    max-width:none;
  }

  .before-after-hero-image{
    order:-1;
    height:420px;
  }
}

@media (max-width: 720px){
  .page-before-after .section{
    padding-top:56px;
    padding-bottom:56px;
  }

  .before-after-hero-title{
    font-size:40px;
  }

  .before-after-hero-subtitle{
    font-size:16px;
  }

  .ba-card__media,
  .before-after-hero-image{
    height:280px;
  }

  .before-after-grid{
    gap:30px;
  }
}
