:root {
    --black: #050712;
    --anthracite: #0b0f19;
    --charcoal: #111522;
    --charcoal-2: #171b29;
    --gold: #c9a24d;
    --champagne: #f3d889;
    --soft-gold: #8b6a2d;
    --white: #fffaf0;
    --muted: #b9b2a4;
    --line: rgba(201, 162, 77, 0.28);
    --glass: rgba(9, 12, 22, 0.62);
    --glass-strong: rgba(9, 12, 22, 0.82);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
    --gold-shadow: 0 0 34px rgba(201, 162, 77, 0.22);
    --radius: 8px;
    --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    --serif-soft: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    margin: 0;
    color: var(--white);
    background:
        radial-gradient(circle at 20% 8%, rgba(201, 162, 77, 0.14), transparent 28rem),
        radial-gradient(circle at 90% 35%, rgba(243, 216, 137, 0.08), transparent 30rem),
        linear-gradient(180deg, #03040a 0%, var(--black) 42%, #020308 100%);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        repeating-radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 6px),
        linear-gradient(90deg, rgba(201, 162, 77, 0.04), transparent, rgba(201, 162, 77, 0.03));
    mix-blend-mode: screen;
    opacity: 0.38;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section-pad {
    padding: 112px 0;
    position: relative;
}

.section-pad::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 77, 0.04), transparent);
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--champagne);
    font-family: var(--serif-soft);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--serif);
    line-height: 1.04;
    font-weight: 700;
}

h1 {
    margin-top: 18px;
    font-size: 76px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 28px;
}

