:root {
  --bg: #f3eee4;
  --paper: #fffaf1;
  --ink: #0d1a22;
  --muted: #667178;
  --line: rgba(13, 26, 34, .14);
  --gold: #bd8a3a;
  --gold-2: #e8cf9a;
  --navy: #0d1a22;
  --green: #314a3d;
  --shadow: 0 26px 80px rgba(13, 26, 34, .14);
  --radius: 30px;
  --shell: min(1780px, calc(100vw - clamp(18px, 2.4vw, 46px)));
  --shell-pad: max(clamp(18px, 2.4vw, 46px), calc((100vw - var(--shell)) / 2));
  --h1: clamp(3.45rem, 5.05vw, 6.35rem);
  --h2: clamp(2.18rem, 2.85vw, 3.72rem);
  --h3: clamp(1.34rem, 1.42vw, 1.82rem);
  --h4: clamp(1.12rem, 1.12vw, 1.34rem);
  --h5: 1.02rem;
  --h6: .92rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 24% 0%, rgba(232, 207, 154, .22), transparent 28%), var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.052em;
  line-height: 1.04;
  font-weight: 700;
}
h1 { font-size: var(--h1); line-height: .98; letter-spacing: -.062em; }
h2 { font-size: var(--h2); line-height: 1.06; }
h3 { font-size: var(--h3); line-height: 1.12; }
h4 { font-size: var(--h4); line-height: 1.18; }
h5 { font-size: var(--h5); line-height: 1.24; letter-spacing: -.02em; }
h6 { font-size: var(--h6); line-height: 1.28; letter-spacing: .04em; text-transform: uppercase; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 90; background: #fff; padding: .8rem 1rem; border-radius: 1rem; }

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 32px));
  min-height: 72px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  background: rgba(13, 26, 34, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .20);
}
.topbar.slim { position: sticky; transform: none; left: auto; margin: 18px auto; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; min-width: max-content; }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #18242a; font-weight: 900; letter-spacing: .04em; }
.brand strong { display: block; font-size: 1rem; line-height: 1.1; }
.brand small { display: block; color: rgba(255, 255, 255, .66); font-size: .76rem; }
.nav-menu { display: flex; gap: 2px; align-items: center; }
.nav-menu a { color: rgba(255, 255, 255, .82); text-decoration: none; padding: 12px 15px; border-radius: 999px; font-size: .94rem; font-weight: 750; }
.nav-menu a:hover { background: rgba(255, 255, 255, .10); color: #fff; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 930px;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 3.2vw, 56px);
  padding: 180px var(--shell-pad) 78px;
  overflow: hidden;
  background: #101b21;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.94) contrast(1.04); }
.hero-shade { background: linear-gradient(90deg, rgba(8, 18, 24, .92) 0%, rgba(8, 18, 24, .66) 43%, rgba(8, 18, 24, .20) 100%), linear-gradient(0deg, rgba(8, 18, 24, .86) 0%, rgba(8, 18, 24, .08) 55%); }
.hero-content, .hero-card { position: relative; z-index: 1; }
.hero-content { max-width: 1040px; }
.eyebrow { margin: 0 0 14px; color: var(--gold-2); text-transform: uppercase; letter-spacing: .17em; font-weight: 900; font-size: .76rem; }
.eyebrow.dark { color: #8f672e; }
.hero h1 { color: #fff; }
.lead { max-width: 840px; color: rgba(255, 255, 255, .78); font-size: clamp(1.05rem, 1.05vw, 1.22rem); line-height: 1.78; letter-spacing: -.012em; margin: 26px 0 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn { border: 0; display: inline-flex; min-height: 48px; align-items: center; justify-content: center; text-decoration: none; border-radius: 999px; padding: 0 22px; font-weight: 850; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: linear-gradient(135deg, #f0d89d, #b98537); color: #132129; box-shadow: 0 16px 38px rgba(183, 132, 55, .28); }
.btn.ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid rgba(255, 255, 255, .20); }
.btn.mini { min-height: 40px; font-size: .86rem; padding: 0 15px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.hero-proof span { color: #fff; border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .08); border-radius: 999px; padding: 9px 12px; font-size: .9rem; }
.hero-card { align-self: end; padding: 28px; border-radius: var(--radius); background: rgba(244, 239, 230, .92); box-shadow: var(--shadow); border: 1px solid rgba(255, 255, 255, .28); }
.hero-card strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 2.5vw, 3rem); line-height: 1; letter-spacing: -.045em; }
.hero-card span { display: block; margin-top: 8px; font-weight: 850; }
.hero-card small { display: block; color: var(--muted); margin-top: 12px; }

.intro, .section-panel, .objects, .process, .contact, .direct-contact, .legal, .footer { width: var(--shell); margin-inline: auto; }
.intro { padding: clamp(94px, 7.4vw, 150px) 0 clamp(64px, 5vw, 96px); }
.grid-two { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(38px, 4.8vw, 86px); align-items: start; }
.intro p:not(.eyebrow) { font-size: clamp(1.04rem, 1vw, 1.18rem); color: #4d5a60; line-height: 1.78; margin: 36px 0 0; max-width: 920px; }

.section-head { display: grid; grid-template-columns: minmax(170px, .2fr) minmax(0, .9fr) minmax(320px, .45fr); align-items: end; gap: clamp(24px, 3vw, 54px); margin-bottom: 30px; }
.section-head p:last-child { color: var(--muted); margin: 0; line-height: 1.7; }
.object-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); gap: clamp(18px, 1.5vw, 28px); }
.object-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(13, 26, 34, .08); }
.object-card.large { grid-row: span 2; }
.object-card img { width: 100%; height: clamp(330px, 22vw, 430px); object-fit: cover; }
.object-card.large img { height: clamp(620px, 43vw, 790px); }
.object-card > div { padding: clamp(22px, 1.7vw, 32px); }
.tag { display: inline-flex; margin-bottom: 13px; border: 1px solid rgba(143, 103, 46, .28); color: #8f672e; border-radius: 999px; padding: 6px 10px; font-weight: 850; font-size: .78rem; }
.object-card p { color: var(--muted); line-height: 1.72; }
dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 0; }
dt { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
dd { margin: 0; font-weight: 900; }

.section-panel { margin-top: clamp(92px, 7vw, 142px); padding: clamp(42px, 4vw, 72px); border-radius: var(--radius); background: linear-gradient(135deg, #12252e, #0d1a22); color: #fff; box-shadow: var(--shadow); }
.section-panel h2 { color: #fff; }
.section-panel p:not(.eyebrow) { color: rgba(255, 255, 255, .75); font-size: clamp(1rem, 1vw, 1.13rem); line-height: 1.76; }
.steps { display: grid; gap: 14px; }
.steps div { display: flex; align-items: center; gap: 18px; padding: 20px; border-radius: 22px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12); }
.steps b { color: var(--gold-2); }

.process { padding: clamp(94px, 7.5vw, 156px) 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.4vw, 24px); }
.process-grid article { background: rgba(255, 250, 241, .76); border: 1px solid var(--line); border-radius: 26px; padding: clamp(22px, 1.6vw, 30px); min-height: 220px; }
.process-grid span { color: #8f672e; font-weight: 900; }
.process-grid h3 { margin-top: 18px; }
.process-grid p { color: var(--muted); margin: 10px 0 0; line-height: 1.68; }

.contact { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); gap: clamp(36px, 4vw, 74px); align-items: start; margin-bottom: 70px; padding: clamp(42px, 4vw, 74px); border-radius: var(--radius); background: #fffaf1; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 850; color: #26353b; }
.contact-form label:nth-child(4) { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid rgba(13, 26, 34, .16); border-radius: 18px; background: #fff; padding: 15px 16px; color: var(--ink); }
textarea { resize: vertical; }
.contact-form button { justify-self: start; }
.form-state { align-self: center; color: var(--green); font-weight: 850; }

.direct-contact {
  margin-bottom: clamp(56px, 5vw, 96px);
  padding: clamp(34px, 3.6vw, 64px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 241, .92), rgba(237, 226, 207, .82));
  border: 1px solid var(--line);
  box-shadow: 0 18px 56px rgba(13, 26, 34, .08);
}
.direct-contact-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .62fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(22px, 2.6vw, 42px);
}
.direct-contact-head p:last-child {
  color: var(--muted);
  margin: 0;
  line-height: 1.74;
}
.direct-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
}
.direct-card {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: clamp(22px, 1.8vw, 32px);
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(13, 26, 34, .12);
  text-decoration: none;
}
.direct-card strong {
  font-size: 1.05rem;
  color: var(--ink);
}
.direct-card span:last-child {
  color: #536268;
}
.direct-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d89d, #b98537);
  color: #132129;
  font-weight: 900;
}


.footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0 28px; color: #4e5a60; }
.footer nav { display: flex; gap: 18px; }
.footer a { color: #28383f; }
.cookie[hidden] { display: none !important; }
.cookie { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 80; width: min(880px, calc(100% - 28px)); display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 16px; border-radius: 24px; background: rgba(13, 26, 34, .94); color: #fff; box-shadow: 0 25px 80px rgba(0, 0, 0, .35); border: 1px solid rgba(255, 255, 255, .14); }
.cookie p { margin: 0; color: rgba(255, 255, 255, .82); }
.cookie div { display: flex; gap: 10px; flex-shrink: 0; }

.legal { padding: 130px 0 80px; }
.legal h1 { font-size: clamp(1.86rem, 2.95vw, 3.38rem); }
.legal p { max-width: 760px; color: #4e5a60; }
.legal .btn.ghost { color: var(--ink); border-color: var(--line); background: #fff; }

@media (min-width: 1600px) {
  :root { --shell: min(1780px, calc(100vw - clamp(18px, 2.4vw, 46px))); }
  .hero { min-height: 960px; }
}
@media (min-width: 1361px) and (max-width: 1599px) {
  :root { --shell: calc(100vw - clamp(46px, 5vw, 82px)); }
}
@media (min-width: 1101px) and (max-width: 1360px) {
  :root { --shell: calc(100vw - clamp(56px, 6.4vw, 96px)); --h1: clamp(3.15rem, 5.2vw, 5.6rem); }
  .topbar { width: var(--shell); }
  .hero { grid-template-columns: minmax(0, 1fr) 340px; }
  .process-grid article { min-height: 240px; }
}
@media (min-width: 721px) and (max-width: 1100px) {
  :root { --shell: calc(100vw - clamp(36px, 6vw, 72px)); --h1: clamp(3rem, 9vw, 5.1rem); --h2: clamp(2rem, 5vw, 3.2rem); }
  .topbar { top: 10px; border-radius: 26px; min-height: auto; align-items: flex-start; width: var(--shell); }
  .nav-toggle { display: block; border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .08); color: #fff; border-radius: 999px; padding: 10px 13px; }
  .nav-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; padding: 12px; background: rgba(13, 26, 34, .96); border-radius: 24px; flex-direction: column; }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; }
  .hero { grid-template-columns: 1fr; min-height: 830px; padding-top: 140px; }
  .hero-content { max-width: none; }
  .hero-card { max-width: 420px; }
  .grid-two, .contact, .direct-contact-head { grid-template-columns: 1fr; gap: 28px; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .object-grid { grid-template-columns: 1fr; }
  .object-card.large img, .object-card img { height: 390px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .direct-contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .cookie { display: block; }
  .cookie div { margin-top: 12px; flex-wrap: wrap; }
}
@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 520px); --h1: clamp(2.82rem, 13vw, 4.2rem); --h2: clamp(1.84rem, 8vw, 2.45rem); }
  body { font-size: 16px; }
  .topbar { top: 10px; width: var(--shell); border-radius: 26px; min-height: auto; align-items: flex-start; }
  .brand { min-width: 0; max-width: calc(100vw - 110px); }
  .brand strong, .brand small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-mark { width: 44px; height: 44px; flex: 0 0 auto; }
  .nav-toggle { display: block; border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .08); color: #fff; border-radius: 999px; padding: 10px 13px; }
  .nav-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; padding: 12px; background: rgba(13, 26, 34, .96); border-radius: 24px; flex-direction: column; }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; }
  .hero { grid-template-columns: 1fr; min-height: 760px; padding: 132px calc((100vw - var(--shell)) / 2) 52px; }
  .hero-card { max-width: 360px; }
  .hero-actions, .hero-proof { gap: 10px; }
  .grid-two, .contact, .direct-contact-head, .section-head { grid-template-columns: 1fr; gap: 26px; }
  .intro { padding-top: 78px; }
  .object-grid { grid-template-columns: 1fr; }
  .object-card.large img, .object-card img { height: 330px; }
  .section-panel, .contact { padding: 28px; }
  .process-grid, .contact-form, .direct-contact-grid { grid-template-columns: 1fr; }
  .footer { display: block; }
  .cookie { display: block; }
  .cookie div { display: grid; margin-top: 12px; }
  .btn { width: 100%; }
}
@media (max-width: 380px) {
  :root { --shell: calc(100vw - 22px); }
  .hero { padding-left: 11px; padding-right: 11px; }
}

/* v4 content expansion: denser object cards, real estate-specific sections and SVG icons */
.trust-strip,
.service-section,
.detail-band {
  width: var(--shell);
  margin-inline: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 24px);
  margin-top: clamp(10px, 1vw, 22px);
  margin-bottom: clamp(78px, 6vw, 128px);
}
.trust-strip article {
  min-height: 182px;
  padding: clamp(22px, 1.7vw, 32px);
  border-radius: 26px;
  background: rgba(255, 250, 241, .74);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(13, 26, 34, .065);
}
.trust-strip b,
.trust-strip strong,
.trust-strip span { display: block; }
.trust-strip b {
  color: #8f672e;
  font-weight: 900;
  letter-spacing: .14em;
  font-size: .76rem;
}
.trust-strip strong {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 1.15vw, 1.5rem);
  letter-spacing: -.035em;
}
.trust-strip span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.64;
}

.object-card > div {
  display: flex;
  flex-direction: column;
}
.object-card.large > div {
  min-height: clamp(360px, 24vw, 500px);
}
.object-card.large p {
  max-width: 860px;
}
.object-card.large dl {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px;
  margin-top: 24px;
  border-radius: 22px;
  background: rgba(13, 26, 34, .035);
  border: 1px solid rgba(13, 26, 34, .08);
}
.object-more {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.object-more span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(189, 138, 58, .1);
  border: 1px solid rgba(143, 103, 46, .18);
  color: #654719;
  font-weight: 850;
  font-size: .88rem;
}
.object-more svg,
.svg-icon svg,
.direct-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: rgba(143, 103, 46, .5);
  text-underline-offset: 5px;
}

.service-section {
  padding: clamp(92px, 7vw, 148px) 0 clamp(36px, 3vw, 66px);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 28px);
}
.service-grid article {
  min-height: 255px;
  padding: clamp(24px, 2vw, 36px);
  border-radius: 28px;
  background: rgba(255, 250, 241, .82);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(13, 26, 34, .06);
}
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d89d, #b98537);
  color: #132129;
  box-shadow: 0 14px 30px rgba(183, 132, 55, .22);
}
.service-grid h3 {
  margin-top: 26px;
}
.service-grid p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 0;
}

.detail-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 4vw, 78px);
  align-items: center;
  margin-top: clamp(42px, 4vw, 84px);
  padding: clamp(38px, 4vw, 68px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #12252e, #0d1a22);
  color: #fff;
  box-shadow: var(--shadow);
}
.detail-band h2 { color: #fff; }
.band-grid {
  display: grid;
  gap: 14px;
}
.band-grid article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}
.band-grid strong,
.band-grid span { display: block; }
.band-grid strong {
  font-size: 1.08rem;
}
.band-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.contact-points li {
  position: relative;
  padding-left: 28px;
  color: #4e5a60;
  line-height: 1.55;
}
.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d89d, #b98537);
}
.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-form label:nth-child(4) { grid-column: auto; }
.contact-form .wide { grid-column: 1 / -1; }
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  color: #4e5a60;
  line-height: 1.55;
}
.contact-form .check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.direct-icon {
  color: #132129;
}

@media (min-width: 1600px) {
  .service-grid article { min-height: 285px; }
  .trust-strip article { min-height: 200px; }
}

@media (min-width: 1101px) and (max-width: 1360px) {
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .object-card.large dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-band { grid-template-columns: 1fr; }
  .object-card.large dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .trust-strip,
  .service-grid,
  .detail-band,
  .object-card.large dl {
    grid-template-columns: 1fr;
  }
  .trust-strip { margin-bottom: 64px; }
  .detail-band { padding: 28px; }
  .service-section { padding-top: 72px; }
  .contact-form { grid-template-columns: 1fr; }
  .object-more span { width: 100%; }
}

/* v5 responsive typographic calibration: H1-H6 and hero height across laptops/external monitors */
:root {
  --h1: clamp(3.05rem, 4.62vw, 5.95rem);
  --h2: clamp(2.02rem, 2.62vw, 3.42rem);
  --h3: clamp(1.28rem, 1.30vw, 1.68rem);
  --h4: clamp(1.08rem, 1.02vw, 1.28rem);
  --h5: clamp(.98rem, .82vw, 1.08rem);
  --h6: clamp(.78rem, .62vw, .92rem);
}

