/* ==========================================================================
   Chicken Motion — Design System Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600&display=swap');

:root {
  --c-ink: #12100d;
  --c-ink-soft: #1b1712;
  --c-ink-soft-2: #221c15;
  --c-amber: #e8a23c;
  --c-amber-deep: #c97f1e;
  --c-amber-pale: #f6d9a3;
  --c-cream: #f7f2e9;
  --c-cream-2: #efe7d6;
  --c-white: #ffffff;
  --c-line: rgba(247, 242, 233, 0.14);
  --c-line-dark: rgba(18, 16, 13, 0.12);

  --sidebar-w: 240px;
  --sidebar-w-collapsed: 84px;

  --fs-display: clamp(2.1rem, 4vw, 3.4rem);
  --fs-h1: clamp(1.8rem, 2.6vw, 2.6rem);
  --fs-h2: 1.9rem;
  --fs-h3: 1.25rem;
  --fs-body-lg: 1.15rem;
  --fs-body: 1rem;
  --fs-small: 0.85rem;

  --space-section: 7.5rem;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --max-w: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Anybody', sans-serif;
  background: var(--c-cream);
  color: var(--c-ink);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}

:focus-visible {
  outline: 3px solid var(--c-amber);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-amber-deep);
}
.on-dark .eyebrow {
  color: var(--c-amber);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.section-head {
  max-width: 680px;
  margin: 1rem 0 3rem;
}
.section-head h2 {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.15;
  margin-top: 0.6rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.section-head p {
  margin-top: 1rem;
  font-size: var(--fs-body-lg);
}
.on-dark .section-head,
.on-dark p,
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark li,
.on-dark span {
  color: var(--c-white);
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.6rem;
}

.section {
  position: relative;
  overflow: hidden;
  padding: var(--space-section) 0;
}
.section.ink {
  background: var(--c-ink);
  color: var(--c-white);
}
.section.cream {
  background: var(--c-cream);
}
.section.cream-2 {
  background: var(--c-cream-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 56px;
  padding: 0 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
  text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--c-amber);
  color: var(--c-ink);
}
.btn-primary:hover {
  background: var(--c-amber-deep);
}
.btn-outline {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}
.btn-outline:hover {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: var(--c-ink);
}
.btn-outline.on-light {
  color: var(--c-ink);
}
.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER — desktop: fixed left sidebar (square logo min 200px) 
            mobile:  fixed top bar, logo top-left
   ========================================================================== */

.site-header {
  position: fixed;
  z-index: 500;
  background: var(--c-ink);
  border-right: 1px solid var(--c-line);
}

/* desktop sidebar */
@media (min-width: 1025px) {
  .site-header {
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-w);
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.1rem 1.6rem;
  }
  .logo-block {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: var(--c-ink-soft);
    border-radius: var(--radius-md);
    padding: 1rem;
  }
  .logo-block img {
    width: 100%;
    max-width: 168px;
    height: auto;
    aspect-ratio: 405 / 351;
  }
  .main-nav {
    margin-top: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .main-nav a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 0.9rem;
    color: var(--c-white);
    font-weight: 600;
    font-size: 0.98rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition:
      background 0.25s var(--ease),
      color 0.25s var(--ease),
      padding-left 0.25s var(--ease);
  }
  .main-nav a .idx {
    color: var(--c-amber);
    font-size: 0.75rem;
    font-weight: 700;
  }
  .main-nav a:hover,
  .main-nav a.active {
    background: var(--c-ink-soft-2);
    color: var(--c-amber);
    padding-left: 1.15rem;
  }
  .header-contact {
    border-top: 1px solid var(--c-line);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .header-contact a {
    color: var(--c-white);
    font-size: 0.88rem;
    font-weight: 600;
  }
  .header-contact a:hover {
    color: var(--c-amber);
  }
  .header-contact .btn {
    margin-top: 0.6rem;
  }
  .nav-toggle,
  .mobile-only {
    display: none;
  }
}

