:root {
  --ink: #101827;
  --muted: #5b6678;
  --paper: #f4f8fc;
  --white: #ffffff;
  --blue: #0a62ad;
  --blue-deep: #063d78;
  --blue-soft: #d9ecfb;
  --aqua: #1bb7c8;
  --coral: #f07a3d;
  --gold: #f7bd4b;
  --line: rgba(16, 24, 39, 0.13);
  --shadow: 0 24px 70px rgba(6, 61, 120, 0.18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

select {
  font: inherit;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  min-height: 66px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(6, 61, 120, 0.13);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  font-weight: 800;
}

.brand-logo {
  display: none;
  width: auto;
  max-width: 154px;
  height: 48px;
  object-fit: contain;
}

.brand.has-logo {
  min-width: 250px;
}

.brand.has-logo .brand-mark,
.brand.has-logo > span:last-child {
  display: none;
}

.brand.has-logo .brand-logo {
  display: block;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px max(24px, calc((100vw - 1180px) / 2)) 38px;
  color: var(--white);
  isolation: isolate;
}

.brand-hero {
  background:
    linear-gradient(90deg, rgba(4, 25, 52, 0.86), rgba(10, 98, 173, 0.24) 58%, rgba(10, 98, 173, 0.08)),
    url("./bilder/physicalone-pets-golden-retriever-behandlungsraum-hero.webp") center / cover,
    linear-gradient(135deg, #052f63 0%, #0a62ad 52%, #0e88bf 100%);
}

.brand-hero::before {
  position: absolute;
  right: max(26px, calc((100vw - 1180px) / 2));
  bottom: 178px;
  width: min(360px, 42vw);
  aspect-ratio: 1;
  content: "";
  border: 24px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.82) 0 21%, transparent 22%),
    radial-gradient(circle at 33% 30%, rgba(255, 255, 255, 0.72) 0 10%, transparent 11%),
    radial-gradient(circle at 49% 22%, rgba(255, 255, 255, 0.72) 0 10%, transparent 11%),
    radial-gradient(circle at 65% 30%, rgba(255, 255, 255, 0.72) 0 10%, transparent 11%),
    radial-gradient(circle at 73% 48%, rgba(255, 255, 255, 0.72) 0 10%, transparent 11%);
  opacity: 0.8;
  display: none;
}

.brand-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  content: "";
  background: linear-gradient(0deg, rgba(4, 25, 52, 0.78), transparent);
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd08f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.17rem, 4.08vw, 4.34rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.16;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions.centered {
  justify-content: center;
}

.button {
  border: 0;
  padding: 0 20px;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 14px 28px rgba(10, 98, 173, 0.28);
}

.button.secondary {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.88);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(217, 236, 251, 0.24);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 126px;
  padding: 22px;
  background: rgba(4, 36, 74, 0.42);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

section:not(.hero) {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.section-band {
  background: var(--white);
}

.announcement {
  padding-top: 74px;
  padding-bottom: 74px;
}

.announcement-card {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 236, 251, 0.72), rgba(255, 255, 255, 0.95)),
    var(--white);
  box-shadow: 0 18px 54px rgba(6, 61, 120, 0.1);
}

.announcement-content {
  display: grid;
  gap: 24px;
  align-items: start;
}

.announcement-card h2 {
  max-width: 920px;
}

.announcement-visual {
  width: 100%;
  max-width: 920px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 98, 173, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 61, 120, 0.1);
}

.announcement-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.announcement-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1040px;
}

.announcement-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.announcement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-teasers {
  padding-top: 76px;
}

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

.teaser-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(6, 61, 120, 0.09);
}

.teaser-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #f3f9ff;
}

.teaser-card strong {
  display: block;
  padding: 22px 22px 6px;
  color: var(--blue-deep);
  font-size: 1.28rem;
}

.teaser-card span {
  display: block;
  padding: 0 22px 24px;
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

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

.intro-grid article {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f3f9ff);
}

.line-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon.alert {
  color: var(--coral);
}

.intro-grid:has(article:nth-child(4)) {
  grid-template-columns: repeat(4, 1fr);
}

.intro-grid span {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--coral);
  font-weight: 900;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(6, 61, 120, 0.09);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
}

.service-card:not(:has(img)) {
  min-height: 100%;
}

.service-card div {
  padding: 22px;
}

.service-card p,
.intro-grid p,
.timeline p,
.team-copy p,
.contact-copy p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f3f9ff);
}

.timeline span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  font-weight: 900;
}

