/* PfotenSpezialist — Homepage Mockup
   Design tokens: warm naturals, moss green, terracotta accent, cream background
*/

:root {
    /**--bg: #f5efe6;
  --bg-soft: #ece4d4;
  --bg-deep: #2a2d22;
  --surface: #fbf8f1;
  --ink: #29261b;
  --ink-2: #4a4636;
  --ink-3: #7a7461;
  --line: rgba(41, 38, 27, 0.12);
  --line-soft: rgba(41, 38, 27, 0.07);
  --primary: #4a5d3a;        moss green 
  --primary-deep: #364528;
  --primary-soft: #e3e8d8;
  --accent: #c97b5a;         terracotta 
  --accent-soft: #f0d9c8;
  --gold: #b8924a;*/
    --bg: #f5efe6;
    --bg-soft: #ece4d4;
    --bg-deep: #252b31;
    --surface: #fbf8f1;
    --ink: #29261b;
    --ink-2: #4a4636;
    --ink-3: #b46a4a;
    --line: rgba(41, 38, 27, 0.12);
    --line-soft: rgba(41, 38, 27, 0.07);
    /* Neue Primärpalette 
    --primary: #6f8797;
    --primary-deep: #566d7d;
    --primary-soft: #dde5ea; */ 
    /* Neue Primärpalette */ 
    --primary: #4a5d4e;
    --primary-deep: #364528;
    --primary-soft: #e3e8d8;
    --accent: #b46a4a;
    --accent-soft: #f0d9c8;
    --gold: #b8924a;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 2px rgba(41, 38, 27, .06), 0 1px 1px rgba(41, 38, 27, .04);
    --shadow: 0 8px 24px -8px rgba(41, 38, 27, .18), 0 2px 6px rgba(41, 38, 27, .06);
    --shadow-lg: 0 24px 60px -20px rgba(41, 38, 27, .28), 0 6px 18px rgba(41, 38, 27, .08);
    --font-sans: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-serif: 'Instrument Serif', 'Newsreader', Georgia, serif;
    --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

#brevo-button {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: 0;
  font-weight: 600;
  font-size: 14px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    font-size: 16px;
    line-height: 1.55;
}

a {
    /*color: inherit;*/
    color: var(--accent);
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

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

.serif {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.mono {
    font-family: var(--font-mono);
}


/* ─────────── Layout ─────────── */

.shell {
    width: 100%;
    min-height: 100vh;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 96px 0;
}

.section-tight {
    padding: 64px 0;
}


/* ─────────── Browser chrome (mockup frame) ─────────── */

.chrome {
    background: #e8e2d4;
    padding: 14px 18px 0;
    border-radius: 18px 18px 0 0;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(41, 38, 27, .12);
    border-bottom: 0;
}

.chrome .dots {
    display: flex;
    gap: 6px;
}

.chrome .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #c8c0ad;
}

.chrome .dot.r {
    background: #e2705d;
}

.chrome .dot.y {
    background: #d9b85b;
}

.chrome .dot.g {
    background: #7aa86b;
}

.chrome .url {
    flex: 1;
    height: 26px;
    background: #fbf8f1;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 12px;
    color: var(--ink-3);
    font-family: var(--font-mono);
    border: 1px solid rgba(41, 38, 27, .06);
}

.chrome .url .lock {
    color: var(--primary);
    margin-right: 8px;
}

.chrome .url .domain {
    color: var(--ink);
}


/* ─────────── Top utility / breadcrumb bar ─────────── */

.utility-bar {
    background: var(--primary-deep);
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    padding: 8px 0;
}

.utility-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.utility-bar a:hover {
    color: #fff;
}

.utility-bar .util-left {
    display: flex;
    gap: 22px;
    align-items: center;
}

.utility-bar .util-right {
    display: flex;
    gap: 18px;
    align-items: center;
}

.utility-bar .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


/* ─────────── Header / Nav ─────────── */

.header {
    background: var(--bg);
    border-bottom: 1px solid var(--line-soft);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 18px 0;*/
    padding: 10px 0px 0px 0px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /**background: var(--primary);*/
    display: grid;
    place-items: center;
    color: var(--bg);
    position: relative;
}

.brand-mark svg {
    width: 24px;
    height: 24px;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--ink);
    line-height: 1;
}