/* mobile / tablet top bar */
@media (max-width: 1024px) {
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--c-line);
  }
  .logo-block {
    display: flex;
    align-items: center;
  }
  .logo-block img {
    height: 46px;
    width: auto;
    aspect-ratio: 405 / 351;
  }
  .header-contact {
    display: none;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--c-ink-soft);
    border: 1px solid var(--c-line);
  }
  .nav-toggle span {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--c-white);
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--c-white);
    transition: transform 0.3s var(--ease);
  }
  .nav-toggle span::before {
    top: -6px;
  }
  .nav-toggle span::after {
    top: 6px;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--c-ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 0.3rem;
    clip-path: circle(0% at calc(100% - 44px) 38px);
    transition: clip-path 0.7s var(--ease);
    z-index: 400;
  }
  .main-nav.open {
    clip-path: circle(150% at calc(100% - 44px) 38px);
  }
  .main-nav a {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-white);
    padding: 0.5rem 0;
  }
  .main-nav a .idx {
    color: var(--c-amber);
    font-size: 1rem;
    margin-right: 0.5rem;
  }
  .main-nav a.active,
  .main-nav a:hover {
    color: var(--c-amber);
  }
  .mobile-contact {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .mobile-contact a {
    color: var(--c-amber-pale);
    font-weight: 600;
  }
}

body {
  padding-top: 76px;
}
@media (min-width: 1025px) {
  body {
    padding-top: 0;
    padding-left: var(--sidebar-w);
  }
}

body.nav-open {
  overflow: hidden;
}

/* scroll-changed header state */
.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--c-ink);
  color: var(--c-white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  clip-path: inset(0% round 0px);
  animation: hero-melt-in 1.6s var(--ease) both;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 16, 13, 0.35) 0%,
    rgba(18, 16, 13, 0.55) 55%,
    rgba(18, 16, 13, 0.96) 100%
  );
}
@keyframes hero-melt-in {
  0% {
    clip-path: inset(0% 0% 0% 0% round 0px);
    transform: scale(1.12);
  }
  100% {
    clip-path: inset(0% 0% 0% 0% round 0px);
    transform: scale(1);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem 4rem;
  width: 100%;
}
.hero-content .eyebrow {
  color: var(--c-amber);
}
.hero-content h1 {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1.08;
  margin: 1rem 0 1.4rem;
  max-width: 15ch;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.hero-content p {
  max-width: 52ch;
  font-size: var(--fs-body-lg);
  color: var(--c-white);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--c-line);
  padding-top: 1.8rem;
}
.hero-stats div strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--c-amber);
}
.hero-stats div span {
  font-size: 0.85rem;
  color: var(--c-white);
}

.hero-decor-rooster {
  position: absolute;
  right: -6%;
  top: 8%;
  width: 46%;
  max-width: 520px;
  opacity: 0.08;
  filter: invert(1);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
  }
  .hero-content {
    padding: calc(76px + 2.4rem) 1rem 3rem;
  }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: var(--c-ink-soft);
  padding: 2.4rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
  min-width: 0;
}
.trust-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  color: var(--c-white);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}
.trust-item span {
  font-size: 0.8rem;
  color: var(--c-amber-pale);
  overflow-wrap: anywhere;
}

/* ==========================================================================
   SPECIALTY / SPLIT SECTIONS
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.split.reverse .split-media {
  order: 2;
}
.split-body {
  min-width: 0;
}
.split-media {
  position: relative;
  min-width: 0;
}
.split-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  clip-path: inset(0% round 28px);
  animation: reveal-inset linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}
.split-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.split-media .tag-card {
  position: absolute;
  left: -1.4rem;
  bottom: -1.4rem;
  background: var(--c-amber);
  color: var(--c-ink);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  max-width: 220px;
}
.split-media .tag-card strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
}
.split-media .tag-card span {
  font-size: 0.82rem;
  font-weight: 600;
}

.split-body ul.checklist {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.split-body ul.checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.98rem;
}
.split-body ul.checklist li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--c-amber);
  display: inline-block;
}

@keyframes reveal-inset {
  from {
    clip-path: inset(14% round 28px);
  }
  to {
    clip-path: inset(0% round 28px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .split-media .frame,
  .hero-media img {
    animation: none !important;
  }
}

/* section decorators */
.decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.decor-dots {
  background-image: radial-gradient(currentColor 2px, transparent 2px);
  background-size: 18px 18px;
  color: var(--c-line-dark);
  width: 220px;
  height: 220px;
}
.decor-glow {
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 162, 60, 0.25),
    transparent 70%
  );
  filter: blur(10px);
}
.decor-outline-icon {
  width: 340px;
  opacity: 0.06;
}
.on-dark .decor-outline-icon {
  filter: invert(1);
  opacity: 0.08;
}