.hero {
  min-height: clamp(720px, 100svh, 920px);
  padding-top: clamp(128px, 14svh, 178px);
  padding-bottom: clamp(46px, 7svh, 78px);
}
.hero h1 {
  text-wrap: balance;
}
.hero .lead {
  max-width: min(820px, 54vw);
}

@media (min-width: 1900px) {
  :root {
    --shell: min(1880px, calc(100vw - 96px));
    --h1: clamp(4.85rem, 3.85vw, 6.45rem);
    --h2: clamp(2.85rem, 2.22vw, 3.78rem);
    --h3: clamp(1.48rem, 1.05vw, 1.82rem);
    --h4: clamp(1.16rem, .82vw, 1.38rem);
    --h5: clamp(1.02rem, .68vw, 1.12rem);
    --h6: clamp(.82rem, .50vw, .94rem);
  }
  .topbar { width: min(1420px, calc(100% - 96px)); }
  .hero {
    min-height: clamp(820px, 92svh, 980px);
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  }
  .hero h1 { }
}

@media (min-width: 1720px) and (max-width: 1899px) {
  :root {
    --shell: min(1780px, calc(100vw - 78px));
    --h1: clamp(4.35rem, 3.75vw, 5.85rem);
    --h2: clamp(2.65rem, 2.25vw, 3.55rem);
    --h3: clamp(1.42rem, 1.04vw, 1.76rem);
    --h4: clamp(1.14rem, .84vw, 1.34rem);
    --h5: clamp(1rem, .68vw, 1.10rem);
    --h6: clamp(.80rem, .50vw, .92rem);
  }
  .hero { min-height: clamp(790px, 94svh, 940px); }
  .hero h1 { }
}

@media (min-width: 1600px) and (max-width: 1719px) {
  :root {
    --shell: calc(100vw - 72px);
    --h1: clamp(4.05rem, 3.72vw, 5.35rem);
    --h2: clamp(2.48rem, 2.20vw, 3.30rem);
    --h3: clamp(1.38rem, 1.02vw, 1.70rem);
    --h4: clamp(1.12rem, .84vw, 1.30rem);
    --h5: clamp(.98rem, .68vw, 1.08rem);
    --h6: clamp(.78rem, .50vw, .90rem);
  }
  .hero {
    min-height: clamp(760px, 95svh, 900px);
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  }
  .hero h1 { }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  :root {
    --shell: calc(100vw - clamp(58px, 5vw, 86px));
    --h1: clamp(3.72rem, 3.82vw, 4.95rem);
    --h2: clamp(2.34rem, 2.28vw, 3.08rem);
    --h3: clamp(1.34rem, 1.05vw, 1.62rem);
    --h4: clamp(1.10rem, .86vw, 1.26rem);
    --h5: clamp(.96rem, .70vw, 1.06rem);
    --h6: clamp(.76rem, .52vw, .88rem);
  }
  .hero {
    min-height: clamp(720px, 96svh, 860px);
    grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
    gap: clamp(24px, 2.4vw, 44px);
  }
  .hero h1 { }
  .hero-card { padding: 24px; }
}

@media (min-width: 1361px) and (max-width: 1439px) {
  :root {
    --shell: calc(100vw - clamp(58px, 5.6vw, 90px));
    --h1: clamp(3.42rem, 3.95vw, 4.55rem);
    --h2: clamp(2.18rem, 2.35vw, 2.92rem);
    --h3: clamp(1.30rem, 1.08vw, 1.56rem);
    --h4: clamp(1.08rem, .90vw, 1.24rem);
    --h5: clamp(.96rem, .72vw, 1.04rem);
    --h6: clamp(.76rem, .54vw, .88rem);
  }
  .hero {
    min-height: clamp(690px, 96svh, 820px);
    padding-top: clamp(116px, 13svh, 150px);
    grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
    gap: 30px;
  }
  .hero h1 { }
  .lead { font-size: clamp(1rem, .92vw, 1.12rem); line-height: 1.68; }
}

@media (min-width: 1280px) and (max-width: 1360px) {
  :root {
    --shell: calc(100vw - clamp(64px, 6.2vw, 96px));
    --h1: clamp(3.12rem, 4.08vw, 4.08rem);
    --h2: clamp(2.04rem, 2.48vw, 2.70rem);
    --h3: clamp(1.24rem, 1.12vw, 1.48rem);
    --h4: clamp(1.04rem, .92vw, 1.20rem);
    --h5: clamp(.94rem, .74vw, 1.02rem);
    --h6: clamp(.74rem, .55vw, .86rem);
  }
  .hero {
    min-height: clamp(660px, 96svh, 780px);
    padding-top: clamp(108px, 12svh, 140px);
    padding-bottom: clamp(36px, 5.8svh, 58px);
    grid-template-columns: minmax(0, 1fr) minmax(285px, 340px);
    gap: 26px;
  }
  .hero h1 { }
  .hero-card { padding: 22px; }
  .hero-card strong { font-size: clamp(1.68rem, 2.05vw, 2.35rem); }
  .hero-actions { margin-top: 24px; }
  .hero-proof { margin-top: 24px; }
}

@media (min-width: 1200px) and (max-width: 1279px) {
  :root {
    --shell: calc(100vw - clamp(64px, 6.8vw, 98px));
    --h1: clamp(2.92rem, 4.16vw, 3.72rem);
    --h2: clamp(1.96rem, 2.50vw, 2.58rem);
    --h3: clamp(1.22rem, 1.14vw, 1.44rem);
    --h4: clamp(1.02rem, .94vw, 1.18rem);
    --h5: clamp(.92rem, .76vw, 1rem);
    --h6: clamp(.73rem, .56vw, .84rem);
  }
  .hero {
    min-height: clamp(640px, 96svh, 750px);
    padding-top: clamp(104px, 11.5svh, 132px);
    padding-bottom: clamp(34px, 5.5svh, 54px);
    grid-template-columns: minmax(0, 1fr) minmax(260px, 315px);
    gap: 24px;
  }
  .hero h1 { }
  .hero .lead { max-width: 660px; font-size: clamp(.98rem, .92vw, 1.08rem); line-height: 1.62; }
  .hero-card { padding: 20px; }
  .hero-proof span { font-size: .82rem; padding: 7px 10px; }
}

@media (min-width: 1101px) and (max-width: 1199px) {
  :root {
    --shell: calc(100vw - clamp(54px, 6.5vw, 86px));
    --h1: clamp(2.70rem, 4.25vw, 3.42rem);
    --h2: clamp(1.88rem, 2.62vw, 2.42rem);
    --h3: clamp(1.18rem, 1.18vw, 1.38rem);
    --h4: clamp(1rem, .98vw, 1.15rem);
    --h5: clamp(.90rem, .78vw, .98rem);
    --h6: clamp(.72rem, .58vw, .82rem);
  }
  .topbar { min-height: 64px; }
  .brand-mark { width: 42px; height: 42px; }
  .nav-menu a { padding: 10px 12px; font-size: .86rem; }
  .hero {
    min-height: clamp(620px, 97svh, 720px);
    padding-top: clamp(96px, 11svh, 124px);
    padding-bottom: clamp(32px, 5svh, 50px);
    grid-template-columns: minmax(0, 1fr) minmax(244px, 295px);
    gap: 22px;
  }
  .hero h1 { }
  .hero .lead { max-width: 590px; font-size: .98rem; line-height: 1.58; margin-top: 20px; }
  .hero-actions { margin-top: 22px; }
  .hero-proof { margin-top: 20px; gap: 8px; }
  .hero-proof span { font-size: .78rem; padding: 7px 9px; }
  .hero-card { padding: 18px; border-radius: 24px; }
  .hero-card strong { font-size: clamp(1.45rem, 2vw, 2rem); }
}

@media (min-width: 981px) and (max-width: 1100px) {
  :root {
    --shell: calc(100vw - clamp(48px, 6vw, 74px));
    --h1: clamp(3rem, 6.0vw, 4.25rem);
    --h2: clamp(1.92rem, 3.7vw, 2.76rem);
    --h3: clamp(1.20rem, 1.60vw, 1.48rem);
    --h4: clamp(1.02rem, 1.24vw, 1.18rem);
    --h5: clamp(.92rem, .92vw, 1rem);
    --h6: clamp(.72rem, .72vw, .84rem);
  }
  .hero {
    min-height: clamp(700px, 96svh, 820px);
    padding-top: clamp(118px, 12svh, 140px);
    padding-bottom: clamp(42px, 6svh, 62px);
  }
  .hero h1,
  .hero .lead { }
  .hero .lead { font-size: clamp(1rem, 1.35vw, 1.12rem); line-height: 1.66; }
}

@media (min-width: 861px) and (max-width: 980px) {
  :root {
    --shell: calc(100vw - clamp(42px, 6vw, 68px));
    --h1: clamp(2.82rem, 6.2vw, 3.82rem);
    --h2: clamp(1.84rem, 4.0vw, 2.55rem);
    --h3: clamp(1.18rem, 1.72vw, 1.42rem);
    --h4: clamp(1rem, 1.28vw, 1.16rem);
    --h5: clamp(.90rem, .96vw, .98rem);
    --h6: clamp(.72rem, .75vw, .82rem);
  }
  .hero {
    min-height: clamp(680px, 96svh, 780px);
    padding-top: clamp(112px, 12svh, 132px);
    padding-bottom: 46px;
  }
  .hero h1,
  .hero .lead { }
}

@media (min-width: 721px) and (max-width: 860px) {
  :root {
    --shell: calc(100vw - clamp(34px, 5.8vw, 58px));
    --h1: clamp(2.56rem, 6.55vw, 3.42rem);
    --h2: clamp(1.76rem, 4.35vw, 2.34rem);
    --h3: clamp(1.16rem, 1.90vw, 1.36rem);
    --h4: clamp(.98rem, 1.36vw, 1.12rem);
    --h5: clamp(.88rem, 1.02vw, .96rem);
    --h6: clamp(.70rem, .82vw, .80rem);
  }
  .hero {
    min-height: clamp(650px, 96svh, 760px);
    padding-top: clamp(108px, 12svh, 128px);
    padding-bottom: 42px;
  }
  .hero h1,
  .hero .lead { }
  .hero .lead { font-size: .98rem; line-height: 1.58; margin-top: 20px; }
  .hero-actions { margin-top: 22px; }
  .hero-proof { margin-top: 18px; }
}

@media (min-width: 541px) and (max-width: 720px) {
  :root {
    --shell: min(100% - 30px, 620px);
    --h1: clamp(2.34rem, 8.2vw, 3.22rem);
    --h2: clamp(1.68rem, 5.8vw, 2.22rem);
    --h3: clamp(1.14rem, 2.8vw, 1.34rem);
    --h4: clamp(.98rem, 2.2vw, 1.10rem);
    --h5: clamp(.88rem, 1.65vw, .96rem);
    --h6: clamp(.70rem, 1.22vw, .80rem);
  }
  .hero {
    min-height: clamp(620px, 96svh, 740px);
    padding-top: clamp(112px, 14svh, 132px);
    padding-bottom: 40px;
  }
  .hero h1,
  .hero .lead { }
  .hero .lead { font-size: .96rem; line-height: 1.56; margin-top: 18px; }
}

@media (min-width: 381px) and (max-width: 540px) {
  :root {
    --shell: calc(100vw - 28px);
    --h1: clamp(2.18rem, 10.5vw, 2.92rem);
    --h2: clamp(1.56rem, 7.0vw, 2.06rem);
    --h3: clamp(1.10rem, 3.7vw, 1.26rem);
    --h4: clamp(.96rem, 2.8vw, 1.06rem);
    --h5: clamp(.86rem, 2.2vw, .94rem);
    --h6: clamp(.68rem, 1.7vw, .78rem);
  }
  .hero {
    min-height: clamp(590px, 96svh, 700px);
    padding-top: clamp(104px, 14svh, 124px);
    padding-bottom: 36px;
  }
  .hero .lead { font-size: .93rem; line-height: 1.52; margin-top: 16px; }
  .hero-actions { margin-top: 20px; }
  .hero-proof { margin-top: 16px; }
  .hero-card { max-width: 100%; padding: 18px; }
}

@media (max-width: 380px) {
  :root {
    --shell: calc(100vw - 22px);
    --h1: clamp(2.02rem, 11.2vw, 2.55rem);
    --h2: clamp(1.44rem, 7.4vw, 1.86rem);
    --h3: clamp(1.06rem, 4vw, 1.20rem);
    --h4: clamp(.94rem, 3vw, 1.02rem);
    --h5: .86rem;
    --h6: .68rem;
  }
  .hero {
    min-height: clamp(570px, 97svh, 670px);
    padding-top: 102px;
    padding-bottom: 32px;
  }
  .hero .lead { font-size: .90rem; line-height: 1.48; margin-top: 14px; }
  .hero-actions { margin-top: 18px; }
  .hero-proof { margin-top: 14px; }
  .hero-proof span { font-size: .76rem; padding: 7px 9px; }
}

@media (min-width: 1101px) and (max-height: 860px) {
  .hero {
    min-height: 100svh;
    padding-top: 108px;
    padding-bottom: 40px;
  }
  .hero h1 { font-size: min(var(--h1), 4.45rem); line-height: .96; }
  .hero .lead { margin-top: 18px; line-height: 1.55; }
  .hero-actions { margin-top: 20px; }
  .hero-proof { margin-top: 18px; }
}

@media (min-width: 1101px) and (max-height: 760px) {
  .topbar { top: 10px; min-height: 58px; padding-block: 8px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand small { display: none; }
  .hero {
    min-height: 100svh;
    padding-top: 86px;
    padding-bottom: 28px;
  }
  .hero h1 { font-size: min(var(--h1), 3.85rem); }
  .hero .lead { max-width: 660px; font-size: .94rem; line-height: 1.48; margin-top: 14px; }
  .hero-actions { margin-top: 16px; }
  .hero-proof { margin-top: 14px; gap: 8px; }
  .hero-proof span { padding: 6px 9px; font-size: .76rem; }
  .hero-card { padding: 16px; border-radius: 22px; }
  .hero-card strong { font-size: 1.52rem; }
  .hero-card small { margin-top: 8px; }
}

@media (min-width: 1101px) and (max-height: 680px) {
  .hero {
    align-items: center;
    padding-top: 76px;
    padding-bottom: 24px;
  }
  .hero h1 { font-size: min(var(--h1), 3.35rem); }
  .hero-proof { display: none; }
  .hero-card small { display: none; }
}

@media (max-width: 1100px) and (max-height: 760px) {
  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 38px;
  }
  .hero h1 { font-size: min(var(--h1), 3.35rem); }
  .hero .lead { line-height: 1.50; }
}

@media (max-width: 720px) and (max-height: 720px) {
  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 30px;
  }
  .hero h1 { font-size: min(var(--h1), 2.62rem); }
  .hero-proof { display: none; }
}


