:root {
  --navy: #081238;
  --navy-soft: #162348;
  --blue: #5e9fca;
  --blue-dark: #24638d;
  --mist: #f4f5f8;
  --white: #ffffff;
  --text: #111a3c;
  --muted: #56627b;
  --line: #dce3eb;
  --shadow: 0 18px 48px rgba(8, 18, 56, 0.09);
  --radius: 28px;
  --radius-small: 16px;
  --container: min(1200px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(94, 159, 202, 0.55);
  outline-offset: 3px;
}

p {
  margin: 0 0 1.2rem;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.06;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 5.65rem);
}

h2 {
  font-size: clamp(2.3rem, 4.2vw, 3.85rem);
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  letter-spacing: -0.04em;
}

.skip-link {
  background: var(--navy);
  border-radius: 0 0 10px 10px;
  color: var(--white);
  left: 20px;
  padding: 10px 18px;
  position: fixed;
  top: -60px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

.container {
  margin: 0 auto;
  width: var(--container);
}

.site-header {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 227, 235, 0.75);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: clamp(20px, 3vw, 42px);
  height: 92px;
}

.brand {
  flex: 0 1 360px;
  min-width: 208px;
}

.brand img {
  height: auto;
  width: min(360px, 100%);
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 1.9vw, 27px);
  margin-left: auto;
}

.primary-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 7px 0;
  position: relative;
  white-space: nowrap;
}

.primary-nav a::after {
  background: var(--blue);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--navy);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button {
  align-items: center;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: var(--navy);
}

.button-secondary:hover {
  color: var(--white);
}

