@import url("global-background.css");

:root {
    color-scheme: dark;
    --site-bg: #020711;
    --site-bg-deep: #01050c;
    --site-surface: #071224;
    --site-surface-soft: rgba(7, 18, 36, 0.78);
    --site-surface-strong: #09172b;
    --site-text: #f5f1ea;
    --site-muted: #aab6c7;
    --site-muted-strong: #c6cfdb;
    --site-gold: #d8a35a;
    --site-gold-soft: #e7c487;
    --site-border: rgba(216, 163, 90, 0.28);
    --site-border-soft: rgba(148, 163, 184, 0.14);
    --site-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    --site-radius: 26px;
    --site-header-height: 88px;
    --site-container: 1320px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--site-bg);
    color: var(--site-text);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--site-bg);
}

body {
    min-height: 100%;
    margin: 0;
    background:
        radial-gradient(circle at 80% 14%, rgba(52, 79, 119, 0.11), transparent 33%),
        linear-gradient(180deg, var(--site-bg) 0%, var(--site-bg-deep) 100%);
    color: var(--site-text);
}

body.menu-open {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

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

::selection {
    background: rgba(216, 163, 90, 0.28);
    color: var(--site-text);
}

.site-container {
    width: min(calc(100% - 64px), var(--site-container));
    min-width: 0;
    margin-inline: auto;
}

.site-skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--site-text);
    color: var(--site-bg);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.site-skip-link:focus {
    transform: translateY(0);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: var(--site-header-height);
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
body:not(.home-page) .site-header {
    border-bottom-color: rgba(216, 163, 90, 0.12);
    background: rgba(2, 7, 17, 0.78);
    backdrop-filter: blur(20px) saturate(120%);
}

.site-header__inner {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 64px), var(--site-container));
    min-width: 0;
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--site-text);
    text-decoration: none;
}

.site-brand__mark {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
}

.site-brand__mark img {
    display: block;
    width: 100%;
    height: 100%;
}

.site-brand__name {
    white-space: nowrap;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.22rem;
    letter-spacing: 0.015em;
}

.site-brand__name strong {
    color: var(--site-gold-soft);
    font-weight: 500;
}

.site-brand__line {
    width: 46px;
    height: 1px;
    background: linear-gradient(90deg, var(--site-gold), transparent);
}

.site-nav--desktop {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav__link {
    position: relative;
    padding: 12px 16px;
    color: rgba(245, 241, 234, 0.76);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 5px;
    left: 16px;
    height: 1px;
    background: var(--site-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
    color: var(--site-text);
}

.site-nav__link.is-active::after,
.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
    transform: scaleX(1);
}

.site-menu-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    background: rgba(5, 18, 36, 0.72);
    color: var(--site-text);
    cursor: pointer;
    touch-action: manipulation;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.site-menu-button span {
    width: 18px;
    height: 1.5px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.site-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.site-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.site-mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    background: rgba(1, 5, 12, 0.68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.site-mobile-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.site-mobile-menu__inner {
    position: absolute;
    top: var(--site-header-height);
    right: 0;
    width: min(50vw, 460px);
    height: calc(100% - var(--site-header-height));
    padding: clamp(30px, 5vh, 54px) clamp(16px, 3vw, 30px) 26px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(216, 163, 90, 0.22);
    background:
        radial-gradient(circle at 84% 8%, rgba(216, 163, 90, 0.11), transparent 30%),
        #020711;
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.42);
    transform: translate3d(100%, 0, 0);
    transition: transform 180ms ease;
}

.site-mobile-menu[aria-hidden="false"] .site-mobile-menu__inner {
    transform: translate3d(0, 0, 0);
}

body.menu-open .site-header {
    border-bottom-color: rgba(216, 163, 90, 0.18);
    background: #020711;
    backdrop-filter: none;
}

.site-mobile-menu__eyebrow,
.site-kicker,
.home-hero__eyebrow {
    color: var(--site-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-mobile-menu__nav {
    margin-top: 18px;
    display: grid;
}

.site-mobile-menu__link {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 14px 0;
    border-bottom: 1px solid var(--site-border-soft);
    color: var(--site-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 4.8vw, 1.9rem);
    text-decoration: none;
    white-space: nowrap;
}

.site-mobile-menu__icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(216, 163, 90, 0.22);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--site-gold);
    background: rgba(216, 163, 90, 0.05);
}

.site-mobile-menu__icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.site-mobile-menu__link.is-active {
    color: var(--site-gold-soft);
}

.site-mobile-menu__link.is-active .site-mobile-menu__icon {
    border-color: rgba(231, 196, 135, 0.58);
    background: rgba(216, 163, 90, 0.14);
    color: var(--site-gold-soft);
}

.site-mobile-menu__note {
    margin-top: auto;
    color: rgba(245, 241, 234, 0.42);
    font-size: clamp(0.58rem, 2.6vw, 0.72rem);
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
}

/* Shared */
.site-section {
    padding: clamp(88px, 10vw, 150px) 0;
}

.site-section--compact {
    padding-top: clamp(56px, 7vw, 100px);
}

.site-kicker {
    display: inline-block;
}

.site-button {
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.site-button:hover,
.site-button:focus-visible {
    transform: translateY(-2px);
}

.site-button--primary {
    background: linear-gradient(135deg, #c98a3f 0%, #e1b56f 100%);
    color: #08111f;
    box-shadow: 0 16px 38px rgba(216, 163, 90, 0.18);
}

.site-button--primary:hover,
.site-button--primary:focus-visible {
    background: linear-gradient(135deg, #d69b51 0%, #e9c689 100%);
}

.site-button--ghost {
    border-color: rgba(245, 241, 234, 0.24);
    background: rgba(5, 18, 36, 0.2);
    color: var(--site-text);
    backdrop-filter: blur(12px);
}

.site-button--ghost:hover,
.site-button--ghost:focus-visible {
    border-color: var(--site-border);
    background: rgba(5, 18, 36, 0.55);
}

.site-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--site-gold-soft);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.site-text-link span {
    transition: transform 180ms ease;
}

.site-text-link:hover span,
.site-text-link:focus-visible span {
    transform: translateX(4px);
}

/* Homepage */
.home-main h1,
.home-main h2,
.home-main h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.home-main h1 em,
.home-main h2 em {
    color: var(--site-gold-soft);
    font-weight: inherit;
}

/* Hero */
.home-hero {
    position: relative;
    min-height: min(920px, 100svh);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    isolation: isolate;
    background: #020711;
}

.home-hero__image,
.home-hero__veil,
.home-hero__glow {
    position: absolute;
    inset: 0;
}

.home-hero__image {
    z-index: -4;
    background: url("../images/global-background.webp") var(--global-background-position-x, 64%) var(--global-background-position-y, 50%) / cover no-repeat;
    transform: scale(1.01);
}

.home-hero__veil {
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(1, 5, 12, 0.98) 0%, rgba(1, 5, 12, 0.94) 24%, rgba(1, 5, 12, 0.70) 47%, rgba(1, 5, 12, 0.18) 76%, rgba(1, 5, 12, 0.34) 100%),
        linear-gradient(180deg, rgba(1, 5, 12, 0.22) 0%, rgba(1, 5, 12, 0.04) 55%, #020711 100%);
}

.home-hero__glow {
    z-index: -2;
    right: 44%;
    background: radial-gradient(circle at 46% 44%, rgba(216, 163, 90, 0.11), transparent 34%);
}

.home-hero__content {
    min-height: inherit;
    padding-top: calc(var(--site-header-height) + 40px);
    padding-bottom: 38px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    grid-template-rows: 1fr auto;
    align-items: center;
}

.home-hero__copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 680px;
    padding: 48px 40px 48px 0;
}

.home-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.home-hero__eyebrow span {
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--site-gold), rgba(216, 163, 90, 0.12));
}

.home-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(3.8rem, 5.9vw, 6.5rem);
    letter-spacing: -0.05em;
    line-height: 0.97;
    text-wrap: balance;
}

.home-hero__copy > p {
    max-width: 610px;
    margin: 30px 0 0;
    color: rgba(230, 236, 244, 0.80);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.85;
}

.home-hero__actions {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero__assurances {
    grid-column: 1 / -1;
    grid-row: 2;
    width: max-content;
    max-width: calc(100% - 90px);
    padding: 15px 20px;
    border: 1px solid rgba(216, 163, 90, 0.20);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(230, 236, 244, 0.68);
    background: rgba(2, 7, 17, 0.58);
    backdrop-filter: blur(14px);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero__assurances i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--site-gold);
}

.home-hero__scroll {
    position: absolute;
    right: 36px;
    bottom: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 241, 234, 0.48);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.home-hero__scroll i {
    width: 1px;
    height: 48px;
    background: linear-gradient(var(--site-gold), transparent);
}

/* Story */
.home-story {
    position: relative;
}

.home-story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(calc(100% - 64px), var(--site-container));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 163, 90, 0.24), transparent);
    transform: translateX(-50%);
}

.home-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(60px, 10vw, 150px);
}

.home-story__heading h2,
.home-section-heading h2,
.home-confidence h2,
.home-breed h2,
.home-closing h2,
.section-heading h2 {
    margin: 14px 0 0;
    letter-spacing: -0.04em;
}

.home-story__heading h2,
.home-section-heading h2,
.home-confidence h2,
.home-breed h2,
.home-closing h2 {
    font-size: clamp(3rem, 5vw, 5.3rem);
    line-height: 1.02;
}

.home-story__copy {
    padding-top: 34px;
}

.home-story__copy p {
    margin: 0;
    color: var(--site-muted-strong);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.92;
}

.home-story__copy p + p {
    margin-top: 20px;
}

.home-story__copy .site-text-link {
    margin-top: 30px;
}

/* Values */
.home-values {
    border-block: 1px solid rgba(216, 163, 90, 0.08);
    background:
        radial-gradient(circle at 86% 14%, rgba(216, 163, 90, 0.06), transparent 28%),
        rgba(7, 18, 36, 0.22);
}

.home-section-heading {
    margin-bottom: 46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
    align-items: end;
    gap: 50px;
}

