
:root {
  /* Original Vanessa Butz brand palette */
  --color-petrol: #14829f;
  --color-blue-light: #a4c8cf;
  --color-pink: #c15b8c;
  --color-yellow: #fdd38d;
  --color-rose-light: #efe4e5;
  --color-rose-mid: #d5cacb;
  --color-rose-dark: #b69ea2;

  /* Functional neutrals only */
  --color-ink: #243338;
  --color-ink-muted: rgba(36, 51, 56, 0.76);
  --color-white: #ffffff;

  --font-body: Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --content-width: 1120px;
  --header-height: 76px;
  --section-space: 84px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 18px 50px rgba(36, 51, 56, 0.09);
  --shadow-card: 0 12px 34px rgba(36, 51, 56, 0.07);
  --line: rgba(36, 51, 56, 0.12);
  --copy-size: clamp(1.02rem, 1.05vw, 1.09rem);
  --copy-line: 1.68;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 3.7vw, 3.7rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  color: var(--color-petrol);
  font-size: clamp(1.9rem, 2.7vw, 2.78rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section h2::after {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--color-pink);
  content: "";
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.16rem, 1.5vw, 1.4rem);
  line-height: 1.3;
}

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

.section {
  position: relative;
  overflow: clip;
  padding: var(--section-space) 0;
}

.lead,
.large-copy {
  max-width: none;
  color: var(--color-ink-muted);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.section p {
  color: var(--color-ink-muted);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--color-petrol);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-pink);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--color-white);
  background: var(--color-petrol);
  box-shadow: 0 10px 25px rgba(20, 130, 159, 0.2);
}

.button-primary:hover {
  background: var(--color-petrol);
  box-shadow: 0 14px 30px rgba(20, 130, 159, 0.28), 0 0 0 2px rgba(193, 91, 140, 0.16);
}

.text-link {
  color: var(--color-petrol);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
}

/* Header / navigation */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  border-bottom: 1px solid rgba(36, 51, 56, 0.07);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 214px;
  height: auto;
}

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

.nav a {
  position: relative;
  color: var(--color-ink-muted);
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

.nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-pink);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

