﻿:root {
  --bg-0: #050a10;
  --bg-1: #0a121b;
  --bg-2: #0f1d29;
  --bg-3: #132735;
  --surface: rgba(14, 24, 34, 0.58);
  --surface-strong: rgba(12, 20, 30, 0.76);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(205, 227, 242, 0.2);
  --line-strong: rgba(205, 227, 242, 0.33);
  --text: #e7f2f8;
  --text-soft: #c5d6e0;
  --muted: #94aaba;
  --accent: #f0b977;
  --accent-soft: #f4d29d;
  --accent-2: #67c5bb;
  --accent-3: #84aee0;
  --ink: #0f1821;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 22px 38px rgba(0, 0, 0, 0.28);
  --shadow-medium: 0 30px 58px rgba(0, 0, 0, 0.36);
  --shadow-strong: 0 44px 88px rgba(0, 0, 0, 0.48);
  --max-width: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --section-gap: clamp(74px, 8vw, 106px);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.62;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% -8%, rgba(240, 185, 119, 0.2), transparent 36%),
    radial-gradient(circle at 96% 14%, rgba(103, 197, 187, 0.16), transparent 38%),
    linear-gradient(146deg, var(--bg-0), var(--bg-1) 32%, var(--bg-2) 66%, var(--bg-3));
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -12vmax;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    radial-gradient(circle at 18% 22%, rgba(240, 185, 119, 0.2), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(103, 197, 187, 0.18), transparent 38%),
    radial-gradient(circle at 53% 86%, rgba(132, 174, 224, 0.14), transparent 44%);
  filter: blur(18px);
  animation: auroraShift 24s ease-in-out infinite alternate;
}

body::after {
  z-index: -1;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 58%, transparent 100%);
  animation: meshDrift 36s linear infinite;
}

::selection {
  background: rgba(240, 185, 119, 0.28);
  color: #111a23;
}

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

picture {
  display: block;
}

a {
  color: inherit;
}

main {
  position: relative;
}

main > .hero,
main > .section,
main > .breed-hero,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  pointer-events: none;
  z-index: 4;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.9);
  background:
    radial-gradient(circle at center, rgba(240, 185, 119, 0.18), rgba(103, 197, 187, 0.1) 40%, transparent 72%);
  filter: blur(10px);
  transition: opacity 0.45s var(--ease-out);
}

body.aura-ready .cursor-aura {
  opacity: 1;
}