.home-section-heading > p {
    margin: 0 0 8px;
    color: var(--site-muted);
    line-height: 1.8;
}

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

.home-values__grid article {
    position: relative;
    min-width: 0;
    min-height: 330px;
    padding: 32px;
    border: 1px solid var(--site-border-soft);
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 100% 0%, rgba(216, 163, 90, 0.075), transparent 38%),
        rgba(4, 14, 29, 0.68);
}

.home-values__grid article::after {
    content: "";
    position: absolute;
    top: -96px;
    right: -88px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(216, 163, 90, 0.08);
    border-radius: 50%;
}

.home-values__number {
    position: absolute;
    z-index: 1;
    top: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--site-gold-soft);
    font-size: 0.68rem;
    font-weight: 800;
}

.home-values__grid h3 {
    position: relative;
    z-index: 1;
    margin: 68px 0 0;
    font-size: clamp(1.7rem, 2.2vw, 2.25rem);
    line-height: 1.15;
}

.home-values__grid p {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: var(--site-muted);
    line-height: 1.78;
}

/* Confidence */
.home-confidence {
    padding: clamp(82px, 9vw, 130px) 0;
    background: rgba(1, 5, 12, 0.34);
}

.home-confidence__inner {
    padding: clamp(44px, 5.5vw, 76px);
    border: 1px solid var(--site-border);
    border-radius: 32px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
    align-items: center;
    gap: clamp(54px, 8vw, 110px);
    background:
        radial-gradient(circle at 0% 0%, rgba(216, 163, 90, 0.11), transparent 34%),
        linear-gradient(145deg, rgba(8, 27, 49, 0.97), rgba(3, 11, 24, 0.99));
    box-shadow: var(--site-shadow);
}

.home-confidence__intro {
    min-width: 0;
}

.home-confidence__intro > p {
    max-width: 610px;
    margin: 26px 0 0;
    color: var(--site-muted-strong);
    line-height: 1.85;
}

.home-confidence__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--site-border-soft);
    border-left: 1px solid var(--site-border-soft);
}

