.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 9px 35px;
    border: 1px groove var(--color-header-ghost);
    background: transparent;
    color: var(--color-header-ghost);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    transition: color 0.5s cubic-bezier(0.59, 0.68, 0.61, 1.22), border-color 0.5s cubic-bezier(0.59, 0.68, 0.61, 1.22), background-color 0.5s cubic-bezier(0.59, 0.68, 0.61, 1.22);
}

.btn:hover {
    background: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-ghost {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-ghost:hover {
    background: var(--color-white);
    color: var(--color-text);
    border-color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
}

.btn-outline:hover {
    background: var(--color-text);
    color: var(--color-white);
    border-color: var(--color-text);
}

.prose.is-centered {
    margin-inline: auto;
    text-align: center;
}

.card-grid,
.product-grid,
.collection-grid,
.category-grid,
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.product-grid {
    gap: 2.25rem 1.85rem;
    align-items: start;
}

.category-grid,
.collection-grid {
    gap: 2.5rem 1.85rem;
}

.category-grid {
    grid-template-columns: repeat(6, 1fr);
}

.category-grid > .catalog-tile {
    grid-column: span 2;
    min-width: 0;
}

.category-grid > .catalog-tile:nth-child(4):nth-last-child(2) {
    grid-column: 2 / span 2;
}

.category-grid > .catalog-tile:nth-child(5):last-child {
    grid-column: 4 / span 2;
}

.tile,
.product-card,
.collection-card,
.event-card,
.project-card {
    background: var(--color-black);
    color: var(--color-white);
}

.product-tile {
    background: transparent;
    text-align: center;
    min-width: 0;
}

.product-tile a {
    display: block;
    color: inherit;
}

.product-tile a:hover {
    color: inherit;
}

.product-tile .card-media {
    width: 100%;
    height: auto;
    max-width: none;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    border-radius: 5%;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 0 0 0 rgba(215, 136, 102, 0);
    transition: box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-tile .card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 28%, rgba(0, 0, 0, 0.55) 78%, rgba(0, 0, 0, 0.82) 100%);
    opacity: 0.92;
    transition: opacity 700ms ease;
}

.product-tile .card-media::after {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(215, 136, 102, 0);
    border-radius: 3%;
    transition: border-color 700ms ease, box-shadow 700ms ease;
}

.product-tile img {
    transform: scale(1.02);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease, opacity 700ms ease;
}

.product-tile:hover .card-media,
.product-tile:focus-within .card-media {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

.product-tile:hover .card-media::before,
.product-tile:focus-within .card-media::before {
    opacity: 1;
}

.product-tile:hover .card-media::after,
.product-tile:focus-within .card-media::after {
    border-color: rgba(215, 136, 102, 0.82);
    box-shadow: inset 0 0 0 1px rgba(215, 136, 102, 0.22);
}

.product-tile:hover .card-media.is-media-ready img,
.product-tile:focus-within .card-media.is-media-ready img {
    transform: scale(1.08);
    filter: contrast(1.06) saturate(1.08);
}

.product-tile .card-title {
    position: absolute;
    left: 9%;
    right: 9%;
    bottom: 11%;
    z-index: 3;
    margin: 0;
    color: #f4d4c4;
    font-size: 13px;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.35;
    text-align: center;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transform: translateY(6px);
    transition: color 500ms ease, letter-spacing 500ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-tile:hover .card-title,
.product-tile:focus-within .card-title {
    color: #f7e0d4;
    letter-spacing: 0.14em;
    transform: translateY(0);
}

.overlay-card a {
    display: block;
    color: inherit;
}

.overlay-card a:hover {
    color: inherit;
}

.tile-media,
.card-media {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    aspect-ratio: var(--card-ratio);
}

.card-media img,
.tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.overlay-card .card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem 1.15rem;
    background: var(--color-overlay-card);
    pointer-events: none;
}

.overlay-card .card-title {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0;
    transform: translateY(0.7rem);
    transition: transform var(--transition-card);
}

.overlay-card .card-meta {
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0.35rem 0 0;
    transform: translateY(0.7rem);
    transition: transform var(--transition-card);
}

.overlay-card:hover img,
.overlay-card:focus-within img {
    transform: scale(1.06);
}

.overlay-card:hover .card-title,
.overlay-card:hover .card-meta,
.overlay-card:focus-within .card-title,
.overlay-card:focus-within .card-meta {
    transform: translateY(0);
}

.catalog-tile {
    background: transparent;
    color: inherit;
    text-align: center;
    min-width: 0;
}

.catalog-tile a {
    display: block;
    color: inherit;
}

.catalog-tile a:hover {
    color: inherit;
}

.catalog-tile .tile-media,
.catalog-tile .card-media {
    position: relative;
    width: 100%;
    height: auto;
    max-width: none;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 5%;
    background: #1a1a1a;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transition: box-shadow 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-tile .tile-media::before,
.catalog-tile .card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.78) 100%);
    opacity: 0.92;
    transition: opacity 700ms ease;
}