.brand-name em {
    font-style: normal;
    color: var(--primary);
}

.brand-tag {
    font-size: 11px;
    color: var(--ink-3);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 3px;
}

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

.nav-links a {
    font-size: 15px;
    color: var(--ink-2);
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color .15s;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -22px;
    height: 2px;
    background: var(--primary);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /*background: var(--primary);*/
    background: var(--accent);
    color: #fbf8f1;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: 0;
    transition: all .15s;
}

.nav-links a.nav-cta:hover {
    background: var(--primary-deep);
    color: #fbf8f1;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.nav-links a.nav-cta::after {
    content: none;
}

.nav-cta .arrow {
    display: inline-block;
    transition: transform .2s;
}

.nav-cta:hover .arrow {
    transform: translateX(3px);
}

.breadcrumbs {
    font-size: 12px;
    color: var(--ink-3);
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--line-soft);
}

.breadcrumbs .sep {
    opacity: .4;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs .current {
    color: var(--ink-2);
    font-weight: 500;
}


/* ─────────── Hero ─────────── */

.hero {
    padding: 80px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-deep);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
    margin-bottom: 24px;
}

.hero-eyebrow .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 93, 58, .5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 93, 58, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 93, 58, 0);
    }
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    color: var(--ink);
    font-weight: 400;
    text-wrap: balance;
}

.hero h1 em {
    font-style: italic;
    color: var(--primary);
}

.hero h1 .accent {
    color: var(--accent);
    font-style: italic;
}

.hero-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 540px;
    margin: 0 0 36px;
    text-wrap: pretty;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 0;
    transition: all .15s;
}

.btn-primary {
    /*background: var(--primary);*/
    background: var(--accent);
    color: #fbf8f1;
}

.btn-primary:hover {
    background: var(--primary-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    padding: 14.5px 24.5px;
}

.btn-secondary:hover {
    background: var(--ink);
    color: var(--bg);
}

.btn-ghost {
    background: transparent;
    color: var(--ink-2);
    padding: 12px 16px;
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn .arrow {
    display: inline-block;
    transition: transform .2s;
}

.btn:hover .arrow {
    transform: translateX(3px);
}

.hero-meta {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line-soft);
}

.hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-2);
}

.hero-meta .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: grid;
    place-items: center;
    color: var(--primary-deep);
}


/* Hero image */

.hero-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    align-self: stretch;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-soft);
}

.hero-grid {
    align-items: stretch;
}

.hero-grid>div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.photo-slot {
    width: 100%;
    height: 100%;
}

.hero-media>.photo-slot {
    aspect-ratio: auto !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.hero-media .badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(251, 248, 241, .95);
    backdrop-filter: blur(8px);
    padding: 14px 18px;
    border-radius: var(--radius);
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: var(--shadow);
}

.hero-media .badge .stars {
    color: var(--gold);
    letter-spacing: 1px;
    font-size: 13px;
}

.hero-media .badge .num {
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1;
    color: var(--ink);
}

.hero-media .badge .lab {
    font-size: 12px;
    color: var(--ink-3);
}

.hero-media .floating-card {
    position: absolute;
    right: -24px;
    top: 64px;
    background: var(--surface);
    padding: 16px;
    border-radius: var(--radius);
    width: 240px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line-soft);
    transform: rotate(2deg);
}

.hero-media .floating-card .fc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-media .floating-card .fc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.hero-media .floating-card .fc-name {
    font-size: 13px;
    font-weight: 600;
}

.hero-media .floating-card .fc-meta {
    font-size: 11px;
    color: var(--ink-3);
}

.hero-media .floating-card .fc-body {
    font-size: 12px;
    color: var(--ink-2);
    line-height: 1.5;
}

.hero-media .floating-card .fc-tag {
    display: inline-block;
    font-size: 10px;
    padding: 3px 8px;
    background: var(--primary-soft);
    color: var(--primary-deep);
    border-radius: 999px;
    margin-top: 8px;
    font-weight: 600;
}


/* Hero variant: full-bleed */

.hero.full-bleed {
    padding: 0;
}

.hero.full-bleed .hero-grid {
    display: block;
    position: relative;
}