.home-confidence__facts article {
    min-width: 0;
    min-height: 138px;
    padding: 24px;
    border-right: 1px solid var(--site-border-soft);
    border-bottom: 1px solid var(--site-border-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-confidence__facts strong,
.home-confidence__facts span {
    display: block;
}

.home-confidence__facts strong {
    color: var(--site-gold-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 500;
}

.home-confidence__facts span {
    margin-top: 8px;
    color: var(--site-muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

/* Breed */
.home-breed__panel {
    position: relative;
    min-height: 620px;
    padding: clamp(48px, 7vw, 92px);
    border: 1px solid var(--site-border);
    border-radius: 34px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(54px, 8vw, 110px);
    background:
        radial-gradient(circle at 16% 18%, rgba(216, 163, 90, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(7, 23, 43, 0.96), rgba(3, 11, 24, 0.99));
    box-shadow: var(--site-shadow);
}

.home-breed__monogram {
    color: rgba(231, 196, 135, 0.075);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(9rem, 17vw, 16rem);
    letter-spacing: -0.1em;
    line-height: 0.8;
}

.home-breed__copy {
    position: relative;
    z-index: 1;
}

.home-breed__copy > p {
    max-width: 680px;
    margin: 26px 0 32px;
    color: var(--site-muted-strong);
    line-height: 1.85;
}

/* Closing */
.home-closing {
    padding-bottom: clamp(96px, 11vw, 160px);
}

.home-closing__grid {
    padding-top: clamp(54px, 7vw, 90px);
    border-top: 1px solid rgba(216, 163, 90, 0.20);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
    align-items: end;
    gap: clamp(56px, 9vw, 130px);
}

.home-closing__action p {
    margin: 0 0 26px;
    color: var(--site-muted);
    line-height: 1.8;
}

/* Shared heading used on other public pages. */
.section-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
}

.section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 4vw, 4.4rem);
    font-weight: 500;
}

.section-heading > p {
    margin: 0 0 9px;
    color: rgba(170, 182, 199, 0.72);
    font-size: 0.88rem;
}

@media (max-width: 1024px) {
    .home-hero__scroll {
        display: none;
    }
}

@media (min-width: 621px) and (max-width: 1024px) {
    .home-hero {
        min-height: min(900px, 100svh);
    }

    .home-hero__image {
        background-position: var(--global-background-position-x, 64%) var(--global-background-position-y, 50%);
    }

    .home-hero__veil {
        background:
            linear-gradient(180deg, rgba(1, 5, 12, 0.20) 0%, rgba(1, 5, 12, 0.10) 34%, rgba(1, 5, 12, 0.86) 68%, #020711 100%),
            linear-gradient(90deg, rgba(1, 5, 12, 0.76), rgba(1, 5, 12, 0.08) 72%);
    }

    .home-hero__content {
        padding-top: calc(var(--site-header-height) + 40px);
        padding-bottom: 32px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        align-items: end;
    }

    .home-hero__copy {
        width: min(100%, 680px);
        padding: 60px 0 34px;
    }

    .home-hero h1 {
        font-size: clamp(4rem, 9.2vw, 5.5rem);
    }

    .home-hero__assurances {
        grid-column: 1;
        max-width: 100%;
    }

    .home-story__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
        gap: 48px;
    }

    .home-story__copy {
        padding-top: 22px;
    }

    .home-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-section-heading > p {
        max-width: 620px;
    }

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

    .home-values__grid article:last-child {
        grid-column: 1 / -1;
        min-height: 270px;
    }

    .home-confidence__inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .home-breed__panel {
        min-height: 560px;
        grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
        gap: 40px;
    }

    .home-closing__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .home-closing__action {
        max-width: 560px;
    }
}

@media (max-width: 620px) {
    .home-hero {
        min-height: 0;
    }

    .home-hero__image {
        bottom: auto;
        height: clamp(360px, 52svh, 430px);
        background-position: var(--global-background-position-x, 64%) var(--global-background-home-mobile-position-y, 85%);
        background-size: auto 115%;
    }

    .home-hero__veil {
        background:
            linear-gradient(180deg, rgba(1, 5, 12, 0.16) 0%, rgba(1, 5, 12, 0.22) 20%, rgba(1, 5, 12, 0.76) 36%, #020711 54%, #020711 100%),
            linear-gradient(90deg, rgba(1, 5, 12, 0.50), rgba(1, 5, 12, 0.04));
    }

    .home-hero__content {
        min-height: 0;
        padding-top: clamp(190px, 28svh, 240px);
        padding-bottom: 28px;
        display: block;
    }

    .home-hero__copy {
        width: 100%;
        padding: 0;
    }

    .home-hero__eyebrow {
        margin-bottom: 14px;
        font-size: 0.64rem;
    }

    .home-hero__eyebrow span {
        width: 30px;
    }

    .home-hero h1 {
        font-size: clamp(2.15rem, 10.8vw, 3.1rem);
        line-height: 0.94;
    }

    .home-hero__copy > p {
        margin-top: 18px;
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .home-hero__actions {
        margin-top: 22px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-hero__actions .site-button {
        min-height: 48px;
        padding-inline: 10px;
        font-size: 0.78rem;
    }

    .home-hero__assurances {
        width: 100%;
        max-width: 100%;
        margin-top: 28px;
        padding: 12px 14px;
        border-radius: 18px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 10px;
        font-size: 0.56rem;
        letter-spacing: 0.05em;
        text-align: center;
    }

    .home-story::before {
        width: calc(100% - 28px);
    }

    .home-story__grid,
    .home-section-heading,
    .home-confidence__inner,
    .home-breed__panel,
    .home-closing__grid {
        grid-template-columns: 1fr;
    }

    .home-story__grid {
        gap: 26px;
    }

    .home-story__heading h2,
    .home-section-heading h2,
    .home-confidence h2,
    .home-breed h2,
    .home-closing h2 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .home-confidence h2 {
        max-width: 100%;
        font-size: clamp(1.95rem, 9vw, 3.25rem);
        overflow-wrap: anywhere;
    }

    .home-story__copy {
        padding-top: 0;
    }

    .home-section-heading {
        margin-bottom: 34px;
        gap: 18px;
    }

    .home-values__grid {
        grid-template-columns: 1fr;
    }

    .home-values__grid article,
    .home-values__grid article:last-child {
        min-height: 290px;
        grid-column: auto;
        padding: 26px;
        border-radius: 22px;
    }

    .home-values__number {
        top: 24px;
        left: 24px;
    }

    .home-confidence {
        padding-block: 74px;
    }

    .home-confidence__inner {
        padding: 36px 24px;
        border-radius: 24px;
        gap: 34px;
    }

    .home-confidence__facts article {
        min-height: 116px;
        padding: 18px 14px;
    }

    .home-confidence__facts strong {
        font-size: 1.25rem;
    }

    .home-breed__panel {
        min-height: 590px;
        padding: 38px 24px;
        border-radius: 26px;
        align-content: end;
        gap: 28px;
    }

    .home-breed__monogram {
        position: absolute;
        top: 76px;
        left: 18px;
        font-size: 9.5rem;
    }

    .home-breed__copy > p {
        margin-top: 22px;
    }

    .home-closing__grid {
        gap: 30px;
    }

    .home-closing__action p {
        margin-bottom: 24px;
    }
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(216, 163, 90, 0.12);
    background: rgba(1, 5, 12, 0.88);
}

.site-footer__inner {
    width: min(calc(100% - 64px), var(--site-container));
    margin-inline: auto;
    padding: 48px 0 34px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;
}

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

.site-footer__mark {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
}

.site-footer__mark img {
    display: block;
    width: 100%;
    height: 100%;
}

.site-footer__brand div {
    display: grid;
    gap: 3px;
}

.site-footer__brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 500;
}

.site-footer__brand span:not(.site-footer__mark) {
    color: rgba(170, 182, 199, 0.54);
    font-size: 0.72rem;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
}

.site-footer__nav a {
    color: rgba(245, 241, 234, 0.62);
    font-size: 0.78rem;
    font-weight: 650;
    text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
    color: var(--site-text);
}

.site-footer__connect {
    display: grid;
    justify-items: center;
    justify-self: end;
    gap: 10px;
}

.site-footer__socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.site-footer__contact,
.site-footer__socials a {
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--site-border-soft);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(245, 241, 234, 0.70);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.site-footer__contact {
    width: 100%;
    justify-content: center;
    border-color: rgba(216, 163, 90, 0.36);
    background: rgba(216, 163, 90, 0.08);
    color: var(--site-gold-soft);
}

.site-footer__contact:hover,
.site-footer__contact:focus-visible,
.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
    border-color: var(--site-border);
    background: rgba(216, 163, 90, 0.06);
    color: var(--site-text);
}

.site-footer__contact svg,
.site-footer__socials svg {
    width: 16px;
    height: 16px;
    fill: var(--site-gold);
}

.site-footer__bottom {
    width: min(calc(100% - 64px), var(--site-container));
    margin-inline: auto;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    display: block;
    color: rgba(170, 182, 199, 0.38);
    font-size: 0.68rem;
    line-height: 1.9;
    text-align: center;
}

.site-footer__dot {
    margin-inline: 0.48rem;
    color: rgba(216, 163, 90, 0.68);
}

.site-footer__legal {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem 1rem;
}

.site-footer__legal a {
    color: rgba(198, 207, 219, 0.52);
    text-decoration: none;
    transition: color 160ms ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: var(--site-gold-soft);
}

.site-whatsapp {
    position: fixed;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 1200;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: transform 180ms ease;
}

.site-whatsapp__label {
    position: absolute;
    right: calc(100% + 12px);
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0.58rem 0.82rem;
    border: 1px solid rgba(216, 163, 90, 0.32);
    border-radius: 12px;
    background: rgba(4, 13, 27, 0.96);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
    color: var(--site-text);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-whatsapp__label::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    width: 9px;
    height: 9px;
    border-top: 1px solid rgba(216, 163, 90, 0.32);
    border-right: 1px solid rgba(216, 163, 90, 0.32);
    background: rgba(4, 13, 27, 0.96);
    transform: translateY(-50%) rotate(45deg);
}

.site-whatsapp__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    background: linear-gradient(145deg, #2bd96b, #149f52);
    box-shadow: 0 10px 26px rgba(4, 13, 27, 0.48), 0 0 0 4px rgba(37, 211, 102, 0.10);
}

.site-whatsapp__icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.site-whatsapp:hover,
.site-whatsapp:focus-visible {
    transform: translateY(-3px);
}

.site-whatsapp:hover .site-whatsapp__label,
.site-whatsapp:focus-visible .site-whatsapp__label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.site-whatsapp:focus-visible {
    border-radius: 50%;
    outline: 2px solid var(--site-gold-soft);
    outline-offset: 4px;
}

/* Responsive */
@media (max-width: 1080px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__nav {
        order: 3;
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    :root {
        --site-header-height: 76px;
    }

    .site-header {
        transition: background 180ms ease, border-color 180ms ease;
    }

    .site-container,
    .site-header__inner,
    .site-footer__inner,
    .site-footer__bottom {
        width: min(calc(100% - 40px), var(--site-container));
    }

    .site-nav--desktop {
        display: none;
    }

    .site-menu-button {
        display: inline-flex;
    }

    .site-brand__line {
        display: none;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }

    .site-footer__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        column-gap: 18px;
        row-gap: 22px;
    }

    .site-footer__brand {
        grid-column: 1;
        grid-row: 1;
    }

    .site-footer__nav {
        grid-column: 2;
        grid-row: 1 / span 2;
        order: initial;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 13px;
        text-align: right;
    }

    .site-footer__connect {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
    }

    .site-footer__socials {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (min-width: 621px) and (max-width: 860px) {
    .site-mobile-menu__link {
        font-size: 1.35rem;
    }

    .site-footer__bottom {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .site-whatsapp {
        right: max(18px, env(safe-area-inset-right));
        bottom: max(18px, env(safe-area-inset-bottom));
    }

    .site-whatsapp__label {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

@media (max-width: 620px) {
    .site-container,
    .site-header__inner,
    .site-footer__inner,
    .site-footer__bottom {
        width: min(calc(100% - 28px), var(--site-container));
    }

    .site-brand__mark {
        width: 1.35rem;
        height: 1.35rem;
    }

    .site-brand__name {
        font-size: 1.02rem;
    }

    .site-mobile-menu__inner {
        width: 50vw;
        padding-inline: 16px;
    }

    .site-button {
        width: 100%;
    }

    .site-section {
        padding: 78px 0;
    }

    .site-footer__bottom {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
        line-height: 2.1;
    }

    .site-whatsapp {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
    }

    .site-whatsapp__label {
        right: calc(100% + 9px);
        min-height: 36px;
        padding: 0.52rem 0.68rem;
        font-size: 0.72rem;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .site-whatsapp__icon {
        width: 48px;
        height: 48px;
    }

    .site-whatsapp__icon svg {
        width: 29px;
        height: 29px;
    }
}

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

    .site-skip-link,
    .site-header,
    .site-nav__link,
    .site-nav__link::after,
    .site-menu-button span,
    .site-mobile-menu,
    .site-mobile-menu__inner,
    .site-button,
    .site-text-link span,
    .site-footer__contact,
    .site-footer__socials a,
    .site-footer__legal a,
    .site-whatsapp {
        transition: none;
    }
}

/* Public feline catalogue. */
.felines-main,
.feline-detail-main {
    padding-top: var(--site-header-height);
}

.felines-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: end;
    background:
        radial-gradient(circle at 82% 18%, rgba(216, 163, 90, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(7, 23, 43, 0.94), rgba(2, 7, 17, 0.98));
}

.felines-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -250px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(216, 163, 90, 0.10);
    border-radius: 50%;
}

.felines-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 72px;
}

.felines-hero h1,
.feline-detail-heading h1,
.feline-detail-info__heading h2,
.felines-empty h2 {
    margin: 14px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.felines-hero h1 {
    max-width: 860px;
    margin-top: 0;
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    line-height: 0.96;
}

.felines-hero h1 em,
.feline-detail-info__heading h2 em {
    color: var(--site-gold-soft);
    font-weight: inherit;
}

.felines-hero p {
    max-width: 650px;
    margin: 26px 0 0;
    color: var(--site-muted);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.75;
}

.felines-catalog {
    min-height: 440px;
}

@media (min-width: 861px) {
    .felines-hero {
        align-items: start;
    }

    .felines-hero__content {
        padding-top: 48px;
        padding-bottom: 36px;
    }

    .felines-catalog.site-section--compact {
        padding-top: 68px;
    }
}

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

.feline-public-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--site-border-soft);
    border-radius: var(--site-radius);
    display: block;
    background: rgba(5, 18, 36, 0.62);
    color: var(--site-text);
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feline-public-card:hover,
.feline-public-card:focus-visible {
    border-color: rgba(216, 163, 90, 0.46);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.26);
    outline: none;
    transform: translateY(-5px);
}

.feline-public-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #071224;
}

.feline-public-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.feline-public-card:hover .feline-public-card__image img,
.feline-public-card:focus-visible .feline-public-card__image img {
    transform: scale(1.035);
}

.feline-public-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.48rem 0.76rem;
    border: 1px solid rgba(245, 241, 234, 0.16);
    border-radius: 999px;
    background: rgba(2, 7, 17, 0.84);
    color: var(--site-text);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.feline-public-card__image .feline-public-status {
    position: absolute;
    top: 20px;
    right: -42px;
    width: 154px;
    min-height: 30px;
    padding: 0.38rem 0.5rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.28);
    font-size: 0.62rem;
    transform: rotate(45deg);
    backdrop-filter: none;
    pointer-events: none;
}

.feline-public-card__image .feline-public-status--available {
    background: rgba(5, 48, 34, 0.94);
}

.feline-public-card__image .feline-public-status--reserved {
    background: rgba(70, 51, 16, 0.95);
}

.feline-public-card__image .feline-public-status--sold {
    background: rgba(35, 45, 59, 0.95);
}

.feline-public-status--available {
    border-color: rgba(74, 222, 128, 0.36);
    color: #bbf7d0;
}

.feline-public-status--reserved {
    border-color: rgba(250, 204, 21, 0.38);
    color: #fef08a;
}

.feline-public-status--sold {
    border-color: rgba(148, 163, 184, 0.34);
    color: #cbd5e1;
}

.feline-public-card__content {
    padding: 24px;
}

.feline-public-card__content > span {
    color: var(--site-gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feline-public-card__content h2 {
    margin: 9px 0 22px;
    overflow-wrap: anywhere;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.feline-public-card__content > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--site-muted);
    font-size: 0.84rem;
    font-weight: 750;
}

.feline-public-card__content > div span {
    color: var(--site-gold-soft);
    font-size: 1.1rem;
    transition: transform 180ms ease;
}

.feline-public-card:hover .feline-public-card__content > div span,
.feline-public-card:focus-visible .feline-public-card__content > div span {
    transform: translateX(4px);
}

.felines-empty {
    min-height: 340px;
    padding: 50px 24px;
    border: 1px solid var(--site-border);
    border-radius: 30px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    background: linear-gradient(145deg, rgba(7, 23, 43, 0.82), rgba(3, 11, 24, 0.92));
}

.felines-empty__mark {
    width: 2rem;
    height: 2rem;
}

.felines-empty h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.felines-empty p {
    margin: 14px 0 0;
    color: var(--site-muted);
}

/* Public feline detail. */
.feline-detail-hero {
    padding-top: clamp(56px, 8vw, 104px);
    padding-bottom: 38px;
}

.feline-detail-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.feline-detail-heading > div {
    min-width: 0;
}

.feline-detail-heading .feline-public-status {
    min-height: 30px;
    padding: 0.38rem 0.62rem;
    flex: 0 0 auto;
    font-size: 0.64rem;
}

.feline-detail-back {
    width: min(100%, 320px);
    min-height: 56px;
    margin: 0;
    padding: 0 24px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 18, 36, 0.72);
    color: var(--site-text);
    font-size: 0.96rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.feline-detail-back:hover,
.feline-detail-back:focus-visible {
    border-color: var(--site-gold);
    background: rgba(216, 163, 90, 0.1);
    color: var(--site-gold-soft);
    outline: none;
    transform: translateY(-2px);
}

.feline-detail-back--desktop {
    display: none;
}

.feline-detail-actions {
    grid-column: 1 / -1;
    margin-top: clamp(4px, 2vw, 18px);
    display: flex;
    justify-content: center;
}

.feline-detail-heading h1 {
    margin-top: 0;
    overflow-wrap: anywhere;
    font-size: clamp(3.4rem, 7vw, 7rem);
    line-height: 0.96;
}

.feline-detail-gallery {
    display: block;
}

.feline-detail-gallery__carousel {
    position: relative;
}

.feline-detail-gallery__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 40px) / 5);
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.feline-detail-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.feline-detail-gallery__thumb {
    aspect-ratio: 1;
    min-width: 0;
    padding: 0;
    border: 1px solid var(--site-border-soft);
    border-radius: 15px;
    overflow: hidden;
    background: #071224;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color 180ms ease, transform 180ms ease;
}

.feline-detail-gallery__thumb:hover,
.feline-detail-gallery__thumb:focus-visible {
    border-color: var(--site-gold);
    outline: none;
    transform: translateY(-2px);
}

.feline-detail-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feline-detail-gallery__nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(216, 163, 90, 0.42);
    border-radius: 50%;
    display: none;
    place-items: center;
    background: rgba(2, 7, 17, 0.92);
    color: var(--site-text);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.feline-detail-gallery__nav--previous {
    left: -24px;
}

.feline-detail-gallery__nav--next {
    right: -24px;
}

.feline-detail-gallery__nav:hover,
.feline-detail-gallery__nav:focus-visible {
    border-color: var(--site-gold-soft);
    background: #071224;
    color: var(--site-gold-soft);
    outline: none;
}

.feline-detail-gallery__nav:disabled {
    opacity: 0.34;
    cursor: default;
}

.feline-detail-gallery__nav svg,
.feline-gallery-lightbox__nav svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.feline-detail-gallery__nav svg {
    width: 20px;
    height: 20px;
}

body.feline-gallery-lightbox-lock {
    overflow: hidden;
}

.feline-gallery-lightbox {
    position: fixed;
    z-index: 2100;
    inset: 0;
    padding: 28px;
    display: grid;
    place-items: center;
}

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

.feline-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(1, 5, 12, 0.92);
    cursor: zoom-out;
}

.feline-gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 1440px);
    max-height: calc(100svh - 56px);
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(216, 163, 90, 0.32);
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: #01050c;
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.58);
    touch-action: pan-y;
}