.team {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.text-columns,
.two-panel,
.feature-strip,
.media-split {
  display: grid;
  gap: 18px;
}

.media-split {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 54px;
}

.media-split p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.media-split img {
  width: 100%;
  height: auto;
  max-height: 420px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #f3f9ff;
}

.text-columns {
  grid-template-columns: repeat(2, 1fr);
  color: var(--muted);
  font-size: 1.08rem;
}

.wide-copy {
  max-width: 860px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.wide-photo {
  margin: 28px 0 0;
}

.wide-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f3f9ff;
  box-shadow: var(--shadow);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.article-body {
  display: grid;
  gap: 28px;
}

.article-body h2 {
  margin-top: 10px;
}

.article-body h3 {
  margin-bottom: 8px;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.article-body ul {
  padding-left: 22px;
}

.article-lead {
  font-size: 1.2rem;
  color: var(--ink);
}

.article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.aside-card,
.source-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: var(--soft-shadow);
}

.aside-card a,
.source-card a {
  color: var(--blue);
  font-weight: 800;
}

.article-image,
.infographic-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f3f9ff;
  box-shadow: var(--shadow);
}

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

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

.article-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: inherit;
  box-shadow: var(--soft-shadow);
}

.article-card span {
  color: var(--muted);
}

.guide-heading {
  margin-bottom: 22px;
}

.guide-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.guide-categories a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f3f9ff;
  color: var(--blue);
  font-weight: 850;
}

.related-links {
  display: grid;
  gap: 14px;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f3f9ff);
}

.related-links h2 {
  margin: 0;
  font-size: 1.35rem;
}

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

.related-links a {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font-weight: 850;
}

.feature-strip {
  grid-template-columns: repeat(3, 1fr);
}

.feature-strip a,
.two-panel > div,
.address-card,
.third-party-box,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(6, 61, 120, 0.08);
}

.feature-strip a {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  gap: 18px;
  padding: 26px;
}

.feature-strip strong {
  color: var(--blue-deep);
  font-size: 1.35rem;
}

.feature-strip span {
  color: var(--muted);
}

.feature-strip em {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-style: normal;
  font-weight: 800;
}

.two-panel {
  grid-template-columns: repeat(2, 1fr);
}

.two-panel > div {
  padding: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-deep);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.subpage {
  padding-top: 106px;
}

.page-hero {
  padding: 76px max(24px, calc((100vw - 1180px) / 2)) 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(247, 189, 75, 0.28), transparent 26%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.photo-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.photo-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 25, 52, 0.82) 0%, rgba(6, 61, 120, 0.7) 43%, rgba(10, 98, 173, 0.52) 100%),
    rgba(10, 98, 173, 0.18);
}

.photo-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 38%;
  content: "";
  background: linear-gradient(0deg, rgba(4, 25, 52, 0.4), transparent);
}

.photo-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.photo-hero-content h1 {
  text-shadow: 0 3px 18px rgba(4, 25, 52, 0.3);
}

.booking-hero {
  background:
    linear-gradient(90deg, rgba(4, 25, 52, 0.88), rgba(10, 98, 173, 0.22)),
    url("./bilder/physicalone-pets-online-terminbuchung-tablet.webp") center / cover;
}

.fellness-hero {
  background-image: url("./bilder/physicalone-pets-golden-retriever-fellness-massage.webp");
  background-position: center 44%;
}

.benefits-hero {
  background-image: url("./bilder/physicalone-pets-labrador-bewegungsfreude-nutzen.webp");
  background-position: center 48%;
}

.philosophy-hero {
  background-image: url("./bilder/physicalone-pets-golden-retriever-philosophie-therapieraum.webp");
  background-position: center 48%;
}

.contact-hero {
  background-image: url("./bilder/physicalone-pets-beratung-labrador-therapeutin.webp");
  background-position: center 45%;
}

.guide-hero {
  background-image: url("./bilder/physicalone-pets-ratgeber-hund-katze-beratung-hero.webp");
  background-position: center 50%;
}

.nutrition-hero {
  background-image: url("./bilder/physicalone-pets-ernaehrungsberatung-hund-hero-v2.webp");
  background-position: center 50%;
}

.joint-article-hero {
  background-image: url("./bilder/physicalone-pets-gelenkkrankheiten-hund-muskelaufbau-hero-v2.webp");
  background-position: center 50%;
}

.senior-article-hero {
  background-image: url("./bilder/physicalone-pets-seniorhund-beweglichkeit-hero-v2.webp");
  background-position: center 50%;
}

.tension-article-hero {
  background-image: url("./bilder/physicalone-pets-verspannungen-hund-erkennen-hero-v2.webp");
  background-position: center 50%;
}

.stress-article-hero {
  background-image: url("./bilder/physicalone-pets-stress-nervensystem-hund-katze-hero-v2.webp");
  background-position: center 50%;
}