/* ==========================================================================
   ANIMAL GRID
   ========================================================================== */
.animal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}
.animal-grid.secondary {
  grid-template-columns: repeat(6, 1fr);
  margin-top: 1.1rem;
}
.animal-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 1.6rem 1rem;
  text-align: center;
  border: 1px solid var(--c-line-dark);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  min-width: 0;
}
.animal-card.featured {
  background: var(--c-ink);
  color: var(--c-white);
  grid-column: span 2;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem;
  min-width: 0;
}
.animal-card.featured > div {
  min-width: 0;
}
.animal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(18, 16, 13, 0.12);
}
.chip {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  margin: 0 auto 0.9rem;
  background: var(--c-amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.animal-card.featured .chip {
  margin: 0;
  background: var(--c-amber);
}
.chip img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.animal-card h3 {
  font-size: 1rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.animal-card p {
  font-size: 0.84rem;
  margin-top: 0.35rem;
  opacity: 0.85;
  overflow-wrap: anywhere;
}
.animal-card.featured p {
  opacity: 1;
  color: var(--c-amber-pale);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  position: relative;
  z-index: 1;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--c-white);
  isolation: isolate;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}
.service-card:hover img {
  transform: scale(1.08);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(18, 16, 13, 0.05) 20%,
    rgba(18, 16, 13, 0.92) 100%
  );
}
.service-card .body {
  padding: 1.6rem;
}
.service-card .num {
  font-size: 0.8rem;
  color: var(--c-amber);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 1.35rem;
  margin-top: 0.5rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.service-card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--c-white);
  overflow-wrap: anywhere;
}
.service-card .more {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-amber);
}

/* ==========================================================================
   DESTINATIONS / MARQUEE + PROCESS
   ========================================================================== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 1.4rem 0;
  margin: 3rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.55;
  white-space: nowrap;
}
.marquee-track span::after {
  content: '•';
  margin-left: 2.4rem;
  color: var(--c-amber);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.map-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.4rem;
  margin-top: 1.6rem;
}
.city-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.city-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-amber);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}
.process-step {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  border: 1px solid var(--c-line-dark);
  position: relative;
  min-width: 0;
}
.process-step .step-no {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.process-step h3 {
  font-size: 1.05rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.process-step p {
  font-size: 0.88rem;
  margin-top: 0.5rem;
  opacity: 0.8;
  overflow-wrap: anywhere;
}

/* ==========================================================================
   GALLERY + LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  min-width: 0;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(0deg, rgba(18, 16, 13, 0.85), transparent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}
.gallery-item:hover .cap {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(18, 16, 13, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.7s var(--ease);
  visibility: hidden;
}
.lightbox.open {
  clip-path: circle(150% at 50% 50%);
  visibility: visible;
}
.lightbox figure {
  max-width: 88vw;
  max-height: 82vh;
  margin: 0;
}
.lightbox img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 14px;
}
.lightbox figcaption {
  color: #fff;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(247, 242, 233, 0.1);
  border: 1px solid var(--c-line);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.lightbox-close {
  top: 24px;
  right: 24px;
}
.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--c-amber);
  color: var(--c-ink);
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}
.why-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: var(--c-ink-soft);
  border: 1px solid var(--c-line);
  min-width: 0;
}
.why-card h3 {
  color: var(--c-amber);
  font-size: 1.1rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.why-card p {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--c-white);
  overflow-wrap: anywhere;
}

/* ==========================================================================
   TESTIMONIAL-ISH QUOTE / CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 340px;
}
.cta-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band .body {
  background: var(--c-ink);
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  min-width: 0;
}
.cta-band h2 {
  font-size: var(--fs-h1);
  font-weight: 800;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.95rem;
}
.compare-table thead th {
  background: var(--c-ink);
  color: #fff;
  text-align: left;
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.compare-table thead th.col-highlight {
  background: var(--c-amber);
  color: var(--c-ink);
}
.compare-table tbody td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--c-line-dark);
  vertical-align: top;
  background: var(--c-white);
  overflow-wrap: anywhere;
}
.compare-table tbody td.col-highlight {
  background: var(--c-cream-2);
  font-weight: 600;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody td:first-child {
  font-weight: 700;
  color: var(--c-ink);
}

/* ==========================================================================
   QUOTE BAND (testimonial)
   ========================================================================== */