.feline-gallery-lightbox__dialog img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100svh - 80px);
    border-radius: 18px;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.feline-gallery-lightbox__nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid rgba(216, 163, 90, 0.42);
    border-radius: 50%;
    display: none;
    place-items: center;
    background: rgba(2, 7, 17, 0.9);
    color: var(--site-text);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.feline-gallery-lightbox__nav--previous {
    left: 28px;
}

.feline-gallery-lightbox__nav--next {
    right: 28px;
}

.feline-gallery-lightbox__nav:hover,
.feline-gallery-lightbox__nav:focus-visible {
    border-color: var(--site-gold-soft);
    background: #071224;
    color: var(--site-gold-soft);
    outline: none;
}

.feline-gallery-lightbox__nav svg {
    width: 24px;
    height: 24px;
}

.feline-detail-info__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    column-gap: clamp(48px, 9vw, 140px);
    row-gap: 34px;
    align-items: start;
}

.feline-detail-info__heading h2 {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    line-height: 1.02;
}

.feline-detail-facts {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--site-border-soft);
}

.feline-detail-facts div {
    min-width: 0;
    padding: 22px 0;
    border-bottom: 1px solid var(--site-border-soft);
}

.feline-detail-facts div:nth-child(odd) {
    padding-right: 22px;
}

.feline-detail-facts div:nth-child(even) {
    padding-left: 22px;
    border-left: 1px solid var(--site-border-soft);
}