.catalog-tile .tile-media::after,
.catalog-tile .card-media::after {
    content: "";
    position: absolute;
    inset: 4.5%;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(215, 136, 102, 0);
    border-radius: 3%;
    transition: border-color 700ms ease, box-shadow 700ms ease, inset 700ms ease;
}

.catalog-tile img {
    transform: scale(1.03);
    transform-origin: center center;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 800ms ease, opacity 700ms ease;
    will-change: transform;
}

.catalog-tile:hover .tile-media,
.catalog-tile:focus-within .tile-media,
.catalog-tile:hover .card-media,
.catalog-tile:focus-within .card-media {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    transform: translateY(-4px);
}

.catalog-tile:hover .tile-media::before,
.catalog-tile:focus-within .tile-media::before,
.catalog-tile:hover .card-media::before,
.catalog-tile:focus-within .card-media::before {
    opacity: 1;
}

.catalog-tile:hover .tile-media::after,
.catalog-tile:focus-within .tile-media::after,
.catalog-tile:hover .card-media::after,
.catalog-tile:focus-within .card-media::after {
    border-color: rgba(215, 136, 102, 0.88);
    box-shadow: inset 0 0 0 1px rgba(215, 136, 102, 0.28);
}

.catalog-tile:hover .tile-media.is-media-ready img,
.catalog-tile:focus-within .tile-media.is-media-ready img,
.catalog-tile:hover .card-media.is-media-ready img,
.catalog-tile:focus-within .card-media.is-media-ready img {
    transform: scale(1.1);
    filter: contrast(1.07) saturate(1.12) brightness(1.05);
}

.catalog-tile-caption {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 9%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.catalog-tile-title {
    margin: 0;
    color: #f4d4c4;
    font-size: clamp(0.95rem, 1.45vw, 1.28rem);
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.25;
    text-align: center;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(8px);
    transition: color 500ms ease, letter-spacing 500ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-tile-line {
    display: block;
    width: 0;
    height: 1px;
    margin: 0.7rem auto 0;
    background: var(--color-accent);
    transition: width 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-tile:hover .catalog-tile-title,
.catalog-tile:focus-within .catalog-tile-title {
    color: #f8e6db;
    letter-spacing: 0.24em;
    transform: translateY(0);
}

.catalog-tile:hover .catalog-tile-line,
.catalog-tile:focus-within .catalog-tile-line {
    width: 3.25rem;
}

.catalog-tile .media-fallback {
    min-height: 0;
    width: 100%;
    height: auto;
    max-width: none;
    margin-inline: auto;
    aspect-ratio: 1 / 1;
    font-size: 0.7rem;
}

.card-body {
    padding: var(--space-md) 0;
}

.card-title {
    font-size: var(--text-base);
    letter-spacing: 0.04em;
    margin: 0 0 var(--space-2xs);
}

.card-meta {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin: 0;
}

.media-fallback {
    width: 100%;
    height: 100%;
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #3a3a3a, #1f1f1f);
    color: rgba(255, 255, 255, 0.55);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-nav);
    text-transform: uppercase;
}

.media-ph {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 22% 18%, rgba(215, 136, 102, 0.18), transparent 52%),
        radial-gradient(ellipse at 78% 86%, rgba(255, 255, 255, 0.05), transparent 46%),
        linear-gradient(145deg, #141414 0%, #2a241f 48%, #101010 100%);
}

.media-ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.1) 42%, rgba(215, 136, 102, 0.2) 50%, transparent 68%);
    transform: translateX(-85%);
    animation: media-shimmer 1.7s ease-in-out infinite;
}

.tile-media.is-media-wait img,
.card-media.is-media-wait img,
.product-portrait-media.is-media-wait img {
    opacity: 0;
    filter: blur(16px) saturate(1.08);
    transform: scale(1.08);
}

.tile-media.is-media-ready .media-ph,
.card-media.is-media-ready .media-ph,
.product-portrait-media.is-media-ready .media-ph,
.split-media.is-media-ready .media-ph,
.team-photo.is-media-ready .media-ph,
.process-shot.is-media-ready .media-ph {
    opacity: 0;
    transition: opacity 480ms ease 80ms;
    pointer-events: none;
}

@keyframes media-shimmer {
    to {
        transform: translateX(85%);
    }
}

.page-hero .media-fallback {
    min-height: 10rem;
}

.collection-identity {
    max-width: 12rem;
    margin-top: var(--space-lg);
}

