/* Clairfield Deutschland — Corporate Website
   CI nach Clairfield Brand Manual 2023: Clairfield-Blau #00294F, International-Blau #859FB0, Neutralgrau #DDE5EB */

/* Brand fonts — Manrope (digital), Arial fallback per brand manual */
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-SemiBold.otf") format("opentype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  /* Clairfield brand palette (Brand Manual 2023) */
  --navy: #072a50;        /* clairfield.com navy */
  --navy-dark: #04203d;
  --navy-light: #0e3a6b;
  --accent: #859fb0;      /* International blue */
  --accent-dark: #6f8a9d;
  --grey-bg: #f3f6f9;
  --grey-line: #dde5eb;   /* Neutral grey */
  --text: #1d1d1b;
  --text-soft: #5a6b7d;
  --white: #ffffff;
  --max: 1200px;
  --font: Arial, "Helvetica Neue", "Segoe UI", sans-serif;
  --font-head: "Manrope", Arial, "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-soft); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section.grey { background: var(--grey-bg); }
.section.navy { background: var(--navy); }
.section.navy h2, .section.navy h3, .section.navy p, .section.navy h1 { color: #fff; }
.section.navy p { color: #c5d2e2; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.lead { font-size: 1.18rem; color: var(--text-soft); max-width: 760px; }
.section.navy .lead { color: #c5d2e2; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  padding: 14px 30px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1.5px solid var(--accent);
  color: var(--navy);
  background: var(--accent);
  transition: all .25s ease;
  cursor: pointer;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn.outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn.outline:hover { background: var(--navy); color: #fff; }
.btn.light { background: transparent; color: #fff; border-color: #fff; }
.btn.light:hover { background: #fff; color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--grey-line);
  backdrop-filter: blur(6px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: flex-end; gap: 10px; text-decoration: none; }
.logo-sq { width: 17px; height: 17px; background: var(--navy); flex: none; margin-bottom: 5px; }
.logo-word {
  font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; line-height: .82;
  color: #1d1d1b; display: inline-flex; flex-direction: column; letter-spacing: -.02em;
}
.logo-sub {
  font-weight: 600; font-size: .58rem; letter-spacing: .3em; color: var(--accent);
  text-transform: lowercase; margin-top: 3px; padding-left: 2px;
}
.brand--rev .logo-word { color: #fff; }
.brand--rev .logo-sq { background: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.92rem; font-weight: 600; color: var(--navy);
  padding: 28px 0; display: inline-block; transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links .has-sub > a::after { content: "›"; margin-left: 6px; color: var(--accent); }
.submenu {
  position: absolute; top: 72px; left: -16px; min-width: 250px; z-index: 300;
  background: #fff; border: 1px solid var(--grey-line);
  box-shadow: 0 18px 40px rgba(7,42,80,.12);
  padding: 8px 0; list-style: none; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .2s ease;
}
.nav-links .has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 11px 22px; font-size: 0.88rem; }
.submenu a:hover { background: var(--grey-bg); color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; border: 1px solid var(--grey-line); border-radius: 4px; overflow: hidden; }
.lang-switch button {
  background: #fff; border: none; padding: 6px 11px; font-size: 0.8rem;
  font-weight: 600; color: var(--text-soft); cursor: pointer; transition: all .2s;
}
.lang-switch button.active { background: var(--navy); color: #fff; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
}
.hero::after {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 80% 20%, rgba(133,159,176,.22), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(14,58,107,.6), transparent 50%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 880px; }
.hero p { color: #d3deec; font-size: 1.25rem; max-width: 620px; margin: 22px 0 34px; }
.hero .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* slider dots */
.hero-slides { position: relative; }
.hero-slide { display: none; }
.hero-slide.active { display: block; animation: fade .8s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(12px);} to {opacity:1; transform: none;} }
.hero-dots { display: flex; gap: 10px; margin-top: 40px; }
.hero-dots button {
  width: 38px; height: 3px; background: rgba(255,255,255,.3); border: none; cursor: pointer; padding: 0;
}
.hero-dots button.active { background: var(--accent); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1; }
.stat .num span { color: var(--accent); }
.stat .label { color: #b9c7da; font-size: 0.92rem; margin-top: 10px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--grey-line); padding: 36px 30px;
  transition: all .25s ease; position: relative; overflow: hidden;
}
.card::before {
  content:""; position:absolute; left:0; top:0; height:3px; width:0; background: var(--accent); transition: width .3s;
}
.card:hover { box-shadow: 0 20px 44px rgba(7,42,80,.10); transform: translateY(-4px); }
.card:hover::before { width: 100%; }
.card .ic { font-size: 1.7rem; color: var(--accent); margin-bottom: 16px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.96rem; }
.card .more { color: var(--accent); font-weight: 600; font-size: 0.85rem; margin-top: 16px; display: inline-block; }

/* sector pills */
.sector-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.sector {
  background:#fff; border:1px solid var(--grey-line); padding: 28px 24px;
  display:flex; align-items:center; gap:16px; transition: all .2s;
}
.sector:hover { border-color: var(--accent); background: var(--grey-bg); }
.sector .ic { font-size: 1.5rem; }
.sector h3 { font-size: 1.05rem; margin: 0; }

/* transactions */
.deal {
  background:#fff; border:1px solid var(--grey-line); padding: 28px;
  display:flex; flex-direction:column; gap:14px; transition: all .25s;
}
.deal:hover { box-shadow: 0 16px 36px rgba(7,42,80,.10); transform: translateY(-3px); }
.deal .tag { font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); font-weight:700; }
.deal .firm { font-weight:700; color: var(--navy); font-size:1.05rem; }
.deal p { font-size:.92rem; }
.deal .role { margin-top:auto; padding-top:14px; border-top:1px solid var(--grey-line); font-size:.82rem; color:var(--text-soft); font-style:italic; }
.deal .flags { font-size: 1.1rem; }

/* team */
.member { text-align:center; }
.member .photo {
  width: 160px; height:160px; border-radius:50%; margin:0 auto 18px; overflow:hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display:grid; place-items:center; color:#fff; font-size:2.4rem; font-weight:600;
  border: 3px solid var(--grey-line);
}
.member .photo img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.member h3 { font-size:1.15rem; margin-bottom:4px; }
.member .role { color: var(--accent); font-weight:600; font-size:.9rem; margin-bottom:10px; }
.member p { font-size:.9rem; text-align:left; }
.member .links { margin-top:12px; display:flex; gap:14px; justify-content:center; }
.member .links a { font-size:.8rem; font-weight:600; color:var(--navy); letter-spacing:.04em; }
.member .links a:hover { color:var(--accent); }
.member.lead-card { grid-column: span 1; }

/* testimonials */
.quote { background:#fff; border-left:3px solid var(--accent); padding: 30px 32px; }
.quote p { font-size:1.05rem; color: var(--text); font-style:italic; }
.quote .who { margin-top:18px; font-weight:700; color:var(--navy); font-size:.95rem; font-style:normal; }
.quote .who span { display:block; font-weight:400; color: var(--text-soft); font-size:.85rem; }

/* page hero (sub pages) */
.page-hero {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 70%);
  color:#fff; padding: 110px 0 70px; position:relative; overflow:hidden;
}
.page-hero::after { content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 85% 25%, rgba(133,159,176,.20), transparent 45%); }
.page-hero .container { position:relative; z-index:2; }
.page-hero h1 { color:#fff; }
.page-hero p { color:#cdd9e8; max-width:680px; margin-top:14px; font-size:1.15rem; }
.breadcrumb { font-size:.82rem; color: var(--accent); margin-bottom:18px; letter-spacing:.04em; }
.breadcrumb a { color:#9fb2c9; }

/* lists */
.check-list { list-style:none; display:grid; gap:14px; }
.check-list li { padding-left: 30px; position:relative; color: var(--text-soft); }
.check-list li::before { content:"—"; position:absolute; left:0; color: var(--accent); font-weight:700; }

/* split */
.split { display:grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items:center; }

/* contact */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info p { margin-bottom: 6px; }
.contact-info .label { color: var(--navy); font-weight:700; margin-top:20px; }
form .field { margin-bottom:18px; }
form label { display:block; font-size:.85rem; font-weight:600; color:var(--navy); margin-bottom:6px; }
form input, form textarea {
  width:100%; padding:12px 14px; border:1px solid var(--grey-line); font-family:inherit; font-size:.95rem;
}
form input:focus, form textarea:focus { outline:none; border-color: var(--accent); }

/* news */
.news-card { background:#fff; border:1px solid var(--grey-line); transition: all .25s; }
.news-card:hover { box-shadow:0 16px 36px rgba(7,42,80,.10); transform:translateY(-3px); }
.news-card .img { height:180px; background: linear-gradient(135deg,var(--navy),var(--navy-light)); }
.news-card .body { padding: 24px; }
.news-card .date { font-size:.78rem; color:var(--accent); font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.news-card h3 { font-size:1.1rem; margin:10px 0; }

/* CTA band */
.cta-band { background: var(--navy); color:#fff; text-align:center; padding: 70px 0; }
.cta-band h2 { color:#fff; margin-bottom: 14px; }
.cta-band p { color:#c5d2e2; max-width:600px; margin:0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color:#aebfd2; padding: 64px 0 28px; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .name { color:#fff; font-weight:700; font-size:1.2rem; margin-bottom:14px; }
.footer-brand p { color:#8ea3bd; font-size:.9rem; }
.site-footer h4 { color:#fff; font-size:.85rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; }
.site-footer ul { list-style:none; display:grid; gap:10px; }
.site-footer ul a { color:#aebfd2; font-size:.9rem; transition:color .2s; }
.site-footer ul a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 44px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:.82rem; color:#8ea3bd;
}

.mt-0{margin-top:0}.mb-0{margin-bottom:0}

/* ---------- Bilingual toggle ---------- */
body[data-lang="de"] .t-en { display: none !important; }
body[data-lang="en"] .t-de { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links {
    position: fixed; top: 76px; right: 0; width: 300px; height: calc(100vh - 76px);
    background:#fff; flex-direction: column; align-items: flex-start; gap: 0;
    padding: 16px 0; border-left:1px solid var(--grey-line); transform: translateX(100%);
    transition: transform .3s ease; overflow-y:auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 24px; width:100%; }
  .nav-links .has-sub > a::after { float:right; }
  .submenu { position: static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; padding:0 0 0 16px; display:none; }
  .nav-links .has-sub.open-sub .submenu { display:block; }
  .menu-toggle { display: flex; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 36px 20px; }
  .grid.cols-3, .grid.cols-4, .sector-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4, .sector-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ============ clairfield.com Look & Feel ============ */
.logo-img { height: 40px; width: auto; display: block; }

/* Video hero */
.hero-video {
  position: relative; min-height: 90vh; display: flex; align-items: flex-end;
  overflow: hidden; color: #fff; background: var(--navy);
}
.hero-video video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-video::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,20,40,.35) 0%, rgba(0,20,40,.12) 40%, rgba(0,25,50,.9) 100%);
}
.hero-video .container { position: relative; z-index: 2; padding-top: 130px; padding-bottom: 72px; }
.hero-video .eyebrow { color: var(--accent); }
.hero-video h1 { color: #fff; font-size: clamp(2.2rem, 5.2vw, 3.7rem); max-width: 840px; }
.hero-video p { color: #e6edf5; font-size: 1.25rem; max-width: 610px; margin: 20px 0 32px; }
.hero-video .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Spotlight band */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; }
.spotlight > div { padding: 60px 56px; }
.spotlight .sp-news { background: var(--navy); }
.spotlight .sp-deal { background: var(--navy-dark); }
.spotlight .sp-label {
  font-family: var(--font-head); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}
.spotlight h3 { color: #fff; font-size: 1.45rem; margin-bottom: 14px; line-height: 1.25; }
.spotlight p { color: #c5d2e2; font-size: .98rem; }
.spotlight .more { color: var(--accent); font-weight: 600; font-size: .85rem; margin-top: 16px; display: inline-block; font-family: var(--font-head); }
.spotlight .sp-deal .logos { display: flex; align-items: center; gap: 18px; margin: 18px 0; }
.spotlight .sp-deal .logos img { max-height: 46px; max-width: 44%; background: #fff; padding: 8px 10px; }

/* Tombstone grid (clairfield.com) */
.tombstones { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--grey-line); border-left: 1px solid var(--grey-line); }
.tomb {
  border-right: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; background: #fff; transition: background .2s;
}
.tomb:hover { background: var(--grey-bg); }
.tomb .toprow { display: flex; justify-content: space-between; align-items: center; }
.tomb .sector { font-family: var(--font-head); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); }
.tomb .flags { display: flex; gap: 5px; }
.tomb .flags img { height: 13px; width: auto; }
.tomb .desc { font-size: .9rem; color: var(--text); flex: 1; line-height: 1.5; }
.tomb .logos { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 52px; }
.tomb .logos img { max-height: 46px; max-width: 46%; width: auto; object-fit: contain; }
.tomb .deal-type { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); font-weight: 700; font-family: var(--font-head); }
.tomb .role { font-size: .8rem; color: var(--text-soft); font-style: italic; border-top: 1px solid var(--grey-line); padding-top: 11px; }

/* News with real images */
.news-card .img.real { background-size: cover; background-position: center; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Footer tagline */
.footer-tagline { font-family: var(--font-head); font-size: 1.35rem; color: #fff; font-weight: 700; margin: 4px 0 10px; }

@media (max-width: 980px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight > div { padding: 44px 28px; }
  .tombstones { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tombstones { grid-template-columns: 1fr; }
  .hero-video { min-height: 78vh; }
}

/* ---- Kontaktformular ---- */
.cf-form .hp { position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.cf-form select {
  width:100%; padding:12px 14px; border:1px solid var(--grey-line); font-family:inherit; font-size:.95rem;
  background:#fff; color:var(--text);
}
.cf-form select:focus, .cf-form input:focus, .cf-form textarea:focus { outline:none; border-color:var(--accent); }
.cf-form .consent { display:flex; gap:10px; align-items:flex-start; font-size:.82rem; color:var(--text-soft); margin:4px 0 18px; }
.cf-form .consent input { width:auto; margin-top:3px; }
.form-note { padding:14px 18px; border-radius:4px; margin-bottom:22px; font-size:.92rem; }
.form-note.ok { background:#eef5ee; border:1px solid #b7d3b7; color:#2e5e2e; }
.form-note.err { background:#fbeeee; border:1px solid #e0b4b4; color:#7a2b2b; }


/* ---- FAQ ---- */
.faq-item { border-top:1px solid var(--grey-line); padding:22px 0; }
.faq-item:last-child { border-bottom:1px solid var(--grey-line); }
.faq-item h3 { font-size:1.1rem; margin-bottom:8px; }
.faq-item p { color:var(--text-soft); }

/* ============ Mega-Menü (clairfield.com-Stil) ============ */
.has-mega { position: static; }
.megamenu {
  position: absolute; left: 0; right: 0; top: 76px; background: #fff;
  border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line);
  box-shadow: 0 20px 40px rgba(7,42,80,.10);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease; z-index: 99;
}
.has-mega:hover .megamenu { opacity: 1; visibility: visible; transform: none; }
.mega-inner {
  max-width: var(--max); margin: 0 auto; padding: 32px 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
}
.mega-inner h5 {
  font-family: var(--font-head); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.mega-inner a { display: block; padding: 7px 0; font-size: .9rem; color: var(--navy); }
.mega-inner a:hover { color: var(--accent); }

@media (max-width: 980px) {
  .has-mega { position: relative; }
  .megamenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; display: none;
  }
  .has-mega.open-sub .megamenu { display: block; }
  .mega-inner { grid-template-columns: 1fr; padding: 4px 0 10px 16px; gap: 8px; }
  .mega-inner h5 { margin-top: 14px; }
}


/* Standorte-Länder als Links */
.locations-cards .card p a { color: var(--navy); border-bottom: 1px solid transparent; transition: all .15s; }
.locations-cards .card p a:hover { color: var(--accent); border-bottom-color: var(--accent); }


/* ---- Kontakt: Büro-Karten ---- */
.office-card{background:#fff;border:1px solid var(--grey-line);border-radius:6px;padding:30px 28px;transition:all .25s}
.office-card:hover{box-shadow:0 16px 36px rgba(7,42,80,.10);transform:translateY(-3px)}
.office-card h3{font-size:1.2rem;margin-bottom:12px}
.office-card h3 small{font-size:.68rem;color:var(--text-soft);font-weight:600}
.office-card .addr{font-size:.95rem;color:var(--text-soft);margin-bottom:20px;line-height:1.7}
.office-partner{display:flex;flex-direction:column;align-items:flex-start;gap:2px;border-top:1px solid var(--grey-line);padding-top:18px}
.office-partner img{width:56px;height:56px;border-radius:50%;object-fit:cover;object-position:top center;flex:none;border:2px solid var(--grey-line);margin-bottom:10px}
.office-partner strong{display:block;color:var(--navy);font-family:var(--font-head);font-size:.98rem}
.office-partner span{display:block;color:var(--accent);font-size:.8rem;margin:2px 0 3px}
.office-partner a{display:block;font-size:.85rem;color:var(--text-soft);margin-top:2px}
.office-partner a:hover{color:var(--accent)}