.button-small {
  font-size: 0.92rem;
  min-height: 48px;
  padding: 11px 19px;
  white-space: nowrap;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  display: none;
  font: inherit;
  gap: 9px;
  margin-left: auto;
  padding: 10px 16px;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  transition: transform 180ms ease;
  width: 18px;
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.section {
  padding: clamp(70px, 9vw, 116px) 0;
}

.section-muted {
  background: var(--mist);
}

.eyebrow {
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.lead {
  color: var(--navy-soft);
  font-size: clamp(1.1rem, 1.65vw, 1.28rem);
  line-height: 1.72;
}

.muted {
  color: var(--muted);
}

.hero {
  display: grid;
  gap: clamp(35px, 6vw, 70px);
  grid-template-columns: minmax(350px, 0.97fr) minmax(340px, 1fr);
  min-height: calc(100vh - 92px);
  padding: clamp(42px, 6vw, 78px) 0;
}

.hero-content {
  align-self: center;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero .lead {
  max-width: 525px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.hero-proof {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.95rem;
  gap: 17px;
  margin-top: clamp(48px, 7vw, 70px);
  padding-top: 23px;
}

.hero-proof span:not(:last-child)::after {
  color: var(--blue);
  content: "/";
  margin-left: 17px;
}

.photo {
  background-color: #e8edf3;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.photo-hero {
  align-self: stretch;
  background-image: url("Canva Design.png");
  background-position: right center;
  background-size: 202% auto;
  border-radius: var(--radius);
  min-height: 560px;
}

.photo-caption {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  bottom: 22px;
  color: var(--navy);
  font-size: 0.88rem;
  left: 22px;
  padding: 9px 16px;
  position: absolute;
}

.statement {
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: 0.92fr 1fr;
}

.statement-text {
  max-width: 570px;
}

.statement-text .lead {
  margin-top: 7px;
}

.link-arrow {
  color: var(--blue-dark);
  display: inline-flex;
  font-weight: 600;
  gap: 11px;
  margin-top: 14px;
}

.link-arrow::after {
  content: "->";
  transition: transform 150ms ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.teaser-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(38px, 6vw, 54px);
}

.teaser {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: clamp(27px, 3vw, 34px);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.teaser:hover {
  box-shadow: 0 14px 34px rgba(8, 18, 56, 0.07);
  transform: translateY(-3px);
}

.teaser-number {
  color: var(--blue);
  display: block;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  margin-bottom: 44px;
}

.teaser p {
  color: var(--muted);
  margin: 14px 0 0;
}

.cta-band {
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  gap: 36px;
  justify-content: space-between;
  padding: clamp(34px, 6vw, 62px);
}

.cta-band h2 {
  color: var(--white);
  max-width: 650px;
}

.cta-band .button {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
  flex-shrink: 0;
}

.cta-band .button:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.page-hero {
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: 0.9fr 1fr;
  padding: clamp(64px, 9vw, 112px) 0 clamp(56px, 8vw, 92px);
}

.page-hero-copy {
  align-self: start;
}

.page-hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.05rem);
}

.page-intro {
  color: var(--navy-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  padding-top: clamp(8px, 3vw, 42px);
}

.principle-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.principle {
  background: var(--white);
  border-radius: var(--radius-small);
  padding: clamp(26px, 3vw, 34px);
}

.principle strong {
  color: var(--blue-dark);
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.principle p {
  color: var(--muted);
  margin: 15px 0 0;
}

.profile-grid {
  align-items: start;
  display: grid;
  gap: clamp(36px, 7vw, 82px);
  grid-template-columns: minmax(285px, 0.77fr) 1fr;
  padding: clamp(58px, 8vw, 96px) 0;
}

.photo-profile {
  aspect-ratio: 0.72;
  background-image: url("Canva Design(2).png");
  background-position: 8% 33%;
  background-size: 360% auto;
  border-radius: var(--radius);
}

.profile-copy h1 {
  margin-bottom: 34px;
}

.profile-copy .lead {
  max-width: 650px;
}

.values {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
  padding-top: 30px;
}

.pill {
  background: var(--mist);
  border-radius: 999px;
  color: var(--navy-soft);
  padding: 8px 17px;
}

.services-head {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: clamp(38px, 6vw, 56px);
}

.services-head .lead {
  max-width: 465px;
}

.service-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  overflow: hidden;
}

.service-photo {
  aspect-ratio: 1.49;
  background-image: url("Canva Design(3).png");
  background-size: 382% auto;
}

.service-training {
  background-position: 9% 37%;
}

.service-coaching {
  background-position: 49% 37%;
}

.service-beratung {
  background-position: 90% 37%;
}

.service-body {
  padding: clamp(24px, 3vw, 31px);
}

.service-body p {
  color: var(--muted);
  margin: 14px 0 0;
}

.process {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(48px, 7vw, 72px);
}

.process-step {
  border-top: 2px solid var(--line);
  padding: 27px 25px 0 0;
  position: relative;
}

.process-step::before {
  background: var(--blue);
  border-radius: 50%;
  content: "";
  height: 11px;
  left: 0;
  position: absolute;
  top: -7px;
  width: 11px;
}

.process-step span {
  color: var(--blue-dark);
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  margin-bottom: 18px;
}

.process-step p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 12px 0 0;
}

.contact-layout {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  grid-template-columns: minmax(350px, 0.94fr) minmax(390px, 1fr);
  padding: clamp(60px, 9vw, 108px) 0;
}

.contact-layout h1 {
  font-size: clamp(3.15rem, 5.15vw, 4.55rem);
  max-width: 480px;
}

.contact-panel {
  border-left: 1px solid var(--line);
  padding-left: clamp(30px, 5vw, 58px);
}

.contact-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  margin-bottom: 42px;
}

.contact-methods {
  display: grid;
  gap: 31px;
}

.contact-method {
  display: grid;
  gap: 8px;
}

.contact-method span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-method a,
.contact-method address {
  color: var(--navy);
  font-size: clamp(1.06rem, 1.8vw, 1.22rem);
  font-style: normal;
}

.contact-method a:hover {
  color: var(--blue-dark);
}

.privacy-note {
  background: var(--mist);
  border-radius: var(--radius-small);
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 44px;
  padding: 19px 22px;
}

.legal-page {
  margin: 0 auto;
  max-width: 860px;
  padding: clamp(54px, 9vw, 94px) 0 clamp(76px, 11vw, 120px);
  width: var(--container);
}

.legal-page h1 {
  font-size: clamp(2.7rem, 5.5vw, 4.6rem);
  margin-bottom: 18px;
}

.legal-meta {
  color: var(--muted);
  margin-bottom: clamp(42px, 7vw, 64px);
}

.legal-page h2 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  letter-spacing: -0.035em;
  margin: 40px 0 16px;
}

.legal-page h3 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 28px 0 12px;
}

.legal-page ul {
  margin: 0 0 1.2rem;
  padding-left: 21px;
}

.legal-page a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.required-info {
  background: #eef5fa;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  margin: 36px 0;
  padding: 21px 25px;
}

.required-info strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  margin-top: clamp(64px, 9vw, 104px);
  padding: 48px 0 31px;
}