.aftercare-hero {
  background-image: url("./bilder/physicalone-pets-nach-behandlung-ruhephase-hund-hero.webp");
  background-position: center 50%;
}

.small-dogs-hero {
  background-image: url("./bilder/physicalone-pets-kleine-hunde-koerperarbeit-hero.webp");
  background-position: center 50%;
}

.cats-hero {
  background-image: url("./bilder/physicalone-pets-katzen-massage-mobilisation-hero.webp");
  background-position: center 50%;
}

.immune-hero {
  background-image: url("./bilder/physicalone-pets-immunsystem-hund-katze-regeneration-hero.webp");
  background-position: center 50%;
}

.gut-hero {
  background-image: url("./bilder/physicalone-pets-darmgesundheit-hund-katze-hero.webp");
  background-position: center 50%;
}

.contact-subpage {
  background: var(--paper);
}

.legal-visual {
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.78), var(--paper) 460px),
    url("./bilder/physicalone-pets-datenschutz-impressum-unterlagen.webp") top center / 100% auto no-repeat;
}

.page-hero h1,
.contact h1,
.legal-card h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.2vw, 4.4rem);
  line-height: 1.03;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.booking {
  padding-top: 54px;
}

.third-party-box {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}

.third-party-box.blocked {
  border-color: rgba(240, 122, 61, 0.34);
  background: #fff8f2;
}

.third-party-box h2 {
  margin: 0 auto;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.third-party-box p {
  color: var(--muted);
}

.third-party-box a {
  color: var(--blue);
  font-weight: 800;
}

.iframe-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.iframe-wrap iframe {
  display: block;
  width: 100%;
  min-height: 1600px;
  border: 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 850;
}

.team-image {
  min-height: 560px;
  border-radius: 8px;
  background: url("./bilder/physicalone-pets-beratung-labrador-therapeutin.webp") center / cover;
  box-shadow: var(--shadow);
}

.team-copy {
  max-width: 560px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.stat-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stat-row strong,
.stat-row span,
.site-footer strong,
.site-footer span {
  display: block;
}

.stat-row strong {
  font-size: 1.55rem;
  color: var(--blue);
}

.stat-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
}

.contact h1 {
  color: var(--blue-deep);
}

.contact-options {
  margin-top: 28px;
}

.address-card {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 24px;
}

.address-card h2,
.contact-form h2 {
  font-size: 1.55rem;
}

.address-card a:not(.button) {
  color: var(--blue);
  font-weight: 850;
}

.contact-options a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f3f9ff;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f3f9ff);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form small {
  color: var(--muted);
}

.legal-page {
  padding: 146px max(18px, calc((100vw - 980px) / 2)) 70px;
}

.legal-card {
  padding: clamp(24px, 4vw, 54px);
}

.legal-card h1 {
  color: var(--blue-deep);
}

.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.34rem;
  color: var(--blue-deep);
}

.legal-card p {
  color: var(--muted);
}

.legal-card a {
  color: var(--blue);
  font-weight: 750;
}

.legal-note {
  margin-top: 34px;
  padding: 16px;
  border-left: 4px solid var(--coral);
  background: #fff8f2;
}

.cookie-banner {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, var(--blue-deep), #101827);
}