.hero.full-bleed .hero-media {
    aspect-ratio: 21 / 9;
    border-radius: 0;
}

.hero.full-bleed .hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    max-width: 720px;
    color: var(--bg);
}

.hero.full-bleed .hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(42, 45, 34, .78) 0%, rgba(42, 45, 34, .5) 50%, transparent 100%);
    z-index: 0;
}

.hero.full-bleed .hero-content>* {
    position: relative;
    z-index: 1;
}

.hero.full-bleed .hero-content h1 {
    color: var(--bg);
}

.hero.full-bleed .hero-content h1 em {
    color: #d4ad7c;
}

.hero.full-bleed .hero-content .hero-sub {
    color: rgba(245, 239, 230, .88);
}

.hero.full-bleed .hero-meta {
    border-top-color: rgba(245, 239, 230, .2);
}

.hero.full-bleed .hero-meta .meta-item {
    color: rgba(245, 239, 230, .88);
}


/* ─────────── Latest posts (compact strip) ─────────── */

.latest {
    background: var(--surface);
    padding: 56px 0 64px;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.latest-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 24px;
}

.latest-head .eyebrow-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.latest-head .ey-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
}

.latest-head .ey-tag .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

.latest-head .ey-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.latest-head h3 {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.1;
}

.latest-head h3 em {
    font-style: italic;
    color: var(--primary);
}

.latest-head .all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}

.latest-head .all-link:hover .arrow {
    transform: translateX(3px);
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mini-card {
    background: var(--bg);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    cursor: pointer;
    position: relative;
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.mini-card .mc-img {
    aspect-ratio: 4 / 3;
    background: repeating-linear-gradient(135deg, #d8cdb5 0px, #d8cdb5 10px, #cfc3a8 10px, #cfc3a8 20px);
    display: grid;
    place-items: center;
    position: relative;
}

.mini-card .mc-img .lbl {
    background: rgba(251, 248, 241, .92);
    padding: 4px 10px;
    border-radius: 5px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(41, 38, 27, .55);
    border: 1px solid rgba(41, 38, 27, .1);
}

.mini-card .mc-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(251, 248, 241, .96);
    color: var(--primary-deep);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.mini-card .mc-cat.barf {
    color: #8a4a2e;
}

.mini-card .mc-cat.myko {
    color: #5e3f6d;
}

.mini-card .mc-cat.katze {
    color: #2d5d6b;
}

.mini-card .mc-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.mini-card .mc-meta {
    font-size: 11px;
    color: var(--ink-3);
    display: flex;
    gap: 8px;
    align-items: center;
    letter-spacing: .02em;
}

.mini-card .mc-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--ink-3);
    opacity: .5;
}

.mini-card h4 {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.25;
    margin: 0;
    color: var(--ink);
    text-wrap: balance;
}

.mini-card .mc-foot {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.mini-card .mc-read {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mini-card .mc-time {
    color: var(--ink-3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}


/* ─────────── Section header pattern ─────────── */

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-head.left {
    text-align: left;
    margin-left: 0;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-head h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    color: var(--ink);
    font-weight: 400;
    text-wrap: balance;
}

.section-head h2 em {
    font-style: italic;
    color: var(--primary);
}

.section-head p {
    font-size: 18px;
    color: var(--ink-2);
    line-height: 1.6;
    margin: 0;
    text-wrap: pretty;
}


/* ─────────── Problems / "Kennst du das?" ─────────── */

.problems-section {
    background: var(--bg-soft);
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
}

.problem-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--line-soft);
    position: relative;
}

.problem-card .ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.problem-card p {
    color: var(--ink-2);
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.problem-card .quote {
    font-style: italic;
    color: var(--ink-3);
    font-size: 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
}

.solution-callout {
    background: var(--primary);
    color: #fbf8f1;
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}

.solution-callout .badge-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: grid;
    place-items: center;
}

.solution-callout h3 {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.solution-callout p {
    margin: 0;
    opacity: .88;
    max-width: 580px;
}

.solution-callout .btn-primary {
    background: #fbf8f1;
    color: var(--primary-deep);
}

.solution-callout .btn-primary:hover {
    background: var(--bg);
}


/* ─────────── Services ─────────── */

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

.service-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--line-soft);
    position: relative;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    cursor: pointer;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    color: #fbf8f1;
    border-color: transparent;
}

.service-card.featured .svc-price-num,
.service-card.featured h3 {
    color: #fbf8f1;
}

.service-card.featured p {
    color: rgba(245, 239, 230, .85);
}

.service-card.featured .svc-ico {
    background: rgba(255, 255, 255, .15);
    color: #fbf8f1;
}

.service-card.featured .svc-meta {
    border-color: rgba(245, 239, 230, .2);
}

.service-card.featured .svc-link {
    color: #fbf8f1;
}

.service-card .tag {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.svc-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-deep);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--ink-2);
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.55;
}