/* v6 precision layer: refined local typography, object-card fill, new real-estate sections */
:root {
  --display-font: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --text-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --measure: 68ch;
}
html {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
body { font-family: var(--text-font); letter-spacing: -.006em; }
h1, h2, h3, h4, h5, h6, .hero-card strong, .trust-strip strong { font-family: var(--display-font); font-weight: 760; }
h1 { line-height: .925; letter-spacing: -.061em; }
h2 { line-height: .985; letter-spacing: -.052em; }
h3 { line-height: 1.08; letter-spacing: -.038em; }
h4 { line-height: 1.16; letter-spacing: -.026em; }
h5 { line-height: 1.22; letter-spacing: -.018em; }
h6 { line-height: 1.24; letter-spacing: .08em; }
p, li, dd, input, select, textarea { line-height: 1.66; }
.lead { line-height: 1.64; letter-spacing: -.018em; }
.eyebrow { letter-spacing: .18em; line-height: 1.15; }
.nav-menu a, .btn, .tag, dt { letter-spacing: -.01em; }

.object-card.large > div { min-height: 0; }
.object-card.large p { max-width: var(--measure); }
.object-card-fill {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.object-card-fill div {
  min-height: 146px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 250, 241, .72);
  border: 1px solid rgba(13, 26, 34, .10);
}
.object-card-fill strong,
.object-card-fill span { display: block; }
.object-card-fill strong { font-family: var(--text-font); font-size: .92rem; color: #1b2b32; letter-spacing: -.01em; }
.object-card-fill span { margin-top: 8px; color: var(--muted); font-size: .91rem; line-height: 1.56; }
.object-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.object-actions .text-link { margin-top: 0; padding-top: 0; }
.btn.ghost-dark { background: rgba(13, 26, 34, .06); color: #132129; border: 1px solid rgba(13, 26, 34, .14); }

.strategy-section,
.market-proof,
.dataroom-section,
.faq-section { width: var(--shell); margin-inline: auto; }
.strategy-section { padding: clamp(92px, 7vw, 150px) 0 clamp(28px, 3vw, 60px); }
.section-head.compact { grid-template-columns: minmax(150px, .22fr) minmax(0, .92fr) minmax(300px, .48fr); margin-bottom: clamp(28px, 2.8vw, 48px); }
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 24px);
}
.strategy-grid article,
.faq-grid article {
  padding: clamp(22px, 1.75vw, 32px);
  border-radius: 28px;
  background: rgba(255, 250, 241, .78);
  border: 1px solid var(--line);
  box-shadow: 0 17px 46px rgba(13, 26, 34, .055);
}
.strategy-grid article { min-height: 330px; }
.strategy-grid h3 { margin-top: 24px; }
.strategy-grid p,
.faq-grid p { color: var(--muted); margin-bottom: 0; }
.strategy-grid ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.strategy-grid li { position: relative; padding-left: 18px; color: #405057; font-weight: 720; font-size: .93rem; }
.strategy-grid li::before { content: ""; position: absolute; left: 0; top: .66em; width: 7px; height: 7px; border-radius: 999px; background: #b98537; }

.market-proof {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 4.4vw, 86px);
  align-items: start;
  margin-top: clamp(38px, 4.2vw, 82px);
  padding: clamp(40px, 4vw, 72px);
  border-radius: var(--radius);
  background: #fffaf1;
  border: 1px solid var(--line);
  box-shadow: 0 18px 56px rgba(13, 26, 34, .07);
}
.proof-list { display: grid; gap: 14px; }
.proof-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, .45fr) minmax(0, .85fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(13, 26, 34, .035);
  border: 1px solid rgba(13, 26, 34, .08);
}
.proof-list b { color: #8f672e; letter-spacing: .14em; font-size: .76rem; }
.proof-list strong { font-size: 1.02rem; color: #15252c; }
.proof-list span { color: var(--muted); line-height: 1.56; }

.dataroom-section {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 4.2vw, 84px);
  align-items: center;
  padding: clamp(90px, 7vw, 150px) 0 clamp(32px, 3vw, 70px);
}
.dataroom-copy p:not(.eyebrow) { color: var(--muted); max-width: var(--measure); }
.dataroom-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.dataroom-card div {
  min-height: 190px;
  padding: clamp(22px, 1.7vw, 32px);
  border-radius: 28px;
  background: linear-gradient(135deg, #12252e, #0d1a22);
  color: #fff;
  box-shadow: 0 18px 48px rgba(13, 26, 34, .12);
}
.dataroom-card span { display: inline-flex; color: var(--gold-2); font-weight: 900; letter-spacing: .14em; }
.dataroom-card strong { display: block; margin-top: 26px; font-size: 1.16rem; }
.dataroom-card p { color: rgba(255,255,255,.72); margin-bottom: 0; }

.faq-section { padding: clamp(70px, 6vw, 124px) 0 clamp(18px, 2vw, 44px); }
.faq-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.35vw, 24px); }
.faq-grid article { min-height: 230px; }

.contact { margin-top: clamp(42px, 4vw, 84px); }
.contact-form label { font-size: .91rem; }
input, select, textarea { min-height: 50px; line-height: 1.35; }
textarea { line-height: 1.55; }

@media (min-width: 1900px) {
  h1 { letter-spacing: -.065em; }
  .hero h1 { }
  .strategy-grid article { min-height: 350px; }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  h1 { line-height: .935; letter-spacing: -.058em; }
  h2 { line-height: 1; }
  .object-card-fill { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  h1 { line-height: .95; letter-spacing: -.054em; }
  h2 { line-height: 1.01; letter-spacing: -.048em; }
  .section-head.compact { grid-template-columns: minmax(130px, .22fr) minmax(0, .9fr) minmax(260px, .5fr); }
  .strategy-grid, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strategy-grid article, .faq-grid article { min-height: 250px; }
  .proof-list article { grid-template-columns: 44px minmax(0, .48fr) minmax(0, .92fr); }
}
@media (min-width: 1101px) and (max-width: 1279px) {
  .object-card-fill { grid-template-columns: 1fr; }
  .object-card-fill div { min-height: auto; }
  .object-actions { align-items: flex-start; flex-direction: column; }
}
@media (min-width: 981px) and (max-width: 1100px) {
  h1 { line-height: .96; letter-spacing: -.052em; }
  h2 { line-height: 1.02; letter-spacing: -.046em; }
  .strategy-grid, .faq-grid, .dataroom-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .market-proof, .dataroom-section { grid-template-columns: 1fr; }
  .proof-list article { grid-template-columns: 44px 1fr; }
  .proof-list span { grid-column: 2; }
}
@media (max-width: 980px) {
  .section-head.compact, .market-proof, .dataroom-section { grid-template-columns: 1fr; }
  .strategy-grid, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .object-card-fill { grid-template-columns: 1fr; }
  .object-card-fill div { min-height: auto; }
  .object-actions { align-items: flex-start; flex-direction: column; }
  .dataroom-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  h1 { line-height: .98; letter-spacing: -.046em; }
  h2 { line-height: 1.04; letter-spacing: -.04em; }
  h3 { line-height: 1.12; letter-spacing: -.03em; }
  .strategy-grid, .faq-grid, .dataroom-card, .proof-list article { grid-template-columns: 1fr; }
  .strategy-section { padding-top: 70px; }
  .market-proof, .dataroom-card div { padding: 28px; }
  .proof-list span { grid-column: auto; }
}
@media (min-width: 1101px) and (max-height: 760px) {
  h1 { line-height: .96; letter-spacing: -.052em; }
}

/* v7 multilingual + quieter local headline typography */
:root {
  --display-font: "Aptos Display", "Iowan Old Style", "Baskerville", "Bodoni 72", "Libre Baskerville", "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  --text-font: "Aptos", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6, .hero-card strong, .trust-strip strong {
  font-family: var(--display-font);
  font-weight: 650;
  font-optical-sizing: auto;
}
h1 { line-height: .96; letter-spacing: -.048em; }
h2 { line-height: 1.015; letter-spacing: -.042em; }
h3 { line-height: 1.105; letter-spacing: -.030em; }
h4 { line-height: 1.17; letter-spacing: -.018em; }
h5 { line-height: 1.24; letter-spacing: -.012em; }
h6 { line-height: 1.28; letter-spacing: .075em; }
.hero h1 { }
html[lang="en"] .hero h1,
html[lang="fr"] .hero h1,
html[lang="it"] .hero h1 { }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}
.nav-menu .lang-switch a {
  padding: 7px 9px;
  font-size: .74rem;
  line-height: 1;
  letter-spacing: .04em;
  font-weight: 900;
}
.nav-menu .lang-switch a[aria-current="page"] {
  color: #132129;
  background: linear-gradient(135deg, #f0d89d, #b98537);
}
@media (min-width: 1280px) and (max-width: 1439px) {
  h1 { letter-spacing: -.044em; }
  h2 { letter-spacing: -.038em; }
  .hero h1 { }
  html[lang="en"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="it"] .hero h1 { }
}
@media (min-width: 1101px) and (max-width: 1279px) {
  h1 { line-height: .975; letter-spacing: -.040em; }
  h2 { line-height: 1.03; letter-spacing: -.034em; }
  .hero h1 { }
  html[lang="en"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="it"] .hero h1 { }
  .nav-menu a { padding-inline: 10px; }
  .nav-menu .lang-switch a { padding-inline: 7px; }
}
@media (max-width: 1100px) {
  .nav-menu.open { max-height: min(76vh, 620px); overflow: auto; }
  .lang-switch { width: 100%; justify-content: center; margin: 6px 0 0; }
}
@media (max-width: 720px) {
  h1 { line-height: 1.0; letter-spacing: -.036em; }
  h2 { line-height: 1.045; letter-spacing: -.030em; }
  h3 { letter-spacing: -.022em; }
}


/* v8 local fonts, smoother effects, improved contact storytelling, refined hero */

@font-face {
  font-family: "EBGaramondX25";
  src: url("/assets/fonts/EBGaramond12-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "EBGaramondX25";
  src: url("/assets/fonts/EBGaramond12-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "InterX25";
  src: url("/assets/fonts/Inter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "InterX25";
  src: url("/assets/fonts/Inter-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "InterX25";
  src: url("/assets/fonts/Inter-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "InterX25";
  src: url("/assets/fonts/Inter-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
:root {
  --display-font: "EBGaramondX25", "Cormorant Garamond", Georgia, serif;
  --text-font: "InterX25", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ease-premium: cubic-bezier(.22,.61,.36,1);
}
body { font-family: var(--text-font); }
h1, h2, h3, h4, h5, h6, .hero-card strong, .trust-strip strong {
  font-family: var(--display-font);
  font-weight: 700;
  font-kerning: normal;
  text-wrap: balance;
}
h1 { line-height: .94; letter-spacing: -.036em; }
h2 { line-height: 1.02; letter-spacing: -.026em; }
h3 { line-height: 1.12; letter-spacing: -.016em; }
h4 { line-height: 1.16; letter-spacing: -.012em; }
p, li, dd, input, select, textarea, .lead { letter-spacing: -.008em; }
.lead { line-height: 1.6; }
.eyebrow { letter-spacing: .18em; }

/* elegant but restrained motion */
.object-card,
.trust-strip article,
.service-grid article,
.strategy-grid article,
.faq-grid article,
.process-grid article,
.direct-card,
.contact-portrait-card,
.contact-mini-grid article,
.proof-list article,
.dataroom-card div {
  transition: transform .24s var(--ease-premium), box-shadow .28s var(--ease-premium), border-color .28s var(--ease-premium), background .28s var(--ease-premium);
}
.object-card:hover,
.trust-strip article:hover,
.service-grid article:hover,
.strategy-grid article:hover,
.faq-grid article:hover,
.process-grid article:hover,
.direct-card:hover,
.contact-portrait-card:hover,
.contact-mini-grid article:hover,
.proof-list article:hover,
.dataroom-card div:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(13,26,34,.11);
  border-color: rgba(143,103,46,.22);
}
.object-card img,
.contact-portrait-media img {
  transition: transform .65s var(--ease-premium), filter .4s var(--ease-premium);
}
.object-card:hover img,
.contact-portrait-card:hover .contact-portrait-media img { transform: scale(1.02); }
.btn,
.nav-menu a,
.lang-switch,
.hero-proof span,
.object-more span,
.tag { transition: all .22s var(--ease-premium); }
.btn.primary:hover { box-shadow: 0 22px 42px rgba(183,132,55,.26); }

/* Hero should finish cleanly on laptop and external monitors */
.hero {
  min-height: 100svh;
  padding-top: clamp(102px, 11.8svh, 152px);
  padding-bottom: clamp(30px, 4.8svh, 56px);
}
@media (min-width: 1101px) {
  .hero {
    height: 100svh;
    min-height: 100svh;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 395px);
    gap: clamp(22px, 2.5vw, 40px);
  }
  .hero-content { align-self: end; }
  .hero h1 { }
  .hero .lead { max-width: min(730px, 43vw); }
}
@media (min-width: 1900px) {
  h1 { font-size: clamp(4.35rem, 3.5vw, 5.65rem); line-height: .92; }
  h2 { font-size: clamp(2.82rem, 2.15vw, 3.55rem); }
  h3 { font-size: clamp(1.42rem, .98vw, 1.70rem); }
  .hero h1 { }
}
@media (min-width: 1720px) and (max-width: 1899px) {
  h1 { font-size: clamp(4.0rem, 3.52vw, 5.08rem); }
  h2 { font-size: clamp(2.56rem, 2.08vw, 3.18rem); }
  .hero h1 { }
}
@media (min-width: 1600px) and (max-width: 1719px) {
  h1 { font-size: clamp(3.72rem, 3.35vw, 4.75rem); }
  h2 { font-size: clamp(2.36rem, 2.02vw, 2.94rem); }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  h1 { font-size: clamp(3.34rem, 3.46vw, 4.28rem); line-height: .935; }
  h2 { font-size: clamp(2.18rem, 2.0vw, 2.72rem); }
  .hero h1 { }
  .hero .lead { max-width: 640px; }
}
@media (min-width: 1361px) and (max-width: 1439px) {
  h1 { font-size: clamp(3.08rem, 3.55vw, 3.92rem); line-height: .94; }
  h2 { font-size: clamp(2.02rem, 2.06vw, 2.52rem); }
  .hero h1 { }
  .hero .lead { max-width: 590px; }
}
@media (min-width: 1280px) and (max-width: 1360px) {
  h1 { font-size: clamp(2.82rem, 3.58vw, 3.62rem); line-height: .945; }
  h2 { font-size: clamp(1.94rem, 2.12vw, 2.38rem); }
  h3 { font-size: clamp(1.18rem, 1.04vw, 1.38rem); }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(270px, 325px); }
  .hero h1 { }
  .hero .lead { max-width: 560px; font-size: .98rem; }
}
@media (min-width: 1200px) and (max-width: 1279px) {
  h1 { font-size: clamp(2.62rem, 3.65vw, 3.34rem); line-height: .95; }
  h2 { font-size: clamp(1.86rem, 2.20vw, 2.24rem); }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(248px, 300px); }
  .hero h1 { }
  .hero .lead { max-width: 520px; font-size: .95rem; }
}
@media (min-width: 1101px) and (max-width: 1199px) {
  h1 { font-size: clamp(2.42rem, 3.75vw, 3.06rem); line-height: .955; }
  h2 { font-size: clamp(1.76rem, 2.24vw, 2.08rem); }
  h3 { font-size: clamp(1.14rem, 1.08vw, 1.28rem); }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(228px, 272px); }
  .hero h1 { }
  .hero .lead { max-width: 470px; font-size: .92rem; line-height: 1.52; }
  .hero-proof span { padding: 6px 8px; font-size: .75rem; }
}
@media (min-width:1101px) and (max-height:860px) {
  .hero { padding-top: 88px; padding-bottom: 24px; }
}
@media (min-width:1101px) and (max-height:760px) {
  .hero { padding-top: 76px; padding-bottom: 18px; }
  .hero h1 { line-height: .94; }
  .hero .lead { margin-top: 14px; font-size: .9rem; line-height: 1.46; }
  .hero-actions { margin-top: 16px; }
  .hero-proof { margin-top: 12px; }
  .hero-card { padding: 16px; }
}
@media (min-width:1101px) and (max-height:680px) {
  .hero-proof { display:none; }
  .hero .lead { font-size: .88rem; }
}

/* contact section: richer left column */
.contact { align-items: stretch; }
.contact-copy { display: grid; gap: 18px; }
.contact-copy > p:not(.eyebrow) { max-width: 48ch; margin: 0; }
.contact-story { display: grid; gap: 16px; margin-top: 4px; }
.contact-portrait-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 164px) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(248,241,228,.96));
  border: 1px solid rgba(13,26,34,.10);
  overflow: hidden;
}
.contact-portrait-card::after {
  content:"";
  position:absolute;
  inset:-40% auto auto -20%;
  width: 52%;
  height: 160%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.20), rgba(255,255,255,0));
  transform: rotate(22deg);
  pointer-events:none;
}
.contact-portrait-media {
  position: relative;
  min-height: 246px;
  border-radius: 20px;
  overflow: hidden;
  background: #e9dfd0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.contact-portrait-media img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.contact-portrait-body { display:grid; align-content:start; gap:10px; }
.contact-kicker {
  display:inline-flex;
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(189,138,58,.10);
  border: 1px solid rgba(143,103,46,.18);
  color:#7b5722;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.02em;
}
.contact-portrait-body strong {
  font-family: var(--display-font);
  font-size: 1.42rem;
  line-height: 1.06;
  letter-spacing: -.02em;
}
.contact-portrait-body p { margin:0; color:var(--muted); line-height:1.6; }
.contact-mini-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.contact-mini-grid article {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(13,26,34,.10);
}
.contact-mini-grid strong,
.contact-mini-grid span { display:block; }
.contact-mini-grid strong { font-size: .95rem; line-height:1.2; }
.contact-mini-grid span { margin-top: 7px; color: var(--muted); font-size: .88rem; line-height: 1.54; }
.contact-form {
  align-content:start;
  grid-auto-rows:min-content;
}
.contact-form label { gap: 7px; }
.contact-form .check { margin-top: 4px; }
.contact-form button { margin-top: 2px; }

@media (max-width: 980px) {
  .contact-portrait-card { grid-template-columns: 140px 1fr; }
}
@media (max-width: 720px) {
  .contact-portrait-card,
  .contact-mini-grid { grid-template-columns: 1fr; }
  .contact-portrait-media { min-height: 280px; }
}

/* small spacing refinements */
.section-head h2, .contact-copy h2, .market-proof h2, .direct-contact-head h2 { }
.section-head.compact h2 { }
.object-card.large > div { gap: 0; }
.object-actions { margin-top: 20px; }
.object-card-fill { margin-top: 18px; }
.object-card-fill div { min-height: 156px; }
.direct-card { position: relative; overflow: hidden; }
.direct-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(240,216,157,0), rgba(185,133,55,.78), rgba(240,216,157,0));
  opacity: .85;
}