.container {
  width: min(var(--max-width), 92vw);
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 300;
  pointer-events: none;
  background: linear-gradient(90deg, var(--accent), #ffe1b7 42%, var(--accent-2));
  box-shadow: 0 0 18px rgba(240, 185, 119, 0.36);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 180;
  border-bottom: 1px solid rgba(205, 227, 242, 0.13);
  background: rgba(6, 11, 17, 0.58);
  backdrop-filter: blur(18px) saturate(134%);
  transition:
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-header::before {
  background: linear-gradient(112deg, rgba(240, 185, 119, 0.14), transparent 42%, rgba(103, 197, 187, 0.14));
  background-size: 210% 100%;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.site-header::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 185, 119, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(4, 8, 13, 0.82);
  border-color: rgba(205, 227, 242, 0.21);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

.site-header.is-scrolled::before {
  opacity: 1;
  animation: headerFlow 7s linear infinite;
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: min-height 0.35s var(--ease-out);
}

.site-header.is-scrolled .header-inner {
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.34rem, 2.1vw, 2.02rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #f8dbad;
  text-shadow: 0 8px 24px rgba(240, 185, 119, 0.28);
}

.brand span {
  color: #d7e8f2;
  font-size: clamp(0.78rem, 1.2vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(205, 227, 242, 0.26);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #deedf7;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition:
    border-color 0.24s var(--ease-out),
    background 0.24s var(--ease-out),
    transform 0.24s var(--ease-out);
}

.nav-toggle:hover {
  border-color: rgba(205, 227, 242, 0.42);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.24s var(--ease-out), opacity 0.24s var(--ease-out);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(205, 227, 242, 0.24);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lang-link {
  min-width: 40px;
  padding: 7px 10px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bed0dc;
  transition:
    color 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.lang-link:hover {
  color: #eff8fd;
}

.lang-link.active {
  color: var(--ink);
  background: linear-gradient(132deg, var(--accent), var(--accent-soft));
  box-shadow: 0 8px 14px rgba(240, 185, 119, 0.28);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: #9fb4c2;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.26s var(--ease-out), text-shadow 0.26s var(--ease-out);
}

.site-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: translateX(-50%) scaleX(0.15);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.26s var(--ease-out), opacity 0.26s var(--ease-out);
}

.site-nav a:hover,
.site-nav a.active {
  color: #edf7fd;
  text-shadow: 0 0 14px rgba(207, 230, 245, 0.28);
}

.site-nav a:hover::before,
.site-nav a.active::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    color 0.3s var(--ease-out);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.48), transparent 64%);
  transform: translateX(-130%);
  transition: transform 0.72s var(--ease-out);
}

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

.btn:hover::before {
  transform: translateX(130%);
}

.btn-small {
  padding: 10px 16px;
  font-size: 0.76rem;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(205, 227, 242, 0.25);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(205, 227, 242, 0.45);
}

.btn-primary {
  padding: 14px 24px;
  color: var(--ink);
  background: linear-gradient(132deg, var(--accent), var(--accent-soft));
  box-shadow:
    0 16px 32px rgba(240, 185, 119, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.btn-primary:hover {
  box-shadow:
    0 24px 42px rgba(240, 185, 119, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.btn-ghost {
  padding: 14px 24px;
  color: #eaf5fb;
  border-color: rgba(205, 227, 242, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(205, 227, 242, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  padding: clamp(80px, 9vw, 132px) 0 clamp(78px, 8vw, 104px);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8%;
  width: min(1180px, 92vw);
  height: 100%;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(205, 227, 242, 0.14);
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03) 42%, rgba(103, 197, 187, 0.07));
  box-shadow: var(--shadow-medium);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 227, 242, 0.34), transparent);
}

.hero-home .hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero-home .hero-grid > div:first-child {
  padding-left: clamp(10px, 1.4vw, 22px);
}

.eyebrow {
  margin-bottom: 16px;
  color: #ffd8a5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.breed-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  max-width: 12ch;
  margin-bottom: 18px;
  color: #f2f8fc;
  text-wrap: balance;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.hero-lead {
  margin: 0 0 30px;
  max-width: 64ch;
  color: #b9ceda;
  font-size: clamp(1.01rem, 1.45vw, 1.12rem);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(205, 227, 242, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  color: #d6e7f1;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
}

.hero-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(205, 227, 242, 0.42);
}

.stat-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(205, 227, 242, 0.19);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.stat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(240, 185, 119, 0.2), transparent 34%, rgba(103, 197, 187, 0.16));
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.stat-item::after {
  content: "";
  position: absolute;
  inset: -180% -60%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 44%, rgba(255, 255, 255, 0.3), transparent 56%);
  transform: translateX(-72%) rotate(18deg);
  transition: transform 0.8s var(--ease-out);
}

.stat-item:hover,
.stat-item.is-tilting {
  transform: translateY(-6px);
  border-color: rgba(205, 227, 242, 0.32);
  box-shadow: var(--shadow-medium);
}

.stat-item:hover::before,
.stat-item.is-tilting::before {
  opacity: 1;
}

.stat-item:hover::after {
  transform: translateX(72%) rotate(18deg);
}

.stat-item strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #ffe1b6;
  font-size: clamp(1.26rem, 2vw, 1.68rem);
  line-height: 1.2;
}

.stat-item span {
  position: relative;
  z-index: 1;
  color: #a9bfce;
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(205, 227, 242, 0.19);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
  background:
    linear-gradient(168deg, rgba(9, 16, 24, 0.72), rgba(9, 16, 24, 0.22)),
    var(--hero-image) center calc(50% + var(--parallax-offset, 0px)) / contain no-repeat;
  animation: heroFloat 18s ease-in-out infinite;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(6, 12, 18, 0.76), rgba(6, 12, 18, 0.14)),
    radial-gradient(circle at 86% 14%, rgba(103, 197, 187, 0.28), transparent 38%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(240, 185, 119, 0.18), transparent 72%);
  animation: pulseGlow 9s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  border-radius: 14px;
  border: 1px solid rgba(205, 227, 242, 0.25);
  background: rgba(8, 15, 22, 0.66);
  backdrop-filter: blur(10px);
  color: #e8f4fa;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.34);
  padding: 16px 18px;
  animation: floatCard 6.5s ease-in-out infinite;
}

.floating-card p {
  margin: 0 0 6px;
  color: #bfd3df;
  font-size: 0.9rem;
}

.floating-card strong {
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.02em;
  color: #ffe2b7;
}

.section {
  position: relative;
  padding: var(--section-gap) 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14%;
  width: min(980px, 86vw);
  height: 72%;
  transform: translateX(-50%);
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 66%);
  pointer-events: none;
  opacity: 0.62;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 227, 242, 0.22), transparent);
}