.quote-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.quote-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    rgba(18, 16, 13, 0.92) 40%,
    rgba(18, 16, 13, 0.55) 100%
  );
}
.quote-band .quote-body {
  padding: 3.5rem;
  max-width: 640px;
  min-width: 0;
}
.quote-band .quote-mark {
  font-size: 4.5rem;
  line-height: 1;
  color: var(--c-amber);
  font-weight: 800;
  display: block;
  margin-bottom: 0.6rem;
}
.quote-band blockquote {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  overflow-wrap: anywhere;
}
.quote-band .quote-attr {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.quote-band .quote-attr .dot {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--c-amber);
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.quote-band .quote-attr strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
}
.quote-band .quote-attr span {
  display: block;
  color: var(--c-amber-pale);
  font-size: 0.82rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-ink);
  min-width: 0;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary span.q-text {
  overflow-wrap: anywhere;
}
.faq-item summary .q-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--c-amber-pale);
  color: var(--c-amber-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary .q-icon {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  padding: 0 1.6rem 1.6rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-ink);
  opacity: 0.85;
  overflow-wrap: anywhere;
}
@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-answer {
    animation: faq-fade 0.35s var(--ease) both;
  }
}
@keyframes faq-fade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 0.85;
    transform: translateY(0);
  }
}

/* ==========================================================================
   CONTACT — 3-step qualifier then form
   ========================================================================== */
.contact-panel {
  background: var(--c-ink-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.qualifier-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.qualifier-progress i {
  height: 4px;
  flex: 1;
  background: var(--c-line);
  border-radius: 4px;
  overflow: hidden;
}
.qualifier-progress i span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--c-amber);
  transition: width 0.4s var(--ease);
}
.qualifier-progress i.done span {
  width: 100%;
}

.q-step {
  display: none;
}
.q-step.active {
  display: block;
  animation: melt-in 0.6s var(--ease) both;
}
@keyframes melt-in {
  0% {
    clip-path: inset(0% 0% 100% 0% round 24px);
    opacity: 0;
  }
  100% {
    clip-path: inset(0% 0% 0% 0% round 24px);
    opacity: 1;
  }
}
.q-step .q-eyebrow {
  color: var(--c-amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.q-step h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 0.6rem;
  max-width: 26ch;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.q-options {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.q-option {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  background: rgba(247, 242, 233, 0.03);
  color: #fff;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    transform 0.2s var(--ease);
  min-width: 0;
  overflow-wrap: anywhere;
}
.q-option:hover {
  border-color: var(--c-amber);
  background: rgba(232, 162, 60, 0.08);
  transform: translateY(-2px);
}
.q-option .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--c-amber);
}

.q-back {
  margin-top: 1.6rem;
  color: var(--c-amber-pale);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.contact-form {
  display: none;
}
.contact-form.active {
  display: block;
  animation: melt-in 0.7s var(--ease) both;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}
.form-grid .full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-amber-pale);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
  background: rgba(247, 242, 233, 0.04);
  color: #fff;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(247, 242, 233, 0.45);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  font-size: 0.78rem;
  color: rgba(247, 242, 233, 0.6);
  margin-top: 1rem;
}
.form-summary {
  margin-top: 1.6rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(232, 162, 60, 0.08);
  border: 1px solid var(--c-line);
  font-size: 0.85rem;
  color: var(--c-amber-pale);
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.form-summary b {
  color: #fff;
}
.form-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.form-status {
  font-size: 0.9rem;
  font-weight: 700;
}
.form-status.ok {
  color: var(--c-amber);
}
.form-status.err {
  color: #e6685f;
}

.contact-panel {
  min-width: 0;
}
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
}
.contact-info-card {
  background: var(--c-cream-2);
  border-radius: var(--radius-md);
  padding: 1.6rem;
}
.contact-info-card h3 {
  font-size: 1.05rem;
}
.contact-info-card ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.92rem;
}
.contact-info-card a {
  font-weight: 700;
  overflow-wrap: anywhere;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--c-ink);
  color: #fff;
  padding: 4rem 0 1.6rem;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}