.svc-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}

.svc-price {}

.svc-price-num {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--ink);
    line-height: 1;
}

.svc-price-lab {
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 4px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.service-card:hover .svc-link .arrow {
    transform: translateX(3px);
}


/* ─────────── About teaser ─────────── */

.about {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-media {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-soft);
    position: relative;
}

.about-media .photo-slot {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient( 45deg, #d8cdb5 0px, #d8cdb5 12px, #cfc3a8 12px, #cfc3a8 24px);
    display: grid;
    place-items: center;
}

.about-media .photo-slot .label {
    background: rgba(251, 248, 241, .92);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(41, 38, 27, .1);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-2);
}

.about-media .sig {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(251, 248, 241, .95);
    padding: 12px 18px;
    border-radius: var(--radius);
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--primary);
    font-style: italic;
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

.about-content h2 em {
    font-style: italic;
    color: var(--primary);
}

.about-content>p {
    font-size: 17px;
    color: var(--ink-2);
    line-height: 1.65;
    margin: 0 0 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin: 36px 0;
}

.about-stat {
    padding: 18px 0;
}

.about-stat .n {
    font-family: var(--font-serif);
    font-size: 38px;
    color: var(--primary);
    line-height: 1;
}

.about-stat .l {
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 6px;
    letter-spacing: .04em;
    text-transform: uppercase;
}


/* ─────────── Blog ─────────── */

.blog-section {}

.blog-section .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
    max-width: none;
    margin-bottom: 48px;
}

.blog-section .section-head>div {
    max-width: 580px;
}

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

.blog-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.blog-card .img {
    aspect-ratio: 16 / 10;
    background: repeating-linear-gradient( 90deg, #d8cdb5 0px, #d8cdb5 14px, #cfc3a8 14px, #cfc3a8 28px);
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(41, 38, 27, .55);
}

.blog-card .img .label {
    background: rgba(251, 248, 241, .92);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(41, 38, 27, .1);
}

.blog-card .body {
    padding: 24px;
}

.blog-card .meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--ink-3);
}

.blog-card .cat {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-deep);
    font-weight: 600;
    letter-spacing: .03em;
}

.blog-card .cat.barf {
    background: #f0d9c8;
    color: #8a4a2e;
}

.blog-card .cat.myko {
    background: #e3d8e8;
    color: #5e3f6d;
}

.blog-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.blog-card p {
    font-size: 14px;
    color: var(--ink-2);
    margin: 0 0 16px;
    line-height: 1.55;
}

.blog-card .read {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card:hover .read .arrow {
    transform: translateX(3px);
}


/* ─────────── Testimonials ─────────── */

.testimonials {
    background: var(--bg-soft);
}

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

.test-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
}

.test-stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 16px;
}

.test-card blockquote {
    font-family: var(--font-serif);
    font-size: 21px;
    line-height: 1.4;
    margin: 0 0 24px;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.005em;
    flex: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}

.test-author .av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--accent);
}

.test-author .n {
    font-weight: 600;
    font-size: 14px;
}

