:root {
  --ink: #0b1f2d;
  --teal-950: #003b4b;
  --teal-800: #00566a;
  --teal-700: #0d5c75;
  --mint: #62fae3;
  --pale: #e7eeff;
  --paper: #f9f9ff;
  --muted: #505965;
  --line: #cbd5e5;
  --display: "Hanken Grotesk", Arial, sans-serif;
  --body: Inter, Arial, sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(100% - 48px, 1280px); margin: 0 auto; }
.section { padding: 104px 0; }

.site-header { position: sticky; top: 0; z-index: 20; height: 94px; background: rgba(249, 249, 255, .94); border-bottom: 1px solid rgba(11, 31, 45, .08); backdrop-filter: blur(14px); }
.header-inner { width: min(100% - 48px, 1420px); height: 100%; margin: 0 auto; display: flex; align-items: center; gap: 46px; }
.brand { color: var(--teal-950); font-family: Oswald, Arial, sans-serif; font-size: 2.15rem; font-weight: 600; letter-spacing: .07em; line-height: 1; }
.main-menu { display: flex; gap: 44px; margin-left: auto; font-weight: 600; font-size: 1.04rem; }
.main-menu a { position: relative; padding: 8px 0; }
.main-menu a::after { position: absolute; content: ""; right: 0; bottom: 2px; left: 0; height: 2px; background: var(--mint); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 14px; padding: 17px 24px; font-weight: 700; font-size: 1rem; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg, .text-link svg { width: 19px; height: 19px; stroke-width: 2.3; }
.button-small { margin-left: 16px; padding: 16px 28px; background: var(--teal-950); color: white; box-shadow: 0 10px 18px rgba(0, 67, 87, .18); }
.menu-button { display: none; border: 0; background: transparent; color: var(--teal-950); cursor: pointer; }

.hero { position: relative; overflow: hidden; min-height: calc(100svh - 174px); display: grid; align-items: center; padding: clamp(40px, 5vh, 66px) 0 clamp(58px, 7vh, 88px); background: linear-gradient(125deg, #004357 0%, #003440 100%); color: white; clip-path: polygon(0 0, 100% 0, 100% 93%, 68% 100%, 0 96%); }
.hero::before { position: absolute; content: ""; inset: 0; opacity: .15; background-image: radial-gradient(circle, #62fae3 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to right, black, transparent 68%); }
.hero-lines { position: absolute; width: 600px; height: 2px; right: -110px; top: 230px; background: linear-gradient(90deg, transparent, var(--mint)); transform: rotate(-35deg); box-shadow: 0 56px 1px rgba(144, 207, 236, .4); opacity: .5; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr .94fr; align-items: center; gap: clamp(42px, 5vw, 76px); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--teal-800); font-family: var(--mono); font-size: .75rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
.hero .eyebrow { color: var(--mint); }
.eyebrow span { width: 9px; height: 9px; border-radius: 99px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); letter-spacing: 0; }
h1 { max-width: 730px; margin-bottom: 30px; font-size: clamp(3rem, 5vw, 5.35rem); line-height: 1.02; }
h1 em, .benefits-heading em { color: var(--mint); font-style: normal; }
.hero-intro { max-width: 620px; margin-bottom: 38px; color: #c7e8f5; font-size: clamp(1.08rem, 1.45vw, 1.35rem); font-weight: 500; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button-accent { background: var(--mint); color: #003b4b; }
.button-outline { border-color: rgba(255,255,255,.45); color: white; }
.hero-visual { position: relative; }
.photo-frame { padding: 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 34px; background: rgba(255,255,255,.09); box-shadow: 0 30px 60px rgba(0,0,0,.25); transform: rotate(3deg); transition: transform .4s ease; }
.hero-visual:hover .photo-frame { transform: rotate(0); }
.photo-frame img { display: block; width: 100%; aspect-ratio: 1.5; border-radius: 21px; object-fit: cover; }
.visual-note { position: absolute; z-index: 2; bottom: 22px; left: -28px; display: flex; align-items: center; gap: 10px; width: 190px; min-height: 106px; padding: 20px; border-radius: 22px; background: var(--mint); color: var(--teal-950); box-shadow: 0 16px 30px rgba(0,0,0,.18); font-family: var(--display); font-weight: 700; }
.visual-note svg { flex: 0 0 auto; }

@media (min-width: 921px) {
  .hero {
    height: max(580px, calc(100svh - 190px));
    min-height: 0;
  }

  .hero-visual {
    width: min(100%, 540px);
    justify-self: end;
  }

  .photo-frame img {
    max-height: 390px;
  }
}

.services { padding-top: 60px; }
.service-layout { display: grid; grid-template-columns: 1.15fr .85fr; align-items: stretch; gap: 0; }
.service-card { min-height: 420px; padding: 60px; border-radius: 36px; }
.service-card-light { position: relative; z-index: 1; background: #d9e5fb; overflow: hidden; }
.service-card-light { padding-right: 180px; }
.service-card-light::after { position: absolute; content: ""; top: -120px; right: -100px; width: 390px; height: 390px; border-radius: 50%; background: rgba(255,255,255,.25); }
.service-card-dark { z-index: 2; margin: 70px 0 -40px -80px; background: var(--teal-950); color: white; box-shadow: 0 20px 40px rgba(0, 67, 87, .14); }
.feature-icon { color: var(--teal-950); width: 44px; height: 44px; margin-bottom: 34px; stroke-width: 1.7; }
.service-card h2, .expertise-card h2, .contact h2 { margin-bottom: 22px; font-size: clamp(2rem, 3vw, 3.25rem); line-height: 1.1; }
.service-card p { max-width: 33rem; font-size: 1.15rem; }
.text-link { display: inline-flex; align-items: center; gap: 13px; margin-top: 20px; color: var(--teal-950); font-weight: 700; }
.eyebrow-dark { color: var(--mint); }
.service-card-dark h2 { font-size: 2.2rem; }
.service-card-dark p { color: #c4e0eb; }
.card-rule { height: 1px; margin: 48px 0 26px; background: rgba(255,255,255,.17); }
.service-card-dark .card-highlight { color: var(--mint); font-family: var(--display); font-size: 1.35rem; font-weight: 700; }
.expertise-card { display: flex; justify-content: space-between; align-items: center; gap: 50px; margin-top: 92px; padding: 48px 60px; border: 1px solid #ced9eb; border-radius: 36px; background: var(--pale); }
.expertise-card > div:first-child { max-width: 700px; }
.expertise-card p { margin: 0; color: var(--muted); font-size: 1.12rem; }
.expertise-points { display: flex; gap: 22px; }
.expertise-points span { display: grid; justify-items: center; gap: 8px; min-width: 106px; color: var(--teal-950); font-family: var(--display); font-weight: 700; text-align: center; }
.expertise-points svg { color: var(--teal-700); }

.benefits { position: relative; overflow: hidden; background: var(--teal-950); color: white; }
.benefits::before { position: absolute; content: ""; inset: 0; opacity: .1; background-image: radial-gradient(var(--mint) 1px, transparent 1px); background-size: 35px 35px; }
.benefits-layout { position: relative; display: grid; grid-template-columns: 300px 1fr; gap: 55px; align-items: center; }
.benefits-heading .eyebrow { color: var(--mint); }
.benefits-heading h2 { margin: 0; font-size: clamp(2.5rem, 4vw, 4.1rem); line-height: 1.12; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-grid article { min-height: 230px; padding: 30px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: rgba(255,255,255,.08); text-align: center; }
.benefit-grid article:nth-child(even) { transform: translateY(28px); }
.benefit-grid svg { width: 48px; height: 48px; margin: 12px 0 20px; color: var(--mint); stroke-width: 1.8; }
.benefit-grid h3 { margin-bottom: 8px; font-size: 1.35rem; }
.benefit-grid p { margin: 0; color: #c4e0eb; font-size: .92rem; }

.contact { background: #fff; }
.contact-panel { display: flex; justify-content: space-between; align-items: center; gap: 50px; padding: 64px; border-radius: 36px; background: #d9e5fb; }
.contact-panel > div:first-child { max-width: 660px; }
.contact-panel p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); font-size: 1.16rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button-outline-dark { border-color: var(--teal-950); color: var(--teal-950); }

.page-hero { position: relative; overflow: hidden; padding: 105px 0 128px; background: linear-gradient(125deg, #004357 0%, #003440 100%); color: white; }
.page-hero::after { position: absolute; content: ""; width: 550px; height: 550px; right: -210px; bottom: -280px; border: 70px solid rgba(98,250,227,.1); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--mint); }
.page-hero h1 { max-width: 850px; margin-bottom: 20px; }
.page-hero p:not(.eyebrow) { max-width: 720px; margin: 0; color: #c7e8f5; font-size: 1.25rem; }
.page-content { padding: 96px 0 112px; }
.page-intro { max-width: 830px; margin-bottom: 64px; }
.page-intro h2, .content-panel h2 { margin-bottom: 20px; color: var(--teal-950); font-size: clamp(2rem, 3vw, 3rem); line-height: 1.13; }
.page-intro p { margin: 0; color: var(--muted); font-size: 1.18rem; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(290px, .7fr); gap: 32px; align-items: start; }
.content-panel { padding: 48px; border: 1px solid #d5dfed; border-radius: 28px; background: white; }
.content-panel p { color: var(--muted); font-size: 1.07rem; }
.content-panel-dark { background: var(--teal-950); border-color: var(--teal-950); color: white; }
.content-panel-dark h2, .content-panel-dark p { color: white; }
.content-panel-dark p { color: #c7e8f5; }
.check-list, .service-list { display: grid; gap: 14px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li, .service-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.content-panel-dark .check-list li { color: white; }
.check-list svg, .service-list svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 3px; color: var(--teal-700); stroke-width: 2.5; }
.content-panel-dark .check-list svg { color: var(--mint); }
.service-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px 26px; }
.service-list li { font-weight: 500; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 42px 0 26px; }
.price-card { min-height: 205px; padding: 30px; border: 1px solid #c8d8ef; border-radius: 24px; background: var(--pale); }
.price-card h3 { min-height: 53px; margin-bottom: 22px; color: var(--teal-950); font-size: 1.1rem; line-height: 1.22; }
.price-card strong { display: block; color: var(--teal-950); font-family: var(--display); font-size: 2rem; line-height: 1.1; }
.notice { margin-top: 30px; padding: 22px 24px; border-left: 4px solid var(--mint); background: #ecfffb; color: var(--teal-950); font-weight: 600; }
.partner-steps { display: grid; gap: 18px; counter-reset: partnership; }
.partner-step { position: relative; padding: 28px 28px 28px 83px; border: 1px solid #d5dfed; border-radius: 22px; background: white; }
.partner-step::before { position: absolute; top: 27px; left: 25px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-950); color: var(--mint); content: counter(partnership); counter-increment: partnership; font-family: var(--mono); font-size: .85rem; }
.partner-step h3 { margin-bottom: 8px; color: var(--teal-950); font-size: 1.3rem; }
.partner-step p { margin: 0; color: var(--muted); }
.legal-content { max-width: 920px; }
.legal-content .content-panel { padding: 54px 60px; }
.legal-content h2 { margin: 48px 0 16px; color: var(--teal-950); font-size: 1.55rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 26px 0 10px; color: var(--teal-950); font-size: 1.1rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { padding-left: 22px; }
.legal-content a { color: var(--teal-800); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal-warning { margin: 32px 0 0; padding: 20px 22px; border: 1px solid #e5bd6c; border-radius: 14px; background: #fff8e6; color: #654500 !important; }

.site-footer { padding: 70px 0 28px; background: white; border-top: 1px solid #e1e6ee; }
.footer-main { display: flex; justify-content: space-between; gap: 50px; }
.footer-main .brand { display: inline-block; margin-bottom: 16px; }
.footer-main p, .footer-contact a { color: var(--muted); font-size: .96rem; }
.footer-contact { display: grid; align-content: start; justify-items: end; gap: 5px; text-align: right; }
.footer-contact a { color: var(--teal-950); font-weight: 600; }
.footer-contact p { margin-top: 14px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 30px; margin-top: 46px; color: var(--muted); font-size: .95rem; }
.footer-nav a:hover { color: var(--teal-950); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 58px; padding-top: 22px; border-top: 1px solid #e6e9ef; color: #7a8088; font-family: var(--mono); font-size: .69rem; letter-spacing: .08em; text-transform: uppercase; }

/* Standalone salmon palette used only by farbvariante.html. */
.salmon-variant {
  --teal-950: #342d2e;
  --teal-800: #76514b;
  --teal-700: #bd6d5d;
  --mint: #f1967a;
  --pale: #f8e3dc;
}
.salmon-variant .hero {
  background: linear-gradient(125deg, #3d3435 0%, #2d2728 100%);
}
.salmon-variant .hero::before,
.salmon-variant .benefits::before {
  background-image: radial-gradient(circle, #f1967a 1px, transparent 1px);
}
.salmon-variant .service-card-light,
.salmon-variant .contact-panel {
  background: #f8e3dc;
}
.salmon-variant .expertise-card {
  border-color: #e8c7be;
  background: #f7ded6;
}
.salmon-variant .service-card-light::after {
  background: rgba(255, 255, 255, .38);
}
.salmon-variant .notice {
  border-left-color: #f1967a;
  background: #fff0eb;
}

@media (max-width: 920px) {
  .site-header { height: 76px; }
  .header-inner { gap: 16px; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; padding: 9px; }
  .header-contact { display: none; }
  .main-menu { position: absolute; top: 76px; right: 24px; left: 24px; display: none; flex-direction: column; gap: 0; padding: 14px 22px; border: 1px solid #d9e1ec; border-radius: 16px; background: var(--paper); box-shadow: 0 16px 35px rgba(0, 50, 68, .12); }
  .main-menu.is-open { display: flex; }
  .main-menu a { padding: 13px 0; }
  .hero { min-height: auto; padding-top: 88px; padding-bottom: 132px; }
  .hero-grid, .service-layout, .benefits-layout { grid-template-columns: 1fr; }
  .hero-visual { max-width: 680px; margin: 14px auto 0; }
  .service-card-dark { margin: -22px 26px 0; }
  .expertise-card { align-items: flex-start; flex-direction: column; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-heading { text-align: center; }
  .benefits-heading .eyebrow { justify-content: center; }
  .contact-panel { align-items: flex-start; flex-direction: column; }
  .content-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container, .header-inner { width: min(100% - 32px, 1280px); }
  .section { padding: 72px 0; }
  .brand { font-size: 1.65rem; }
  .hero { padding: 70px 0 115px; clip-path: none; }
  h1 { font-size: 2.8rem; }
  .hero-intro { font-size: 1.04rem; }
  .hero-actions, .hero-actions .button, .contact-actions, .contact-actions .button { width: 100%; }
  .photo-frame { padding: 10px; border-radius: 24px; transform: rotate(0); }
  .photo-frame img { border-radius: 16px; }
  .visual-note { bottom: -24px; left: -4px; min-height: 73px; width: 165px; padding: 13px; font-size: .9rem; }
  .services { padding-top: 72px; }
  .service-card { min-height: auto; padding: 38px 28px; border-radius: 26px; }
  .service-card-dark { margin: -14px 10px 0; }
  .expertise-card { gap: 30px; margin-top: 44px; padding: 34px 28px; border-radius: 26px; }
  .expertise-points { width: 100%; justify-content: space-between; gap: 8px; }
  .expertise-points span { min-width: 0; font-size: .86rem; }
  .benefit-grid { gap: 13px; }
  .benefit-grid article { min-height: 185px; padding: 18px 10px; border-radius: 20px; }
  .benefit-grid article:nth-child(even) { transform: translateY(0); }
  .benefit-grid svg { width: 38px; height: 38px; }
  .contact-panel { padding: 38px 28px; border-radius: 26px; }
  .page-hero { padding: 72px 0 82px; }
  .page-hero p:not(.eyebrow) { font-size: 1.08rem; }
  .page-content { padding: 64px 0 76px; }
  .content-panel { padding: 32px 25px; border-radius: 22px; }
  .legal-content .content-panel { padding: 34px 26px; }
  .service-list { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-nav { justify-content: flex-start; gap: 10px 22px; margin-top: 34px; }
  .footer-contact { justify-items: start; text-align: left; }
  .footer-bottom { margin-top: 40px; font-size: .61rem; }
}