/* v9 quieter pricing + straighter headline typography + no headline max-width */
:root {
  --display-font: "InterX25", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6,
.hero-card strong,
.trust-strip strong {
  font-family: var(--display-font) !important;
  font-weight: 760;
  letter-spacing: -.034em;
}
h1 { line-height: .965; letter-spacing: -.043em; }
h2 { line-height: 1.04; letter-spacing: -.034em; }
h3 { line-height: 1.13; letter-spacing: -.024em; }
h4 { line-height: 1.18; letter-spacing: -.016em; }
h5 { line-height: 1.24; letter-spacing: -.010em; }
h6 { line-height: 1.28; letter-spacing: .055em; }
.hero h1,
.section-head h2,
.contact-copy h2,
.market-proof h2,
.direct-contact-head h2,
.section-head.compact h2,
html[lang="en"] .hero h1,
html[lang="fr"] .hero h1,
html[lang="it"] .hero h1 {
}
.hero-content {
  max-width: min(1120px, 64vw);
}
@media (min-width: 1440px) {
  .hero-content { max-width: min(1180px, 66vw); }
}
@media (min-width: 1101px) and (max-width: 1360px) {
  .hero-content { max-width: min(720px, 59vw); }
}
@media (max-width: 1100px) {
  .hero-content { max-width: none; }
}
.hero-card strong {
  letter-spacing: -.038em;
  font-weight: 780;
}
.contact-mini-grid article,
.object-card-fill div,
.process-grid article,
.faq-grid article {
  border-style: solid;
}
/* Desktop/mobile spacing polish */
@media (min-width: 1101px) {
  .contact { grid-template-columns: minmax(420px, .88fr) minmax(0, 1.12fr); }
  .contact-form { gap: 15px 18px; }
}
@media (min-width: 1361px) and (max-width: 1599px) {
  .intro { padding-top: clamp(78px, 6vw, 116px); }
  .process { padding-top: clamp(78px, 6vw, 124px); }
}
@media (min-width: 721px) and (max-width: 1100px) {
  .contact { padding: clamp(34px, 5vw, 54px); }
  .contact-copy { gap: 16px; }
  .contact-portrait-card { max-width: 760px; }
}
@media (max-width: 720px) {
  .contact { margin-top: 56px; padding: 24px; border-radius: 26px; }
  .contact-copy { gap: 14px; }
  .contact-mini-grid article { padding: 15px; }
  .contact-form { gap: 14px; }
  input, select, textarea { border-radius: 16px; padding: 14px 15px; }
  .section-head h2, .contact-copy h2, .market-proof h2, .direct-contact-head h2 { }
}

/* v9 final: headline selectors must never be constrained by max-width */
h1, h2, h3, h4, h5, h6,
.hero h1,
.section-head h2,
.section-head.compact h2,
.contact-copy h2,
.market-proof h2,
.direct-contact-head h2,
html[lang="en"] .hero h1,
html[lang="fr"] .hero h1,
html[lang="it"] .hero h1 {
  max-width: none !important;
}


/* v9 audit fixes: straighter local headline font, stable hero height, no heading max-width, fit-content pills/buttons */
@font-face{font-family:"InterDisplayX25";src:url("/assets/fonts/InterDisplay-Regular.otf") format("opentype");font-weight:400;font-style:normal;font-display:block}
@font-face{font-family:"InterDisplayX25";src:url("/assets/fonts/InterDisplay-Medium.otf") format("opentype");font-weight:500;font-style:normal;font-display:block}
@font-face{font-family:"InterDisplayX25";src:url("/assets/fonts/InterDisplay-SemiBold.otf") format("opentype");font-weight:600;font-style:normal;font-display:block}
@font-face{font-family:"InterDisplayX25";src:url("/assets/fonts/InterDisplay-Bold.otf") format("opentype");font-weight:700;font-style:normal;font-display:block}
:root{
  --display-font:"InterDisplayX25","InterX25",Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  --h1:clamp(2.72rem,4.1vw,5.12rem);
  --h2:clamp(1.86rem,2.46vw,3.16rem);
  --h3:clamp(1.18rem,1.22vw,1.58rem);
  --h4:clamp(1.02rem,.98vw,1.24rem);
  --h5:clamp(.92rem,.78vw,1.04rem);
  --h6:clamp(.72rem,.55vw,.86rem);
}
h1,h2,h3,h4,h5,h6,.hero-card strong,.trust-strip strong{font-family:var(--display-font)!important;font-weight:650;max-width:none!important}
h1{line-height:.96;letter-spacing:-.043em}
h2{line-height:1.035;letter-spacing:-.032em}
h3{line-height:1.13;letter-spacing:-.020em}
h4{line-height:1.18;letter-spacing:-.014em}
h5{line-height:1.24;letter-spacing:-.010em}
h6{line-height:1.28;letter-spacing:.065em}
.section-head h2,.contact-copy h2,.market-proof h2,.direct-contact-head h2,.section-head.compact h2,.hero h1,html[lang="en"] .hero h1,html[lang="fr"] .hero h1,html[lang="it"] .hero h1{max-width:none!important}
.btn,.btn.mini,.hero-proof span,.object-more span,.tag,.contact-kicker,.lang-switch,.lang-switch a,.nav-menu .lang-switch a,.direct-icon,.svg-icon{width:fit-content!important;max-width:none!important;flex:0 0 auto}
.btn{white-space:nowrap}
.contact-form button,.cookie .btn,.hero-actions .btn,.object-actions .btn{justify-self:start;align-self:start}
@media(max-width:720px){.btn,.cookie .btn,.hero-actions .btn,.object-actions .btn,.contact-form button{width:fit-content!important;max-width:none!important}.hero-actions,.cookie div{align-items:flex-start;justify-items:start}}
.hero{min-height:100vh!important;height:auto;padding-top:clamp(104px,11vh,150px)!important;padding-bottom:clamp(30px,4.5vh,56px)!important}
@media(min-width:1101px){.hero{height:100vh!important;min-height:640px!important;max-height:none!important;align-items:end}.hero-content{align-self:end}.hero .lead{max-width:min(760px,46vw)}}
@media(min-width:1900px){:root{--h1:clamp(4.08rem,3.38vw,5.46rem);--h2:clamp(2.54rem,2.04vw,3.38rem)}.hero .lead{max-width:820px}}
@media(min-width:1720px) and (max-width:1899px){:root{--h1:clamp(3.74rem,3.32vw,4.96rem);--h2:clamp(2.36rem,2vw,3.08rem)}}
@media(min-width:1600px) and (max-width:1719px){:root{--h1:clamp(3.48rem,3.28vw,4.48rem);--h2:clamp(2.22rem,1.98vw,2.86rem)}}
@media(min-width:1440px) and (max-width:1599px){:root{--h1:clamp(3.10rem,3.25vw,4.04rem);--h2:clamp(2.02rem,1.94vw,2.58rem)}}
@media(min-width:1361px) and (max-width:1439px){:root{--h1:clamp(2.88rem,3.24vw,3.68rem);--h2:clamp(1.92rem,1.96vw,2.40rem)}}
@media(min-width:1280px) and (max-width:1360px){:root{--h1:clamp(2.62rem,3.26vw,3.36rem);--h2:clamp(1.80rem,2vw,2.22rem)}.hero .lead{max-width:590px}}
@media(min-width:1200px) and (max-width:1279px){:root{--h1:clamp(2.42rem,3.28vw,3.06rem);--h2:clamp(1.72rem,2.04vw,2.08rem)}}
@media(min-width:1101px) and (max-width:1199px){:root{--h1:clamp(2.24rem,3.30vw,2.82rem);--h2:clamp(1.64rem,2.08vw,1.98rem)}.hero .lead{max-width:500px}}
@media(min-width:1101px) and (max-height:820px){.hero{padding-top:84px!important;padding-bottom:22px!important}.hero .lead{margin-top:14px;line-height:1.48;font-size:.92rem}.hero-actions{margin-top:16px}.hero-proof{margin-top:12px}.hero-card{padding:16px}}
@media(min-width:1101px) and (max-height:700px){.hero{min-height:600px!important}.hero-proof{display:none}.hero-card small{display:none}}
@media(max-width:1100px){.hero{height:auto!important;min-height:680px!important;padding-top:116px!important;padding-bottom:42px!important}}
@media(max-width:720px){.hero{min-height:620px!important;padding-top:104px!important;padding-bottom:34px!important}.hero .lead{max-width:none}}
.intro{padding-bottom:clamp(58px,4.4vw,86px)}
.trust-strip{margin-bottom:clamp(70px,5.4vw,112px)}
.service-section{padding-top:clamp(82px,6.4vw,132px)}
.strategy-section{padding-top:clamp(82px,6.4vw,132px)}
.contact{gap:clamp(30px,3.4vw,64px)}
.contact-mini-grid article,.object-card-fill div,.direct-card{padding:clamp(16px,1.45vw,24px)}


/* v10: stable initial hero height + non-squeezed SVG icon capsules */
:root {
  --x25-vh-stable: 100vh;
}

/* One stable pixel-based viewport value is injected before CSS loads.
   This avoids the visible initial hero-height jump caused by vh/svh/dvh recalculation and font/layout reflow. */
.hero {
  height: var(--x25-vh-stable, 100vh) !important;
  min-height: var(--x25-vh-stable, 100vh) !important;
  max-height: none !important;
  contain: layout paint;
}

@media (min-width: 1101px) {
  .hero {
    height: var(--x25-vh-stable, 100vh) !important;
    min-height: var(--x25-vh-stable, 100vh) !important;
    padding-top: clamp(92px, 10vh, 142px) !important;
    padding-bottom: clamp(24px, 4vh, 50px) !important;
    overflow: hidden;
  }
  .hero-content,
  .hero-card {
    transform: translateZ(0);
  }
}

@media (min-width: 1101px) and (max-height: 820px) {
  .hero {
    padding-top: 82px !important;
    padding-bottom: 22px !important;
  }
  .hero .lead {
    margin-top: 13px;
    line-height: 1.46;
  }
}

@media (min-width: 1101px) and (max-height: 700px) {
  .hero-proof { display: none !important; }
  .hero-card small { display: none !important; }
  .hero .lead { font-size: .88rem; }
}

@media (max-width: 1100px) {
  .hero {
    height: auto !important;
    min-height: min(var(--x25-vh-stable, 100vh), 760px) !important;
    contain: layout paint;
  }
}

/* v10: do not apply text-fit rules to pure icon capsules. */
.svg-icon,
.direct-icon,
.brand-mark {
  display: inline-grid !important;
  place-items: center !important;
  aspect-ratio: 1 / 1 !important;
  width: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  flex: 0 0 48px !important;
  padding: 0 !important;
  line-height: 1 !important;
  border-radius: 999px !important;
}

.direct-icon {
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  flex-basis: 42px !important;
}

.brand-mark {
  width: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  flex-basis: 46px !important;
}

.svg-icon svg,
.direct-icon svg,
.object-more svg {
  display: block !important;
  width: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;
  flex: 0 0 20px !important;
  transform: none !important;
}

.service-grid article {
  overflow: hidden;
}

.service-grid article p {
  max-width: 62ch;
}

/* Text chips/buttons remain content-width, but only text-like elements, never icon-only capsules. */
.btn,
.hero-proof span,
.object-more span,
.tag,
.contact-kicker,
.lang-switch,
.nav-menu .lang-switch a {
  width: fit-content !important;
  max-width: none !important;
}

@media (max-width: 720px) {
  .brand-mark {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    flex-basis: 44px !important;
  }
  .svg-icon {
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    flex-basis: 46px !important;
  }
}


/* v11 refinement pass: spacing, typography, alignment, mobile polish */
:root {
  --section-space: clamp(74px, 6.6vw, 124px);
  --section-space-tight: clamp(52px, 4.6vw, 86px);
  --card-pad-lg: clamp(24px, 2vw, 34px);
  --card-pad-md: clamp(18px, 1.5vw, 24px);
  --card-gap: clamp(14px, 1.4vw, 22px);
  --border-soft: rgba(13,26,34,.10);
  --shadow-soft: 0 14px 40px rgba(13,26,34,.06);
  --shadow-mid: 0 18px 54px rgba(13,26,34,.09);
}
html, body {
  overflow-x: clip;
}
body {
  font-size: 16.25px;
  line-height: 1.62;
  color: #18262d;
  background:
    radial-gradient(circle at 18% 0%, rgba(232,207,154,.18), transparent 26%),
    linear-gradient(180deg, #f5f0e6 0%, #f1ece2 100%);
}
p, li, dd, input, select, textarea {
  line-height: 1.62;
}
a {
  text-decoration-thickness: 1.2px;
  text-underline-offset: 3px;
}
img {
  backface-visibility: hidden;
}
.topbar {
  min-height: 64px;
  padding: 9px 12px 9px 11px;
  gap: 14px;
  background: rgba(13, 26, 34, .78);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 16px 48px rgba(0,0,0,.22);
}
.nav-menu {
  gap: 4px;
}
.nav-menu a {
  font-size: .86rem;
  padding: 10px 13px;
  letter-spacing: -.006em;
}
.brand strong { font-size: .96rem; }
.brand small { font-size: .72rem; }
.lang-switch { margin-left: 2px; }

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8,18,24,.90) 0%, rgba(8,18,24,.62) 42%, rgba(8,18,24,.14) 100%),
    linear-gradient(0deg, rgba(8,18,24,.83) 0%, rgba(8,18,24,.08) 56%);
}
.hero-content {
  display: grid;
  align-content: end;
}
.hero h1 {
  margin-top: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,.14);
}
.lead {
  margin-top: 18px;
  font-size: clamp(.98rem, .95vw, 1.12rem);
  color: rgba(255,255,255,.82);
}
.hero-actions {
  gap: 12px;
  margin-top: 24px;
}
.hero-proof {
  gap: 9px;
  margin-top: 20px;
}
.hero-proof span {
  padding: 8px 11px;
  font-size: .83rem;
  line-height: 1.1;
}
.hero-card {
  justify-self: end;
  width: min(100%, 320px);
  padding: 22px 24px;
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(13,26,34,.18);
}
.hero-card strong {
  font-size: clamp(1.86rem, 2.2vw, 2.45rem);
  line-height: .98;
}
.hero-card span { font-size: .92rem; }
.hero-card small { font-size: .82rem; line-height: 1.45; }

.intro,
.process,
.service-section,
.strategy-section,
.faq-section {
  padding-top: var(--section-space);
}
.intro { padding-bottom: var(--section-space-tight); }
.process { padding-bottom: var(--section-space); }
.section-head,
.section-head.compact,
.direct-contact-head {
  align-items: start;
  margin-bottom: 24px;
}
.section-head p:last-child,
.direct-contact-head p:last-child,
.intro p:not(.eyebrow),
.dataroom-copy p:not(.eyebrow),
.market-proof p {
  font-size: .97rem;
  line-height: 1.68;
}

.trust-strip,
.object-grid,
.service-grid,
.process-grid,
.strategy-grid,
.faq-grid,
.direct-contact-grid,
.contact-mini-grid,
.dataroom-card {
  gap: var(--card-gap);
}
.trust-strip article,
.service-grid article,
.strategy-grid article,
.process-grid article,
.faq-grid article,
.object-card,
.direct-card,
.contact-mini-grid article,
.proof-list article,
.dataroom-card div,
.object-card-fill div {
  box-shadow: var(--shadow-soft);
  border-color: var(--border-soft);
}
.trust-strip article,
.service-grid article,
.strategy-grid article,
.process-grid article,
.faq-grid article {
  padding: var(--card-pad-lg);
  border-radius: 24px;
  align-content: start;
}
.trust-strip strong,
.service-grid h3,
.strategy-grid h3,
.process-grid h3,
.faq-grid h3 {
  font-weight: 650;
}
.trust-strip span,
.service-grid p,
.strategy-grid p,
.process-grid p,
.faq-grid p,
.object-card p,
.contact-portrait-body p,
.contact-mini-grid span,
.direct-card span:last-child {
  font-size: .93rem;
  line-height: 1.6;
}
.svg-icon,
.direct-icon {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 10px 22px rgba(185,133,55,.15);
}
.service-grid article,
.strategy-grid article,
.process-grid article,
.faq-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.service-grid h3,
.strategy-grid h3,
.process-grid h3,
.faq-grid h3 {
  margin-top: 18px;
  margin-bottom: 0;
}
.process-grid article { min-height: 190px; }
.strategy-grid article { min-height: 286px; }
.faq-grid article { min-height: 210px; }