.section:nth-of-type(even):not(.contact-section) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.section-tight {
  padding-top: 40px;
}

.section-head {
  margin-bottom: 30px;
}

.section-title {
  margin-bottom: 14px;
  color: #f2f8fc;
  font-size: clamp(2.2rem, 4.6vw, 3.95rem);
  text-wrap: balance;
}

.section-copy {
  margin: 0;
  max-width: 74ch;
  color: #acc2cf;
  overflow-wrap: anywhere;
}

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

.breed-card {
  position: relative;
  min-height: 472px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(205, 227, 242, 0.2);
  box-shadow: var(--shadow-medium);
  isolation: isolate;
  background:
    linear-gradient(to top, rgba(6, 11, 17, 0.86), rgba(6, 11, 17, 0.2)),
    var(--card-image) center / contain no-repeat;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out),
    filter 0.5s var(--ease-out);
}

.breed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 185, 119, 0.3), transparent 34%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0.84;
  transition: opacity 0.45s var(--ease-out);
}

.breed-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.breed-card:hover,
.breed-card.is-tilting {
  transform: translateY(-10px) scale(1.016);
  border-color: rgba(205, 227, 242, 0.35);
  box-shadow: var(--shadow-strong);
  filter: saturate(1.06);
}

.breed-card:hover::before,
.breed-card.is-tilting::before {
  opacity: 1;
}

.breed-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px;
  display: grid;
  gap: 10px;
  transition: transform 0.45s var(--ease-out);
}

.breed-card:hover .breed-content {
  transform: translateY(-4px);
}

.breed-content h3 {
  margin: 0;
  color: #f8f3ea;
  font-size: 2.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

.breed-content p {
  margin: 0;
  color: #d8e7ef;
  font-size: 0.92rem;
}

.breed-count {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(9, 17, 26, 0.64);
  color: #f4e2c9;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.value-card,
.social-panel,
.contact-card,
.mini-panel,
.stat-card,
.gallery-item,
.lineup-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(205, 227, 242, 0.18);
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03) 44%, rgba(103, 197, 187, 0.06)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    background 0.4s var(--ease-out);
}

.value-card::before,
.social-panel::before,
.contact-card::before,
.mini-panel::before,
.stat-card::before,
.gallery-item::before,
.lineup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(132deg, rgba(240, 185, 119, 0.2), transparent 34%, rgba(103, 197, 187, 0.18));
  opacity: 0;
  transition: opacity 0.36s var(--ease-out);
}

.value-card::after,
.social-panel::after,
.contact-card::after,
.mini-panel::after,
.stat-card::after,
.gallery-item::after,
.lineup-card::after {
  content: "";
  position: absolute;
  inset: -220% -55%;
  pointer-events: none;
  background: linear-gradient(104deg, transparent 46%, rgba(255, 255, 255, 0.24), transparent 54%);
  transform: translateX(-80%) rotate(16deg);
  transition: transform 0.9s var(--ease-out);
}