.collection-identity .media-fallback {
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.breadcrumbs {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.page-hero-cover .breadcrumbs,
.page-hero-cover .breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin: 0;
    padding: 0;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: var(--space-xs);
    color: #b0b0b0;
}

.page-hero {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
    background: var(--color-bg-soft);
}

body:not(.page-home) .page-hero,
body.page-products .page-hero,
body.page-collection .page-hero:not(.page-hero-cover),
body.page-category .page-hero:not(.page-hero-cover) {
    background: var(--color-band);
    color: var(--color-band-text);
}

body:not(.page-home) .site-main > .section:first-child:not(.page-hero) {
    padding-top: calc(var(--header-height) + var(--space-2xl));
}

.page-hero h1 {
    font-size: var(--text-2xl);
    text-transform: uppercase;
}

.page-hero-cover {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    background: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
}

.page-hero-cover .page-hero-media,
.page-hero-cover .page-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-hero-cover .page-hero-media img {
    z-index: 1;
}

.page-hero-cover .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.58) 100%);
}

.page-hero-cover .container {
    position: relative;
    z-index: 2;
}

.page-hero-cover h1 {
    color: var(--color-white);
}

.catalog-hero {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
}

.catalog-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.catalog-hero .breadcrumbs {
    display: none;
}

.catalog-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 46rem;
}

.catalog-hero-rule {
    display: block;
    width: 1px;
    height: 60px;
    background: var(--color-accent);
}