.feline-detail-facts dt {
    color: var(--site-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feline-detail-facts dd {
    margin: 8px 0 0;
    overflow-wrap: anywhere;
    color: var(--site-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

@media (max-width: 1080px) {
    .felines-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .felines-hero {
        min-height: 0;
        align-items: start;
    }

    .feline-detail-heading {
        align-items: center;
        gap: 18px;
    }

    .feline-detail-gallery__thumbs {
        grid-auto-columns: calc((100% - 30px) / 4);
    }

    .feline-detail-info__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .feline-detail-info.site-section--compact {
        padding-top: 44px;
    }

    .feline-detail-title-break {
        display: none;
    }

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

@media (min-width: 621px) and (max-width: 860px) {
    .felines-hero__content {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .felines-catalog.site-section--compact {
        padding-top: 56px;
    }

    .felines-grid {
        gap: 16px;
    }

    .feline-public-card__content {
        padding: 20px;
    }

    .feline-public-card__content h2 {
        margin-bottom: 18px;
        font-size: clamp(1.8rem, 4.8vw, 2.4rem);
    }

    .feline-detail-hero {
        padding-top: 32px;
        padding-bottom: 26px;
    }

}

@media (max-width: 620px) {
    .felines-hero__content {
        padding-top: 34px;
        padding-bottom: 42px;
    }

    .felines-hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .felines-catalog.site-section--compact {
        padding-top: 42px;
    }

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

    .feline-public-card__content {
        padding: 14px;
    }

    .feline-public-card__image .feline-public-status {
        top: 15px;
        right: -40px;
        width: 136px;
        min-height: 25px;
        padding: 0.3rem 0.4rem;
        font-size: 0.52rem;
    }

    .feline-public-card__content > span {
        font-size: 0.57rem;
        letter-spacing: 0.08em;
    }

    .feline-public-card__content h2 {
        margin: 7px 0 15px;
        font-size: clamp(1.35rem, 7vw, 1.8rem);
    }

    .feline-public-card__content > div {
        gap: 6px;
        font-size: 0.64rem;
    }

    .feline-public-card__content > div span {
        font-size: 0.9rem;
    }

    .feline-detail-hero {
        padding-top: 24px;
        padding-bottom: 22px;
    }

    .feline-detail-heading {
        gap: 12px;
    }

    .feline-detail-heading h1 {
        font-size: clamp(3rem, 16vw, 4.8rem);
    }

    .feline-detail-gallery__thumbs {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .feline-detail-info.site-section--compact {
        padding-top: 36px;
    }

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

    .feline-detail-facts div {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .feline-detail-facts div:nth-child(odd) {
        padding-right: 14px;
    }

    .feline-detail-facts div:nth-child(even) {
        padding-left: 14px;
        border-left: 1px solid var(--site-border-soft);
    }

    .feline-detail-facts dt {
        font-size: 0.66rem;
    }

    .feline-detail-facts dd {
        font-size: clamp(1rem, 5vw, 1.2rem);
    }

    .feline-gallery-lightbox {
        padding: 14px;
    }

    .feline-gallery-lightbox__dialog {
        width: 100%;
        max-height: calc(100svh - 28px);
        padding: 8px;
        border-radius: 20px;
    }

    .feline-gallery-lightbox__dialog img {
        max-height: calc(100svh - 44px);
        border-radius: 13px;
    }

}

@media (min-width: 861px) {
    .feline-detail-hero {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .feline-detail-info.site-section--compact {
        padding-top: 64px;
    }

    .feline-detail-back--desktop {
        margin-top: 30px;
        display: inline-flex;
    }

    .feline-detail-actions {
        display: none;
    }

    .feline-detail-gallery.has-overflow .feline-detail-gallery__nav {
        display: grid;
    }

    .feline-gallery-lightbox.has-multiple-images .feline-gallery-lightbox__nav {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feline-public-card,
    .feline-public-card__image img,
    .feline-public-card__content > div span,
    .feline-detail-gallery__thumb,
    .feline-detail-gallery__nav,
    .feline-gallery-lightbox__nav {
        transition: none;
    }

    .feline-detail-gallery__thumbs {
        scroll-behavior: auto;
    }
}

/* Maine Coon breed page. */
.maine-coon-main {
    padding-top: var(--site-header-height);
}

.maine-coon-main h1,
.maine-coon-main h2,
.maine-coon-main h3,
.maine-coon-portrait dd {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.maine-coon-main h1 em,
.maine-coon-main h2 em {
    color: var(--site-gold-soft);
    font-weight: inherit;
}

#caracter,
#ingrijire {
    scroll-margin-top: calc(var(--site-header-height) + 20px);
}

.maine-coon-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 28%, rgba(216, 163, 90, 0.14), transparent 24%),
        radial-gradient(circle at 18% 82%, rgba(44, 75, 116, 0.18), transparent 32%),
        linear-gradient(145deg, #071426 0%, #020711 58%, #01050c 100%);
}

.maine-coon-hero::before,
.maine-coon-hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(216, 163, 90, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.maine-coon-hero::before {
    top: -300px;
    right: -180px;
    width: 720px;
    height: 720px;
}

.maine-coon-hero::after {
    right: 16%;
    bottom: -180px;
    width: 380px;
    height: 380px;
}

.maine-coon-hero__grid {
    position: relative;
    z-index: 1;
    min-height: 720px;
    padding-top: clamp(72px, 8vw, 118px);
    padding-bottom: clamp(72px, 8vw, 112px);
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.78fr);
    align-items: center;
    gap: clamp(64px, 9vw, 138px);
}

.maine-coon-hero__copy {
    min-width: 0;
}

.maine-coon-hero h1 {
    max-width: 820px;
    margin: 20px 0 0;
    font-size: clamp(4.4rem, 7.2vw, 7.5rem);
    letter-spacing: -0.055em;
    line-height: 0.92;
}

.maine-coon-hero__lead {
    max-width: 650px;
    margin: 30px 0 0;
    color: var(--site-muted-strong);
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    line-height: 1.85;
}

.maine-coon-hero__actions {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.maine-coon-portrait {
    position: relative;
    min-height: 500px;
    padding: 42px;
    border: 1px solid var(--site-border);
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(9, 23, 43, 0.18), rgba(4, 13, 27, 0.96)),
        rgba(7, 18, 36, 0.72);
    box-shadow: var(--site-shadow);
}

.maine-coon-portrait::before {
    content: "";
    position: absolute;
    top: 26px;
    right: 26px;
    bottom: 26px;
    left: 26px;
    border: 1px solid rgba(216, 163, 90, 0.10);
    border-radius: 24px;
    pointer-events: none;
}

.maine-coon-portrait__monogram {
    position: absolute;
    top: -30px;
    right: -8px;
    color: rgba(216, 163, 90, 0.055);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13rem;
    letter-spacing: -0.1em;
    line-height: 1;
}

.maine-coon-portrait__mark {
    position: absolute;
    top: 68px;
    left: 50%;
    width: 62px;
    height: 62px;
    padding: 15px;
    border: 1px solid rgba(216, 163, 90, 0.28);
    border-radius: 50%;
    background: rgba(2, 7, 17, 0.64);
    transform: translateX(-50%);
}

.maine-coon-portrait__mark img {
    width: 100%;
    height: 100%;
}

.maine-coon-portrait > p,
.maine-coon-portrait dl {
    position: relative;
    z-index: 1;
}

.maine-coon-portrait > p {
    max-width: 320px;
    margin: 0 0 28px;
    color: var(--site-muted-strong);
    line-height: 1.75;
}

.maine-coon-portrait dl {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--site-border-soft);
}

.maine-coon-portrait dl div {
    min-width: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--site-border-soft);
}

.maine-coon-portrait dl div:nth-child(odd) {
    padding-right: 16px;
}

.maine-coon-portrait dl div:nth-child(even) {
    padding-left: 16px;
    border-left: 1px solid var(--site-border-soft);
}

.maine-coon-portrait dt {
    color: var(--site-muted);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.maine-coon-portrait dd {
    margin: 7px 0 0;
    color: var(--site-text);
    font-size: 1.05rem;
}

.maine-coon-glance {
    border-top: 1px solid rgba(216, 163, 90, 0.10);
    border-bottom: 1px solid rgba(216, 163, 90, 0.10);
    background: rgba(1, 5, 12, 0.48);
}

.maine-coon-glance__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.maine-coon-glance article {
    min-width: 0;
    padding: 34px clamp(20px, 2.6vw, 38px);
    border-left: 1px solid var(--site-border-soft);
}

.maine-coon-glance article:last-child {
    border-right: 1px solid var(--site-border-soft);
}

.maine-coon-glance article > span,
.maine-coon-feature-grid article > span,
.maine-coon-health__grid article > span {
    color: rgba(216, 163, 90, 0.58);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.maine-coon-glance strong {
    margin-top: 15px;
    display: block;
    color: var(--site-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: 500;
}

.maine-coon-glance p {
    margin: 10px 0 0;
    color: var(--site-muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.maine-coon-story {
    position: relative;
}

.maine-coon-story__grid,
.maine-coon-care__grid,
.maine-coon-myths__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: clamp(60px, 10vw, 160px);
}

.maine-coon-section-title h2,
.maine-coon-character h2,
.maine-coon-care h2,
.maine-coon-match h2 {
    margin: 16px 0 0;
    font-size: clamp(3rem, 5.2vw, 5.5rem);
    letter-spacing: -0.045em;
    line-height: 1;
}

.maine-coon-prose {
    padding-top: 30px;
}

.maine-coon-prose > p {
    margin: 0;
    color: var(--site-muted-strong);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.95;
}

.maine-coon-prose > p + p {
    margin-top: 24px;
}

.maine-coon-prose blockquote {
    position: relative;
    margin: 38px 0 0;
    padding: 28px 0 4px 34px;
    border-left: 1px solid var(--site-gold);
    color: var(--site-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-style: italic;
    line-height: 1.55;
}

.maine-coon-anatomy,
.maine-coon-health {
    background:
        radial-gradient(circle at 92% 12%, rgba(216, 163, 90, 0.06), transparent 26%),
        rgba(7, 18, 36, 0.22);
}

.maine-coon-heading > p {
    max-width: 320px;
    text-align: right;
}

.maine-coon-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.maine-coon-feature-grid article,
.maine-coon-health__grid article,
.maine-coon-life__grid article {
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--site-border-soft);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(216, 163, 90, 0.055), transparent 34%),
        rgba(4, 14, 29, 0.68);
}

.maine-coon-feature-grid h3,
.maine-coon-health__grid h3,
.maine-coon-life__grid h3,
.maine-coon-care__list h3 {
    margin: 18px 0 0;
    color: var(--site-text);
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.maine-coon-feature-grid p,
.maine-coon-health__grid p,
.maine-coon-life__grid p,
.maine-coon-care__list p {
    margin: 13px 0 0;
    color: var(--site-muted);
    line-height: 1.75;
}

.maine-coon-size-note {
    margin-top: 18px;
    padding: 28px 32px;
    border: 1px solid var(--site-border);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 0.72fr 0.72fr 1.56fr;
    align-items: center;
    gap: 30px;
    background: rgba(2, 7, 17, 0.68);
}

.maine-coon-size-note div {
    min-width: 0;
}

.maine-coon-size-note div + div {
    padding-left: 30px;
    border-left: 1px solid var(--site-border-soft);
}

.maine-coon-size-note span {
    display: block;
    color: var(--site-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.maine-coon-size-note strong {
    margin-top: 8px;
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.maine-coon-size-note p {
    margin: 0;
    color: var(--site-muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.maine-coon-character__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(46px, 8vw, 120px);
    align-items: stretch;
}

.maine-coon-character__panel {
    position: relative;
    min-height: 620px;
    padding: clamp(42px, 5vw, 72px);
    border: 1px solid var(--site-border);
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 50% 0%, rgba(216, 163, 90, 0.10), transparent 35%),
        linear-gradient(150deg, rgba(8, 28, 51, 0.96), rgba(3, 11, 24, 0.98));
    box-shadow: var(--site-shadow);
}

.maine-coon-character__word {
    position: absolute;
    top: 20px;
    left: -18px;
    color: rgba(231, 196, 135, 0.055);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(7rem, 13vw, 12rem);
    font-style: italic;
    line-height: 1;
}

.maine-coon-character__panel > *:not(.maine-coon-character__word) {
    position: relative;
    z-index: 1;
}

.maine-coon-character__panel > p {
    margin: 28px 0 0;
    color: var(--site-muted-strong);
    line-height: 1.85;
}

.maine-coon-character__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
}

.maine-coon-character__details article {
    min-width: 0;
    padding: 30px;
    border-bottom: 1px solid var(--site-border-soft);
}

.maine-coon-character__details article:nth-child(odd) {
    padding-left: 0;
}

.maine-coon-character__details article:nth-child(even) {
    border-left: 1px solid var(--site-border-soft);
}

.maine-coon-character__details h3 {
    margin: 0;
    font-size: 1.4rem;
}

.maine-coon-character__details article p,
.maine-coon-character__note {
    color: var(--site-muted);
    line-height: 1.75;
}

.maine-coon-character__details article p {
    margin: 13px 0 0;
}

.maine-coon-character__note {
    grid-column: 1 / -1;
    margin: 28px 0 0;
    padding: 24px 26px;
    border: 1px solid rgba(216, 163, 90, 0.18);
    border-radius: 18px;
    background: rgba(216, 163, 90, 0.045);
    font-size: 0.9rem;
}

.maine-coon-section-title--centered {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

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

.maine-coon-life__grid article {
    padding: 34px;
}

.maine-coon-life__icon {
    width: 46px;
    height: 46px;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--site-gold-soft);
    font-size: 0.68rem;
    font-weight: 800;
}

.maine-coon-care {
    border-top: 1px solid rgba(216, 163, 90, 0.08);
    border-bottom: 1px solid rgba(216, 163, 90, 0.08);
    background: rgba(1, 5, 12, 0.38);
}

.maine-coon-care__intro {
    position: sticky;
    top: calc(var(--site-header-height) + 40px);
}

.maine-coon-care__intro > p {
    max-width: 520px;
    margin: 28px 0 0;
    color: var(--site-muted);
    line-height: 1.85;
}

.maine-coon-care__list {
    border-top: 1px solid var(--site-border-soft);
}

.maine-coon-care__list article {
    padding: 28px 0;
    border-bottom: 1px solid var(--site-border-soft);
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 24px;
}

.maine-coon-care__list article > span {
    padding-top: 4px;
    color: var(--site-gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.maine-coon-care__list h3 {
    margin-top: 0;
}

.maine-coon-health__intro {
    max-width: 850px;
    margin: -10px 0 42px;
    color: var(--site-muted-strong);
    font-size: 1.02rem;
    line-height: 1.85;
}

.maine-coon-health__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.maine-coon-health__grid article > span {
    min-width: 62px;
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--site-gold-soft);
}

.maine-coon-health__notice {
    margin-top: 18px;
    padding: 24px 28px;
    border-left: 2px solid var(--site-gold);
    background: rgba(216, 163, 90, 0.05);
}

.maine-coon-health__notice strong {
    color: var(--site-gold-soft);
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.maine-coon-health__notice p {
    margin: 10px 0 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.maine-coon-myths__list {
    border-top: 1px solid var(--site-border-soft);
}

.maine-coon-myths details {
    border-bottom: 1px solid var(--site-border-soft);
}

.maine-coon-myths summary {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--site-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.maine-coon-myths summary:hover {
    background: transparent;
    color: var(--site-text);
}

.maine-coon-myths summary:focus-visible {
    border-radius: 8px;
    outline: 2px solid rgba(216, 163, 90, 0.72);
    outline-offset: 4px;
}

.maine-coon-myths summary::-webkit-details-marker {
    display: none;
}

.maine-coon-myths summary span {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--site-gold-soft);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0;
    transition: transform 180ms ease, background 180ms ease;
}

.maine-coon-myths summary span::before,
.maine-coon-myths summary span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.maine-coon-myths summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.maine-coon-myths details[open]:not(.is-closing) summary span {
    background: rgba(216, 163, 90, 0.08);
    transform: rotate(45deg);
}

.maine-coon-myths details > p {
    max-width: 760px;
    margin: -6px 0 24px;
    padding-right: 60px;
    color: var(--site-muted);
    line-height: 1.8;
}

.maine-coon-match {
    padding-bottom: clamp(88px, 10vw, 150px);
}

.maine-coon-match__panel {
    position: relative;
    padding: clamp(48px, 7vw, 92px);
    border: 1px solid var(--site-border);
    border-radius: 34px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
    background:
        radial-gradient(circle at 12% 0%, rgba(216, 163, 90, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(8, 27, 49, 0.97), rgba(3, 11, 24, 0.99));
    box-shadow: var(--site-shadow);
}

.maine-coon-match__panel::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -210px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(216, 163, 90, 0.10);
    border-radius: 50%;
}

.maine-coon-match__panel > * {
    position: relative;
    z-index: 1;
}

.maine-coon-match__panel > div > p {
    margin: 26px 0 0;
    color: var(--site-muted-strong);
    line-height: 1.8;
}

.maine-coon-match ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.maine-coon-match li {
    position: relative;
    padding: 15px 0 15px 30px;
    border-bottom: 1px solid var(--site-border-soft);
    color: var(--site-muted-strong);
    line-height: 1.65;
}

.maine-coon-match li:first-child {
    border-top: 1px solid var(--site-border-soft);
}

.maine-coon-match li::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 4px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--site-gold-soft);
    transform: rotate(45deg);
}

.maine-coon-match .site-button {
    grid-column: 2;
    width: max-content;
}

.maine-coon-sources {
    padding: 50px 0;
    border-top: 1px solid rgba(216, 163, 90, 0.10);
    background: rgba(1, 5, 12, 0.62);
}

.maine-coon-sources__inner {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: clamp(40px, 8vw, 120px);
}

.maine-coon-sources h2 {
    margin: 12px 0 0;
    font-size: 1.8rem;
    letter-spacing: -0.025em;
}

.maine-coon-sources ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
    list-style: none;
}

.maine-coon-sources a {
    color: rgba(170, 182, 199, 0.66);
    font-size: 0.74rem;
    line-height: 1.55;
    text-decoration: none;
    transition: color 180ms ease;
}

.maine-coon-sources a:hover,
.maine-coon-sources a:focus-visible {
    color: var(--site-gold-soft);
}

@media (max-width: 1080px) {
    .maine-coon-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
        gap: 50px;
    }

    .maine-coon-hero h1 {
        font-size: clamp(4rem, 7vw, 5.7rem);
    }

    .maine-coon-portrait {
        padding: 34px;
    }

    .maine-coon-glance__grid,
    .maine-coon-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .maine-coon-glance article:nth-child(3) {
        border-top: 1px solid var(--site-border-soft);
    }

    .maine-coon-glance article:nth-child(4) {
        border-top: 1px solid var(--site-border-soft);
        border-right: 1px solid var(--site-border-soft);
    }

    .maine-coon-size-note {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .maine-coon-size-note p {
        grid-column: 1 / -1;
        padding-top: 20px;
        border-top: 1px solid var(--site-border-soft);
    }

    .maine-coon-character__grid {
        gap: 40px;
    }

    .maine-coon-character__details article {
        padding: 24px;
    }

    /* Restore the asymmetric gutter after the padding shorthand above. */
    .maine-coon-character__details article:nth-child(odd) {
        padding-left: 0;
    }

    .maine-coon-match__panel {
        gap: 50px;
    }
}

@media (max-width: 860px) {
    .maine-coon-hero__grid,
    .maine-coon-story__grid,
    .maine-coon-character__grid,
    .maine-coon-care__grid,
    .maine-coon-myths__grid,
    .maine-coon-match__panel,
    .maine-coon-sources__inner {
        grid-template-columns: 1fr;
    }

    .maine-coon-hero__grid {
        min-height: 0;
        padding-top: 72px;
        padding-bottom: 72px;
        gap: 48px;
    }

    .maine-coon-hero h1 {
        font-size: clamp(3.7rem, 11vw, 5.6rem);
    }

    .maine-coon-portrait {
        min-height: 440px;
    }

    .maine-coon-prose {
        padding-top: 0;
    }

    .maine-coon-heading > p {
        text-align: left;
    }

    .maine-coon-section-title h2,
    .maine-coon-character h2,
    .maine-coon-care h2,
    .maine-coon-match h2 {
        font-size: clamp(3rem, 9vw, 4.8rem);
    }

    .maine-coon-character__panel {
        min-height: 520px;
    }

    .maine-coon-care__intro {
        position: static;
    }

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

    .maine-coon-life__grid article:last-child {
        grid-column: 1 / -1;
    }

    .maine-coon-match .site-button {
        grid-column: 1;
    }

    .maine-coon-sources__inner {
        gap: 28px;
    }
}

@media (min-width: 621px) and (max-width: 860px) {
    .maine-coon-hero__grid {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .maine-coon-hero h1 {
        font-size: clamp(4rem, 10vw, 5rem);
    }

    .maine-coon-portrait {
        min-height: 400px;
    }

    .maine-coon-portrait dl {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .maine-coon-portrait dl div {
        padding: 18px 14px;
        border-left: 1px solid var(--site-border-soft);
    }

    .maine-coon-portrait dl div:first-child {
        padding-left: 0;
        border-left: 0;
    }

    .maine-coon-portrait dl div:last-child {
        padding-right: 0;
    }

    .maine-coon-character__panel {
        min-height: 460px;
    }
}

@media (max-width: 620px) {
    .maine-coon-hero__grid {
        padding-top: 44px;
        padding-bottom: 52px;
        gap: 34px;
    }

    .maine-coon-hero h1 {
        margin-top: 16px;
        font-size: clamp(3.15rem, 15vw, 4.35rem);
        line-height: 0.96;
    }

    .maine-coon-hero__lead {
        margin-top: 22px;
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .maine-coon-hero__actions {
        margin-top: 28px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .maine-coon-portrait {
        min-height: 430px;
        padding: 28px 24px;
        border-radius: 26px;
    }

    .maine-coon-portrait::before {
        inset: 16px;
        border-radius: 19px;
    }

    .maine-coon-portrait__monogram {
        font-size: 10rem;
    }

    .maine-coon-portrait__mark {
        top: 52px;
        width: 54px;
        height: 54px;
        padding: 13px;
    }

    .maine-coon-portrait > p {
        margin-bottom: 22px;
        font-size: 0.9rem;
    }

    .maine-coon-glance article {
        padding: 24px 18px;
    }

    .maine-coon-glance article:nth-child(odd) {
        border-left: 1px solid var(--site-border-soft);
    }

    .maine-coon-glance article:nth-child(4) {
        border-top: 1px solid var(--site-border-soft);
    }

    .maine-coon-glance strong {
        font-size: 1.08rem;
    }

    .maine-coon-glance p {
        font-size: 0.76rem;
        line-height: 1.6;
    }

    .maine-coon-section-title h2,
    .maine-coon-character h2,
    .maine-coon-care h2,
    .maine-coon-match h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .maine-coon-prose blockquote {
        padding-left: 22px;
    }

    .maine-coon-feature-grid,
    .maine-coon-health__grid,
    .maine-coon-life__grid,
    .maine-coon-character__details,
    .maine-coon-sources ul {
        grid-template-columns: 1fr;
    }

    .maine-coon-feature-grid article,
    .maine-coon-health__grid article,
    .maine-coon-life__grid article {
        padding: 24px;
        border-radius: 20px;
    }

    .maine-coon-size-note {
        padding: 22px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .maine-coon-size-note div + div {
        padding: 18px 0 0;
        border-top: 1px solid var(--site-border-soft);
        border-left: 0;
    }

    .maine-coon-size-note p {
        grid-column: 1;
    }

    .maine-coon-character__panel {
        min-height: 500px;
        padding: 30px 24px;
        border-radius: 26px;
    }

    .maine-coon-character__word {
        font-size: 7.5rem;
    }

    .maine-coon-character__details article,
    .maine-coon-character__details article:nth-child(odd),
    .maine-coon-character__details article:nth-child(even) {
        padding: 24px 0;
        border-left: 0;
    }

    .maine-coon-character__note {
        margin-top: 22px;
        padding: 20px;
    }

    .maine-coon-section-title--centered {
        margin-bottom: 34px;
        text-align: left;
    }

    .maine-coon-life__grid article:last-child {
        grid-column: 1;
    }

    .maine-coon-care__list article {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .maine-coon-health__intro {
        margin-bottom: 30px;
    }

    .maine-coon-health__notice {
        padding: 22px;
    }

    .maine-coon-myths summary {
        padding: 21px 0;
        font-size: 1.08rem;
    }

    .maine-coon-myths details > p {
        padding-right: 0;
    }

    .maine-coon-match__panel {
        padding: 36px 24px;
        border-radius: 26px;
        gap: 36px;
    }

    .maine-coon-match .site-button {
        width: 100%;
    }

    .maine-coon-sources {
        padding: 40px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .maine-coon-myths summary span,
    .maine-coon-sources a {
        transition: none;
    }
}

/* About */
.legal-main {
    padding-top: var(--site-header-height);
}

.legal-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--site-border-soft);
    background:
        radial-gradient(circle at 78% 24%, rgba(216, 163, 90, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(7, 23, 43, 0.9), rgba(2, 7, 17, 0.98));
}

.legal-hero::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -310px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(216, 163, 90, 0.12);
    border-radius: 50%;
}

.legal-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 440px;
    padding-block: clamp(82px, 10vw, 132px);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.legal-hero h1 {
    max-width: 850px;
    margin: 18px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.7rem, 7.4vw, 7.4rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.88;
}

.legal-hero h1 em {
    color: var(--site-gold-soft);
    font-weight: 400;
}

.legal-hero p {
    max-width: 720px;
    margin: 30px 0 0;
    color: var(--site-muted-strong);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.8;
}

.legal-hero__date {
    margin-top: 24px;
    color: rgba(170, 182, 199, 0.68);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-content {
    padding-block: clamp(76px, 9vw, 128px);
}

.legal-content__layout {
    display: grid;
    grid-template-columns: minmax(190px, 240px) minmax(0, 860px);
    justify-content: center;
    align-items: start;
    gap: clamp(54px, 8vw, 118px);
}

.legal-toc {
    position: sticky;
    top: calc(var(--site-header-height) + 34px);
    padding: 24px 0;
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border-soft);
    display: grid;
    gap: 12px;
}

.legal-toc strong {
    margin-bottom: 5px;
    color: var(--site-gold-soft);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legal-toc a {
    color: rgba(198, 207, 219, 0.72);
    font-size: 0.85rem;
    line-height: 1.45;
    text-decoration: none;
    transition: color 160ms ease, transform 160ms ease;
}

.legal-toc a.is-active {
    color: var(--site-gold-soft);
}

.legal-toc a:not(.is-active):hover,
.legal-toc a:not(.is-active):focus-visible {
    color: var(--site-text);
    transform: translateX(4px);
}

.legal-document {
    min-width: 0;
}

.legal-document > section {
    position: relative;
    padding: 0 0 52px 56px;
    border-bottom: 1px solid var(--site-border-soft);
    scroll-margin-top: calc(var(--site-header-height) + 30px);
}

.legal-document > section + section {
    padding-top: 52px;
}

.legal-document > section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-section__number {
    position: absolute;
    top: 4px;
    left: 0;
    color: var(--site-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.legal-document > section + section .legal-section__number {
    top: 56px;
}

.legal-document h2 {
    margin: 0;
    color: var(--site-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.8vw, 3.15rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.legal-document h3 {
    margin: 34px 0 0;
    color: var(--site-gold-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 500;
}

.legal-document p,
.legal-document li {
    color: var(--site-muted);
    line-height: 1.82;
}

.legal-document p {
    margin: 20px 0 0;
}

.legal-document ul {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
}

.legal-document li {
    position: relative;
    padding-left: 22px;
}

.legal-document li::before {
    content: "";
    position: absolute;
    top: 0.78em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--site-gold);
}

.legal-document strong {
    color: var(--site-muted-strong);
}

.legal-document a {
    color: var(--site-gold-soft);
    text-underline-offset: 3px;
}

.legal-document a:hover,
.legal-document a:focus-visible {
    color: var(--site-text);
}

.legal-identity,
.legal-callout {
    margin-top: 28px;
    padding: 26px 28px;
    border: 1px solid var(--site-border);
    border-radius: 18px;
    background: rgba(7, 18, 36, 0.62);
}

.legal-identity dl {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
}

.legal-identity dl > div {
    min-width: 0;
}

.legal-identity dt,
.legal-cookie-card span {
    color: rgba(170, 182, 199, 0.62);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-identity dd {
    margin: 6px 0 0;
    overflow-wrap: anywhere;
    color: var(--site-text);
    font-weight: 650;
    line-height: 1.5;
}

.legal-callout {
    border-left: 2px solid var(--site-gold);
}

.legal-callout > strong {
    color: var(--site-gold-soft);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-callout p {
    margin-top: 10px;
}

.legal-cookie-card {
    margin-top: 28px;
    border-top: 1px solid var(--site-border);
}

.legal-cookie-card > div {
    padding: 18px 0;
    border-bottom: 1px solid var(--site-border-soft);
    display: grid;
    grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
    gap: 24px;
}

.legal-cookie-card strong {
    overflow-wrap: anywhere;
    color: var(--site-muted-strong);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 860px) {
    .legal-hero__inner {
        min-height: 390px;
    }

    .legal-content__layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .legal-toc {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 24px;
    }

    .legal-toc strong {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .legal-hero__inner {
        min-height: 350px;
        padding-block: 62px 70px;
    }

    .legal-hero h1 {
        font-size: clamp(3.25rem, 16vw, 4.4rem);
    }

    .legal-hero h1.legal-hero__title--privacy {
        font-size: clamp(2.05rem, 10.5vw, 4rem);
    }

    .legal-hero p {
        margin-top: 24px;
        font-size: 0.94rem;
    }

    .legal-content {
        padding-block: 66px 84px;
    }

    .legal-toc {
        grid-template-columns: 1fr;
    }

    .legal-document > section {
        padding: 0 0 42px 34px;
    }

    .legal-document > section + section {
        padding-top: 42px;
    }

    .legal-document > section + section .legal-section__number {
        top: 46px;
    }

    .legal-document h2 {
        font-size: 2rem;
    }

    .legal-document h3 {
        margin-top: 28px;
        font-size: 1.22rem;
    }

    .legal-identity,
    .legal-callout {
        margin-left: -34px;
        padding: 22px 20px;
        border-radius: 16px;
    }

    .legal-identity dl {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .legal-cookie-card {
        margin-left: -34px;
    }

    .legal-cookie-card > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

.about-main {
    padding-top: var(--site-header-height);
}

.about-main h1,
.about-main h2,
.about-main h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.about-main h1 em,
.about-main h2 em {
    color: var(--site-gold-soft);
    font-weight: inherit;
}

.about-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--site-border);
    background-color: var(--site-surface);
    background-image:
        linear-gradient(180deg, rgba(2, 7, 17, 0.04), rgba(2, 7, 17, 0.34)),
        var(--about-image, linear-gradient(145deg, rgba(12, 34, 61, 0.96), rgba(3, 11, 24, 0.98)));
    background-position: var(--about-position, center);
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: var(--site-shadow);
}

.about-media::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(231, 196, 135, 0.22);
    border-radius: inherit;
    pointer-events: none;
}

.about-media--hero {
    --about-image: url("../images/about/about-karelly-hero.webp?v=20260904");
    --about-position: center 34%;
}

.about-media--story {
    --about-image: url("../images/about/about-karelly-poveste.webp?v=20260904");
    --about-position: center 38%;
}

.about-media--kitten-one {
    --about-image: url("../images/about/about-karelly-pui-01.webp?v=20260904");
    --about-position: center;
}

.about-media--kitten-two {
    --about-image: url("../images/about/about-karelly-pui-02.webp?v=20260904");
    --about-position: center;
}

.about-media--health {
    --about-image: url("../images/about/about-karelly-sanatate.webp?v=20260904");
    --about-position: center 35%;
}

.about-media__caption,
.about-media__number {
    position: absolute;
    z-index: 1;
    color: var(--site-gold-soft);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-media__caption {
    right: 38px;
    bottom: 36px;
    padding: 10px 14px;
    border: 1px solid rgba(231, 196, 135, 0.30);
    border-radius: 999px;
    background: rgba(2, 7, 17, 0.66);
    backdrop-filter: blur(12px);
}

.about-media__number {
    top: 36px;
    left: 36px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(231, 196, 135, 0.34);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(2, 7, 17, 0.62);
    backdrop-filter: blur(12px);
}

.about-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(216, 163, 90, 0.10);
    background:
        radial-gradient(circle at 14% 12%, rgba(216, 163, 90, 0.10), transparent 27%),
        radial-gradient(circle at 88% 74%, rgba(58, 93, 137, 0.10), transparent 32%);
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 58px;
    left: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(216, 163, 90, 0.08);
    border-radius: 50%;
}

.about-hero__grid {
    position: relative;
    min-height: 760px;
    padding-block: clamp(76px, 8vw, 118px);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.82fr);
    align-items: center;
    gap: clamp(70px, 9vw, 140px);
}

.about-hero__copy {
    position: relative;
    z-index: 1;
    max-width: 660px;
}

.about-hero h1 {
    margin: 18px 0 0;
    font-size: clamp(4.1rem, 6.3vw, 6.8rem);
    letter-spacing: -0.05em;
    line-height: 0.96;
}

.about-hero__lead {
    max-width: 600px;
    margin: 30px 0 0;
    color: var(--site-muted-strong);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.9;
}

.about-hero__signature {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-hero__signature > span {
    width: 54px;
    height: 1px;
    flex: 0 0 auto;
    background: linear-gradient(90deg, var(--site-gold), rgba(216, 163, 90, 0.14));
}

.about-hero__signature p {
    margin: 0;
    color: var(--site-muted);
    font-size: 0.75rem;
    line-height: 1.55;
}

.about-hero__signature strong {
    display: block;
    color: var(--site-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-weight: 500;
}

.about-media--hero {
    min-height: 610px;
    border-radius: 240px 240px 34px 34px;
}

.about-story {
    position: relative;
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(64px, 10vw, 150px);
}

.about-media--story {
    min-height: 650px;
    border-radius: 34px;
}

.about-story__copy {
    max-width: 680px;
}

.about-story h2,
.about-name h2,
.about-section-heading h2,
.about-family h2,
.about-health h2,
.about-closing h2 {
    margin: 16px 0 0;
    font-size: clamp(3.2rem, 5vw, 5.4rem);
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.about-story__copy > p,
.about-name__copy > p,
.about-family__intro > p,
.about-health__panel > p {
    margin: 26px 0 0;
    color: var(--site-muted-strong);
    line-height: 1.9;
}

.about-story__copy > p + p,
.about-name__copy > p + p {
    margin-top: 18px;
}

.about-story blockquote {
    position: relative;
    margin: 38px 0 0;
    padding: 28px 0 4px 30px;
    border-left: 1px solid var(--site-gold);
    color: var(--site-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    font-style: italic;
    line-height: 1.55;
}

.about-name {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 150px) 0;
    border-block: 1px solid rgba(216, 163, 90, 0.10);
    background:
        radial-gradient(circle at 15% 50%, rgba(216, 163, 90, 0.09), transparent 30%),
        rgba(4, 14, 29, 0.54);
}

.about-name__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(60px, 10vw, 150px);
}

.about-name__word {
    color: rgba(231, 196, 135, 0.09);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(7rem, 14vw, 13rem);
    font-style: italic;
    letter-spacing: -0.07em;
    line-height: 0.8;
}

.about-name__copy {
    position: relative;
    z-index: 1;
}

.about-section-heading {
    margin-bottom: 46px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.58fr);
    align-items: end;
    gap: 50px;
}

.about-section-heading > p {
    margin: 0 0 8px;
    color: var(--site-muted);
    line-height: 1.8;
}

.about-care__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(300px, 0.86fr);
    align-items: stretch;
    gap: 16px;
}

.about-media--kitten-one,
.about-media--kitten-two {
    min-height: 490px;
    border-radius: 28px;
}

.about-care__note {
    min-width: 0;
    min-height: 490px;
    padding: clamp(30px, 3.4vw, 48px);
    border: 1px solid var(--site-border);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 100% 0%, rgba(216, 163, 90, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(8, 27, 49, 0.97), rgba(3, 11, 24, 0.99));
}

.about-care__ornament {
    width: 50px;
    height: 50px;
    margin-bottom: auto;
    padding: 12px;
    border: 1px solid var(--site-border);
    border-radius: 50%;
}

.about-care__ornament img {
    width: 100%;
    height: 100%;
}

.about-care__note h3 {
    margin: 42px 0 0;
    font-size: clamp(1.7rem, 2.4vw, 2.45rem);
    line-height: 1.12;
}

.about-care__note p {
    margin: 20px 0 0;
    color: var(--site-muted);
    line-height: 1.8;
}

.about-family {
    border-block: 1px solid rgba(216, 163, 90, 0.08);
    background: rgba(1, 5, 12, 0.32);
}

.about-family__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: clamp(64px, 10vw, 150px);
}

.about-family__intro {
    position: sticky;
    top: calc(var(--site-header-height) + 40px);
}

.about-family__steps {
    border-top: 1px solid var(--site-border-soft);
}

.about-family__steps article {
    padding: 34px 0;
    border-bottom: 1px solid var(--site-border-soft);
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
}

.about-family__steps article > span {
    width: 42px;
    height: 42px;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--site-gold-soft);
    font-size: 0.66rem;
    font-weight: 800;
}

.about-family__steps h3 {
    margin: 2px 0 0;
    font-size: 1.55rem;
}

.about-family__steps p {
    margin: 12px 0 0;
    color: var(--site-muted);
    line-height: 1.75;
}

.about-health {
    position: relative;
    background:
        radial-gradient(circle at 88% 18%, rgba(216, 163, 90, 0.06), transparent 28%),
        rgba(7, 18, 36, 0.18);
}

.about-health__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    align-items: stretch;
    gap: 18px;
}

.about-media--health {
    min-height: 760px;
    border-radius: 32px;
}

.about-health__panel {
    padding: clamp(42px, 5.2vw, 72px);
    border: 1px solid var(--site-border);
    border-radius: 32px;
    background:
        radial-gradient(circle at 100% 0%, rgba(216, 163, 90, 0.08), transparent 34%),
        rgba(4, 14, 29, 0.82);
}

.about-health__facts {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--site-border-soft);
    border-left: 1px solid var(--site-border-soft);
}

.about-health__facts article {
    min-width: 0;
    padding: 22px;
    border-right: 1px solid var(--site-border-soft);
    border-bottom: 1px solid var(--site-border-soft);
}

.about-health__facts strong,
.about-health__facts span {
    display: block;
}

.about-health__facts strong {
    color: var(--site-gold-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 500;
}

.about-health__facts span {
    margin-top: 7px;
    color: var(--site-muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.about-health__documents {
    margin-top: 34px;
    padding: 26px 28px;
    border-left: 2px solid var(--site-gold);
    background: rgba(216, 163, 90, 0.045);
}

.about-health__documents h3 {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-health__documents ul {
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    list-style: none;
}

.about-health__documents li {
    position: relative;
    padding-left: 18px;
    color: var(--site-muted-strong);
    line-height: 1.65;
}

.about-health__documents li::before {
    content: "";
    position: absolute;
    top: 0.67em;
    left: 0;
    width: 6px;
    height: 6px;
    border: 1px solid var(--site-gold-soft);
    transform: rotate(45deg);
}

.about-health__documents li:last-child {
    grid-column: 1 / -1;
}

.about-closing {
    padding-bottom: clamp(88px, 10vw, 150px);
}

.about-closing__panel {
    position: relative;
    overflow: hidden;
    padding: clamp(54px, 8vw, 100px);
    border: 1px solid var(--site-border);
    border-radius: 34px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(216, 163, 90, 0.14), transparent 36%),
        linear-gradient(145deg, rgba(8, 27, 49, 0.97), rgba(3, 11, 24, 0.99));
    box-shadow: var(--site-shadow);
}

.about-closing__panel::before,
.about-closing__panel::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(216, 163, 90, 0.09);
    border-radius: 50%;
}

.about-closing__panel::before {
    top: -230px;
    left: -170px;
}

.about-closing__panel::after {
    right: -170px;
    bottom: -230px;
}

.about-closing__panel > * {
    position: relative;
    z-index: 1;
}

.about-closing__mark {
    width: 58px;
    height: 58px;
    margin: 0 auto 24px;
    padding: 14px;
    border: 1px solid var(--site-border);
    border-radius: 50%;
}

.about-closing__mark img {
    width: 100%;
    height: 100%;
}

.about-closing h2 {
    max-width: 850px;
    margin-inline: auto;
}

.about-closing p {
    max-width: 680px;
    margin: 26px auto 32px;
    color: var(--site-muted-strong);
    line-height: 1.85;
}

@media (max-width: 1024px) {
    .about-hero__grid,
    .about-story__grid,
    .about-family__grid,
    .about-health__grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 621px) and (max-width: 1024px) {

    .about-hero__grid {
        min-height: 0;
        padding-block: 72px 82px;
        gap: 54px;
    }

    .about-hero__copy,
    .about-story__copy {
        max-width: 760px;
    }

    .about-hero h1 {
        font-size: clamp(4.4rem, 10vw, 6rem);
    }

    .about-media--hero {
        min-height: 540px;
        border-radius: 34px 180px 34px 34px;
    }

    .about-story__grid {
        gap: 48px;
    }

    .about-media--story {
        min-height: 520px;
    }

    .about-name__inner {
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
        gap: 48px;
    }

    .about-name__word {
        font-size: clamp(6rem, 16vw, 9rem);
    }

    .about-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section-heading > p {
        max-width: 620px;
    }

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

    .about-care__note {
        min-height: 340px;
        grid-column: 1 / -1;
    }

    .about-family__grid,
    .about-health__grid {
        gap: 48px;
    }

    .about-family__intro {
        position: static;
        max-width: 760px;
    }

    .about-media--health {
        min-height: 520px;
    }
}

@media (max-width: 620px) {
    .about-media::after {
        inset: 12px;
    }

    .about-media__caption {
        right: 24px;
        bottom: 24px;
    }

    .about-media__number {
        top: 24px;
        left: 24px;
        width: 38px;
        height: 38px;
    }

    .about-name__inner,
    .about-care__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__grid {
        min-height: 0;
        padding-block: 48px 58px;
        gap: 38px;
    }

    .about-hero h1 {
        margin-top: 14px;
        font-size: clamp(3.15rem, 15vw, 4.3rem);
        line-height: 0.98;
    }

    .about-hero__lead {
        margin-top: 24px;
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .about-hero__signature {
        margin-top: 28px;
        gap: 14px;
    }

    .about-hero__signature > span {
        width: 38px;
    }

    .about-media--hero {
        min-height: 440px;
        border-radius: 110px 110px 26px 26px;
    }

    .about-story__grid {
        gap: 36px;
    }

    .about-media--story {
        min-height: 460px;
        border-radius: 24px;
    }

    .about-story h2,
    .about-name h2,
    .about-section-heading h2,
    .about-family h2,
    .about-health h2,
    .about-closing h2 {
        font-size: clamp(2.75rem, 13vw, 3.8rem);
    }

    .about-story__copy > p,
    .about-name__copy > p,
    .about-family__intro > p,
    .about-health__panel > p {
        margin-top: 22px;
        line-height: 1.78;
    }

    .about-story blockquote {
        margin-top: 30px;
        padding-left: 22px;
        font-size: 1.28rem;
    }

    .about-name {
        padding-block: 76px;
    }

    .about-name__inner {
        gap: 38px;
    }

    .about-name__word {
        font-size: clamp(5.4rem, 27vw, 7.2rem);
    }

    .about-section-heading {
        margin-bottom: 34px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-media--kitten-one,
    .about-media--kitten-two {
        min-height: 410px;
        border-radius: 22px;
    }

    .about-care__note {
        min-height: 380px;
        padding: 28px 24px;
        border-radius: 22px;
    }

    .about-care__note h3 {
        margin-top: 34px;
        font-size: 1.8rem;
    }

    .about-family__grid,
    .about-health__grid {
        gap: 38px;
    }

    .about-family__intro {
        position: static;
    }

    .about-family__steps article {
        padding: 28px 0;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 16px;
    }

    .about-family__steps article > span {
        width: 36px;
        height: 36px;
    }

    .about-family__steps h3 {
        font-size: 1.35rem;
    }

    .about-media--health {
        min-height: 450px;
        border-radius: 24px;
    }

    .about-health__panel {
        padding: 34px 24px;
        border-radius: 24px;
    }

    .about-health__facts {
        margin-top: 30px;
    }

    .about-health__facts article {
        padding: 18px 14px;
    }

    .about-health__facts strong {
        font-size: 1.15rem;
    }

    .about-health__documents {
        margin-top: 28px;
        padding: 22px 20px;
    }

    .about-health__documents ul {
        grid-template-columns: 1fr;
    }

    .about-health__documents li:last-child {
        grid-column: 1;
    }

    .about-closing__panel {
        padding: 46px 24px;
        border-radius: 26px;
    }

    .about-closing__mark {
        width: 52px;
        height: 52px;
    }

    .about-closing .site-button {
        width: 100%;
    }
}