.site-footer strong {
  color: var(--white);
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.open .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .site-header.open .nav-links a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content {
    width: 100%;
    max-width: 34rem;
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.74rem, 5.1vw, 2.42rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 32rem;
    font-size: 1.02rem;
  }

  .brand-hero {
    min-height: 690px;
    background:
      linear-gradient(90deg, rgba(4, 25, 52, 0.92), rgba(10, 98, 173, 0.56) 68%, rgba(10, 98, 173, 0.2)),
      url("./bilder/physicalone-pets-golden-retriever-behandlungsraum-hero.webp") 67% center / cover,
      linear-gradient(135deg, #052f63 0%, #0a62ad 52%, #0e88bf 100%);
  }

  .hero-panel,
  .intro-grid,
  .service-grid,
  .teaser-grid,
  .intro-grid:has(article:nth-child(4)),
  .service-grid.three,
  .team,
  .contact,
  .section-heading,
  .text-columns,
  .two-panel,
  .feature-strip,
  .media-split,
  .article-layout,
  .infographic-grid,
  .article-list,
  .related-links nav,
  .announcement-copy,
  .announcement-content {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .hero-panel {
    margin-top: 10px;
  }

  .hero-panel div {
    min-height: auto;
    padding: 18px;
  }

  .service-grid {
    gap: 16px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 168px 1fr;
  }

  .service-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .team-image {
    min-height: 420px;
  }

  .brand-hero::before {
    right: 22px;
    bottom: 300px;
    width: 220px;
    opacity: 0.34;
  }

  .cookie-banner {
    display: grid;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    width: calc(100% - 16px);
    padding: 8px 9px;
  }

  .brand {
    min-width: 0;
  }

  .brand.has-logo {
    min-width: 0;
  }

  .brand-logo {
    max-width: 142px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 640px;
    align-items: end;
    padding-top: 118px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 30px;
    background-position: 66% center;
  }

  .brand-hero {
    background:
      linear-gradient(90deg, rgba(4, 25, 52, 0.9), rgba(10, 98, 173, 0.5) 66%, rgba(10, 98, 173, 0.18)),
      url("./bilder/physicalone-pets-golden-retriever-behandlungsraum-hero.webp") 66% center / cover,
      linear-gradient(135deg, #052f63 0%, #0a62ad 52%, #0e88bf 100%);
  }

  .hero-content {
    width: 100%;
    max-width: 24rem;
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(1.55rem, 6.3vw, 2rem);
    line-height: 1.08;
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow),
  .media-split p:not(.eyebrow),
  .wide-copy {
    font-size: 1rem;
  }

  .hero-copy {
    max-width: 22.5rem;
    margin-bottom: 20px;
  }

  .hero .eyebrow {
    max-width: 18rem;
    font-size: 0.72rem;
  }

  .hero-panel {
    display: none;
  }

  section:not(.hero) {
    padding: 54px 18px;
  }

  .announcement {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .announcement-card {
    padding: 22px;
  }

  .announcement-visual {
    width: 100%;
    max-width: 100%;
  }

  .announcement-visual img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .teaser-card img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  .announcement-copy {
    gap: 14px;
  }

  .announcement-copy p {
    font-size: 1rem;
  }

  .announcement-actions,
  .announcement-actions .button {
    width: 100%;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 28px;
  }

  .guide-categories {
    margin-bottom: 22px;
  }

  .guide-categories a {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .intro-grid article,
  .two-panel > div,
  .feature-strip a,
  .contact-form,
  .address-card,
  .third-party-box {
    padding: 20px;
  }

  .intro-grid span {
    margin-bottom: 22px;
  }

  .line-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
  }

  .media-split {
    gap: 24px;
  }

  .media-split img {
    aspect-ratio: 16 / 9;
    max-height: none;
    object-fit: contain;
  }

  .article-image,
  .infographic-grid img {
    max-height: none;
    object-fit: contain;
  }

  .related-links {
    margin-top: 30px;
    padding: 18px;
  }

  .related-links a {
    padding: 13px;
  }

  .page-hero h1,
  .contact h1,
  .legal-card h1 {
    font-size: clamp(1.57rem, 7.14vw, 2.21rem);
    line-height: 1.08;
  }

  .page-hero {
    padding-top: 62px;
    padding-bottom: 42px;
    background-position: center;
  }

  .photo-hero {
    min-height: 520px;
    display: grid;
    align-items: end;
    padding-top: 118px;
    padding-bottom: 42px;
    color: var(--white);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .photo-hero::before {
    display: block;
    background:
      linear-gradient(180deg, rgba(4, 25, 52, 0.42) 0%, rgba(4, 25, 52, 0.76) 58%, rgba(4, 25, 52, 0.9) 100%),
      rgba(10, 98, 173, 0.22);
  }

  .photo-hero::after {
    display: none;
  }

  .photo-hero-content {
    max-width: 100%;
    padding: 26px 18px 42px;
    color: var(--white);
    background: transparent;
  }

  .photo-hero-content h1 {
    color: var(--white);
    text-shadow: 0 3px 18px rgba(4, 25, 52, 0.3);
  }

  .photo-hero-content p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.84);
  }

  .fellness-hero {
    background-position: 66% center;
  }

  .benefits-hero,
  .philosophy-hero {
    background-position: 64% center;
  }

  .contact-hero {
    background-position: 58% center;
  }

  .subpage {
    padding-top: 86px;
  }

  .hero-actions,
  .hero-actions .button,
  .contact-options,
  .contact-options a {
    width: 100%;
  }

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

  .service-card img {
    aspect-ratio: 1.45;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .booking {
    padding-top: 36px;
  }

  .third-party-box h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .iframe-wrap {
    margin-left: -18px;
    margin-right: -18px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .iframe-wrap iframe {
    min-height: 1500px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .page-hero,
  .legal-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .legal-page {
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-card h2 {
    font-size: 1.16rem;
  }

  .contact {
    gap: 28px;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    padding: 14px;
  }

  .button,
  .header-cta {
    min-height: 42px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    max-width: 124px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(1.51rem, 7.14vw, 1.91rem);
  }

  .guide-categories a {
    flex-basis: 100%;
  }
}