.test-author .p {
    font-size: 12px;
    color: var(--ink-3);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.test-author .p .pet {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}


/* ─────────── Booking CTA banner ─────────── */

.cta-banner-wrap {
    padding: 45px 0;
}

.cta-banner {
    background: var(--primary-deep);
    color: #fbf8f1;
    border-radius: var(--radius-xl);
    padding: 72px 80px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: .25;
}

.cta-banner h2 {
    font-family: var(--font-serif);
    font-size: 52px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0.00em;
    margin: 0 0 20px;
    position: relative;
}

.cta-banner h2 em {
    font-style: italic;
    color: #d4ad7c;
}

.cta-banner p {
    font-size: 18px;
    opacity: .85;
    margin: 0 0 32px;
    position: relative;
    max-width: 540px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-banner .btn-primary {
    background: var(--accent);
    color: #fff;
}

.cta-banner .btn-primary:hover {
    background: #b46a4a;
}

.cta-banner .btn-secondary {
    color: #fbf8f1;
    border-color: rgba(251, 248, 241, .5);
}

.cta-banner .btn-secondary:hover {
    background: #fbf8f1;
    color: var(--primary-deep);
}

.cta-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
}

.cta-card h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 18px;
}

.cta-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    opacity: .9;
}

.cta-card li svg {
    flex-shrink: 0;
    color: #d4ad7c;
    margin-top: 2px;
}


/* ─────────── FAQ ─────────── */

.faq {
    background: var(--surface);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: background .15s;
}

.faq-item.open {
    background: var(--bg-soft);
    border-color: var(--line);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 22px 26px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--ink);
    line-height: 1.4;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fbf8f1;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform .2s, background .2s;
    font-weight: 400;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
}

.faq-a {
    padding: 0 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
    color: var(--ink-2);
    line-height: 1.65;
    font-size: 15px;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 26px 22px;
}


/* ─────────── Footer ─────────── */

.footer {
    background: var(--bg-deep);
    color: rgba(245, 239, 230, .82);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, .55);
    margin: 0 0 18px;
}

.footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer .footer-brand .brand-name {
    color: #fbf8f1;
}

.footer .footer-brand .brand-mark {
    /*background: rgba(255, 255, 255, .12);
    color: #fbf8f1;*/
}

.footer .footer-blurb {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(245, 239, 230, .7);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer ul a {
    font-size: 14px;
    transition: color .15s;
}

.footer ul a:hover {
    color: #fbf8f1;
}

.footer .contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer .contact-item svg {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer .socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer .socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    transition: background .15s;
}

.footer .socials a:hover {
    background: var(--accent);
    color: #fff;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fbf8f1;
    font: inherit;
    font-size: 14px;
    outline: none;
}

.newsletter input::placeholder {
    color: rgba(245, 239, 230, .5);
}

.newsletter input:focus {
    border-color: var(--accent);
}

.newsletter button {
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    border: 0;
    font-weight: 600;
    font-size: 14px;
}

.newsletter button:hover {
    background: #b46a4a;
}

.newsletter .small {
    font-size: 11px;
    color: rgba(245, 239, 230, .5);
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
    color: rgba(245, 239, 230, .55);
}

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


/* ─────────── Tweaks-driven palette variants ─────────── */

.palette-forest {
    --primary: #4a5d3a;
    --primary-deep: #364528;
    --primary-soft: #e3e8d8;
    --accent: #b46a4a;
    --accent-soft: #f0d9c8;
}

.palette-sage {
    --primary: #6b8451;
    --primary-deep: #4f6539;
    --primary-soft: #e8ecdb;
    --accent: #b8754e;
    --accent-soft: #efd9c5;
}

.palette-earth {
    --primary: #5c5236;
    --primary-deep: #443c26;
    --primary-soft: #e8e2cc;
    --accent: #a36849;
    --accent-soft: #e9d2bd;
}

.palette-clay {
    --primary: #7d5a3d;
    --primary-deep: #5c4029;
    --primary-soft: #ede0cf;
    --accent: #6b8451;
    --accent-soft: #e0e7cd;
}


/* helpers */

.icon-stroke {
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ─────────── Sub-page hero (compact) ─────────── */

.page-hero {
    background: var(--bg);
    padding: 64px 0 56px;
    border-bottom: 1px solid var(--line-soft);
}

.page-hero .section-eyebrow {
    margin-bottom: 16px;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin: 0 0 20px;
    color: var(--ink);
    text-wrap: balance;
    max-width: 880px;
}

.page-title em {
    font-style: italic;
    color: var(--primary);
}

.page-sub {
    font-size: 19px;
    color: var(--ink-2);
    line-height: 1.55;
    max-width: 680px;
    margin: 0;
    text-wrap: pretty;
}


/* mockup frame styles (extracted so sub-pages reuse) */

body.subpage {
    background: #d8d2c4;
    margin: 0;
}

.mockup-frame {
    max-width: 1480px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

.mockup-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(41, 38, 27, .6);
    letter-spacing: .04em;
}

.mockup-meta .right {
    display: flex;
    gap: 18px;
}

.mockup-meta strong {
    color: rgba(41, 38, 27, .85);
    font-weight: 600;
}

.mockup-body {
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    border: 1px solid rgba(41, 38, 27, .12);
    border-top: 0;
    box-shadow: 0 30px 80px -30px rgba(41, 38, 27, .35);
}


/* ─────────── Blog page ─────────── */

.blog-page-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    padding: 56px 0 96px;
}

.blog-page-grid>* {
    min-width: 0;
}

.featured-post>* {
    min-width: 0;
}

.blog-row>* {
    min-width: 0;
}

.blog-side h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line-soft);
}