.value-card:hover,
.social-panel:hover,
.contact-card:hover,
.mini-panel:hover,
.stat-card:hover,
.gallery-item:hover,
.lineup-card:hover,
.value-card.is-tilting,
.social-panel.is-tilting,
.contact-card.is-tilting,
.mini-panel.is-tilting,
.stat-card.is-tilting,
.gallery-item.is-tilting,
.lineup-card.is-tilting {
  transform: translateY(-7px);
  border-color: rgba(205, 227, 242, 0.34);
  box-shadow: var(--shadow-medium);
}

.value-card:hover::before,
.social-panel:hover::before,
.contact-card:hover::before,
.mini-panel:hover::before,
.stat-card:hover::before,
.gallery-item:hover::before,
.lineup-card:hover::before,
.value-card.is-tilting::before,
.social-panel.is-tilting::before,
.contact-card.is-tilting::before,
.mini-panel.is-tilting::before,
.stat-card.is-tilting::before,
.gallery-item.is-tilting::before,
.lineup-card.is-tilting::before {
  opacity: 1;
}

.value-card:hover::after,
.social-panel:hover::after,
.contact-card:hover::after,
.mini-panel:hover::after,
.stat-card:hover::after,
.gallery-item:hover::after,
.lineup-card:hover::after {
  transform: translateX(80%) rotate(16deg);
}

.value-card {
  padding: 24px;
}

.value-card h3 {
  margin: 0 0 8px;
  color: #eff7fc;
  font-size: 1.15rem;
}

.value-card p {
  margin: 0;
  color: #aec2ce;
  font-size: 0.93rem;
}

.social-panel {
  padding: clamp(24px, 5vw, 44px);
  border-radius: 30px;
  background:
    linear-gradient(128deg, rgba(240, 185, 119, 0.16), rgba(255, 255, 255, 0.05) 42%, rgba(103, 197, 187, 0.12)),
    rgba(9, 16, 24, 0.68);
  box-shadow: var(--shadow-medium);
}

.social-panel h2 {
  margin: 0 0 10px;
  color: #f0f8fd;
  font-size: clamp(2rem, 3.2vw, 3.02rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.social-panel p {
  margin: 0 0 22px;
  max-width: 70ch;
  color: #b3c8d5;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(205, 227, 242, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #e5f1f8;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    transform 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    border-color 0.32s var(--ease-out),
    background 0.32s var(--ease-out);
}

.social-link:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 227, 242, 0.4);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.contact-section {
  padding-bottom: clamp(88px, 10vw, 120px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

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

.contact-card h2 {
  margin: 0 0 10px;
  color: #f0f8fd;
  font-size: clamp(2rem, 3vw, 2.82rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.contact-card p {
  margin: 0 0 16px;
  color: #b0c4d0;
  overflow-wrap: anywhere;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a,
.contact-list span {
  width: fit-content;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  color: #e1eef6;
  font-weight: 600;
  overflow-wrap: anywhere;
  transition: border-color 0.24s var(--ease-out), color 0.24s var(--ease-out);
}

.contact-list a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.mini-panel {
  padding: 24px;
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(10, 19, 29, 0.74);
}

.mini-panel h3 {
  margin: 0 0 8px;
  color: #edf6fc;
  font-size: 1.08rem;
}

.mini-panel p {
  margin: 0 0 12px;
  color: #aec2ce;
  font-size: 0.9rem;
}

.mini-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #d2e2ec;
}

.mini-panel li {
  margin-bottom: 8px;
}

.site-footer {
  border-top: 1px solid rgba(205, 227, 242, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  padding: 24px 0 30px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: #92a7b5;
  font-size: 0.84rem;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  text-decoration: none;
  color: #f8d9ab;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.24s var(--ease-out), color 0.24s var(--ease-out);
}

.crumb:hover {
  color: #ffe9c8;
  transform: translateX(-2px);
}

.breed-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) 0 clamp(68px, 7vw, 92px);
  border-bottom: 1px solid rgba(205, 227, 242, 0.23);
  color: #f6ede1;
  background:
    linear-gradient(152deg, rgba(6, 11, 17, 0.72), rgba(6, 11, 17, 0.26)),
    var(--hero-image) center calc(50% + var(--parallax-offset, 0px)) / contain no-repeat;
}

.breed-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 12, 18, 0.4), rgba(6, 12, 18, 0.82)),
    radial-gradient(circle at 84% 16%, rgba(240, 185, 119, 0.28), transparent 34%);
}

.breed-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -52% -12%;
  height: 70%;
  background: radial-gradient(circle, rgba(103, 197, 187, 0.22), transparent 72%);
  animation: pulseGlow 9s ease-in-out infinite;
}