.object-card {
  border-radius: 24px;
  box-shadow: var(--shadow-mid);
}
.object-card img {
  display: block;
}
.object-card > div {
  padding: var(--card-pad-lg);
}
.object-card.large > div {
  padding-bottom: 22px;
}
.object-card.large dl {
  gap: 12px 16px;
  padding: 16px;
  margin-top: 20px;
}
.object-more {
  gap: 8px;
  margin-top: 18px;
}
.object-more span {
  padding: 8px 11px;
  font-size: .82rem;
  line-height: 1.15;
}
.object-actions {
  gap: 10px;
  margin-top: 16px;
}
.text-link {
  font-size: .92rem;
  padding-top: 0;
}
.tag {
  padding: 6px 10px;
  font-size: .74rem;
}
.object-card-fill {
  gap: 10px;
}
.object-card-fill div {
  padding: 16px;
  min-height: 142px;
}
.object-card-fill strong { font-size: .9rem; }
.object-card-fill span { font-size: .87rem; }

.section-panel,
.detail-band,
.market-proof,
.direct-contact,
.contact {
  border-radius: 28px;
}
.section-panel,
.detail-band {
  box-shadow: 0 24px 64px rgba(13,26,34,.16);
}
.steps div,
.band-grid article {
  border-radius: 18px;
  padding: 18px 20px;
}
.steps div { min-height: 58px; }

.market-proof {
  padding: clamp(28px, 3vw, 54px);
}
.proof-list article {
  padding: 16px 18px;
  grid-template-columns: 46px minmax(0,.42fr) minmax(0,.9fr);
}
.proof-list strong { font-size: .96rem; }
.proof-list span { font-size: .9rem; }
.dataroom-card div {
  min-height: 178px;
  padding: 22px;
  border-radius: 24px;
}
.dataroom-card strong {
  margin-top: 18px;
  font-size: 1.04rem;
}
.dataroom-card p { font-size: .9rem; line-height: 1.55; }

.contact {
  padding: clamp(30px, 3.2vw, 54px);
  box-shadow: 0 18px 60px rgba(13,26,34,.08);
}
.contact-copy h2 {
  margin-top: 2px;
}
.contact-portrait-card {
  grid-template-columns: 152px minmax(0,1fr);
  gap: 16px;
  padding: 16px;
  border-radius: 22px;
}
.contact-portrait-media {
  min-height: 232px;
  border-radius: 18px;
}
.contact-portrait-body strong {
  font-size: 1.28rem;
}
.contact-mini-grid article {
  padding: 14px 16px;
  border-radius: 18px;
  min-height: 110px;
}
.contact-form {
  gap: 14px 14px;
}
.contact-form label {
  gap: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: #223139;
}
input, select, textarea {
  min-height: 48px;
  padding: 13px 14px;
  border-radius: 14px;
  border-color: rgba(13,26,34,.14);
  background: rgba(255,255,255,.96);
}
textarea {
  min-height: 144px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(185,133,55,.52);
  box-shadow: 0 0 0 4px rgba(185,133,55,.10);
}
.form-state {
  font-size: .9rem;
}

.direct-contact {
  padding: clamp(28px, 3vw, 48px);
}
.direct-card {
  padding: 18px 18px 20px;
  min-height: 124px;
  border-radius: 20px;
}
.direct-card strong { font-size: 1rem; }
.footer {
  padding-top: 12px;
  padding-bottom: 24px;
  font-size: .86rem;
}

