:root {
  --zz-navy: #002454;
  --zz-cyan: #00a8c0;
  --zz-cyan-bright: #00c2d8;
  --zz-green: #54a800;
  --zz-orange: #fc6c00;
  --zz-ink: #142033;
  --zz-muted: #5b6b80;
  --zz-bg: #f6fafc;
  --zz-bg-soft: #eef6f8;
  --zz-surface: #ffffff;
  --zz-line: rgba(20, 32, 51, 0.1);
  --zz-radius: 1.35rem;
  --zz-max: 72rem;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-soft: 0 18px 50px rgba(0, 36, 84, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--zz-ink);
  background:
    radial-gradient(900px 420px at 8% -5%, rgba(252, 108, 0, 0.12), transparent 55%),
    radial-gradient(800px 420px at 92% 0%, rgba(0, 168, 192, 0.14), transparent 50%),
    radial-gradient(700px 380px at 50% 100%, rgba(84, 168, 0, 0.1), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--zz-bg) 42%, var(--zz-bg-soft) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--zz-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--zz-navy);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--zz-line);
}

.site-header__inner {
  max-width: var(--zz-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo--header .site-logo__img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

.site-logo--hero .site-logo__img {
  width: min(46vw, 12.5rem);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 16px 30px rgba(0, 36, 84, 0.18));
  animation: zz-float-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--zz-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
}

.brand-wordmark span:first-child {
  color: var(--zz-navy);
}

.brand-wordmark span:last-child {
  color: var(--zz-cyan);
}

.nav-primary {
  display: none;
  gap: 1.35rem;
  align-items: center;
}

.nav-primary li {
  list-style: none;
  margin: 0;
}

.nav-primary a {
  color: var(--zz-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-primary a:hover,
.nav-primary .current-menu-item > a {
  color: var(--zz-navy);
}

.nav-toggle {
  appearance: none;
  border: 1px solid var(--zz-line);
  background: #fff;
  color: var(--zz-ink);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-toggle[aria-expanded="true"] + .nav-primary,
.nav-primary.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 1.25rem;
  top: 4.4rem;
  background: #fff;
  border: 1px solid var(--zz-line);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  min-width: 12rem;
  box-shadow: var(--shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--zz-orange), #ff9a3d 55%, var(--zz-cyan));
  color: #081018;
  box-shadow: 0 14px 34px rgba(252, 108, 0, 0.28);
}

.btn--primary:hover {
  color: #081018;
  box-shadow: 0 16px 40px rgba(0, 168, 192, 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--zz-navy);
  border: 1px solid rgba(0, 36, 84, 0.14);
}

.btn--ghost:hover {
  background: #fff;
  color: var(--zz-navy);
}

.hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: zz-ken 18s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(246, 250, 252, 0.72) 42%, rgba(246, 250, 252, 0.92) 100%),
    radial-gradient(circle at 20% 20%, rgba(252, 108, 0, 0.16), transparent 36%),
    radial-gradient(circle at 80% 30%, rgba(0, 168, 192, 0.18), transparent 40%);
}

.hero__content {
  max-width: 46rem;
  padding: 5.5rem 1.25rem 4rem;
  text-align: center;
}

.hero__brand {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  animation: zz-rise 0.9s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__brand .zoo {
  color: var(--zz-navy);
}

.hero__brand .zeug {
  color: var(--zz-cyan);
}

.hero__lead {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  color: var(--zz-muted);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  animation: zz-rise 0.9s 0.24s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  animation: zz-rise 0.9s 0.36s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.spectrum {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--zz-max);
  margin: -2rem auto 0;
  padding: 0 1.25rem;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}

.spectrum__item {
  position: relative;
  border-radius: var(--zz-radius);
  overflow: hidden;
  min-height: 14rem;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spectrum__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
}

.spectrum__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(0, 36, 84, 0.16);
  color: #fff;
}

.spectrum__item:hover img {
  transform: scale(1.06);
}

.spectrum__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.15rem 1rem 1rem;
  display: grid;
  gap: 0.15rem;
  background: linear-gradient(180deg, transparent, rgba(8, 16, 28, 0.72));
}