.breed-hero .container {
  position: relative;
  z-index: 1;
}

.breed-hero .eyebrow {
  color: #f5d0a0;
}

.breed-hero h1 {
  max-width: 11ch;
  margin-bottom: 14px;
  color: #fff6ea;
  font-size: clamp(2.7rem, 6vw, 4.92rem);
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.breed-hero p {
  margin: 0 0 24px;
  max-width: 62ch;
  color: #ecdccc;
}

.breed-hero .btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff8ef;
}

.breed-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 18px;
}

.stat-card p {
  margin: 0 0 8px;
  color: #a8bdca;
  font-size: 0.84rem;
}

.stat-card strong {
  color: #ffe2b6;
  font-size: clamp(1.56rem, 2.5vw, 2.1rem);
  line-height: 1;
}

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

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  background: rgba(6, 12, 18, 0.58);
  padding: 6px;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}

.gallery-item:hover img {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.02) contrast(1.06);
}

.gallery-item figcaption {
  position: relative;
  z-index: 1;
  padding: 10px 12px;
  color: #b7cad6;
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

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

.lineup-card {
  padding: 18px;
}

.lineup-card h3 {
  margin: 0 0 6px;
  color: #eaf4fa;
  font-size: 1rem;
}

.lineup-card p {
  margin: 0;
  color: #a9bfcd;
  font-size: 0.88rem;
}

.lineup-chip {
  margin-top: 10px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(205, 227, 242, 0.26);
  color: #ffe1b6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(0.99);
  filter: blur(8px);
  transition:
    opacity 0.78s var(--ease-out),
    transform 0.78s var(--ease-out),
    filter 0.78s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section-animated {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(10px);
  transition:
    opacity 0.92s var(--ease-out),
    transform 0.92s var(--ease-out),
    filter 0.92s var(--ease-out);
}

.section-animated.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes auroraShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(3%, -2%, 0) scale(1.05);
  }
}

@keyframes meshDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-56px, -34px, 0);
  }
}