/* finer desktop widths */
@media (min-width: 1600px) {
  .hero-card { width: 318px; }
  .service-grid article { min-height: 238px; }
}
@media (min-width: 1201px) {
  .contact-copy { max-width: 480px; }
}
@media (max-width: 1200px) {
  body { font-size: 16px; }
  .topbar { width: min(100% - 24px, 1280px); }
  .object-card-fill { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact-copy { max-width: none; }
}
@media (max-width: 980px) {
  :root { --section-space: clamp(62px, 7.2vw, 86px); }
  .section-head,
  .section-head.compact,
  .direct-contact-head { gap: 18px; }
  .object-card.large img,
  .object-card img { height: 340px; }
  .object-card.large dl { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-grid,
  .strategy-grid,
  .faq-grid,
  .trust-strip,
  .service-grid,
  .direct-contact-grid,
  .contact-mini-grid,
  .dataroom-card { grid-template-columns: 1fr 1fr; }
  .proof-list article { grid-template-columns: 44px 1fr; }
  .proof-list span { grid-column: 2; }
}
@media (max-width: 720px) {
  body { font-size: 15.85px; }
  .topbar {
    top: 10px;
    padding: 9px 10px;
    border-radius: 22px;
  }
  .brand { gap: 10px; }
  .brand strong { font-size: .88rem; }
  .brand small { font-size: .68rem; }
  .nav-toggle { padding: 9px 12px; }
  .hero {
    padding-top: 98px !important;
    padding-bottom: 26px !important;
    min-height: 610px !important;
    gap: 18px;
  }
  .hero h1 { font-size: clamp(2.02rem, 8.7vw, 2.78rem); }
  .lead { font-size: .94rem; line-height: 1.52; }
  .hero-actions { gap: 8px; }
  .hero-proof { gap: 8px; }
  .hero-proof span { font-size: .78rem; padding: 7px 10px; }
  .hero-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding: 16px 18px;
    border-radius: 18px;
  }
  .hero-card strong { font-size: 1.62rem; }
  .intro,
  .process,
  .service-section,
  .strategy-section,
  .faq-section { padding-top: 58px; }
  .section-panel,
  .detail-band,
  .market-proof,
  .contact,
  .direct-contact { padding: 24px; border-radius: 22px; }
  .trust-strip,
  .process-grid,
  .service-grid,
  .strategy-grid,
  .faq-grid,
  .direct-contact-grid,
  .contact-mini-grid,
  .dataroom-card,
  .object-card-fill { grid-template-columns: 1fr; }
  .object-grid { grid-template-columns: 1fr; }
  .object-card img,
  .object-card.large img { height: 285px; }
  .object-card > div,
  .trust-strip article,
  .service-grid article,
  .strategy-grid article,
  .process-grid article,
  .faq-grid article { padding: 20px; }
  .object-card.large dl { grid-template-columns: 1fr 1fr; }
  .object-card-fill div { min-height: auto; }
  .contact-portrait-card { grid-template-columns: 1fr; }
  .contact-portrait-media { min-height: 248px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .wide { grid-column: auto; }
  .direct-card { min-height: 112px; }
  .footer { display: grid; gap: 10px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: clamp(1.9rem, 9.2vw, 2.46rem); }
  .hero-card strong { font-size: 1.48rem; }
  .brand strong { font-size: .84rem; }
  .object-card.large dl { grid-template-columns: 1fr; }
}


/* v12 contact anchor/gap calibration across laptops and external monitors */
:root {
  --anchor-offset: 104px;
}
html {
  scroll-padding-top: var(--anchor-offset);
}
main section[id] {
  scroll-margin-top: calc(var(--anchor-offset) + 8px);
}
.contact {
  grid-template-columns: minmax(320px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(22px, 2.4vw, 40px);
  align-items: start;
}
.contact-copy,
.contact-form {
  min-width: 0;
}
.contact-copy {
  gap: 16px;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 46ch;
}
.contact-story {
  gap: 14px;
}
.contact-mini-grid {
  gap: 14px;
}
.contact-mini-grid article {
  min-height: 102px;
}
.contact-form {
  align-content: start;
  gap: 12px 14px;
}
.contact-form .wide textarea {
  min-height: 130px;
}

@media (min-width: 1720px) {
  :root { --anchor-offset: 108px; }
  .contact {
    grid-template-columns: minmax(360px, .84fr) minmax(680px, 1.16fr);
    gap: clamp(24px, 2vw, 34px);
  }
}

@media (min-width: 1440px) and (max-width: 1719px) {
  :root { --anchor-offset: 106px; }
  .contact {
    grid-template-columns: minmax(340px, .83fr) minmax(580px, 1.17fr);
    gap: clamp(22px, 2.1vw, 32px);
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  :root { --anchor-offset: 100px; }
  .contact {
    grid-template-columns: minmax(310px, .8fr) minmax(520px, 1.2fr);
    gap: 24px;
  }
  .contact-portrait-card {
    grid-template-columns: 138px minmax(0, 1fr);
  }
  .contact-mini-grid article {
    min-height: 96px;
  }
}

@media (min-width: 981px) and (max-width: 1279px) {
  :root { --anchor-offset: 96px; }
  .contact {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-copy {
    max-width: none;
  }
}

@media (max-width: 980px) {
  :root { --anchor-offset: 92px; }
  main section[id] {
    scroll-margin-top: calc(var(--anchor-offset) + 4px);
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  :root { --anchor-offset: 86px; }
  .contact {
    gap: 20px;
  }
  .contact-copy > p:not(.eyebrow) {
    max-width: none;
  }
}


/* v13: prevent font-swap jitter + section-head alignment refinement */
html {
  font-synthesis: none;
}
body {
  font-family: "InterX25", Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6, .hero-card strong, .trust-strip strong {
  font-family: "InterDisplayX25", "InterX25", Arial, sans-serif !important;
  font-synthesis: none;
}

/* Keep editorial section headers stable and visually balanced on laptop and large monitors. */
.section-head,
.section-head.compact {
  grid-template-columns: clamp(190px, 15vw, 280px) minmax(420px, 1fr) minmax(360px, .74fr);
  gap: clamp(24px, 2.6vw, 52px);
  align-items: start;
  margin-bottom: clamp(28px, 2.4vw, 42px);
}
.section-head .eyebrow,
.section-head.compact .eyebrow {
  margin-top: .42em;
  white-space: nowrap;
  letter-spacing: .18em;
}
.section-head h2,
.section-head.compact h2 {
  line-height: 1.02;
  letter-spacing: -.034em;
  margin: 0;
}
.section-head p:last-child,
.section-head.compact p:last-child {
  max-width: 46ch;
  justify-self: end;
  margin-top: .25em;
  line-height: 1.62;
}
.strategy-section .section-head.compact,
.faq-section .section-head.compact,
.process .section-head {
  margin-bottom: clamp(30px, 2.6vw, 46px);
}
.strategy-section {
  padding-top: clamp(76px, 6vw, 116px);
}
.strategy-grid article,
.service-grid article,
.faq-grid article,
.process-grid article {
  position: relative;
}
.strategy-grid article::before,
.service-grid article::before,
.faq-grid article::before,
.process-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(185,133,55,.0), rgba(185,133,55,.22), rgba(185,133,55,.0));
  opacity: .75;
}

/* More stable topbar metrics while fonts load. */
.topbar,
.nav-menu a,
.brand strong,
.brand small,
.lang-switch a {
  font-family: "InterX25", Arial, sans-serif;
  font-synthesis: none;
}
.topbar {
  contain: layout paint;
}

@media (min-width: 1600px) {
  .section-head,
  .section-head.compact {
    grid-template-columns: clamp(210px, 15vw, 292px) minmax(560px, 1fr) minmax(420px, .68fr);
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .section-head,
  .section-head.compact {
    grid-template-columns: 210px minmax(0, 1fr) minmax(330px, .72fr);
    gap: 28px;
  }
  .section-head h2,
  .section-head.compact h2 {
    font-size: clamp(1.86rem, 2.15vw, 2.46rem);
  }
  .section-head p:last-child,
  .section-head.compact p:last-child {
    max-width: 40ch;
  }
}
@media (min-width: 981px) and (max-width: 1279px) {
  .section-head,
  .section-head.compact {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 22px 28px;
  }
  .section-head p:last-child,
  .section-head.compact p:last-child {
    grid-column: 2;
    justify-self: start;
    max-width: 66ch;
    margin-top: -4px;
  }
}
@media (max-width: 980px) {
  .section-head,
  .section-head.compact {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .section-head .eyebrow,
  .section-head.compact .eyebrow {
    margin-top: 0;
  }
  .section-head p:last-child,
  .section-head.compact p:last-child {
    justify-self: start;
    max-width: 68ch;
    margin-top: 0;
  }
}
@media (max-width: 720px) {
  .section-head,
  .section-head.compact {
    gap: 10px;
  }
  .section-head h2,
  .section-head.compact h2 {
    font-size: clamp(1.48rem, 6.2vw, 2.06rem);
    line-height: 1.06;
    letter-spacing: -.028em;
  }
}


/* v14: strategy intro text removed, headline receives full remaining width */
.strategy-section .strategy-head {
  grid-template-columns: minmax(180px, .18fr) minmax(0, 1fr) !important;
  align-items: start;
  column-gap: clamp(24px, 3vw, 54px);
}
.strategy-section .strategy-head h2 {
  width: 100% !important;
  max-width: none !important;
}
@media (min-width: 1600px) {
  .strategy-section .strategy-head {
    grid-template-columns: minmax(210px, .16fr) minmax(0, 1fr) !important;
  }
}
@media (max-width: 980px) {
  .strategy-section .strategy-head {
    grid-template-columns: 1fr !important;
    row-gap: 12px;
  }
}


/* v15 contact-section rebalance: less overloaded, smaller column gap, landscape advisor image */
.contact {
  grid-template-columns: minmax(390px, .72fr) minmax(680px, 1.28fr) !important;
  gap: clamp(18px, 1.65vw, 30px) !important;
  align-items: stretch !important;
}
.contact-copy,
.contact-form {
  height: 100%;
}
.contact-copy {
  display: grid !important;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  gap: 14px !important;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 42ch !important;
  margin-bottom: 2px;
}
.contact-story {
  display: grid !important;
  grid-template-rows: auto auto;
  gap: 14px !important;
  align-content: start;
}
.contact-portrait-card.is-landscape {
  display: block !important;
  padding: 0 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  min-height: 0 !important;
  background: #f3ecdf;
}
.contact-portrait-card.is-landscape::after {
  display: none !important;
}
.contact-portrait-card.is-landscape .contact-portrait-media {
  min-height: clamp(220px, 14.5vw, 285px) !important;
  height: clamp(220px, 14.5vw, 285px) !important;
  width: 100% !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}
.contact-portrait-card.is-landscape .contact-portrait-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 44% 42% !important;
}
.contact-mini-grid.is-compact {
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: 12px !important;
}
.contact-mini-grid.is-compact article {
  min-height: 112px !important;
  padding: 16px 18px !important;
}
.contact-form {
  align-self: stretch;
  align-content: start;
  gap: 12px 14px !important;
}
.contact-form textarea {
  min-height: clamp(120px, 9vw, 154px) !important;
}
.contact-form .check {
  margin-top: 2px !important;
}
.contact-form button {
  margin-top: 6px !important;
}

@media (min-width: 1720px) {
  .contact {
    grid-template-columns: minmax(430px, .72fr) minmax(760px, 1.28fr) !important;
    gap: clamp(20px, 1.45vw, 28px) !important;
  }
  .contact-portrait-card.is-landscape .contact-portrait-media {
    height: clamp(250px, 14vw, 300px) !important;
  }
}
@media (min-width: 1440px) and (max-width: 1719px) {
  .contact {
    grid-template-columns: minmax(390px, .72fr) minmax(650px, 1.28fr) !important;
    gap: clamp(18px, 1.5vw, 26px) !important;
  }
  .contact-portrait-card.is-landscape .contact-portrait-media {
    height: clamp(224px, 13.6vw, 260px) !important;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .contact {
    grid-template-columns: minmax(360px, .75fr) minmax(560px, 1.25fr) !important;
    gap: 22px !important;
  }
  .contact-portrait-card.is-landscape .contact-portrait-media {
    height: 220px !important;
  }
  .contact-mini-grid.is-compact article {
    min-height: 104px !important;
    padding: 15px 16px !important;
  }
}
@media (min-width: 981px) and (max-width: 1279px) {
  .contact {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .contact-copy {
    grid-template-rows: auto;
  }
  .contact-portrait-card.is-landscape .contact-portrait-media {
    height: clamp(260px, 30vw, 340px) !important;
  }
}
@media (max-width: 980px) {
  .contact {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .contact-copy {
    grid-template-rows: auto;
  }
  .contact-portrait-card.is-landscape .contact-portrait-media {
    height: clamp(240px, 38vw, 330px) !important;
  }
}
@media (max-width: 720px) {
  .contact {
    gap: 18px !important;
  }
  .contact-portrait-card.is-landscape .contact-portrait-media {
    height: 245px !important;
  }
  .contact-mini-grid.is-compact {
    grid-template-columns: 1fr !important;
  }
  .contact-mini-grid.is-compact article {
    min-height: 94px !important;
  }
}


/* v16 contact rethink + precise hash scrolling */
:root { --nav-offset: 82px; }
html { scroll-padding-top: calc(var(--nav-offset) + 8px) !important; }
main section[id] { scroll-margin-top: calc(var(--nav-offset) + 8px) !important; }

.contact {
  grid-template-columns: minmax(460px, 0.98fr) minmax(520px, 1.02fr) !important;
  gap: clamp(18px, 2vw, 26px) !important;
  align-items: stretch !important;
}
.contact-copy,
.contact-form {
  min-width: 0;
  height: 100%;
}
.contact-copy {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px !important;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 39ch !important;
  margin-bottom: 2px;
}
.contact-story {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 14px !important;
  min-height: 100%;
}
.contact-portrait-card.is-landscape.is-clean {
  padding: 0 !important;
  border-radius: 24px !important;
  overflow: hidden;
  background: #f8f4eb;
  min-height: 278px;
  box-shadow: 0 14px 34px rgba(13,26,34,.07);
}
.contact-portrait-card.is-landscape.is-clean::after { display: none !important; }
.contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
  min-height: 278px !important;
  height: 278px !important;
  border-radius: 24px !important;
  overflow: hidden;
}
.contact-portrait-card.is-landscape.is-clean .contact-portrait-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.contact-mini-grid.is-compact {
  grid-template-columns: 1fr 1fr;
  gap: 14px !important;
}
.contact-mini-grid.is-compact article {
  min-height: 112px;
  padding: 16px 16px 17px !important;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 14px 14px !important;
}
.contact-form .wide { grid-column: 1 / -1; }
.contact-form textarea {
  min-height: 152px !important;
}
.contact-form button { margin-top: 0 !important; }
.contact-form label.switch {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  min-height: 40px;
  margin-top: 2px;
  font-weight: 700;
}
.contact-form label.switch input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.contact-form label.switch .switch-track {
  position: relative;
  display: inline-flex;
  width: 46px;
  min-width: 46px;
  height: 28px;
  border-radius: 999px;
  background: #d5d8db;
  box-shadow: inset 0 0 0 1px rgba(13,26,34,.10);
  transition: background .22s ease, box-shadow .22s ease;
}
.contact-form label.switch .switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(13,26,34,.18);
  transition: transform .22s ease;
}
.contact-form label.switch .switch-copy {
  display: flex;
  align-items: center;
  min-height: 28px;
  font-size: .92rem;
  line-height: 1.45;
  color: #2c3c44;
}
.contact-form label.switch input:checked + .switch-track {
  background: linear-gradient(135deg, #d7b36a, #c79339);
}
.contact-form label.switch input:checked + .switch-track .switch-thumb {
  transform: translateX(18px);
}
.contact-form label.switch input:focus-visible + .switch-track {
  box-shadow: inset 0 0 0 1px rgba(13,26,34,.10), 0 0 0 4px rgba(199,147,57,.18);
}
.contact-form label.switch input:invalid + .switch-track {
  box-shadow: inset 0 0 0 1px rgba(160,40,40,.25);
}

@media (min-width: 1720px) {
  :root { --nav-offset: 84px; }
  .contact {
    grid-template-columns: minmax(520px, 1fr) minmax(560px, 1fr) !important;
    gap: 22px !important;
  }
}
@media (min-width: 1440px) and (max-width: 1719px) {
  :root { --nav-offset: 82px; }
  .contact {
    grid-template-columns: minmax(470px, 1fr) minmax(540px, 1fr) !important;
    gap: 20px !important;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  :root { --nav-offset: 80px; }
  .contact {
    grid-template-columns: minmax(430px, .96fr) minmax(500px, 1.04fr) !important;
    gap: 18px !important;
  }
  .contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
    min-height: 248px !important;
    height: 248px !important;
  }
}
@media (min-width: 981px) and (max-width: 1279px) {
  :root { --nav-offset: 78px; }
  .contact {
    grid-template-columns: minmax(400px, .95fr) minmax(460px, 1.05fr) !important;
    gap: 18px !important;
  }
  .contact-copy > p:not(.eyebrow) { max-width: 37ch !important; }
  .contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
    min-height: 220px !important;
    height: 220px !important;
  }
}
@media (max-width: 980px) {
  :root { --nav-offset: 74px; }
  .contact {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .contact-copy > p:not(.eyebrow) { max-width: none !important; }
}
@media (max-width: 720px) {
  :root { --nav-offset: 70px; }
  .contact {
    gap: 18px !important;
  }
  .contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
    min-height: 208px !important;
    height: 208px !important;
  }
  .contact-mini-grid.is-compact {
    grid-template-columns: 1fr !important;
  }
  .contact-form label.switch {
    grid-template-columns: 48px minmax(0,1fr);
    gap: 10px;
  }
}


/* v17 headline line-control: keep H2-H5 as single-line as far as layout allows */
h2, h3, h4, h5 {
  text-wrap: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  max-width: none !important;
}
.section-head h2,
.section-head.compact h2,
.contact-copy h2,
.market-proof h2,
.direct-contact-head h2,
.object-card h3,
.service-grid h3,
.strategy-grid h3,
.faq-grid h3,
.process-grid h3,
.contact-mini-grid strong,
.direct-card strong {
  white-space: nowrap;
}
/* Long container headings may shrink a little before they wrap. */
.section-head h2,
.section-head.compact h2,
.market-proof h2,
.dataroom-section h2,
.direct-contact-head h2,
.contact-copy h2 {
  font-size: clamp(1.72rem, 2.15vw, 2.82rem);
  line-height: 1.03;
}
/* Prevent cramped card headings from forcing ugly layout. */
.service-grid h3,
.strategy-grid h3,
.faq-grid h3,
.process-grid h3,
.object-card h3 {
  font-size: clamp(1.08rem, 1.05vw, 1.42rem);
  line-height: 1.12;
}
@media (min-width: 1440px) {
  .section-head h2,
  .section-head.compact h2,
  .market-proof h2,
  .dataroom-section h2,
  .direct-contact-head h2,
  .contact-copy h2 {
    font-size: clamp(2.05rem, 2.05vw, 3.02rem);
  }
}
@media (min-width: 1101px) and (max-width: 1439px) {
  .section-head h2,
  .section-head.compact h2,
  .market-proof h2,
  .dataroom-section h2,
  .direct-contact-head h2,
  .contact-copy h2 {
    font-size: clamp(1.72rem, 2.25vw, 2.48rem);
  }
}
@media (max-width: 1100px) {
  h2, h3, h4, h5,
  .section-head h2,
  .section-head.compact h2,
  .contact-copy h2,
  .market-proof h2,
  .direct-contact-head h2,
  .object-card h3,
  .service-grid h3,
  .strategy-grid h3,
  .faq-grid h3,
  .process-grid h3 {
    white-space: normal;
    text-wrap: balance;
  }
}
@media (max-width: 720px) {
  .section-head h2,
  .section-head.compact h2,
  .market-proof h2,
  .dataroom-section h2,
  .direct-contact-head h2,
  .contact-copy h2 {
    font-size: clamp(1.52rem, 6.2vw, 2.06rem);
  }
}


/* v18 final audit pass: typography, spacing, cookie row, cross-device polish */
:root {
  --copy-sm: .945rem;
  --copy-md: 1rem;
  --copy-lg: 1.05rem;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-size: 16.65px;
  line-height: 1.64;
}
p, li, dd, input, select, textarea, .lead,
.intro p:not(.eyebrow),
.section-head p:last-child,
.direct-contact-head p:last-child,
.market-proof p,
.contact-copy p:not(.eyebrow) {
  font-size: var(--copy-md);
  line-height: 1.66;
}
.trust-strip span,
.service-grid p,
.strategy-grid p,
.process-grid p,
.faq-grid p,
.object-card p,
.object-card-fill span,
.proof-list span,
.band-grid span,
.direct-card span:last-child,
.contact-mini-grid span,
.form-state,
.footer {
  font-size: var(--copy-sm);
  line-height: 1.58;
}
.object-card dl dt { font-size: .78rem; }
.object-card dl dd { font-size: .96rem; }
.hero-proof span,
.object-more span,
.tag,
.contact-kicker { font-size: .78rem; }

/* cleaner heading behaviour */
h1, h2, h3, h4, h5 {
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}
@media (min-width: 1101px) {
  .section-head h2,
  .section-head.compact h2,
  .market-proof h2,
  .direct-contact-head h2,
  .contact-copy h2,
  .intro h2,
  .detail-band h2,
  .section-panel h2 {
    white-space: nowrap;
  }
  .service-grid h3,
  .strategy-grid h3,
  .process-grid h3,
  .faq-grid h3,
  .trust-strip strong,
  .direct-card strong,
  .contact-mini-grid strong,
  .object-card h3,
  .object-card-fill strong {
    white-space: nowrap;
  }
}
@media (max-width: 1100px) {
  .section-head h2,
  .section-head.compact h2,
  .market-proof h2,
  .direct-contact-head h2,
  .contact-copy h2,
  .intro h2,
  .detail-band h2,
  .section-panel h2,
  .service-grid h3,
  .strategy-grid h3,
  .process-grid h3,
  .faq-grid h3,
  .trust-strip strong,
  .direct-card strong,
  .contact-mini-grid strong,
  .object-card h3,
  .object-card-fill strong {
    white-space: normal;
  }
}

/* section head balance */
.section-head,
.section-head.compact,
.direct-contact-head {
  align-items: start;
  column-gap: clamp(18px, 2vw, 34px);
  row-gap: 12px;
}
.section-head p:last-child,
.section-head.compact p:last-child,
.direct-contact-head p:last-child {
  max-width: 52ch;
}

/* card polish */
.trust-strip article,
.service-grid article,
.strategy-grid article,
.process-grid article,
.faq-grid article,
.object-card,
.direct-card,
.contact-mini-grid article,
.object-card-fill div {
  border-color: rgba(13,26,34,.10);
  box-shadow: 0 10px 28px rgba(13,26,34,.055);
}
.trust-strip,
.service-grid,
.strategy-grid,
.process-grid,
.faq-grid,
.direct-contact-grid,
.object-grid,
.band-grid,
.proof-list,
.contact-mini-grid,
.object-card-fill {
  gap: clamp(14px, 1.45vw, 20px);
}
.object-card > div,
.trust-strip article,
.service-grid article,
.strategy-grid article,
.process-grid article,
.faq-grid article,
.direct-card,
.contact-mini-grid article,
.object-card-fill div {
  padding: clamp(18px, 1.5vw, 24px);
}
.object-card.large dl {
  padding: 14px 16px;
}
.process-grid article,
.strategy-grid article,
.faq-grid article {
  min-height: unset;
}
.proof-list article {
  grid-template-columns: 44px minmax(0,.38fr) minmax(0,1fr);
  min-height: 62px;
}

/* contact section final rebalance */
.contact {
  grid-template-columns: minmax(500px, 1fr) minmax(520px, 1fr) !important;
  gap: clamp(16px, 1.5vw, 22px) !important;
  padding: clamp(28px, 2.6vw, 42px) !important;
}
.contact-copy { gap: 12px !important; }
.contact-copy > p:not(.eyebrow) { max-width: 36ch !important; }
.contact-story { gap: 12px !important; }
.contact-portrait-card.is-landscape.is-clean {
  min-height: 264px;
}
.contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
  min-height: 264px !important;
  height: 264px !important;
}
.contact-mini-grid.is-compact {
  gap: 12px !important;
}
.contact-mini-grid.is-compact article {
  min-height: 102px;
}
.contact-form {
  gap: 12px 14px !important;
}
.contact-form label {
  font-size: .86rem !important;
}
.contact-form textarea {
  min-height: 142px !important;
}
.contact-form .switch-copy {
  font-size: .90rem !important;
  line-height: 1.4 !important;
}

/* cookie banner buttons always in one row */
.cookie {
  width: min(920px, calc(100% - 24px));
  gap: 14px;
  padding: 14px 16px;
}
.cookie p {
  font-size: .92rem;
  line-height: 1.45;
}
.cookie div {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 8px !important;
  min-width: max-content;
}
.cookie .btn {
  white-space: nowrap;
  padding: 9px 12px;
  min-height: 38px;
  font-size: .78rem;
  letter-spacing: -.006em;
}
@media (max-width: 980px) {
  body { font-size: 16px; }
  .section-head,
  .section-head.compact,
  .direct-contact-head { gap: 14px; }
  .contact {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .contact-copy > p:not(.eyebrow) { max-width: none !important; }
  .contact-portrait-card.is-landscape.is-clean,
  .contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
    min-height: 224px !important;
    height: 224px !important;
  }
  .cookie {
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .cookie p {
    font-size: .84rem;
    line-height: 1.4;
  }
  .cookie .btn {
    font-size: .72rem;
    padding: 8px 10px;
  }
}
@media (max-width: 720px) {
  body { font-size: 15.8px; }
  p, li, dd, input, select, textarea, .lead,
  .intro p:not(.eyebrow), .section-head p:last-child,
  .direct-contact-head p:last-child, .market-proof p, .contact-copy p:not(.eyebrow) {
    font-size: .96rem;
  }
  .hero h1 { line-height: .98; }
  .object-card img,
  .object-card.large img { height: 260px; }
  .contact-portrait-card.is-landscape.is-clean,
  .contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
    min-height: 196px !important;
    height: 196px !important;
  }
  .contact-form label.switch {
    grid-template-columns: 46px minmax(0,1fr);
    gap: 9px;
  }
  .cookie {
    padding: 12px 12px;
    gap: 8px;
  }
  .cookie p {
    font-size: .78rem;
    line-height: 1.32;
  }
  .cookie div {
    gap: 6px !important;
  }
  .cookie .btn {
    font-size: .68rem;
    padding: 7px 8px;
    min-height: 34px;
  }
}
@media (max-width: 420px) {
  .cookie {
    width: min(100% - 14px, 390px);
    padding: 10px;
    gap: 6px;
  }
  .cookie p {
    font-size: .73rem;
    line-height: 1.28;
  }
  .cookie .btn {
    font-size: .63rem;
    padding: 6px 7px;
    min-height: 31px;
  }
}

/* v19: H2-H6 must stay inside their own grid/card column */
.section-head,
.section-head.compact,
.grid-two,
.market-proof,
.detail-band,
.dataroom-section,
.direct-contact-head,
.contact,
.object-grid,
.service-grid,
.strategy-grid,
.process-grid,
.faq-grid,
.trust-strip,
.proof-list,
.dataroom-card,
.band-grid,
.direct-contact-grid,
.contact-mini-grid,
.object-card-fill {
  min-width: 0;
}
.section-head > *,
.section-head.compact > *,
.grid-two > *,
.market-proof > *,
.detail-band > *,
.dataroom-section > *,
.direct-contact-head > *,
.contact > *,
.object-grid > *,
.service-grid > *,
.strategy-grid > *,
.process-grid > *,
.faq-grid > *,
.trust-strip > *,
.proof-list > *,
.dataroom-card > *,
.band-grid > *,
.direct-contact-grid > *,
.contact-mini-grid > *,
.object-card-fill > * {
  min-width: 0;
}
h2, h3, h4, h5, h6,
.section-head h2,
.section-head.compact h2,
.market-proof h2,
.direct-contact-head h2,
.contact-copy h2,
.intro h2,
.detail-band h2,
.section-panel h2,
.service-grid h3,
.strategy-grid h3,
.process-grid h3,
.faq-grid h3,
.trust-strip strong,
.direct-card strong,
.contact-mini-grid strong,
.object-card h3,
.object-card-fill strong {
  white-space: normal !important;
  max-inline-size: 100% !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}
@media (min-width: 1101px) {
  h2, h3, h4, h5, h6,
  .section-head h2,
  .section-head.compact h2,
  .market-proof h2,
  .direct-contact-head h2,
  .contact-copy h2,
  .intro h2,
  .detail-band h2,
  .section-panel h2,
  .service-grid h3,
  .strategy-grid h3,
  .process-grid h3,
  .faq-grid h3,
  .trust-strip strong,
  .direct-card strong,
  .contact-mini-grid strong,
  .object-card h3,
  .object-card-fill strong {
    white-space: normal !important;
  }
}
@media (min-width: 1280px) {
  .section-head,
  .section-head.compact {
    grid-template-columns: minmax(150px, .22fr) minmax(0, 1.1fr) minmax(260px, .48fr) !important;
  }
  .section-head.compact.strategy-head {
    grid-template-columns: minmax(150px, .22fr) minmax(0, 1fr) !important;
  }
}
@media (min-width: 1101px) and (max-width: 1439px) {
  .section-head,
  .section-head.compact {
    grid-template-columns: minmax(128px, .2fr) minmax(0, 1fr) minmax(220px, .42fr) !important;
    column-gap: 18px !important;
  }
  h2 { font-size: clamp(1.72rem, 1.75vw, 2.18rem) !important; }
  h3 { font-size: clamp(1.12rem, 1.02vw, 1.34rem) !important; }
}
@media (max-width: 1100px) {
  .section-head,
  .section-head.compact,
  .direct-contact-head {
    grid-template-columns: 1fr !important;
  }
}

/* v20: eyebrow.dark must always be its own full-width row with content below */
.eyebrow.dark {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  grid-column: 1 / -1 !important;
  justify-self: start !important;
  align-self: start !important;
  margin: 0 0 clamp(10px, .9vw, 16px) !important;
  white-space: normal !important;
}

.section-head,
.section-head.compact,
.direct-contact-head,
.intro.grid-two,
.market-proof,
.dataroom-section {
  align-items: start;
}

/* Section headers using eyebrow.dark: label row above, headline/description below */
.section-head:has(.eyebrow.dark),
.section-head.compact:has(.eyebrow.dark) {
  display: grid !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, .58fr) !important;
  column-gap: clamp(24px, 3vw, 58px) !important;
  row-gap: 0 !important;
}
.section-head:has(.eyebrow.dark) > .eyebrow.dark,
.section-head.compact:has(.eyebrow.dark) > .eyebrow.dark {
  grid-column: 1 / -1 !important;
}
.section-head:has(.eyebrow.dark) > h2,
.section-head.compact:has(.eyebrow.dark) > h2 {
  grid-column: 1 !important;
  grid-row: 2 !important;
  align-self: start !important;
  margin: 0 !important;
}
.section-head:has(.eyebrow.dark) > p:not(.eyebrow),
.section-head.compact:has(.eyebrow.dark) > p:not(.eyebrow) {
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: start !important;
  margin: 0 !important;
}

/* Intro and two-column sections where eyebrow.dark sits inside a child div */
.intro .eyebrow.dark,
.dataroom-copy .eyebrow.dark,
.direct-contact-head .eyebrow.dark,
.legal .eyebrow.dark {
  display: block !important;
  margin-bottom: clamp(10px, .9vw, 16px) !important;
}
.intro .eyebrow.dark + h2,
.dataroom-copy .eyebrow.dark + h2,
.direct-contact-head .eyebrow.dark + h2,
.legal .eyebrow.dark + h1,
.legal .eyebrow.dark + h2 {
  display: block !important;
  margin-top: 0 !important;
}

/* Cards: eyebrow-like labels remain above content, never inline */
article .eyebrow.dark,
.object-card .eyebrow.dark,
.contact-copy .eyebrow.dark {
  display: block !important;
  margin-bottom: 10px !important;
}

@media (max-width: 980px) {
  .section-head:has(.eyebrow.dark),
  .section-head.compact:has(.eyebrow.dark) {
    grid-template-columns: 1fr !important;
    row-gap: 0 !important;
  }
  .section-head:has(.eyebrow.dark) > h2,
  .section-head.compact:has(.eyebrow.dark) > h2,
  .section-head:has(.eyebrow.dark) > p:not(.eyebrow),
  .section-head.compact:has(.eyebrow.dark) > p:not(.eyebrow) {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .section-head:has(.eyebrow.dark) > h2,
  .section-head.compact:has(.eyebrow.dark) > h2 {
    margin-bottom: 12px !important;
  }
}


/* v21 hero-card cleaner background */
.hero-card {
  background: linear-gradient(180deg, rgba(252, 250, 246, .97) 0%, rgba(247, 242, 233, .95) 100%) !important;
  border: 1px solid rgba(255, 255, 255, .56) !important;
  box-shadow: 0 20px 48px rgba(13,26,34,.16), inset 0 1px 0 rgba(255,255,255,.42) !important;
  backdrop-filter: blur(10px) saturate(118%);
  -webkit-backdrop-filter: blur(10px) saturate(118%);
}
.hero-card small {
  color: rgba(44, 60, 68, .88) !important;
}
@media (max-width: 720px) {
  .hero-card {
    background: linear-gradient(180deg, rgba(252, 250, 246, .985) 0%, rgba(247, 242, 233, .97) 100%) !important;
  }
}

/* v22: if a section header has no right-hand description, remove the empty right column completely */
.section-head.compact.strategy-head,
.section-head.strategy-head,
.section-head:has(.eyebrow.dark):not(:has(> p:not(.eyebrow))),
.section-head.compact:has(.eyebrow.dark):not(:has(> p:not(.eyebrow))) {
  grid-template-columns: minmax(0, 1fr) !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
}
.section-head.compact.strategy-head > .eyebrow.dark,
.section-head.strategy-head > .eyebrow.dark,
.section-head.compact.strategy-head > h2,
.section-head.strategy-head > h2,
.section-head:has(.eyebrow.dark):not(:has(> p:not(.eyebrow))) > h2,
.section-head.compact:has(.eyebrow.dark):not(:has(> p:not(.eyebrow))) > h2 {
  grid-column: 1 / -1 !important;
  max-width: none !important;
}
.section-head.compact.strategy-head > h2,
.section-head.strategy-head > h2 {
  width: 100% !important;
  margin: 0 !important;
}


/* v24 tighter vertical rhythm and shortened copy pass */
:root {
  --section-space: clamp(54px, 4.8vw, 92px) !important;
  --section-space-tight: clamp(36px, 3.2vw, 64px) !important;
}
.intro {
  padding-top: clamp(64px, 5.4vw, 104px) !important;
  padding-bottom: clamp(18px, 1.6vw, 30px) !important;
}
.trust-strip {
  margin-bottom: clamp(52px, 4.2vw, 88px) !important;
}
.objects {
  padding-top: 0 !important;
}
.section-panel {
  margin-top: clamp(54px, 4.6vw, 92px) !important;
  padding-top: clamp(32px, 3vw, 54px) !important;
  padding-bottom: clamp(32px, 3vw, 54px) !important;
}
.service-section,
.strategy-section {
  padding-top: clamp(56px, 4.8vw, 92px) !important;
  padding-bottom: clamp(24px, 2.4vw, 44px) !important;
}
.detail-band {
  margin-top: clamp(30px, 3vw, 58px) !important;
}
.market-proof {
  margin-top: clamp(30px, 3vw, 58px) !important;
}
.dataroom-section {
  padding-top: clamp(56px, 4.8vw, 94px) !important;
  padding-bottom: clamp(24px, 2.4vw, 44px) !important;
}
.faq-section {
  padding-top: clamp(48px, 4.2vw, 82px) !important;
  padding-bottom: clamp(12px, 1.4vw, 28px) !important;
}
.process {
  padding-top: clamp(54px, 4.6vw, 88px) !important;
  padding-bottom: clamp(54px, 4.6vw, 88px) !important;
}
.contact {
  margin-top: clamp(28px, 3vw, 54px) !important;
  margin-bottom: clamp(42px, 3.8vw, 70px) !important;
}
.direct-contact {
  margin-bottom: clamp(42px, 3.8vw, 76px) !important;
}
.section-head,
.section-head.compact,
.direct-contact-head {
  margin-bottom: clamp(18px, 1.8vw, 28px) !important;
}
@media (max-width: 720px) {
  .intro,
  .service-section,
  .strategy-section,
  .process {
    padding-top: 46px !important;
  }
  .section-panel,
  .detail-band,
  .market-proof,
  .contact,
  .direct-contact {
    margin-top: 34px !important;
  }
}

/* v25 full-page tuning: contact balance, menu reliability, desktop/mobile rhythm */
.topbar {
  contain: none !important;
  overflow: visible !important;
  z-index: 1000 !important;
}
.nav-menu {
  z-index: 1001 !important;
}
.nav-toggle {
  position: relative;
  z-index: 1002;
}
@media (max-width: 1100px) {
  .nav-menu {
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    max-height: calc(100vh - 104px) !important;
    overflow-y: auto !important;
    box-shadow: 0 22px 60px rgba(0,0,0,.32) !important;
  }
  .nav-menu.open {
    display: flex !important;
  }
  .nav-menu a {
    min-height: 42px;
    display: flex;
    align-items: center;
  }
}

/* Contact: no empty left column, stronger information density, aligned with form height. */
.contact {
  grid-template-columns: minmax(440px, .92fr) minmax(560px, 1.08fr) !important;
  gap: clamp(22px, 2.1vw, 34px) !important;
  align-items: stretch !important;
  padding: clamp(32px, 3vw, 50px) !important;
}
.contact-copy {
  display: grid !important;
  grid-template-rows: auto auto auto 1fr !important;
  align-content: stretch !important;
  gap: 14px !important;
  min-height: 100%;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 44ch !important;
}
.contact-story {
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  gap: 14px !important;
  min-height: 0;
}
.contact-portrait-card.is-landscape.is-clean,
.contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
  min-height: clamp(250px, 15vw, 310px) !important;
  height: clamp(250px, 15vw, 310px) !important;
}
.contact-portrait-card.is-landscape.is-clean .contact-portrait-media img {
  object-position: 45% 45% !important;
}
.contact-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-content: stretch;
  height: 100%;
}
.contact-benefits article {
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  grid-template-rows: auto 1fr !important;
  column-gap: 10px !important;
  row-gap: 4px !important;
  align-items: start !important;
  min-height: 116px !important;
  padding: 16px !important;
}
.contact-benefits .mini-icon {
  grid-row: 1 / span 2;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d89d, #b98537);
  color: #132129;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 10px 22px rgba(185,133,55,.15);
}
.contact-benefits .mini-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.contact-benefits strong {
  line-height: 1.18 !important;
  margin: 0 !important;
}
.contact-benefits span:last-child {
  margin: 0 !important;
  line-height: 1.45 !important;
}
.contact-form {
  align-content: stretch !important;
  gap: 14px 16px !important;
}
.contact-form textarea {
  min-height: clamp(138px, 9.5vw, 174px) !important;
}
.contact-form label.switch {
  margin-top: 2px !important;
}

/* Section rhythm and alignment: calmer vertical pace without dead air. */
.intro,
.service-section,
.strategy-section,
.process,
.faq-section,
.dataroom-section {
  padding-top: clamp(52px, 4.4vw, 84px) !important;
}
.section-panel,
.detail-band,
.market-proof {
  margin-top: clamp(42px, 3.8vw, 76px) !important;
}
.trust-strip {
  margin-bottom: clamp(44px, 3.8vw, 76px) !important;
}
.section-head:has(.eyebrow.dark),
.section-head.compact:has(.eyebrow.dark) {
  grid-template-columns: minmax(0, .98fr) minmax(300px, .54fr) !important;
  column-gap: clamp(22px, 2.6vw, 46px) !important;
}
.section-head p:last-child,
.section-head.compact p:last-child,
.direct-contact-head p:last-child {
  max-width: 48ch !important;
}
.object-card,
.trust-strip article,
.service-grid article,
.strategy-grid article,
.process-grid article,
.faq-grid article,
.direct-card,
.contact-mini-grid article,
.object-card-fill div {
  border-radius: 22px !important;
}
.process-grid article,
.faq-grid article,
.service-grid article,
.strategy-grid article {
  min-height: auto !important;
}
.detail-band,
.section-panel,
.market-proof,
.direct-contact,
.contact {
  border-radius: 26px !important;
}

/* Desktop-specific: stop cramped cards and keep contact block visually locked. */
@media (min-width: 1600px) {
  .contact {
    grid-template-columns: minmax(500px, .92fr) minmax(680px, 1.08fr) !important;
  }
  .contact-benefits article { min-height: 122px !important; }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .contact {
    grid-template-columns: minmax(410px, .9fr) minmax(520px, 1.1fr) !important;
    gap: 20px !important;
  }
  .contact-portrait-card.is-landscape.is-clean,
  .contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
    min-height: 230px !important;
    height: 230px !important;
  }
  .contact-benefits article {
    min-height: 108px !important;
    padding: 14px !important;
  }
  .contact-form { gap: 12px 14px !important; }
}
@media (min-width: 981px) and (max-width: 1279px) {
  .contact {
    grid-template-columns: 1fr !important;
  }
  .contact-copy {
    grid-template-rows: auto auto auto !important;
  }
  .contact-benefits article { min-height: 104px !important; }
}

/* Mobile: menu, cards and form stack cleanly; no squeezed controls. */
@media (max-width: 980px) {
  .section-head:has(.eyebrow.dark),
  .section-head.compact:has(.eyebrow.dark),
  .direct-contact-head {
    grid-template-columns: 1fr !important;
  }
  .contact {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
  }
  .contact-copy {
    grid-template-rows: auto !important;
  }
  .contact-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .contact-portrait-card.is-landscape.is-clean,
  .contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
    min-height: clamp(220px, 34vw, 300px) !important;
    height: clamp(220px, 34vw, 300px) !important;
  }
}
@media (max-width: 720px) {
  .hero { min-height: 590px !important; }
  .intro,
  .service-section,
  .strategy-section,
  .process,
  .faq-section,
  .dataroom-section {
    padding-top: 42px !important;
  }
  .section-panel,
  .detail-band,
  .market-proof,
  .contact,
  .direct-contact {
    margin-top: 30px !important;
  }
  .trust-strip,
  .object-grid,
  .service-grid,
  .strategy-grid,
  .process-grid,
  .faq-grid,
  .direct-contact-grid,
  .contact-benefits {
    gap: 12px !important;
  }
  .contact-benefits {
    grid-template-columns: 1fr !important;
  }
  .contact-benefits article {
    min-height: auto !important;
    grid-template-columns: 36px minmax(0, 1fr) !important;
  }
  .contact-portrait-card.is-landscape.is-clean,
  .contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
    min-height: 210px !important;
    height: 210px !important;
  }
  .contact-form textarea { min-height: 132px !important; }
  .footer nav { flex-wrap: wrap; }
}
@media (max-width: 420px) {
  .contact { padding: 20px !important; }
  .contact-benefits article {
    padding: 14px !important;
  }
  .contact-form label.switch {
    align-items: start !important;
  }
}


/* v26 targeted fixes: mobile proof cards, stronger dataroom copy, contact width without dead space */
.dataroom-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}
.dataroom-copy p:not(.eyebrow) {
  margin: 0;
}
.dataroom-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}
.dataroom-points article {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(13, 26, 34, .035);
  border: 1px solid rgba(13, 26, 34, .09);
  box-shadow: 0 10px 28px rgba(13, 26, 34, .05);
}
.dataroom-points article:last-child {
  grid-column: 1 / -1;
}
.dataroom-points strong,
.dataroom-points span {
  display: block;
}
.dataroom-points strong {
  font-size: .95rem;
  line-height: 1.22;
  color: #15252c;
}
.dataroom-points span {
  margin-top: 6px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.52;
}