.spectrum__label strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.spectrum__label em {
  font-style: normal;
  font-size: 0.88rem;
  opacity: 0.92;
}

.spectrum__label--cat { box-shadow: inset 0 -4px 0 var(--zz-orange); }
.spectrum__label--dog { box-shadow: inset 0 -4px 0 var(--zz-navy); }
.spectrum__label--reptile { box-shadow: inset 0 -4px 0 var(--zz-green); }
.spectrum__label--fish { box-shadow: inset 0 -4px 0 var(--zz-cyan); }

.section {
  max-width: var(--zz-max);
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--zz-cyan);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--zz-navy);
}

.section__text {
  margin: 0 0 2rem;
  max-width: 38rem;
  color: var(--zz-muted);
}

.story {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.story__media {
  margin: 0;
  border-radius: calc(var(--zz-radius) + 0.35rem);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-height: 34rem;
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 34rem;
}

.promise {
  display: grid;
  gap: 0.85rem;
}

.promise__item {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--zz-line);
  background: var(--zz-surface);
  border-radius: var(--zz-radius);
  display: grid;
  gap: 0.3rem;
  box-shadow: 0 8px 24px rgba(0, 36, 84, 0.04);
}

.promise__item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--zz-navy);
}

.promise__item p {
  margin: 0;
  color: var(--zz-muted);
  font-size: 0.98rem;
}

.pilot-band {
  margin: 0.5rem 0 0;
  border-block: 1px solid var(--zz-line);
  background:
    linear-gradient(120deg, rgba(0, 168, 192, 0.12), rgba(84, 168, 0, 0.1) 45%, rgba(252, 108, 0, 0.1));
}

.pilot-band__inner {
  max-width: var(--zz-max);
  margin: 0 auto;
  padding: 3.25rem 1.25rem;
  display: grid;
  gap: 1.25rem;
}

.pilot-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--zz-navy);
}

.pilot-band p {
  margin: 0.55rem 0 0;
  color: var(--zz-muted);
  max-width: 40rem;
}

.site-main--page {
  max-width: 50rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}

.site-main--page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
  color: var(--zz-navy);
}

.entry-content h2,
.entry-content h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin-top: 2rem;
  color: var(--zz-navy);
}

.entry-content p,
.entry-content li {
  color: var(--zz-muted);
}

.entry-content ul {
  padding-left: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--zz-line);
  margin-top: 2rem;
  background: #fff;
}

.site-footer__inner {
  max-width: var(--zz-max);
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
  display: grid;
  gap: 2rem;
}

.site-footer__brand {
  display: grid;
  gap: 0.75rem;
}

.site-footer__brand p {
  margin: 0;
  color: var(--zz-muted);
  max-width: 28rem;
}

.site-footer__cols {
  display: grid;
  gap: 1.5rem;
}

.site-footer__cols h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--zz-navy);
}

.site-footer__cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer__cols a {
  color: var(--zz-muted);
  text-decoration: none;
}

.site-footer__cols a:hover {
  color: var(--zz-navy);
}

.site-footer__bottom {
  max-width: var(--zz-max);
  margin: 0 auto;
  padding: 1rem 1.25rem 2rem;
  border-top: 1px solid var(--zz-line);
  color: var(--zz-muted);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

.woocommerce-page .site-main,
.woocommerce .site-main {
  max-width: var(--zz-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #fff;
  border: 1px solid var(--zz-line);
  border-radius: var(--zz-radius);
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(0, 36, 84, 0.05);
}

.woocommerce span.onsale {
  background: var(--zz-orange);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--zz-cyan) !important;
  color: #041018 !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}

@keyframes zz-float-in {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes zz-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zz-ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(0, -1.5%, 0); }
}

@media (min-width: 900px) {
  .story {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-primary {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    min-width: 0;
  }
  .promise {
    grid-template-columns: 1fr;
  }
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
  }
  .pilot-band__inner {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }
}

@media (max-width: 800px) {
  .spectrum {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