.cat-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--ink-2);
    transition: background .15s, color .15s;
}

.cat-list a:hover {
    background: var(--surface);
    color: var(--primary);
}

.cat-list a.active {
    background: var(--primary);
    color: #fbf8f1;
    font-weight: 600;
}

.cat-list a .num {
    font-family: var(--font-mono);
    font-size: 11px;
    opacity: .7;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.tag-cloud a {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink-2);
    border: 1px solid var(--line-soft);
}

.tag-cloud a:hover {
    background: var(--primary-soft);
    color: var(--primary-deep);
}

.blog-search {
    position: relative;
    margin-bottom: 14px;
}

.blog-search input {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    font: inherit;
    font-size: 14px;
    outline: none;
}

.blog-search input:focus {
    border-color: var(--primary);
}

.blog-search svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-3);
}

.featured-post {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.featured-post:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.featured-post .fp-img {
    aspect-ratio: 4/3;
    background: repeating-linear-gradient(135deg, #d8cdb5 0px, #d8cdb5 14px, #cfc3a8 14px, #cfc3a8 28px);
    display: grid;
    place-items: center;
    position: relative;
}

.featured-post .fp-img .lbl {
    background: rgba(251, 248, 241, .92);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(41, 38, 27, .55);
    border: 1px solid rgba(41, 38, 27, .1);
}

.featured-post .fp-body {
    padding: 36px 36px 36px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post .fp-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.featured-post h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.015em;
    margin: 0 0 14px;
    color: var(--ink);
}

.featured-post p {
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.55;
    margin: 0 0 22px;
}

.featured-post .fp-foot {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 13px;
    color: var(--ink-3);
}

.featured-post .fp-foot .author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-post .fp-foot .author .ava {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: 14px;
}

.featured-post .fp-foot .sep {
    opacity: .4;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.blog-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.blog-row .br-img {
    aspect-ratio: 4/3;
    background: repeating-linear-gradient(135deg, #d8cdb5 0px, #d8cdb5 12px, #cfc3a8 12px, #cfc3a8 24px);
    display: grid;
    place-items: center;
}

.blog-row .br-img .lbl {
    background: rgba(251, 248, 241, .92);
    padding: 4px 10px;
    border-radius: 5px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(41, 38, 27, .55);
    border: 1px solid rgba(41, 38, 27, .1);
}

.blog-row .br-body {
    padding: 22px 24px 22px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-row .br-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    color: var(--ink-3);
    margin-bottom: 10px;
}

.blog-row .br-cat {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-deep);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.blog-row .br-cat.barf {
    background: #f0d9c8;
    color: #8a4a2e;
}

.blog-row .br-cat.myko {
    background: #e3d8e8;
    color: #5e3f6d;
}

.blog-row .br-cat.katze {
    background: #d5e3e8;
    color: #2d5d6b;
}

.blog-row h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.005em;
    margin: 0 0 8px;
}

.blog-row p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
    margin: 0;
}

.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 36px;
}

.pagination a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: var(--ink-2);
    border: 1px solid var(--line-soft);
    font-family: var(--font-mono);
    font-weight: 500;
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination a.active {
    background: var(--primary);
    color: #fbf8f1;
    border-color: var(--primary);
}

.nl-card {
    background: var(--bg-deep);
    color: rgba(245, 239, 230, .85);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 28px;
}

.nl-card h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: #fbf8f1;
    margin: 0 0 8px;
}