@keyframes headerFlow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(1);
  }

  50% {
    opacity: 0.74;
    transform: scale(1.08);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 1080px) {
  html {
    scroll-padding-top: 96px;
  }

  .header-inner {
    min-height: 86px;
  }

  .hero-home .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-home .hero-grid > div:first-child {
    padding-left: clamp(4px, 1vw, 10px);
  }

  .hero-visual {
    min-height: 440px;
  }

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

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

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 84px;
  }

  .cursor-aura {
    display: none;
  }

  .container {
    width: min(var(--max-width), 94vw);
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    min-height: 72px;
    column-gap: 8px;
    row-gap: 8px;
    padding: 10px 0 12px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 66px;
  }

  .brand {
    min-width: 0;
    gap: 6px;
  }

  .brand strong {
    font-size: clamp(1.1rem, 4.9vw, 1.44rem);
    letter-spacing: 0.06em;
  }

  .brand span {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    width: auto;
    margin-left: 0;
    justify-content: flex-end;
  }

  .lang-switch {
    padding: 3px;
  }

  .lang-link {
    min-width: 34px;
    padding: 6px 8px;
    font-size: 0.66rem;
  }

  .site-nav {
    order: 4;
    grid-column: 1 / -1;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    overflow: visible;
    padding-top: 10px;
    margin-top: 2px;
    border-top: 1px solid rgba(205, 227, 242, 0.18);
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-header.has-nav-toggle .site-nav {
    overflow: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      max-height 0.34s var(--ease-out),
      opacity 0.24s var(--ease-out),
      transform 0.24s var(--ease-out),
      padding-top 0.24s var(--ease-out);
    padding-top: 0;
    margin-top: 0;
    border-top-color: transparent;
  }

  .site-header.has-nav-toggle.nav-open .site-nav {
    max-height: 280px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding-top: 10px;
    margin-top: 2px;
    border-top: 1px solid rgba(205, 227, 242, 0.18);
  }

  .site-nav a {
    white-space: nowrap;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(205, 227, 242, 0.2);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .site-nav a::before {
    display: none;
  }

  .site-nav a.active {
    border-color: rgba(205, 227, 242, 0.38);
    background: rgba(255, 255, 255, 0.11);
  }

  .hide-mobile {
    display: none;
  }

  .hero {
    padding: clamp(48px, 9vw, 62px) 0 clamp(54px, 10vw, 68px);
  }

  .hero::before {
    border-radius: 24px;
  }

  .hero h1 {
    font-size: clamp(1.98rem, 10vw, 2.88rem);
    line-height: 1.02;
    max-width: 14ch;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .hero-home .hero-grid > div:first-child {
    padding-left: 0;
  }

  .hero-home .hero-grid {
    gap: 22px;
  }

  .button-row {
    width: 100%;
    gap: 10px;
  }

  .button-row .btn {
    flex: 1 1 100%;
    width: 100%;
    min-height: 46px;
  }

  .hero-tags {
    margin-top: 18px;
    gap: 8px;
  }

  .hero-tags span {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .stat-item {
    padding: 14px;
  }

  .hero-visual {
    min-height: clamp(280px, 76vw, 360px);
    background-position: center 36%;
    background-size: cover;
  }

  .floating-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 15px;
  }

  .floating-card p {
    font-size: 0.84rem;
  }

  .floating-card strong {
    font-size: 1.04rem;
  }

  .stat-list,
  .breed-grid,
  .value-grid,
  .gallery-grid,
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: clamp(54px, 11vw, 66px) 0;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-title {
    font-size: clamp(1.86rem, 9vw, 2.54rem);
    line-height: 1.02;
  }

  .section-copy {
    font-size: 0.94rem;
  }

  .contact-section {
    padding-bottom: 72px;
  }

  .gallery-item img {
    height: auto;
    padding: 4px;
  }

  .gallery-item figcaption {
    font-size: 0.76rem;
    line-height: 1.48;
  }

  .breed-card {
    min-height: clamp(300px, 88vw, 390px);
    background-size: cover;
    background-position: center 34%;
  }

  .breed-content h3 {
    font-size: clamp(1.74rem, 8vw, 2.12rem);
  }

  .breed-content p {
    font-size: 0.88rem;
  }

  .social-panel h2,
  .contact-card h2 {
    font-size: clamp(1.74rem, 8.2vw, 2.3rem);
  }

  .mini-panel {
    padding: 20px;
  }

  .breed-hero {
    padding: clamp(54px, 8.6vw, 72px) 0 clamp(52px, 8.4vw, 66px);
    background-size: cover;
    background-position: center 32%;
  }

  .breed-hero h1 {
    font-size: clamp(2rem, 10vw, 2.94rem);
    line-height: 1.02;
  }

  .breed-hero p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .crumb {
    margin-bottom: 14px;
    font-size: 0.74rem;
  }

  .contact-list a,
  .contact-list span {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--max-width), 95vw);
  }

  .hero h1 {
    font-size: clamp(1.82rem, 10.8vw, 2.36rem);
    max-width: 100%;
  }

  .section-title,
  .breed-hero h1 {
    max-width: 100%;
  }

  .site-nav a {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .footer-inner p {
    font-size: 0.78rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .btn:hover,
  .social-link:hover,
  .stat-item:hover,
  .breed-card:hover,
  .value-card:hover,
  .social-panel:hover,
  .contact-card:hover,
  .mini-panel:hover,
  .stat-card:hover,
  .gallery-item:hover,
  .lineup-card:hover {
    transform: none;
  }

  .btn::before,
  .hero-visual,
  .floating-card,
  .site-header.is-scrolled::before,
  .stat-item::after,
  .value-card::after,
  .social-panel::after,
  .contact-card::after,
  .mini-panel::after,
  .stat-card::after,
  .gallery-item::after,
  .lineup-card::after,
  .hero-visual::after,
  .breed-hero::after,
  body::before,
  body::after {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  .section-animated {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .cursor-aura {
    display: none;
  }
}