.market-proof {
  align-items: start !important;
}
.proof-list article {
  grid-template-columns: 44px minmax(140px, .42fr) minmax(0, 1fr) !important;
  align-items: start !important;
}
.proof-list b,
.proof-list strong,
.proof-list span {
  align-self: start;
}
.proof-list strong,
.proof-list span {
  display: block;
}

.contact {
  grid-template-columns: clamp(390px, 32vw, 500px) minmax(0, 1fr) !important;
  gap: clamp(20px, 2vw, 30px) !important;
}
.contact-copy {
  width: 100%;
  max-width: 500px !important;
  justify-self: start;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 38ch !important;
}
.contact-story {
  align-content: start;
}
.contact-portrait-card.is-landscape.is-clean,
.contact-portrait-card.is-landscape.is-clean .contact-portrait-media {
  width: 100%;
}

@media (min-width: 981px) {
  .dataroom-section {
    grid-template-columns: minmax(320px, 460px) minmax(0, 1fr) !important;
    align-items: start !important;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .contact {
    grid-template-columns: clamp(370px, 31vw, 450px) minmax(0, 1fr) !important;
  }
}
@media (max-width: 980px) {
  .proof-list article {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    row-gap: 6px;
  }
  .proof-list strong,
  .proof-list span {
    grid-column: 2;
  }
  .dataroom-points {
    grid-template-columns: 1fr;
  }
  .dataroom-points article:last-child {
    grid-column: auto;
  }
}
@media (max-width: 720px) {
  .proof-list article {
    padding: 16px !important;
  }
  .proof-list strong,
  .proof-list span {
    grid-column: 2;
  }
  .dataroom-points article {
    padding: 15px 16px;
  }
}
@media (max-width: 540px) {
  .market-proof {
    padding: 22px !important;
  }
  .proof-list article {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    column-gap: 12px !important;
  }
  .proof-list b {
    font-size: .74rem;
    padding-top: 2px;
  }
  .proof-list strong {
    font-size: .98rem;
    line-height: 1.26;
  }
  .proof-list span {
    margin-top: 2px;
  }
  .contact {
    padding: 22px !important;
  }
}


/* v28 remove icons from contact benefit cards */
.contact-benefits .mini-icon {
  display: none !important;
}
.contact-benefits article {
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto !important;
  row-gap: 6px !important;
}
.contact-benefits strong,
.contact-benefits span:last-child {
  grid-column: 1 !important;
  grid-row: auto !important;
}
.contact-benefits strong {
  margin: 0 !important;
}
.contact-benefits span:last-child {
  margin-top: 0 !important;
}
@media (max-width: 720px) {
  .contact-benefits article {
    grid-template-columns: 1fr !important;
  }
}

/* v29 content copy tuning and dataroom two-card balance */
.dataroom-points article:last-child {
  grid-column: auto !important;
}
@media (min-width: 721px) {
  .dataroom-points {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
.market-proof > div:first-child p:not(.eyebrow) {
  max-width: 54ch;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.62;
}


/* v31 button typography and mobile two-button rows */
@media (min-width: 721px) {
  .hero-actions .btn,
  .object-actions .btn,
  .cookie .btn,
  .contact-form button.btn {
    font-size: .92rem !important;
    line-height: 1.12 !important;
    letter-spacing: -.006em !important;
  }
  .cookie .btn.mini,
  .object-actions .btn.mini {
    font-size: .86rem !important;
  }
}

.hero-actions {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}
.hero-actions .btn {
  white-space: nowrap !important;
  width: auto !important;
  flex: 0 0 auto !important;
}

.cookie div {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}
.cookie .btn {
  white-space: nowrap !important;
  line-height: 1.1 !important;
}

@media (max-width: 720px) {
  .hero-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    padding-inline: 12px !important;
    font-size: .88rem !important;
  }

  .cookie {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }
  .cookie div {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 10px !important;
    min-width: 0 !important;
  }
  .cookie .btn,
  .cookie .btn.mini {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    padding-inline: 8px !important;
    font-size: clamp(.70rem, 2.35vw, .82rem) !important;
    min-height: 36px !important;
  }
}

@media (max-width: 380px) {
  .hero-actions {
    gap: 8px !important;
  }
  .hero-actions .btn {
    padding-inline: 9px !important;
    font-size: .82rem !important;
  }
  .cookie div {
    gap: 6px !important;
  }
  .cookie .btn,
  .cookie .btn.mini {
    padding-inline: 6px !important;
    font-size: .68rem !important;
  }
}


/* v32 hero metric card: reserve final dimensions to prevent reload height flap */
.hero-card {
  width: min(100%, 320px) !important;
  min-height: 154px !important;
  height: 154px !important;
  display: grid !important;
  grid-template-rows: auto auto auto !important;
  align-content: start !important;
  contain: layout paint !important;
}
.hero-card strong {
  min-height: 2.42rem !important;
  line-height: .98 !important;
}
.hero-card span {
  min-height: 1.48rem !important;
  line-height: 1.34 !important;
}
.hero-card small {
  min-height: 1.2rem !important;
  line-height: 1.45 !important;
}
@media (min-width: 1600px) {
  .hero-card {
    width: 318px !important;
    min-height: 154px !important;
    height: 154px !important;
  }
}
@media (max-width: 980px) {
  .hero-card {
    min-height: 150px !important;
    height: 150px !important;
  }
}
@media (max-width: 720px) {
  .hero-card {
    min-height: 112px !important;
    height: 112px !important;
  }
  .hero-card small {
    display: none !important;
    min-height: 0 !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 420px) {
  .hero-card {
    min-height: 108px !important;
    height: 108px !important;
  }
}


/* v33 hero metric card hard fix: no overlap, no oversized blank box */
.hero-card {
  width: clamp(300px, 24vw, 390px) !important;
  max-width: min(100%, 390px) !important;
  min-height: 132px !important;
  height: auto !important;
  padding: clamp(20px, 1.8vw, 28px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 10px !important;
  contain: layout paint !important;
}
.hero-card strong,
.hero-card span,
.hero-card small {
  display: block !important;
  min-height: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}
.hero-card strong {
  white-space: nowrap !important;
  font-size: clamp(2rem, 2.1vw, 2.48rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.055em !important;
}
.hero-card span {
  white-space: normal !important;
  font-size: clamp(.96rem, .92vw, 1.08rem) !important;
  line-height: 1.32 !important;
  font-weight: 850 !important;
}
.hero-card small {
  font-size: clamp(.82rem, .78vw, .92rem) !important;
  line-height: 1.35 !important;
}
@media (min-width: 1600px) {
  .hero-card {
    width: 390px !important;
    min-height: 138px !important;
  }
  .hero-card strong {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 1101px) and (max-width: 1320px) {
  .hero-card {
    width: 318px !important;
    min-height: 126px !important;
    padding: 20px !important;
  }
  .hero-card strong {
    font-size: 2rem !important;
  }
  .hero-card span {
    font-size: .95rem !important;
  }
  .hero-card small {
    font-size: .8rem !important;
  }
}
@media (max-width: 980px) {
  .hero-card {
    width: min(100%, 360px) !important;
    min-height: 126px !important;
    height: auto !important;
  }
  .hero-card strong {
    font-size: clamp(1.92rem, 6.6vw, 2.32rem) !important;
  }
}
@media (max-width: 720px) {
  .hero-card {
    width: min(100%, 330px) !important;
    min-height: 112px !important;
    padding: 18px 20px !important;
    gap: 8px !important;
  }
  .hero-card strong {
    font-size: clamp(1.78rem, 7.3vw, 2.12rem) !important;
    line-height: 1.02 !important;
  }
  .hero-card span {
    font-size: .9rem !important;
    line-height: 1.28 !important;
  }
  .hero-card small {
    display: none !important;
  }
}
@media (max-width: 420px) {
  .hero-card {
    width: min(100%, 300px) !important;
    min-height: 108px !important;
    padding: 17px 18px !important;
  }
  .hero-card strong {
    font-size: clamp(1.6rem, 7vw, 1.85rem) !important;
  }
  .hero-card span {
    font-size: .84rem !important;
  }
}

/* v35 mobile intro spacing parity: bottom padding must not stay oversized on mobile reload/layout */
@media (max-width: 980px) {
  .intro {
    padding-top: clamp(44px, 7vw, 64px) !important;
    padding-bottom: clamp(14px, 2.2vw, 24px) !important;
  }
}
@media (max-width: 720px) {
  .intro {
    padding-top: 42px !important;
    padding-bottom: 14px !important;
  }
}
@media (max-width: 420px) {
  .intro {
    padding-top: 36px !important;
    padding-bottom: 10px !important;
  }
}


/* v37 mobile header menu + hero metric text restore
   Ziel: Mobile-Menü als stabile Overlay-Schicht, kein Layout-Push, keine abgeschnittene Kennzahlen-Zeile. */
@media (max-width: 1100px) {
  html.has-mobile-menu-open,
  html.has-mobile-menu-open body {
    overflow-x: clip !important;
  }

  .topbar {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 10px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: min(calc(100vw - 24px), 640px) !important;
    min-height: 62px !important;
    height: 62px !important;
    padding: 8px 10px !important;
    align-items: center !important;
    border-radius: 999px !important;
    overflow: visible !important;
    contain: none !important;
    z-index: 5000 !important;
  }

  .brand {
    min-width: 0 !important;
    max-width: calc(100% - 82px) !important;
    flex: 1 1 auto !important;
  }

  .brand-mark {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
  }

  .brand strong,
  .brand small {
    max-width: 100% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    min-width: 66px !important;
    height: 42px !important;
    padding: 0 13px !important;
    border-radius: 999px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    z-index: 5002 !important;
  }

  .nav-menu {
    display: none !important;
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 82px) !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: 640px !important;
    margin-inline: auto !important;
    padding: 10px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    background: rgba(13, 26, 34, .985) !important;
    box-shadow: 0 22px 70px rgba(0,0,0,.34) !important;
    backdrop-filter: blur(18px) !important;
    max-height: calc(100dvh - 104px) !important;
    overflow: auto !important;
    overscroll-behavior: contain !important;
    z-index: 5001 !important;
  }

  .nav-menu.open {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .nav-menu a {
    width: 100% !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    border-radius: 15px !important;
    font-size: .92rem !important;
    line-height: 1.12 !important;
    text-align: center !important;
  }

  .nav-menu .lang-switch {
    width: 100% !important;
    margin: 5px 0 0 !important;
    padding: 4px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 4px !important;
  }

  .nav-menu .lang-switch a {
    width: 100% !important;
    min-height: 34px !important;
    padding: 8px 6px !important;
    font-size: .76rem !important;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 112px !important;
    min-height: auto !important;
  }

  .hero-card {
    width: 100% !important;
    max-width: none !important;
    min-height: 136px !important;
    height: auto !important;
    padding: 18px 20px !important;
    gap: 8px !important;
    justify-self: stretch !important;
  }

  .hero-card strong {
    font-size: clamp(1.62rem, 6.8vw, 2.05rem) !important;
    line-height: 1.02 !important;
    white-space: nowrap !important;
  }

  .hero-card span {
    font-size: .9rem !important;
    line-height: 1.28 !important;
  }

  .hero-card small {
    display: block !important;
    font-size: .78rem !important;
    line-height: 1.34 !important;
    margin: 0 !important;
    min-height: 0 !important;
  }
}

@media (max-width: 420px) {
  .topbar {
    width: calc(100vw - 18px) !important;
    min-height: 58px !important;
    height: 58px !important;
    padding: 7px 8px !important;
  }

  .brand {
    max-width: calc(100% - 72px) !important;
    gap: 8px !important;
  }

  .brand-mark {
    width: 39px !important;
    height: 39px !important;
    flex-basis: 39px !important;
    font-size: .82rem !important;
  }

  .brand strong { font-size: .84rem !important; }
  .brand small { font-size: .64rem !important; }

  .nav-toggle {
    min-width: 60px !important;
    height: 39px !important;
    padding-inline: 10px !important;
    font-size: .82rem !important;
  }

  .nav-menu {
    top: calc(env(safe-area-inset-top, 0px) + 74px) !important;
    left: 9px !important;
    right: 9px !important;
    max-height: calc(100dvh - 92px) !important;
  }

  .hero {
    padding-top: 104px !important;
  }

  .hero-card {
    min-height: 132px !important;
    padding: 17px 18px !important;
  }

  .hero-card strong {
    font-size: clamp(1.48rem, 6.6vw, 1.75rem) !important;
  }

  .hero-card span { font-size: .84rem !important; }
  .hero-card small { font-size: .74rem !important; }
}

/* v38 hard fix: mobile header width + horizontal overflow lock
   Ursache: Mobile Header/CTA-Zeile konnte auf kleinen Viewports eine horizontale Scrollfläche erzeugen.
   Lösung: Header ohne translate/100vw-Überstand, CTAs fluid nebeneinander, Hero-Kennzahlen vollständig sichtbar. */
html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  position: relative !important;
}

@media (max-width: 1100px) {
  *,
  *::before,
  *::after {
    max-width: 100%;
  }

  .topbar {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }

  .nav-menu {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    transform: none !important;
  }

  .hero,
  .intro,
  .section-panel,
  .objects,
  .process,
  .contact,
  .direct-contact,
  .legal,
  .footer {
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  .hero-content,
  .hero-card,
  .section-head,
  .grid-two,
  .object-grid,
  .service-grid,
  .strategy-grid,
  .proof-list,
  .faq-grid,
  .process-grid,
  .direct-grid,
  .contact-grid,
  .contact-portrait-card,
  .contact-mini-grid,
  .trust-strip,
  .dataroom-grid {
    min-width: 0 !important;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 28px) !important;
  }

  .hero {
    width: 100% !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero h1,
  .hero .lead,
  .eyebrow {
    max-width: 100% !important;
    overflow-wrap: normal !important;
  }

  .hero-actions {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  .hero-actions .btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: none !important;
    padding-inline: 8px !important;
    white-space: nowrap !important;
    font-size: clamp(.82rem, 3.35vw, .92rem) !important;
  }

  .hero-proof {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-proof span {
    max-width: 100% !important;
  }

  .hero-card {
    display: grid !important;
    align-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 156px !important;
    overflow: visible !important;
  }

  .hero-card strong,
  .hero-card span,
  .hero-card small {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-card strong {
    white-space: normal !important;
  }

  .hero-card small {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: calc(100% - 22px) !important;
  }

  .topbar {
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }

  .nav-menu {
    left: 8px !important;
    right: 8px !important;
  }

  .hero {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }

  .hero-actions {
    gap: 7px !important;
  }

  .hero-actions .btn {
    padding-inline: 6px !important;
    font-size: clamp(.78rem, 3.65vw, .86rem) !important;
  }

  .hero-card {
    min-height: 150px !important;
    padding: 18px 17px !important;
  }
}

@media (max-width: 340px) {
  .brand small {
    display: none !important;
  }

  .hero-actions .btn {
    font-size: .76rem !important;
    letter-spacing: -.02em !important;
  }
}

/* v39 mobile intro copy spacing: reduce the gap between headline and paragraph in every language */
@media (max-width: 720px) {
  .intro.grid-two {
    gap: 10px !important;
    row-gap: 10px !important;
  }

  .intro p:not(.eyebrow) {
    margin-top: 0 !important;
  }
}

@media (max-width: 420px) {
  .intro.grid-two {
    gap: 6px !important;
    row-gap: 6px !important;
  }

  .intro p:not(.eyebrow) {
    margin-top: 0 !important;
  }
}


/* x25.website order sidebar ------------------------------------------------ */
.x25-order-sidebar {
  position: fixed !important;
  right: 18px !important;
  top: 50% !important;
  z-index: 2147483647 !important;
  width: min(264px, calc(100vw - 36px));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 20px 20px 18px 20px;
  border: 1px solid rgba(150, 198, 231, 0.22);
  border-radius: 26px;
  background: linear-gradient(180deg, #16344c 0%, #102b41 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  text-align: left;
  box-shadow: 0 24px 56px rgba(5, 16, 29, 0.34);
  isolation: isolate;
  overflow: hidden;
  transform: translateY(-50%);
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.x25-order-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.07), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  pointer-events: none;
}

.x25-order-sidebar::after,
.x25-order-sidebar-mobile-trigger::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #67d8ea 0%, #4f9fff 100%);
  pointer-events: none;
}

.x25-order-sidebar__drag,
.x25-order-sidebar__close {
  display: none;
}

.x25-order-sidebar__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin: 0;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(103, 216, 234, 0.12);
  border: 1px solid rgba(103, 216, 234, 0.18);
  font-size: 0.645rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(233, 248, 255, 0.97);
  white-space: nowrap;
}

.x25-order-sidebar__title {
  display: block;
  margin: 0;
  max-width: 100%;
  font-size: clamp(1.18rem, 1.2vw, 1.3rem);
  font-weight: 860;
  line-height: 1.14;
  letter-spacing: -0.018em;
  color: #ffffff;
  text-wrap: balance;
}

.x25-order-sidebar__text {
  display: block;
  margin: -1px 0 0;
  font-size: 0.905rem;
  font-weight: 520;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: rgba(238, 246, 255, 0.88);
}

.x25-order-sidebar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  margin: 2px 0 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #61e0e6, #4da9ff);
  color: #08263d;
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.x25-order-sidebar__button::after {
  content: "→";
  font-size: 0.98em;
  line-height: 1;
}

.x25-order-sidebar__note {
  display: block;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.004em;
  color: rgba(214, 229, 241, 0.82);
}

.x25-order-sidebar-mobile-trigger {
  display: none;
}

.x25-order-sidebar:hover,
.x25-order-sidebar:focus-visible,
.x25-order-sidebar:active,
.x25-order-sidebar:visited {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-50%);
  box-shadow: 0 24px 56px rgba(5, 16, 29, 0.34);
}

.x25-order-sidebar:focus-visible {
  outline: 3px solid rgba(97, 224, 230, 0.42);
  outline-offset: 4px;
}

@media (max-width: 1240px) {
  .x25-order-sidebar {
    right: 0 !important;
    width: 86px;
    min-height: 274px;
    padding: 28px 12px 18px 14px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 24px 0 0 24px;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .x25-order-sidebar__eyebrow,
  .x25-order-sidebar__text,
  .x25-order-sidebar__note,
  .x25-order-sidebar__close,
  .x25-order-sidebar__drag {
    display: none;
  }

  .x25-order-sidebar__title,
  .x25-order-sidebar__button {
    width: auto;
    max-width: none;
    margin: 0;
    line-height: 1;
  }

  .x25-order-sidebar__title {
    font-size: 0.92rem;
    letter-spacing: -0.01em;
    text-wrap: nowrap;
  }

  .x25-order-sidebar__button {
    min-height: auto;
    padding: 10px 9px;
    font-size: 0.82rem;
  }

  .x25-order-sidebar__button::after {
    content: "";
  }
}

@media (max-width: 720px) {
  .x25-order-sidebar {
    display: none !important;
  }

  .x25-order-sidebar-mobile-trigger {
    position: fixed !important;
    right: 0 !important;
    top: 50% !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 2147483647 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 134px;
    padding: 16px 8px 14px 11px;
    border: 1px solid rgba(150, 198, 231, 0.22);
    border-right: 0;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(180deg, #16344c 0%, #102b41 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 22px 46px rgba(5, 16, 29, 0.28);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.01em;
    transform: translateY(-50%) !important;
    overflow: hidden;
  }

  .x25-order-sidebar-mobile-trigger.is-visible,
  .x25-order-sidebar-mobile-trigger.is-hidden {
    display: inline-flex !important;
  }
}

/* x25.website order sidebar drag behaviour --------------------------------- */
.x25-order-sidebar {
  cursor: grab;
  touch-action: none;
}

@media (max-width: 720px) {
  .x25-order-sidebar {
    cursor: pointer;
    touch-action: auto;
  }
}


.x25-order-sidebar.is-dragging {
  cursor: grabbing;
  -webkit-user-select: none;
  user-select: none;
}

/* v60 mobile CTA: always visible while scrolling */
@media (max-width: 720px) {
  .x25-order-sidebar-mobile-trigger,
  .x25-order-sidebar-mobile-trigger.is-visible,
  .x25-order-sidebar-mobile-trigger.is-hidden {
    position: fixed !important;
    right: 0 !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    z-index: 2147483647 !important;
    display: inline-flex !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}