.nl-card p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 16px;
    opacity: .8;
}

.nl-card input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fbf8f1;
    font: inherit;
    font-size: 13px;
    outline: none;
    margin-bottom: 8px;
}

.nl-card input::placeholder {
    color: rgba(245, 239, 230, .5);
}

.nl-card button {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    border: 0;
    font-weight: 600;
    font-size: 13px;
}


/* ─────────── Leistungen page ─────────── */

.svc-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--line-soft);
}

.svc-detail:nth-child(even)>div:first-child {
    order: 2;
}

.svc-detail .svc-media {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: repeating-linear-gradient(135deg, #d8cdb5 0px, #d8cdb5 14px, #cfc3a8 14px, #cfc3a8 28px);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.svc-detail .svc-media .lbl {
    background: rgba(251, 248, 241, .92);
    padding: 8px 14px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-2);
    border: 1px solid rgba(41, 38, 27, .1);
}

.svc-detail .svc-media .svc-num {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-serif);
    font-size: 72px;
    line-height: 1;
    color: rgba(251, 248, 241, .85);
    font-style: italic;
}

.svc-detail .svc-eye {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.svc-detail h2 {
    font-family: var(--font-serif);
    font-size: 44px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    text-wrap: balance;
}

.svc-detail h2 em {
    font-style: italic;
    color: var(--primary);
}

.svc-detail>div p {
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.6;
    margin: 0 0 22px;
}

.svc-detail ul.svc-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-detail ul.svc-checks li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--ink-2);
}

.svc-detail ul.svc-checks li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.svc-detail .svc-price-row {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 18px 24px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
}

.svc-detail .svc-price-row .lab {
    font-size: 12px;
    color: var(--ink-3);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.svc-detail .svc-price-row .pri {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--ink);
    line-height: 1;
    margin-top: 4px;
}

.svc-detail .svc-price-row .dur {
    margin-left: auto;
    font-size: 13px;
    color: var(--ink-2);
    display: flex;
    gap: 6px;
    align-items: center;
}

.compare-table {
    background: var(--surface);
    padding: 80px 0;
}

.compare-table .table-scroll {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.compare-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg);
    min-width: 1100px;
}

.compare-table th,
.compare-table td {
    padding: 14px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line-soft);
    border-right: 1px solid var(--line-soft);
}

.compare-table th {
    background: var(--primary);
    color: #fbf8f1;
    font-weight: 600;
    font-size: 13px;
    vertical-align: bottom;
    text-align: center;
    line-height: 1.2;
}

.compare-table th:first-child {
    background: var(--primary-deep);
    text-align: left;
    min-width: 180px;
}

.compare-table th:last-child,
.compare-table td:last-child {
    border-right: 0;
}

.compare-table tr:last-child td {
    border-bottom: 0;
}

.compare-table td {
    font-size: 13px;
    color: var(--ink-2);
    text-align: center;
}

.compare-table td:first-child {
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    background: rgba(0, 0, 0, .02);
}

.compare-table .check-y {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
}

.compare-table .check-n {
    color: var(--ink-3);
    opacity: .4;
}

.compare-table .price-cell {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--ink);
    font-style: italic;
}


/* ─────────── Über mich page ─────────── */

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    padding: 72px 0;
    align-items: start;
}

.bio-photo {
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: repeating-linear-gradient(45deg, #d8cdb5 0px, #d8cdb5 12px, #cfc3a8 12px, #cfc3a8 24px);
    display: grid;
    place-items: center;
    position: relative;
    position: sticky;
    top: 100px;
}

.bio-photo .lbl {
    background: rgba(251, 248, 241, .92);
    padding: 8px 14px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-2);
    border: 1px solid rgba(41, 38, 27, .1);
}

.bio-photo .sig {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(251, 248, 241, .95);
    padding: 12px 18px;
    border-radius: var(--radius);
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--primary);
    font-style: italic;
    box-shadow: var(--shadow);
}