.site-footer.compact {
  margin-top: 0;
}

.footer-top {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 44px;
  justify-content: space-between;
  padding-bottom: 40px;
}

.footer-brand {
  background: var(--white);
  border-radius: 10px;
  display: inline-flex;
  padding: 8px 12px;
}

.footer-brand img {
  height: auto;
  width: min(280px, 72vw);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 6vw, 64px);
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--white);
}

.footer-label {
  color: rgba(255, 255, 255, 0.45);
  display: block;
  font-size: 0.77rem;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-bottom {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  padding-top: 27px;
}

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

@media (max-width: 1050px) {
  .header-cta {
    display: none;
  }

  .hero,
  .page-hero,
  .statement,
  .contact-layout {
    gap: 46px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 38px, 640px);
  }

  .header-inner {
    height: 78px;
  }

  .brand {
    flex-basis: 266px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(8, 18, 56, 0.08);
    display: none;
    gap: 0;
    left: 0;
    padding: 10px 19px 18px;
    position: absolute;
    right: 0;
    top: 78px;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    font-size: 1rem;
    padding: 13px 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero,
  .page-hero,
  .statement,
  .profile-grid,
  .contact-layout {
    display: flex;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .photo-hero {
    min-height: clamp(430px, 90vw, 590px);
  }

  .teaser-grid,
  .principle-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .services-head,
  .cta-band,
  .footer-top,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .service-card {
    max-width: 520px;
  }

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

  .contact-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 38px;
  }

}

@media (max-width: 540px) {
  :root {
    --container: calc(100% - 32px);
    --radius: 21px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 3.5rem);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    flex-basis: 202px;
    min-width: 0;
  }

  .nav-toggle {
    padding: 9px 13px;
  }

  .nav-toggle-label {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .photo-hero {
    min-height: 380px;
  }

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

}

/* Warm business presentation refinement */
:root {
  --navy: #071934;
  --navy-soft: #172947;
  --blue: #68a7cf;
  --blue-dark: #286b92;
  --mist: #f3f1ec;
  --paper: #fbfaf7;
  --warm: #e9e3d9;
  --white: #ffffff;
  --text: #12203b;
  --muted: #5c6778;
  --line: #dce2e5;
  --shadow: 0 24px 70px rgba(7, 25, 52, 0.13);
  --shadow-soft: 0 14px 40px rgba(7, 25, 52, 0.075);
  --radius: 32px;
  --radius-small: 18px;
  --container: min(1220px, calc(100vw - 64px));
}

body {
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 8% 4%, rgba(104, 167, 207, 0.09), transparent 24rem),
    var(--paper);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

main {
  overflow: clip;
}

h1,
h2,
h3 {
  letter-spacing: -0.048em;
}

h1 {
  line-height: 0.98;
}

p {
  text-wrap: pretty;
}

.site-header {
  backdrop-filter: blur(18px) saturate(135%);
  background: rgba(251, 250, 247, 0.88);
  border-bottom-color: rgba(7, 25, 52, 0.09);
  box-shadow: 0 8px 30px rgba(7, 25, 52, 0.035);
}

.header-inner {
  gap: clamp(18px, 2.6vw, 36px);
  height: 84px;
}

.brand {
  flex-basis: 330px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.primary-nav {
  gap: 4px;
}

.primary-nav a {
  border-radius: 999px;
  padding: 8px 13px;
  transition: background-color 180ms ease, color 180ms ease;
}

.primary-nav a::after {
  display: none;
}

.primary-nav a:hover {
  background: rgba(104, 167, 207, 0.1);
}

.primary-nav a[aria-current="page"] {
  background: rgba(104, 167, 207, 0.16);
  color: var(--navy);
}

.button {
  background: linear-gradient(135deg, var(--navy), #102c52);
  box-shadow: 0 10px 24px rgba(7, 25, 52, 0.16);
  letter-spacing: 0.01em;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.button:hover {
  background: linear-gradient(135deg, var(--blue-dark), #367fa8);
  box-shadow: 0 13px 28px rgba(40, 107, 146, 0.22);
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(7, 25, 52, 0.08);
}

.button-secondary:hover {
  box-shadow: 0 10px 24px rgba(40, 107, 146, 0.16);
}

.eyebrow {
  align-items: center;
  display: inline-flex;
  gap: 11px;
}

.eyebrow::before {
  background: var(--blue);
  border-radius: 99px;
  content: "";
  height: 2px;
  width: 25px;
}

.section {
  padding: clamp(78px, 9vw, 124px) 0;
}

.section-muted {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.7), transparent 52%),
    var(--mist);
  border-bottom: 1px solid rgba(7, 25, 52, 0.055);
  border-top: 1px solid rgba(7, 25, 52, 0.055);
}

.hero {
  gap: clamp(48px, 7vw, 92px);
  grid-template-columns: minmax(350px, 0.88fr) minmax(390px, 1.12fr);
  min-height: min(calc(100vh - 84px), 920px);
  padding: clamp(58px, 7vw, 88px) 0;
  position: relative;
}

.hero::before {
  background: radial-gradient(circle, rgba(104, 167, 207, 0.16), rgba(104, 167, 207, 0) 68%);
  content: "";
  height: 440px;
  pointer-events: none;
  position: absolute;
  right: 29%;
  top: -130px;
  width: 440px;
}

.hero-content,
.photo-hero {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3.6rem, 7.2vw, 6.25rem);
  margin-bottom: 31px;
}

.hero .lead {
  max-width: 560px;
}

.hero-actions {
  margin-top: 40px;
}

.hero-proof {
  border-top-color: rgba(7, 25, 52, 0.12);
  font-size: 0.9rem;
}

.photo {
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.photo-hero {
  background-size: auto 110%;
  border-radius: 36px;
  min-height: 590px;
}

.photo-hero::after {
  background: linear-gradient(180deg, transparent 63%, rgba(7, 25, 52, 0.18));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.photo-caption {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 25px rgba(7, 25, 52, 0.1);
  z-index: 2;
}

.statement {
  align-items: start;
}

.link-arrow {
  align-items: center;
  border-bottom: 1px solid rgba(40, 107, 146, 0.26);
  padding-bottom: 3px;
}

.teaser-grid,
.principle-grid,
.service-grid {
  gap: 24px;
}

.teaser,
.principle,
.service-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 25, 52, 0.09);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.teaser,
.principle {
  overflow: hidden;
}

.teaser::before,
.principle::before {
  background: linear-gradient(90deg, var(--blue), rgba(104, 167, 207, 0));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 0;
  width: 52%;
}

.teaser:hover,
.principle:hover,
.service-card:hover {
  border-color: rgba(40, 107, 146, 0.25);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.teaser-number {
  color: var(--blue-dark);
}

.principle strong {
  color: var(--blue-dark);
}

.cta-band {
  background:
    radial-gradient(circle at 82% 20%, rgba(104, 167, 207, 0.33), transparent 19rem),
    linear-gradient(125deg, var(--navy), #102b50);
  box-shadow: 0 24px 60px rgba(7, 25, 52, 0.18);
  overflow: hidden;
  position: relative;
}

.cta-band::before {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  height: 180px;
  pointer-events: none;
  position: absolute;
  right: -65px;
  top: -84px;
  width: 180px;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band .button {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.page-hero {
  background:
    radial-gradient(circle at 94% 10%, rgba(104, 167, 207, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(7, 25, 52, 0.07);
  border-radius: var(--radius);
  margin-top: clamp(38px, 5vw, 62px);
  padding: clamp(50px, 7vw, 82px);
}

.page-intro {
  max-width: 660px;
}

.profile-grid {
  gap: clamp(48px, 8vw, 96px);
  padding: clamp(64px, 8vw, 108px) 0;
}

.photo-profile {
  box-shadow: 18px 20px 0 var(--warm), var(--shadow);
}

.values {
  border-top-color: rgba(7, 25, 52, 0.1);
}

.pill {
  background: rgba(104, 167, 207, 0.11);
  border: 1px solid rgba(40, 107, 146, 0.12);
}

.service-card {
  border-radius: 22px;
}

.service-photo {
  border: 0;
  box-shadow: none;
  transition: filter 300ms ease, transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover .service-photo {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.service-body {
  background: rgba(255, 255, 255, 0.94);
  position: relative;
}

.process {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(7, 25, 52, 0.08);
  border-radius: 24px;
  padding: 35px 30px 31px;
}

.process-step {
  border-top-color: rgba(7, 25, 52, 0.14);
  padding-top: 32px;
}

.process-step::before {
  box-shadow: 0 0 0 6px var(--paper);
}

.process-step span {
  background: rgba(104, 167, 207, 0.12);
  border-radius: 999px;
  display: inline-block;
  padding: 4px 10px;
}

.contact-layout {
  align-items: start;
  gap: clamp(48px, 7vw, 88px);
  grid-template-columns: minmax(310px, 0.78fr) minmax(430px, 1.22fr);
  padding: clamp(72px, 9vw, 118px) 0;
}

.contact-layout h1 {
  font-size: clamp(3.25rem, 5.35vw, 4.85rem);
  line-height: 0.99;
  max-width: 520px;
}

.contact-panel {
  background:
    radial-gradient(circle at 100% 0, rgba(104, 167, 207, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 25, 52, 0.09);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: clamp(34px, 5vw, 58px);
}

.contact-panel h2 {
  max-width: 560px;
}

.contact-method {
  border-bottom: 1px solid rgba(7, 25, 52, 0.08);
  padding-bottom: 23px;
}

.contact-method:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-method a {
  transition: color 180ms ease, transform 180ms ease;
}

.contact-method a:hover {
  transform: translateX(3px);
}

.privacy-note {
  background: var(--mist);
  border: 1px solid rgba(7, 25, 52, 0.06);
}

.legal-page {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 25, 52, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: clamp(64px, 8vw, 100px);
  margin-top: clamp(42px, 6vw, 72px);
  max-width: 920px;
  padding: clamp(46px, 7vw, 76px);
}

.legal-page h2 {
  border-top: 1px solid rgba(7, 25, 52, 0.08);
  padding-top: 38px;
}

.site-footer {
  background:
    radial-gradient(circle at 10% 0, rgba(104, 167, 207, 0.18), transparent 24rem),
    linear-gradient(135deg, #06152e, var(--navy));
  margin-top: clamp(74px, 10vw, 116px);
  padding-top: 54px;
}

.footer-brand {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  padding: 9px 13px;
}

.footer-brand img {
  width: min(260px, 72vw);
}

.footer-contact a,
.footer-links a {
  transition: color 180ms ease;
}

.reveal-enabled .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms cubic-bezier(0.22, 0.72, 0.25, 1) var(--reveal-delay, 0ms);
}

.reveal-enabled .reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  :root {
    --container: min(100% - 48px, 1080px);
  }

  .brand {
    flex-basis: 290px;
  }

  .contact-layout {
    grid-template-columns: minmax(280px, 0.82fr) minmax(390px, 1.18fr);
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 38px, 680px);
  }

  .header-inner {
    height: 76px;
  }

  .primary-nav {
    background: rgba(251, 250, 247, 0.98);
    border-radius: 0 0 18px 18px;
    padding-bottom: 14px;
    top: 76px;
  }

  .primary-nav a {
    border-radius: 10px;
    padding: 12px 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero::before {
    right: -180px;
  }

  .photo-hero {
    background-size: 202% auto;
    min-height: clamp(430px, 88vw, 590px);
  }

  .page-hero {
    margin-top: 28px;
    padding: clamp(38px, 8vw, 58px);
  }

  .photo-profile {
    box-shadow: 12px 14px 0 var(--warm), var(--shadow);
    max-width: 520px;
  }

  .contact-panel {
    border-top: 1px solid rgba(7, 25, 52, 0.09);
    padding: clamp(30px, 7vw, 48px);
  }

  .process {
    padding: 30px 25px;
  }
}

@media (max-width: 540px) {
  :root {
    --container: calc(100% - 32px);
    --radius: 24px;
  }

  .section {
    padding: 68px 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4rem);
  }

  .photo-hero {
    border-radius: 25px;
    min-height: 380px;
  }

  .page-hero {
    border-radius: 22px;
    padding: 33px 25px;
  }

  .teaser,
  .principle {
    padding: 27px 24px;
  }

  .cta-band {
    border-radius: 24px;
    padding: 32px 25px;
  }

  .process {
    border-radius: 20px;
    padding: 28px 22px;
  }

  .contact-layout {
    gap: 38px;
    padding: 58px 0;
  }

  .contact-layout h1 {
    font-size: clamp(2.8rem, 14vw, 3.7rem);
  }

  .contact-panel {
    border-radius: 22px;
    padding: 28px 23px;
  }

  .legal-page {
    border-radius: 22px;
    margin-bottom: 54px;
    margin-top: 24px;
    padding: 34px 25px 46px;
  }

  .legal-page h2 {
    padding-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-enabled .reveal-item {
    opacity: 1;
    transform: none;
  }
}