p {
    margin: 0;
    color: var(--muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(243, 216, 137, 0.78);
}

.button-gold {
    color: #130d03;
    border-color: rgba(243, 216, 137, 0.9);
    background: linear-gradient(135deg, #7f5b1e 0%, var(--gold) 42%, var(--champagne) 100%);
    box-shadow: var(--gold-shadow);
}

.button-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
}

.button-quiet {
    border-color: transparent;
    background: transparent;
    color: var(--champagne);
}

.text-link {
    color: var(--champagne);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(201, 162, 77, 0.4);
    text-underline-offset: 5px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(201, 162, 77, 0.12);
    background: rgba(5, 7, 18, 0.2);
    backdrop-filter: blur(16px);
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(5, 7, 18, 0.86);
    border-color: rgba(201, 162, 77, 0.28);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.header-inner {
    width: min(1420px, calc(100% - 32px));
    margin-inline: auto;
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 22px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark img {
    width: 88px;
    height: auto;
    filter: drop-shadow(0 0 18px rgba(201, 162, 77, 0.22));
}

.brand-mark strong,
.brand-mark em {
    display: block;
}

.brand-mark strong {
    color: var(--champagne);
    font-family: var(--serif);
    font-size: 18px;
}

.brand-mark em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.desktop-nav a,
.mega-trigger {
    color: rgba(255, 250, 240, 0.82);
    border: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}

.desktop-nav a:hover,
.mega-trigger:hover {
    color: var(--champagne);
}

.mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mega-trigger span,
.mobile-toggle span {
    display: block;
    background: var(--champagne);
}

.mega-trigger span {
    width: 18px;
    height: 2px;
    box-shadow: 0 6px 0 var(--champagne);
}

.header-cta {
    padding: 13px 16px;
    border: 1px solid rgba(201, 162, 77, 0.58);
    border-radius: var(--radius);
    color: #120c02;
    background: linear-gradient(135deg, var(--gold), var(--champagne));
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.mobile-toggle span:not(.screen-reader-text) {
    width: 20px;
    height: 2px;
    margin: 5px auto;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.mega-menu.is-open,
body.nav-open .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-panel {
    width: min(1180px, calc(100% - 40px));
    margin: 14px auto 0;
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(5, 7, 18, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.mega-feature {
    padding: 28px;
    border: 1px solid rgba(201, 162, 77, 0.18);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(201, 162, 77, 0.12), rgba(255, 255, 255, 0.02));
}

.mega-feature h2 {
    margin: 14px 0;
    font-size: 34px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mega-item {
    min-height: 96px;
    padding: 16px;
    border: 1px solid rgba(201, 162, 77, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.mega-item:hover,
.mega-item:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(243, 216, 137, 0.58);
    background: rgba(201, 162, 77, 0.08);
}

.mega-item strong,
.mega-item span {
    display: block;
}

.mega-item strong {
    color: var(--champagne);
}

.mega-item span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.hero-section,
.page-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.compact-hero {
    min-height: 58svh;
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img,
.hero-media video {
    object-fit: cover;
    transform: scale(1.04);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 4, 10, 0.96) 0%, rgba(5, 7, 18, 0.68) 42%, rgba(5, 7, 18, 0.12) 76%),
        linear-gradient(180deg, rgba(5, 7, 18, 0.42), rgba(5, 7, 18, 0.82));
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.82;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 740px) minmax(280px, 360px);
    align-items: end;
    gap: 48px;
    padding-top: 112px;
}

.hero-copy {
    padding: 32px 0;
}

.hero-subtitle {
    margin-top: 8px;
    color: var(--champagne);
    font-family: var(--serif-soft);
    font-size: 40px;
    font-style: italic;
}

.hero-lead {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(255, 250, 240, 0.82);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
        rgba(5, 7, 18, 0.52);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

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

.hero-card span {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}

.hero-card strong {
    margin: 10px 0;
    color: var(--champagne);
    font-family: var(--serif);
    font-size: 48px;
}

.trust-rail {
    position: relative;
    z-index: 5;
    margin-top: -42px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 160px repeat(4, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(201, 162, 77, 0.18);
    box-shadow: var(--shadow);
}

.trust-grid > div {
    min-height: 118px;
    padding: 22px;
    background: rgba(5, 7, 18, 0.9);
    backdrop-filter: blur(18px);
}

.trust-logo {
    display: grid;
    place-items: center;
}

.trust-logo img {
    max-height: 70px;
    object-fit: contain;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    color: var(--champagne);
    font-family: var(--serif);
    font-size: 24px;
}

.trust-grid span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 70px;
}

.split-layout.reverse {
    grid-template-columns: 1.08fr 0.92fr;
}

.luxury-frame {
    position: relative;
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--anthracite);
    box-shadow: var(--shadow);
}

.luxury-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: inset 0 0 0 1px rgba(243, 216, 137, 0.18), inset 0 -80px 90px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.luxury-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.story-copy h2,
.section-heading h2 {
    margin-top: 14px;
    max-width: 850px;
}

.story-copy p,
.section-heading p {
    margin-top: 20px;
    max-width: 760px;
}

.section-heading.center {
    text-align: center;
}

.section-heading.center h2,
.section-heading.center p {
    margin-inline: auto;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 34px;
}

.counter-grid div {
    padding: 18px 14px;
    border: 1px solid rgba(201, 162, 77, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.counter-grid strong,
.counter-grid span {
    display: block;
}

.counter-grid strong {
    color: var(--champagne);
    font-family: var(--serif);
    font-size: 38px;
}

.counter-grid span {
    color: var(--muted);
    font-size: 13px;
}

.visitor-counter {
    position: relative;
    display: grid;
    gap: 8px;
    max-width: 420px;
    margin-top: 34px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 77, 0.24);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 82% 12%, rgba(243, 216, 137, 0.2), transparent 170px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        rgba(8, 11, 20, 0.76);
    box-shadow: var(--shadow), var(--gold-shadow);
}

.visitor-counter::after {
    content: "";
    position: absolute;
    inset: auto -18% -80% 20%;
    height: 160%;
    background: conic-gradient(from 180deg, transparent, rgba(201, 162, 77, 0.2), transparent);
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
}

.visitor-counter.is-live::after {
    opacity: 1;
}

.visitor-kicker {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.visitor-counter strong {
    color: var(--champagne);
    font-family: var(--serif);
    font-size: 64px;
    line-height: 1;
    text-shadow: 0 0 22px rgba(201, 162, 77, 0.42);
}

.visitor-counter span:last-child {
    color: rgba(255, 250, 240, 0.76);
    font-weight: 700;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 58px;
}

.pillar-card,
.review-card,
.archive-card,
.content-shell,
.single-aside {
    border: 1px solid rgba(201, 162, 77, 0.18);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        rgba(8, 11, 20, 0.7);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.pillar-card {
    padding: 26px;
}

.pillar-card > span {
    display: block;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border: 1px solid rgba(243, 216, 137, 0.52);
    border-radius: 50%;
    background: radial-gradient(circle, var(--champagne), var(--gold) 45%, transparent 48%);
    box-shadow: var(--gold-shadow);
}

.pillar-card h3 {
    font-size: 24px;
}

.pillar-card p {
    margin-top: 12px;
}

.vision-section {
    overflow: hidden;
}

.vision-stage {
    position: relative;
    width: min(1180px, calc(100% - 40px));
    height: 610px;
    margin: 48px auto 0;
    perspective: 1200px;
}

.vision-stage::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 620px;
    height: 260px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 162, 77, 0.18), transparent 68%);
    filter: blur(12px);
}

.vision-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 310px;
    min-height: 440px;
    transform: translate3d(calc(-50% + (var(--i) - 2.5) * 148px), -50%, calc((2.5 - var(--i)) * 24px)) rotateY(calc((var(--i) - 2.5) * -9deg));
    transform-style: preserve-3d;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(201, 162, 77, 0.24);
    border-radius: var(--radius);
    background: rgba(7, 10, 18, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transition: transform 450ms ease, opacity 450ms ease, filter 450ms ease;
}

.vision-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    filter: saturate(1.04) contrast(1.05);
}

.vision-card span {
    display: block;
    margin-top: 18px;
    color: var(--gold);
    font-weight: 900;
}

.vision-card h3 {
    margin-top: 4px;
    color: var(--champagne);
}

.vision-card p {
    margin-top: 10px;
}

.vision-card.is-dim {
    opacity: 0.52;
    filter: blur(0.2px) saturate(0.9);
}

.vision-controls {
    position: absolute;
    left: 50%;
    bottom: 14px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.vision-controls button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--champagne);
    background: rgba(255, 255, 255, 0.06);
    font-size: 34px;
    line-height: 1;
}

.puppy-grid,
.dog-grid,
.champion-grid,
.video-grid,
.review-grid,
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.puppy-card,
.dog-card,
.champion-feature,
.video-card,
.timeline-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 77, 0.22);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        rgba(8, 11, 20, 0.78);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.puppy-card picture,
.dog-card picture,
.video-card picture {
    display: block;
}

.puppy-card img,
.dog-card img,
.video-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 8px 12px;
    border: 1px solid rgba(255, 250, 240, 0.24);
    border-radius: 999px;
    color: #120c02;
    background: linear-gradient(135deg, var(--gold), var(--champagne));
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.status-zarezerwowane {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.status-w-nowym-domu {
    color: var(--champagne);
    background: rgba(5, 7, 18, 0.72);
    backdrop-filter: blur(12px);
}

.puppy-body,
.dog-card > div,
.champion-feature > div {
    padding: 24px;
}

.puppy-body ul,
.mini-features,
.footer-list {
    padding: 0;
    margin: 18px 0;
    list-style: none;
}

.puppy-body li {
    color: var(--muted);
    font-size: 14px;
}

.puppy-body h3,
.dog-card h3,
.champion-feature h3 {
    color: var(--champagne);
}

.puppy-body p,
.dog-card p,
.champion-feature p {
    margin: 16px 0 22px;
}

.planned-list {
    display: grid;
    gap: 12px;
    margin: 28px 0;
}

.planned-list article {
    padding: 18px;
    border-left: 2px solid var(--gold);
    background: rgba(255, 255, 255, 0.04);
}

.planned-list strong,
.planned-list span {
    display: block;
}

.planned-list strong {
    color: var(--champagne);
}

.planned-list span {
    color: var(--muted);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.filter-bar button {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.filter-bar button.active,
.filter-bar button:hover {
    color: #120c02;
    background: linear-gradient(135deg, var(--gold), var(--champagne));
}

.dog-card {
    transition: transform 250ms ease, opacity 250ms ease;
}

.dog-card.is-hidden {
    display: none;
}

.dog-card span,
.champion-feature span,
.video-card span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-features li {
    padding: 6px 10px;
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
}

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

.champion-feature img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.timeline {
    position: relative;
    display: grid;
    gap: 22px;
    margin-top: 46px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 82px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 260px 1fr;
    align-items: center;
    gap: 24px;
    padding: 20px;
}

.timeline-year {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(243, 216, 137, 0.54);
    border-radius: 50%;
    color: var(--champagne);
    background: var(--black);
    font-family: var(--serif);
    font-size: 24px;
}

.timeline-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: var(--radius);
}

.masonry-grid {
    column-count: 3;
    column-gap: 18px;
    margin-top: 44px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: var(--radius);
    background: transparent;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

.video-card {
    min-height: 420px;
}

.video-card::after {
    content: "▶";
    position: absolute;
    top: 145px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(243, 216, 137, 0.6);
    border-radius: 50%;
    color: #120c02;
    background: linear-gradient(135deg, var(--gold), var(--champagne));
    transform: translateX(-50%);
    box-shadow: var(--gold-shadow);
}

.video-card span,
.video-card strong {
    display: block;
    padding-inline: 24px;
}

.video-card span {
    margin-top: 24px;
}

.video-card strong {
    margin-top: 6px;
    color: var(--champagne);
    font-family: var(--serif);
    font-size: 28px;
}

.review-card {
    padding: 28px;
}

.review-card span {
    color: var(--champagne);
}

.review-card p {
    margin: 18px 0;
    color: rgba(255, 250, 240, 0.82);
}

.review-card strong {
    color: var(--champagne);
}

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

.faq-list details {
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
    padding: 20px 22px;
    color: var(--champagne);
    font-weight: 900;
    cursor: pointer;
}

.faq-list details p {
    padding: 0 22px 22px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: start;
}

.contact-panel,
.premium-form {
    border: 1px solid rgba(201, 162, 77, 0.22);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
        rgba(8, 11, 20, 0.76);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.contact-panel {
    padding: 34px;
}

.contact-panel h2 {
    margin-top: 16px;
}

.contact-panel p {
    margin-top: 18px;
}

.contact-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-actions a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(201, 162, 77, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.contact-actions strong {
    color: var(--champagne);
}

.contact-actions span {
    color: var(--muted);
}

.map-placeholder {
    margin-top: 18px;
    padding: 22px;
    border: 1px dashed rgba(201, 162, 77, 0.28);
    border-radius: var(--radius);
}

.map-placeholder strong,
.map-placeholder span {
    display: block;
}

.map-placeholder strong {
    color: var(--champagne);
}

.premium-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 28px;
}

.premium-form label {
    display: grid;
    gap: 7px;
    color: var(--champagne);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.premium-form label:nth-of-type(n+5),
.premium-form button {
    grid-column: 1 / -1;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    border: 1px solid rgba(201, 162, 77, 0.24);
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(5, 7, 18, 0.8);
    padding: 14px;
    outline: none;
}

.premium-form textarea {
    resize: vertical;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    border-color: var(--champagne);
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.16);
}

.form-success {
    grid-column: 1 / -1;
    padding: 14px 16px;
    border: 1px solid rgba(201, 162, 77, 0.36);
    border-radius: var(--radius);
    color: var(--champagne);
    background: rgba(201, 162, 77, 0.08);
}

.honeypot {
    display: none;
}

.site-footer {
    position: relative;
    padding: 82px 0 110px;
    border-top: 1px solid rgba(201, 162, 77, 0.22);
    background: #020308;
}

.footer-grid {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-logo {
    width: 190px;
    height: auto;
    margin-bottom: 16px;
}

.site-footer h2 {
    color: var(--champagne);
    font-size: 26px;
}

.footer-list li {
    margin-bottom: 10px;
    color: var(--muted);
}

.footer-list a:hover {
    color: var(--champagne);
}

.footer-bottom {
    width: min(1180px, calc(100% - 40px));
    margin: 42px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 162, 77, 0.16);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
}

.mobile-contact-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 90;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(201, 162, 77, 0.36);
    border-radius: var(--radius);
    background: rgba(5, 7, 18, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.mobile-contact-bar a {
    padding: 14px 10px;
    text-align: center;
    color: var(--champagne);
    font-size: 13px;
    font-weight: 900;
}

.mobile-contact-bar a + a {
    border-left: 1px solid rgba(201, 162, 77, 0.2);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
}

.content-shell {
    padding: 34px;
}

.content-shell > * + * {
    margin-top: 18px;
}

.content-shell a {
    color: var(--champagne);
    text-decoration: underline;
}

.single-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
}

.single-featured {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.single-aside {
    position: sticky;
    top: 110px;
    padding: 24px;
}

.single-aside h2 {
    font-size: 30px;
}

.single-aside p {
    margin: 12px 0 20px;
}

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

.archive-card {
    overflow: hidden;
}

.archive-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.archive-card div {
    padding: 24px;
}

.archive-card span {
    color: var(--gold);
}

.archive-card h2 {
    margin: 8px 0 12px;
    color: var(--champagne);
    font-size: 30px;
}

.roh-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.86);
}

.roh-lightbox[hidden] {
    display: none;
}

.roh-lightbox img {
    max-height: 86vh;
    border: 1px solid rgba(201, 162, 77, 0.34);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.roh-lightbox button {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--champagne);
    background: rgba(5, 7, 18, 0.72);
    font-size: 28px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
}

.delay-1 {
    transition-delay: 120ms;
}

@media (max-width: 1180px) {
    .desktop-nav a:nth-child(n+5) {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 420px;
    }

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

    .trust-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: 1fr auto;
    }

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

    .mobile-toggle {
        display: block;
    }

    .mega-menu {
        position: fixed;
        top: 82px;
        bottom: 0;
        overflow-y: auto;
        background: rgba(5, 7, 18, 0.96);
    }

    .mega-menu-panel {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        grid-template-columns: 1fr;
    }

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

@media (max-width: 900px) {
    .section-pad {
        padding: 76px 0;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 38px;
    }

    .mega-menu-panel,
    .mega-grid,
    .split-layout,
    .split-layout.reverse,
    .contact-grid,
    .single-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-vignette {
        background:
            linear-gradient(180deg, rgba(5, 7, 18, 0.55), rgba(5, 7, 18, 0.9)),
            linear-gradient(90deg, rgba(3, 4, 10, 0.9), rgba(5, 7, 18, 0.42));
    }

    .hero-subtitle {
        font-size: 31px;
    }

    .counter-grid,
    .pillars-grid,
    .puppy-grid,
    .dog-grid,
    .champion-grid,
    .video-grid,
    .review-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .vision-stage {
        height: auto;
        display: grid;
        gap: 14px;
        perspective: none;
    }

    .vision-card {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        min-height: 0;
        transform: none !important;
        opacity: 1 !important;
    }

    .vision-controls {
        display: none;
    }

    .timeline::before {
        left: 42px;
    }

    .timeline-item {
        grid-template-columns: 82px 1fr;
    }

    .timeline-item picture,
    .timeline-item img {
        grid-column: 1 / -1;
    }

    .timeline-year {
        width: 72px;
        height: 72px;
        font-size: 19px;
    }

    .masonry-grid {
        column-count: 2;
    }

    .premium-form {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
    }

    .mobile-contact-bar {
        display: grid;
    }
}

@media (max-width: 560px) {
    .container,
    .vision-stage,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 24px, 1180px);
    }

    .brand-mark img {
        width: 64px;
    }

    .brand-mark span {
        display: none;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 31px;
    }

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

    .button {
        padding-inline: 16px;
    }

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

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

    .masonry-grid {
        column-count: 1;
    }

    .contact-actions a {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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

@media (max-width: 700px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
    }

    .site-header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        min-width: 0;
    }

    .header-inner {
        width: calc(100% - 18px);
        min-height: 70px;
        gap: 10px;
    }

    .brand-mark img {
        width: 58px;
    }

    .brand-mark span {
        display: block;
        min-width: 0;
    }

    .brand-mark strong {
        max-width: 190px;
        font-size: 16px;
        line-height: 1.15;
    }

    .brand-mark em {
        font-size: 10px;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .mega-menu {
        top: 70px;
    }

    .mega-menu-panel {
        padding: 14px;
    }

    .mega-feature {
        padding: 18px;
    }

    .mega-feature h2 {
        font-size: 27px;
    }

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

    .container,
    .vision-stage,
    .footer-grid,
    .footer-bottom {
        width: calc(100% - 24px);
    }

    .hero-section {
        min-height: auto;
        padding: 94px 0 52px;
        place-items: start;
    }

    .hero-media img,
    .hero-media video {
        object-position: 62% center;
    }

    .hero-vignette {
        background:
            linear-gradient(180deg, rgba(5, 7, 18, 0.62), rgba(5, 7, 18, 0.92)),
            linear-gradient(90deg, rgba(3, 4, 10, 0.92), rgba(5, 7, 18, 0.62));
    }

    .hero-content {
        display: grid;
        gap: 22px;
        padding-top: 0;
    }

    .hero-copy {
        padding: 0;
    }

    h1 {
        font-size: 38px;
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .hero-lead {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .button {
        width: 100%;
        min-height: 48px;
        white-space: normal;
        text-align: center;
    }

    .hero-card {
        display: none;
    }

    .hero-card strong {
        font-size: 42px;
    }

    .trust-rail {
        margin-top: 0;
        padding-top: 16px;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .trust-grid > div {
        min-height: auto;
        padding: 18px;
    }

    .split-layout,
    .split-layout.reverse,
    .contact-grid,
    .single-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-pad {
        padding: 58px 0;
    }

    .visitor-counter {
        max-width: none;
        padding: 22px;
    }

    .visitor-counter strong {
        font-size: 50px;
    }

    .pillars-grid,
    .puppy-grid,
    .dog-grid,
    .champion-grid,
    .video-grid,
    .review-grid,
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .puppy-card img,
    .dog-card img,
    .champion-feature img,
    .video-card img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .timeline-year {
        width: auto;
        height: auto;
        min-height: 52px;
        border-radius: var(--radius);
    }

    .masonry-grid {
        column-count: 1;
    }

    .contact-panel,
    .premium-form,
    .content-shell {
        padding: 22px;
    }

    .premium-form {
        grid-template-columns: 1fr;
    }

    .mobile-contact-bar {
        left: 8px;
        right: 8px;
        bottom: 8px;
        z-index: 2147483000;
    }

    .mobile-contact-bar a {
        padding: 10px 4px;
        font-size: 11px;
        line-height: 1.1;
    }

    .site-main {
        padding-bottom: 74px;
    }

    .story-section,
    .pillars-grid,
    .reviews-section,
    .faq-section,
    .contact-section {
        scroll-margin-bottom: 90px;
    }

    .scroll-to-top,
    .scroll-top,
    .back-to-top,
    #scroll-to-top,
    #back-to-top,
    button[aria-label*="top" i],
    a[aria-label*="top" i],
    button[aria-label*="gór" i],
    a[aria-label*="gór" i] {
        display: none !important;
    }
}