.footer-grid > div {
  min-width: 0;
}
.footer-grid img.footer-logo {
  height: 52px;
  width: auto;
  aspect-ratio: 405 / 351;
}
.footer-grid p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--c-white);
  max-width: 32ch;
  overflow-wrap: anywhere;
}
.footer-col h4 {
  color: var(--c-amber);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: #fff;
  overflow-wrap: anywhere;
}
.footer-col a:hover {
  color: var(--c-amber);
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--c-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(247, 242, 233, 0.65);
}
.footer-bottom a {
  color: rgba(247, 242, 233, 0.65);
}
.footer-bottom a:hover {
  color: var(--c-amber);
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 900;
  max-width: 620px;
  margin: 0 auto;
  background: var(--c-ink);
  color: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(140%);
  transition: transform 0.6s var(--ease);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 0.86rem;
  color: #fff;
}
.cookie-banner a {
  color: var(--c-amber);
  font-weight: 700;
}
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.cookie-actions .btn {
  min-height: 44px;
  padding: 0 1.4rem;
  font-size: 0.78rem;
}

/* ==========================================================================
   PAGE HERO + LEGAL / CONTENT PAGES (regulamin, polityki, 404)
   ========================================================================== */
.page-hero {
  background: var(--c-ink);
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.page-hero h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  margin-top: 0.7rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.page-hero p {
  margin-top: 1.1rem;
  font-size: var(--fs-body-lg);
  color: #fff;
  max-width: 60ch;
}
.page-hero .updated {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-amber-pale);
}

.legal-content {
  padding: var(--space-section) 0;
  background: var(--c-cream);
}
.legal-content .wrap {
  max-width: 820px;
}
.legal-content h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-top: 3rem;
  overflow-wrap: anywhere;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-top: 1.8rem;
  overflow-wrap: anywhere;
}
.legal-content p {
  margin-top: 1rem;
  font-size: var(--fs-body);
  line-height: 1.75;
}
.legal-content ul,
.legal-content ol {
  margin-top: 1rem;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.legal-content ul {
  list-style: disc;
}
.legal-content ol {
  list-style: decimal;
}
.legal-content li {
  font-size: var(--fs-body);
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.legal-content a {
  color: var(--c-amber-deep);
  font-weight: 700;
  text-decoration: underline;
}
.legal-content strong {
  font-weight: 800;
}

.legal-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.legal-table th,
.legal-table td {
  padding: 0.9rem 1rem;
  border: 1px solid var(--c-line-dark);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}
.legal-table th {
  background: var(--c-ink);
  color: #fff;
  font-weight: 700;
}
.legal-table tbody tr:nth-child(even) td {
  background: rgba(18, 16, 13, 0.03);
}

.not-found {
  padding: 6rem 0;
  text-align: center;
}
.not-found .code {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 800;
  color: var(--c-amber);
  line-height: 1;
}
.not-found h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  margin-top: 1rem;
}
.not-found p {
  margin-top: 1rem;
  font-size: var(--fs-body-lg);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.not-found .hero-actions {
  justify-content: center;
}

/* ==========================================================================
   SKIP LINK
   ========================================================================== */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--c-amber);
  color: var(--c-ink);
  padding: 1rem 1.4rem;
  z-index: 2000;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .animal-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .animal-card.featured {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  :root {
    --space-section: 4.6rem;
  }
  .split,
  .map-panel,
  .cta-band {
    grid-template-columns: 1fr;
  }
  .split-media .frame img,
  .split-media img {
    height: 340px;
  }
  .split.reverse .split-media {
    order: 0;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .q-options {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .cta-band {
    min-height: auto;
  }
  .cta-band img {
    height: 260px;
  }
  .quote-band {
    min-height: auto;
  }
  .quote-band .quote-body {
    padding: 2.4rem;
    max-width: none;
  }
  .quote-band blockquote {
    font-size: 1.4rem;
  }
}
@media (max-width: 640px) {
  .animal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .animal-card.featured {
    grid-column: span 2;
    flex-direction: column;
    text-align: center;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    max-width: none;
  }
  .hero-stats {
    gap: 1.4rem;
  }
  .contact-panel {
    padding: 1.6rem;
  }
  .quote-band .quote-body {
    padding: 1.8rem;
  }
  .quote-band blockquote {
    font-size: 1.2rem;
  }
  .faq-item summary {
    padding: 1.1rem 1.2rem;
    font-size: 0.95rem;
  }
  .faq-item .faq-answer {
    padding: 0 1.2rem 1.2rem;
  }
  .compare-table thead th,
  .compare-table tbody td {
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 540px) {
  .trust-item {
    flex-direction: column;
    text-align: center;
  }
}

.contact-info-card {
  color: #000;
}