.bio-content h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 36px 0 16px;
}

.bio-content h2:first-of-type {
    margin-top: 0;
}

.bio-content h2 em {
    font-style: italic;
    color: var(--primary);
}

.bio-content p {
    font-size: 17px;
    color: var(--ink-2);
    line-height: 1.7;
    margin: 0 0 18px;
}

.bio-content p.lead {
    font-size: 20px;
    color: var(--ink);
    line-height: 1.55;
}

.bio-pullquote {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 1.3;
    font-style: italic;
    color: var(--primary-deep);
    border-left: 3px solid var(--accent);
    padding: 4px 0 4px 24px;
    margin: 32px 0;
}

.cert-section {
    background: var(--surface);
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.cert-card {
    background: var(--bg);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cert-card .ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-deep);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.cert-card .meta {
    font-size: 12px;
    color: var(--ink-3);
    margin-bottom: 4px;
    font-family: var(--font-mono);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cert-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.cert-card p {
    font-size: 14px;
    color: var(--ink-2);
    margin: 0;
    line-height: 1.5;
}

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

.value-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    padding: 32px;
    position: relative;
}

.value-card .vnum {
    font-family: var(--font-serif);
    font-size: 56px;
    line-height: 1;
    color: var(--primary);
    font-style: italic;
    opacity: .35;
    position: absolute;
    top: 20px;
    right: 28px;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.6;
    margin: 0;
}

.team-pets {
    background: var(--bg-soft);
    padding: 80px 0;
}

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

.pet-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    overflow: hidden;
}

.pet-card .pp-img {
    aspect-ratio: 1/1;
    background: repeating-linear-gradient(135deg, #d8cdb5 0px, #d8cdb5 12px, #cfc3a8 12px, #cfc3a8 24px);
    display: grid;
    place-items: center;
}

.pet-card .pp-img .lbl {
    background: rgba(251, 248, 241, .92);
    padding: 4px 10px;
    border-radius: 5px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(41, 38, 27, .55);
    border: 1px solid rgba(41, 38, 27, .1);
}

.pet-card .pp-body {
    padding: 20px 22px;
}

.pet-card h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 4px;
    letter-spacing: -0.005em;
}

.pet-card .pp-breed {
    font-size: 13px;
    color: var(--ink-3);
    margin-bottom: 12px;
}

.pet-card p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
    margin: 0;
}


/* ─────────── Ablauf page ─────────── */

.process-steps {
    padding: 80px 0;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    gap: 48px;
    padding: 56px 0;
    border-bottom: 1px solid var(--line-soft);
    align-items: flex-start;
}

.process-step:last-child {
    border-bottom: 0;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 96px;
    line-height: 1;
    color: var(--primary);
    font-style: italic;
    opacity: .9;
}

.step-content .step-eye {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.step-content h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    text-wrap: balance;
}

.step-content>p {
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.65;
    margin: 0 0 18px;
}

.step-meta {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 13px;
    color: var(--ink-3);
    padding: 10px 0;
    border-top: 1px solid var(--line-soft);
    margin-top: 18px;
}

.step-meta .item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.step-side {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 24px;
}

.step-side h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 14px;
    letter-spacing: -0.005em;
}

.step-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-side li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
}

.step-side li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.step-side .tag {
    display: inline-block;
    font-size: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-deep);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.timeline-bar {
    background: var(--primary-deep);
    color: rgba(245, 239, 230, .85);
    padding: 56px 0;
}

.timeline-bar .container {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: space-between;
}

.timeline-bar .tb-head {
    max-width: none;
    text-align: center;
    width: 100%;
}

.timeline-bar h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 10px;
    color: #fbf8f1;
    line-height: 1.1;
}

.timeline-bar h3 em {
    color: #d4ad7c;
    font-style: italic;
}

.timeline-bar p {
    font-size: 15px;
    opacity: .8;
    margin: 0;
}

.timeline-pills {
    display: flex;
    gap: 8px;
}

.timeline-pills .pill-step {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
    display: flex;
    gap: 8px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
}

.timeline-pills .pill-step .n {
    font-family: var(--font-serif);
    font-style: italic;
    color: #d4ad7c;
    font-size: 16px;
}