.catalog-hero h1 {
    margin: 1.25rem 0;
    font-size: 41px;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.catalog-hero.is-product h1 {
    font-size: 24px;
    letter-spacing: 0.08em;
}

.catalog-hero-lead {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.catalog-hero-lead p {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: var(--font-weight-light);
    line-height: 1.7;
}

.archive-band {
    background: var(--color-band);
    color: var(--color-band-text);
}

.archive-band .breadcrumbs,
.archive-band .breadcrumbs a {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
}

.archive-band .breadcrumbs [aria-current="page"] {
    color: #b0b0b0;
}

.archive-band .section-title {
    color: var(--color-white);
}

.section-dark .prose,
.archive-band .prose,
.page-product .prose,
.page-product .card-meta,
.page-product .card-meta a {
    color: rgba(255, 255, 255, 0.86);
}

.page-product .attr-table th,
.page-product .attr-table td {
    color: rgba(255, 255, 255, 0.86);
    border-color: rgba(255, 255, 255, 0.12);
}

.form {
    display: grid;
    gap: var(--space-md);
    max-width: none;
}

.form-row {
    display: grid;
    gap: var(--space-2xs);
}

.form label {
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-nav);
    text-transform: uppercase;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    border: 1px solid var(--color-border);
    padding: 0.8rem 0.9rem;
    background: var(--color-white);
}

.form textarea {
    min-height: 10rem;
    resize: vertical;
}

.form .error {
    color: #9b2c2c;
    font-size: var(--text-sm);
}

.form-summary {
    margin: 0 0 12px;
}

.form .req {
    color: var(--color-accent);
}

.char-count {
    margin: 0;
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.enquire-product {
    margin: 0 0 1.1rem;
    color: var(--color-accent);
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    line-height: 1.45;
}

.enquire-form.is-dark .enquire-product {
    color: #e4a78a;
}

.enquire-form.is-dark label {
    color: rgba(255, 255, 255, 0.82);
}

.enquire-form.is-dark input,
.enquire-form.is-dark textarea {
    background: #1c1c1c;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.enquire-form.is-dark input:focus,
.enquire-form.is-dark textarea:focus {
    border-color: var(--color-accent);
    outline: 1px solid var(--color-accent);
}

.enquire-form.is-dark [aria-invalid="true"] {
    border-color: #d27a7a;
}

.enquire-form.is-dark .error {
    color: #f0b4b4;
}

.enquire-form.is-dark .char-count {
    color: rgba(255, 255, 255, 0.72);
}

.enquire-form.is-dark .btn:hover {
    color: #fff;
}

.honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.flash {
    padding: var(--space-sm) var(--space-md);
    margin: calc(var(--header-height) + 12px) auto 0;
    max-width: min(var(--container-width), calc(100% - 30px));
}

.flash-success {
    background: #e8f5e9;
}

.flash-error {
    background: #fdecea;
}

.empty-state {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    color: var(--color-text-muted);
}

.empty-state h2 {
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.search-form {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    max-width: 36rem;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.6rem 0.8rem;
}

.search-results {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.search-results li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.gallery {
    display: grid;
    gap: var(--space-md);
}

.gallery-stage {
    background: var(--color-bg-soft);
    min-height: 20rem;
}

.gallery-stage img {
    width: 100%;
    max-height: 36rem;
    object-fit: contain;
    margin: 0 auto;
}

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.gallery-thumbs button {
    border: 2px solid transparent;
    padding: 0;
    background: var(--color-bg-soft);
    width: 5.5rem;
}

.gallery-thumbs button[aria-current="true"] {
    border-color: var(--color-accent);
}

.gallery-thumbs img {
    width: 5.5rem;
    height: 4rem;
    object-fit: cover;
}

.pagination {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-2xl);
}

.pagination a,
.pagination span {
    min-width: 2.5rem;
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.archive-band .pagination a,
.archive-band .pagination span,
.page-product .pagination a,
.page-product .pagination span {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--color-white);
}

.prose {
    max-width: var(--container-narrow);
}

.category-copy {
    margin: 5rem auto 0;
    max-width: 38rem;
    width: 100%;
    padding-top: 3.25rem;
    border-top: 1px solid rgba(215, 136, 102, 0.22);
    text-align: left;
}

.category-copy h2,
.category-copy h3 {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: var(--font-weight-regular);
}

.category-copy h2 {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-align: center;
    margin: 3.15rem 0 1.1rem;
}

.category-copy > h2:first-child {
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    letter-spacing: 0.18em;
    margin-top: 0;
}

.category-copy > h2:first-child::after {
    content: "";
    display: block;
    width: 4.5rem;
    height: 1px;
    margin: 1.05rem auto 0;
    background: var(--color-accent);
}

.category-copy h3 {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    margin: 2.1rem 0 0.55rem;
    text-align: left;
}

.category-copy p,
.category-copy li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: var(--font-weight-light);
    line-height: 1.85;
    letter-spacing: 0.015em;
}

.category-copy > h2:first-child + p {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    max-width: 34rem;
    margin: 0 auto 0.5rem;
}

.category-copy ul {
    display: block;
    text-align: left;
    margin: 0 0 1.25rem;
    padding-left: 1.15rem;
}

.lazy-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: var(--space-2xl);
}

.lazy-sentinel {
    width: 1px;
    height: 1px;
}

.lazy-more.is-fallback {
    opacity: 0.72;
}

.product-tile.is-lazy-in,
.product-card.is-lazy-in {
    animation: tile-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes tile-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.prose a {
    color: var(--color-accent);
    text-decoration: underline;
}

.attr-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
}

.attr-table th,
.attr-table td {
    text-align: left;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.attr-table th {
    width: 40%;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: var(--text-xs);
}

.map-placeholder {
    min-height: 16rem;
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    background:
        linear-gradient(180deg, rgba(215, 136, 102, 0.12), rgba(0, 0, 0, 0.04)),
        repeating-linear-gradient(-45deg, #ececec, #ececec 12px, #e3e3e3 12px, #e3e3e3 24px);
    color: var(--color-text-muted);
}

body:not(.page-home) .map-placeholder {
    background:
        linear-gradient(180deg, rgba(215, 136, 102, 0.16), rgba(0, 0, 0, 0.28)),
        repeating-linear-gradient(-45deg, #1a1a1a, #1a1a1a 12px, #141414 12px, #141414 24px);
    color: rgba(255, 255, 255, 0.72);
}

body:not(.page-home) .form input,
body:not(.page-home) .form textarea,
body:not(.page-home) .form select {
    background: #1c1c1c;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

body:not(.page-home) .char-count {
    color: rgba(255, 255, 255, 0.55);
}

body:not(.page-home) .prose,
body:not(.page-home) .prose p,
body:not(.page-home) .site-main a:not(.btn) {
    color: rgba(255, 255, 255, 0.86);
}

body:not(.page-home) .site-main a:not(.btn):hover {
    color: var(--color-accent);
}

.map-placeholder p {
    margin: 0 0 var(--space-xs);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-stagger] > .catalog-tile {
    opacity: 0;
    transform: translateY(1.6rem);
}

[data-reveal].is-visible [data-stagger] > .catalog-tile,
[data-stagger].is-visible > .catalog-tile {
    animation: catalog-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--stagger, 0ms);
}

@keyframes catalog-rise {
    from {
        opacity: 0;
        transform: translateY(1.6rem);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    [data-stagger] > .catalog-tile,
    [data-reveal].is-visible [data-stagger] > .catalog-tile,
    [data-stagger].is-visible > .catalog-tile {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .media-ph::after {
        animation: none;
    }

    .tile-media.is-media-wait img,
    .card-media.is-media-wait img,
    .product-portrait-media.is-media-wait img {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .catalog-tile img,
    .product-tile img,
    .catalog-tile:hover img,
    .catalog-tile:focus-within img,
    .product-tile:hover img,
    .product-tile:focus-within img,
    .product-tile.is-lazy-in,
    .product-card.is-lazy-in {
        transform: none;
        filter: none;
        transition: none;
        animation: none;
        will-change: auto;
    }
}