.nav-cta {
  padding: 10px 17px;
  border-radius: 999px;
  color: var(--color-white) !important;
  background: var(--color-petrol);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding: 26px 0 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(193, 91, 140, 0.09), transparent 25%),
    linear-gradient(125deg, var(--color-white) 0%, rgba(239, 228, 229, 0.56) 62%, rgba(213, 202, 203, 0.42) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(365px, 0.92fr);
  align-items: center;
  gap: clamp(38px, 5vw, 70px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 12.6ch;
}

.hero h1 span {
  position: relative;
  color: var(--color-petrol);
  white-space: nowrap;
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: -1%;
  bottom: 2px;
  left: 1%;
  height: 8px;
  border-radius: 999px;
  background: var(--color-yellow);
  content: "";
  opacity: 0.6;
  transform: rotate(-1deg);
}

.hero-copy .lead {
  max-width: 58ch;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.hero-note {
  max-width: 60ch;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(36, 51, 56, 0.13);
  color: var(--color-ink-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-note a {
  color: var(--color-petrol);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 455px;
  place-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: min(100%, 435px);
  isolation: isolate;
}

.hero-photo-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 8% -5% -5% 8%;
  border-radius: 42% 58% 46% 54% / 54% 38% 62% 46%;
  background: linear-gradient(145deg, rgba(164, 200, 207, 0.66), rgba(193, 91, 140, 0.2));
  content: "";
  transform: rotate(4deg);
}

.hero-photo {
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  border-radius: 47% 53% 49% 51% / 42% 39% 61% 58%;
  box-shadow: var(--shadow-soft);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
}

/* Recognition */
.recognize {
  background: var(--color-white);
}

.section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-head h2:last-child,
.section-head p:last-child {
  margin-bottom: 0;
}

.thought-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.thought {
  display: grid;
  min-height: 88px;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 15px;
  padding: 16px 22px;
  border: 1px solid rgba(213, 202, 203, 0.72);
  border-radius: 20px;
  background: rgba(239, 228, 229, 0.30);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.thought:hover {
  border-color: rgba(20, 130, 159, 0.18);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.thought-mark {
  position: relative;
  display: block;
  width: 28px;
  height: 24px;
  margin-top: 0;
}

.thought-mark::before,
.thought-mark::after {
  position: absolute;
  top: 4px;
  width: 16px;
  height: 10px;
  border-radius: 90% 10% 90% 10%;
  content: "";
}

.thought-mark::before {
  left: 0;
  background: var(--color-petrol);
  transform: rotate(-18deg);
}

.thought-mark::after {
  right: 0;
  background: var(--color-pink);
  transform: scaleX(-1) rotate(-18deg);
  opacity: 0.78;
}

.thought:nth-child(3n + 2) .thought-mark::before {
  background: var(--color-blue-light);
}

.thought:nth-child(3n) .thought-mark::after {
  background: var(--color-yellow);
  opacity: 1;
}

.thought:nth-child(4n) .thought-mark::before {
  background: var(--color-rose-dark);
}

.thought p {
  margin: 0;
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.5;
}

.recognize-close {
  max-width: none;
  margin: 34px 0 0;
}

/* Approach */
.approach {
  background: var(--color-rose-light);
}


.approach-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  align-items: start;
  gap: clamp(50px, 7vw, 84px);
}

.approach-copy p:last-child {
  margin-bottom: 0;
}

.principle {
  position: sticky;
  top: 118px;
  isolation: isolate;
  padding: 40px;
  border: 1px solid rgba(20, 130, 159, 0.26);
  border-radius: 38px 26px 42px 30px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.principle::before {
  position: absolute;
  z-index: -1;
  inset: 10px -10px -10px 10px;
  border: 2px solid rgba(193, 91, 140, 0.42);
  border-radius: 30px 42px 28px 40px;
  content: "";
  pointer-events: none;
}

.principle::after {
  position: absolute;
  z-index: -2;
  width: 76px;
  height: 76px;
  right: 24px;
  top: -20px;
  border-radius: 52% 48% 61% 39% / 43% 60% 40% 57%;
  background: rgba(253, 211, 141, 0.55);
  content: "";
  pointer-events: none;
}

.principle .mini {
  color: var(--color-pink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.principle blockquote {
  margin: 18px 0 24px;
  color: var(--color-petrol);
  font-size: clamp(1.75rem, 2.3vw, 2.55rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.principle p {
  margin-bottom: 0;
  color: var(--color-ink-muted);
}

/* Change */
.change {
  background: var(--color-white);
}

.change-head {
  margin-bottom: 22px;
}

.change-copy {
  max-width: none;
}

.change-copy p {
  margin-bottom: 18px;
}

.change-copy p:last-child {
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  background: rgba(239, 228, 229, 0.28);
}

.testimonial-head {
  margin-bottom: 34px;
}

.testimonial-carousel {
  --testimonial-peek: 72px;
  position: relative;
}

.testimonial-viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.testimonial-slide {
  position: relative;
  display: flex;
  flex: 0 0 calc(100% - var(--testimonial-peek));
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: clamp(30px, 4.2vw, 48px);
  border: 1px solid rgba(213, 202, 203, 0.86);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.testimonial-slide::before {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--color-pink);
  background: rgba(193, 91, 140, 0.12);
  content: "“";
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.testimonial-slide blockquote {
  max-width: 86ch;
  margin: 0;
}

.testimonial-slide p {
  margin-bottom: 16px;
}

.testimonial-slide p:last-child {
  margin-bottom: 0;
}

.testimonial-slide .testimonial-lead {
  margin-bottom: 20px;
  color: var(--color-petrol);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.018em;
}

.testimonial-author {
  width: 100%;
  max-width: 86ch;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(213, 202, 203, 0.72);
  color: var(--color-ink);
  font-size: 0.96rem;
  font-weight: 750;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.carousel-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(20, 130, 159, 0.24);
  border-radius: 50%;
  color: var(--color-petrol);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.carousel-arrow:hover:not(:disabled) {
  background: rgba(164, 200, 207, 0.22);
  transform: translateY(-1px);
}

.carousel-arrow:disabled {
  cursor: default;
  opacity: 0.34;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--color-rose-dark);
  cursor: pointer;
  opacity: 0.48;
  transition: width 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.carousel-dots button[aria-current="true"] {
  width: 26px;
  background: var(--color-pink);
  opacity: 1;
}

/* Coaching / accordion */
.coaching {
  background: var(--color-white);
}

.coaching-intro {
  max-width: none;
  margin-bottom: 42px;
}

.coaching-intro h2 {
  margin-bottom: 22px;
}

.faq-shell {
  overflow: hidden;
  border: 1px solid rgba(213, 202, 203, 0.78);
  border-radius: 24px;
  background: rgba(239, 228, 229, 0.22);
  box-shadow: 0 12px 34px rgba(36, 51, 56, 0.04);
}

.faq details {
  position: relative;
  border-bottom: 1px solid rgba(213, 202, 203, 0.72);
  background: transparent;
  transition: background-color 180ms ease;
}

.faq details:last-child {
  border-bottom: 0;
}

.faq details[open] {
  background: linear-gradient(90deg, rgba(239, 228, 229, 0.58), rgba(252, 249, 248, 0.55));
}

.faq details[open]::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--color-pink);
  content: "";
}

.faq summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  list-style: none;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 720;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--color-petrol);
  background: rgba(193, 91, 140, 0.14);
  content: "+";
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq details[open] summary {
  color: var(--color-petrol);
}

.faq details[open] summary::after {
  color: var(--color-white);
  background: var(--color-pink);
  content: "−";
}

.faq summary:hover::after {
  background: rgba(193, 91, 140, 0.22);
}

.faq-body {
  max-width: none;
  padding: 0 78px 26px 24px;
  color: var(--color-ink-muted);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.faq-body-inner {
  padding-left: 18px;
  border-left: 1px solid rgba(20, 130, 159, 0.22);
}

.faq-body p:last-child {
  margin-bottom: 0;
}

/* About */
.about {
  background: linear-gradient(135deg, rgba(164, 200, 207, 0.36) 0%, rgba(239, 228, 229, 0.92) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(54px, 7vw, 82px);
}

.about-photo {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  align-self: start;
  isolation: isolate;
}

.about-photo::before {
  position: absolute;
  z-index: -1;
  inset: 8% -5% -5% 9%;
  border: 1.5px solid var(--color-rose-dark);
  opacity: 0.55;
  border-radius: 48% 52% 45% 55% / 40% 43% 57% 60%;
  content: "";
  transform: rotate(-3.5deg);
}

.about-photo-frame {
  overflow: hidden;
  aspect-ratio: 0.79;
  border-radius: 45% 55% 48% 52% / 43% 39% 61% 57%;
  box-shadow: var(--shadow-soft);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

.credentials-title {
  margin: 32px 0 15px;
  color: var(--color-petrol);
  font-size: 1.12rem;
  font-weight: 750;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.credential {
  display: grid;
  min-height: 94px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid rgba(213, 202, 203, 0.72);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  line-height: 1.45;
}

.credential::before {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-petrol);
  background: rgba(193, 91, 140, 0.14);
  content: "✓";
  font-size: 0.86rem;
  font-weight: 900;
}

/* Certification badges */
.credential-badges {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.credential-badge {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.credential-badge-linc {
  max-width: 150px;
  max-height: 62px;
}

.credential-badge-insights {
  max-width: 62px;
  max-height: 78px;
}

/* Contact */
.contact {
  color: var(--color-ink);
  background: var(--color-rose-light);
}

.contact h2 {
  color: var(--color-petrol);
}

.contact-intro {
  max-width: none;
  margin-bottom: 36px;
}

.contact-intro .lead {
  max-width: none;
  color: var(--color-ink-muted);
}

.contact-actions-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}

.contact-card,
.contact-form-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  color: var(--color-ink);
  background: var(--color-white);
}

.contact-card h3 {
  color: var(--color-petrol);
}

.contact-card p {
  color: var(--color-ink-muted);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.contact-meta {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
}

.contact-meta a {
  color: var(--color-petrol);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form-panel {
  padding: 30px;
  border: 1px solid rgba(213, 202, 203, 0.86);
  background: rgba(255, 255, 255, 0.78);
}

.contact-form-panel h3 {
  margin-bottom: 8px;
  color: var(--color-petrol);
}

.form-intro {
  margin-bottom: 22px;
  color: var(--color-ink-muted) !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(182, 158, 162, 0.62);
  border-radius: 10px;
  outline: none;
  color: var(--color-ink);
  background: var(--color-white);
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(36, 51, 56, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(193, 91, 140, 0.9);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(193, 91, 140, 0.18);
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.checkbox-row {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 20px !important;
  color: var(--color-ink-muted) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.checkbox-row input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--color-pink);
}

.checkbox-row a {
  color: var(--color-petrol);
  text-underline-offset: 3px;
}

.web3forms-botcheck {
  display: none !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.button-full {
  width: 100%;
}

/* Placeholder business page */
.placeholder-page {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(164, 200, 207, 0.36) 0%, rgba(239, 228, 229, 0.92) 100%);
}

.placeholder-card {
  max-width: 760px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(213, 202, 203, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

/* Footer */
footer {
  padding: 27px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-petrol);
  font-size: 0.88rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
}


/* Legal pages */
.legal-main {
  min-height: calc(100svh - var(--header-height));
  padding: 54px 0 72px;
  background: linear-gradient(135deg, rgba(164, 200, 207, 0.22) 0%, rgba(239, 228, 229, 0.62) 100%);
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(213, 202, 203, 0.82);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.legal-card h1 {
  margin-bottom: 34px;
  color: var(--color-petrol);
  font-size: clamp(2.25rem, 4vw, 3.35rem);
}

.legal-card h2 {
  margin: 34px 0 13px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.015em;
}

.legal-card h2::after {
  display: none;
}

.legal-card p,
.legal-card li {
  color: var(--color-ink-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-card a {
  color: var(--color-petrol);
  text-underline-offset: 3px;
}

.legal-updated {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(213, 202, 203, 0.8);
  font-size: 0.9rem !important;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1030px) {
  .brand img {
    width: 196px;
  }

  .nav {
    gap: 17px;
  }

  .nav a {
    font-size: 0.88rem;
  }

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

  .hero-visual {
    min-height: 420px;
  }

  .approach-grid,
  .about-grid {
    gap: 50px;
  }
}

@media (max-width: 880px) {
  .mobile-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(var(--header-height) - 4px);
    right: 22px;
    left: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 18px;
    border: 1px solid rgba(36, 51, 56, 0.08);
    border-radius: 20px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px 11px;
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 58px;
  }

  .hero-grid,
  .approach-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: auto;
    padding: 0 34px;
  }

  .hero-photo-wrap {
    max-width: 560px;
  }

  .principle {
    position: relative;
    top: auto;
  }


  .about-photo {
    position: relative;
    top: auto;
    max-width: 560px;
    margin-inline: auto;
  }

}


@media (max-width: 880px) and (min-width: 661px) {
  .section {
    padding: 70px 0;
  }

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

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
  }

  .brand img {
    width: 176px;
  }

  .hero {
    padding: 42px 0 50px;
  }

  .hero h1 span {
    white-space: normal;
  }

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

  .button {
    width: 100%;
  }

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

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

  .thought {
    min-height: 0;
  }

  .faq summary {
    grid-template-columns: 1fr 30px;
    gap: 14px;
    padding: 19px 18px;
    font-size: 1.03rem;
  }

  .faq-body {
    padding: 0 18px 22px;
  }

  .principle,
  .contact-card {
    padding: 27px;
    border-radius: 26px;
  }

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

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-height: 760px) and (min-width: 881px) {
  .hero {
    padding-block: 18px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 3.5vw, 3.45rem);
    margin-bottom: 14px;
  }


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

  .hero-note {
    margin-top: 14px;
    padding-top: 12px;
  }

  .hero-visual {
    min-height: 405px;
  }

  .hero-photo-wrap {
    width: min(100%, 395px);
  }
}

@media (max-width: 660px) {
  .testimonial-carousel {
    --testimonial-peek: 0px;
  }

  .testimonial-slide {
    min-height: 0;
    padding: 26px 22px;
  }

  .testimonial-slide::before {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
  }

  .testimonial-controls {
    gap: 14px;
  }

  .credential-badges {
    gap: 24px;
  }

  .credential-badge-linc {
    max-width: 138px;
    max-height: 58px;
  }

  .credential-badge-insights {
    max-width: 58px;
    max-height: 72px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* V11: Unternehmensseite */
.business-page h4 {
  margin: 0 0 13px;
  color: var(--color-petrol);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.business-hero {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding: 34px 0 38px;
  background: linear-gradient(130deg, var(--color-white) 0%, rgba(164, 200, 207, 0.30) 58%, rgba(239, 228, 229, 0.70) 100%);
}

.business-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 74px);
}

.business-hero-copy h1 {
  max-width: 12ch;
}

.business-hero-copy h1 span {
  position: relative;
  color: var(--color-petrol);
  white-space: nowrap;
}

.business-hero-copy h1 span::after {
  position: absolute;
  z-index: -1;
  right: -1%;
  bottom: 1px;
  left: 1%;
  height: 8px;
  border-radius: 999px;
  background: var(--color-yellow);
  content: "";
  opacity: 0.55;
  transform: rotate(-1deg);
}

.business-hero-copy .lead {
  max-width: 62ch;
  margin-bottom: 0;
}

.business-hero-visual {
  display: grid;
  min-height: 470px;
  place-items: center;
}

.business-photo-wrap {
  position: relative;
  width: min(100%, 420px);
  isolation: isolate;
}

.business-photo-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 7% -5% -5% 8%;
  border: 1.5px solid rgba(193, 91, 140, 0.48);
  border-radius: 37px 26px 40px 30px;
  content: "";
  transform: rotate(2.4deg);
}

.business-photo-wrap::after {
  position: absolute;
  z-index: -2;
  right: 20px;
  bottom: -18px;
  width: 84px;
  height: 84px;
  border-radius: 52% 48% 61% 39% / 43% 60% 40% 57%;
  background: rgba(253, 211, 141, 0.56);
  content: "";
}

.business-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.business-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.business-challenges {
  background: var(--color-white);
}

.business-challenge-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
}

.business-challenge-card {
  display: grid;
  min-height: 164px;
  grid-column: span 2;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(213, 202, 203, 0.78);
  border-radius: 20px;
  background: rgba(239, 228, 229, 0.28);
  box-shadow: 0 10px 26px rgba(36, 51, 56, 0.04);
}

.business-challenge-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.business-challenge-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.business-challenge-card p {
  margin: 0;
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.55;
}

.business-card-mark {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(193, 91, 140, 0.14);
  position: relative;
}

.business-card-mark::before {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 12px;
  height: 8px;
  border-right: 2px solid var(--color-petrol);
  border-bottom: 2px solid var(--color-petrol);
  content: "";
  transform: rotate(-45deg) skew(-4deg);
}

.business-view {
  background: var(--color-rose-light);
}

.business-view-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 84px);
}

.business-principle {
  position: relative;
  isolation: isolate;
  padding: 34px 36px;
  border: 1px solid rgba(20, 130, 159, 0.25);
  border-radius: 34px 25px 38px 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
}

.business-principle::before {
  position: absolute;
  z-index: -1;
  inset: 9px -9px -9px 9px;
  border: 1.5px solid rgba(193, 91, 140, 0.40);
  border-radius: 27px 38px 26px 36px;
  content: "";
}

.business-principle .mini {
  color: var(--color-pink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.business-principle blockquote {
  margin: 17px 0 0;
  color: var(--color-petrol);
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.business-offer {
  background: var(--color-white);
}

.business-offer-head {
  max-width: none;
}

.business-service-stack {
  display: grid;
  gap: 24px;
}

.business-service-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(213, 202, 203, 0.82);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.business-service-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--color-pink);
  content: "";
}

.business-service-card:nth-child(2)::before {
  background: var(--color-petrol);
}

.business-service-card:nth-child(3)::before {
  background: var(--color-yellow);
}

.business-service-heading {
  max-width: 900px;
  margin-bottom: 26px;
}

.business-service-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-pink);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.business-service-card:nth-child(2) .business-service-kicker {
  color: var(--color-petrol);
}

.business-service-card:nth-child(3) .business-service-kicker {
  color: var(--color-rose-dark);
}

.business-service-card h3 {
  margin-bottom: 14px;
  color: var(--color-petrol);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}

.business-service-heading p,
.business-benefit p {
  margin-bottom: 0;
}

.business-service-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 28px;
}

.business-service-details > div {
  padding: 22px;
  border-radius: 16px;
}

.business-service-details > div:first-child {
  border: 1px solid rgba(213, 202, 203, 0.72);
  background: rgba(239, 228, 229, 0.27);
}

.business-benefit {
  border: 1px solid rgba(164, 200, 207, 0.58);
  background: rgba(164, 200, 207, 0.18);
}

.business-topic-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-topic-list li {
  position: relative;
  padding-left: 21px;
  color: var(--color-ink-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.business-topic-list li::before {
  position: absolute;
  top: 0.68em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-pink);
  content: "";
  transform: translateY(-50%);
}

.business-note {
  margin-top: 17px !important;
  padding-top: 15px;
  border-top: 1px solid rgba(20, 130, 159, 0.18);
  font-size: 0.91rem !important;
}

.business-process {
  background: rgba(239, 228, 229, 0.38);
}

.business-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-process-step {
  min-height: 255px;
  padding: 24px 20px;
  border: 1px solid rgba(213, 202, 203, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.business-step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 50%;
  color: var(--color-petrol);
  background: rgba(193, 91, 140, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
}

.business-process-step:nth-child(even) .business-step-number {
  background: rgba(164, 200, 207, 0.30);
}

.business-process-step h3 {
  min-height: 3.9em;
  margin-bottom: 10px;
  color: var(--color-petrol);
  font-size: 1.1rem;
}

.business-process-step p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
}

.business-expertise {
  background: linear-gradient(135deg, rgba(164, 200, 207, 0.28) 0%, rgba(239, 228, 229, 0.88) 100%);
}

.business-expertise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: start;
  gap: clamp(48px, 7vw, 78px);
}

.business-expertise-panel {
  padding: 30px;
  border: 1px solid rgba(213, 202, 203, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.business-expertise-facts {
  display: grid;
  gap: 12px;
}

.business-expertise-fact {
  display: grid;
  min-height: 78px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px 15px;
  border: 1px solid rgba(213, 202, 203, 0.65);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.business-expertise-fact > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-petrol);
  background: rgba(193, 91, 140, 0.14);
  font-size: 0.86rem;
  font-weight: 900;
}

.business-expertise-fact p {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.business-badge-label {
  margin-top: 26px;
  color: var(--color-petrol);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.business-credential-badges {
  margin-top: 18px;
}

.business-contact {
  border-top: 1px solid rgba(213, 202, 203, 0.62);
}

@media (max-width: 1030px) {
  .business-hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 38px;
  }

  .business-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-process-step:nth-child(4),
  .business-process-step:nth-child(5) {
    min-height: 220px;
  }
}

@media (max-width: 880px) {
  .business-hero {
    min-height: auto;
    padding: 52px 0 60px;
  }

  .business-hero-grid,
  .business-view-grid,
  .business-expertise-grid {
    grid-template-columns: 1fr;
  }

  .business-hero-grid {
    gap: 48px;
  }

  .business-hero-visual {
    min-height: auto;
  }

  .business-photo-wrap {
    max-width: 530px;
    margin-inline: auto;
  }

  .business-challenge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-challenge-card,
  .business-challenge-card:nth-child(4),
  .business-challenge-card:nth-child(5) {
    grid-column: auto;
  }

  .business-challenge-card:last-child {
    grid-column: 1 / -1;
  }

  .business-service-details {
    grid-template-columns: 1fr;
  }

  .business-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-process-step,
  .business-process-step:nth-child(4),
  .business-process-step:nth-child(5) {
    min-height: 0;
  }
}

@media (max-width: 660px) {
  .business-hero {
    padding: 42px 0 52px;
  }

  .business-hero-copy h1 span {
    white-space: normal;
  }

  .business-photo-wrap {
    width: calc(100% - 14px);
  }

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

  .business-challenge-card:last-child {
    grid-column: auto;
  }

  .business-challenge-card {
    min-height: 0;
    padding: 20px;
  }

  .business-principle,
  .business-expertise-panel,
  .business-service-card {
    padding: 25px 22px;
  }

  .business-service-details > div {
    padding: 19px;
  }

  .business-process-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 20px;
  }

  .business-process-step h3 {
    min-height: 0;
  }

  .business-step-number {
    margin-bottom: 0;
  }

  .business-credential-badges {
    gap: 22px;
  }
}

@media (max-height: 760px) and (min-width: 881px) {
  .business-hero {
    padding-block: 20px;
  }

  .business-hero-copy h1 {
    font-size: clamp(2.3rem, 3.5vw, 3.45rem);
    margin-bottom: 14px;
  }

  .business-hero-visual {
    min-height: 405px;
  }

  .business-photo-wrap {
    width: min(100%, 365px);
  }
}

/* v12: Consistent hover microinteractions on business page */
.business-challenge-card,
.business-process-step {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .business-challenge-card:hover {
    border-color: rgba(20, 130, 159, 0.18);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
  }

  .business-process-step:hover {
    border-color: rgba(20, 130, 159, 0.20);
    box-shadow: 0 12px 30px rgba(36, 51, 56, 0.07);
    transform: translateY(-3px);
  }

  .business-process-step:hover .business-step-number {
    box-shadow: 0 0 0 4px rgba(193, 91, 140, 0.08);
  }
}


/* v14: Large-desktop hero tuning.
   Keeps the hero at full viewport height while scaling the composition
   moderately on wide/tall screens and positioning it slightly above center. */
@media (min-width: 1500px) and (min-height: 850px) {
  :root {
    --content-width: 1240px;
  }

  .hero,
  .business-hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: 0;
    padding-bottom: clamp(48px, 7vh, 88px);
  }

  .hero-grid,
  .business-hero-grid {
    gap: clamp(68px, 5vw, 92px);
  }

  .hero h1,
  .business-hero-copy h1 {
    font-size: clamp(3.7rem, 3.15vw, 3.95rem);
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-photo-wrap {
    width: min(100%, 485px);
  }

  .business-hero-visual {
    min-height: 520px;
  }

  .business-photo-wrap {
    width: min(100%, 470px);
  }
}
