﻿/* Global base, shared layout, components, footer and lightbox. */
:root {
    --bg: #f6f1e8;
    --bg-soft: #fbf8f2;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --text: #181614;
    --muted: #6d665f;
    --line: rgba(24, 22, 20, 0.12);
    --line-strong: rgba(24, 22, 20, 0.22);
    --accent: #b18b63;
    --shadow: 0 24px 60px rgba(45, 34, 24, 0.08);
    --radius: 26px;
    --radius-sm: 18px;
    --container: min(1180px, calc(100vw - 48px));
    --header-height: 92px;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

html:has(body.page-home) {
    scrollbar-gutter: auto;
}

body {
    margin: 0;
    font-family: "Libre Franklin", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(177, 139, 99, 0.18), transparent 30%),
        linear-gradient(180deg, #f5efe5 0%, #f8f5ef 42%, #f4eee3 100%);
    line-height: 1.6;
}

body.page-home {
    min-height: 100svh;
    overflow: hidden;
    overflow-x: clip;
    background: #fbfaf7;
}

img,
video {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(246, 241, 232, 0.7);
    border-bottom: 1px solid rgba(24, 22, 20, 0.06);
    transition: transform 360ms ease, opacity 360ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header--immersive {
    position: fixed;
    inset: 0 0 auto 0;
    transform: translateY(-115%);
    opacity: 0;
    pointer-events: none;
    background: rgba(251, 250, 247, 0.82);
    border-bottom: 1px solid rgba(24, 22, 20, 0.08);
}

.site-header--immersive.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.site-header__inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand-mark {
    font-family: "Libre Caslon Display", serif;
    font-size: clamp(1.6rem, 2vw, 2rem);
    letter-spacing: 0.12em;
}

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

.site-nav__link,
.header-contact,
.language-switch__link {
    color: var(--muted);
    font-size: 0.92rem;
    transition: color 180ms ease;
}

.site-nav__link:hover,
.header-contact:hover,
.language-switch__link:hover,
.site-nav__link.is-active,
.language-switch__link.is-active {
    color: var(--text);
}

.site-header__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-topbar {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    width: min(1400px, calc(100% - 56px));
    margin: 0 auto;
    padding: 26px 0 38px;
}

.page-topbar__nav,
.page-topbar__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-topbar__nav {
    justify-content: center;
    flex-wrap: wrap;
}

.page-topbar__meta {
    justify-self: end;
    justify-content: flex-end;
}

.page-topbar__brand {
    justify-self: start;
    font-family: "Libre Caslon Display", serif;
    font-size: clamp(2.1rem, 3.4vw, 3.4rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #111111;
}

.page-topbar__link,
.page-topbar__language-link {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(24, 22, 20, 0.56);
    transition: color 180ms ease, transform 180ms ease;
}

.page-topbar__link:hover,
.page-topbar__link.is-active,
.page-topbar__language-link:hover,
.page-topbar__language-link.is-active {
    color: #111111;
}

.page-topbar__link:hover,
.page-topbar__language-link:hover {
    transform: translateY(-1px);
}

.page-topbar__language-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(24, 22, 20, 0.08);
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
}

.clock-pill,
.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.clock-pill {
    min-width: 148px;
    justify-content: space-between;
}

.clock-pill span,
.language-switch__link,
.hero__meta-card span,
.eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 6px auto;
    background: var(--text);
}

.hero,
.page-hero {
    position: relative;
    padding: 32px 0 56px;
}

.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: flex-end;
}

.hero__media,
.hero__video,
.hero__veil {
    position: absolute;
    inset: 0;
}

.hero__video {
    object-fit: cover;
}

.hero__veil {
    background:
        linear-gradient(180deg, rgba(17, 15, 14, 0.16) 0%, rgba(17, 15, 14, 0.38) 100%),
        linear-gradient(120deg, rgba(246, 241, 232, 0.12) 0%, transparent 55%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 56px;
    color: #f8f3ea;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    gap: 36px;
    align-items: end;
}

.hero__title,
.page-title,
.section-title,
.category-card h2,
.product-card__heading h2,
.spotlight-card h2 {
    margin: 0;
    font-family: "Libre Caslon Display", serif;
    line-height: 0.92;
    font-weight: 400;
}

.hero__title {
    font-size: clamp(4.4rem, 12vw, 10.5rem);
    letter-spacing: 0.04em;
}

.hero__lede,
.page-description,
.rich-copy,
.video-card__body p,
.product-card__body p,
.pricing-card p,
.legal-copy p {
    max-width: 62ch;
}

.hero__aside {
    display: grid;
    gap: 18px;
}

.hero__meta-card {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.hero__meta-card strong {
    display: block;
    margin-top: 6px;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 500;
}

.hero__actions,
.product-card__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 22px;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.button:hover,
.text-link:hover {
    transform: translateY(-1px);
}

.button--primary {
    border: 1px solid rgba(54, 72, 104, 0.2);
    background: linear-gradient(135deg, #30456a 0%, #415a86 100%);
    color: #f5f8fc;
    box-shadow: 0 18px 34px rgba(48, 69, 106, 0.18);
}

.button--ghost {
    border: 1px solid rgba(54, 72, 104, 0.22);
    background: rgba(255, 255, 255, 0.34);
}

.button-form {
    margin: 0;
}

.button-form .button {
    width: 100%;
    cursor: pointer;
}

.text-link {
    border: 0;
    background: transparent;
}

.page-hero {
    padding-top: 120px;
}

.page-hero--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
}

.page-hero__content,
.section-heading {
    display: grid;
    gap: 18px;
}

.page-title {
    font-size: clamp(3rem, 8vw, 6rem);
}

.page-description,
.rich-copy,
.video-card__body p,
.product-card__body p,
.pricing-card p,
.legal-copy p,
.site-footer__note,
.site-footer__links,
.site-footer__credits {
    color: var(--muted);
}

.section {
    padding: 48px 0 88px;
}

.section--compact {
    padding-top: 16px;
}

.split-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.feature-grid,
.video-grid,
.product-grid,
.pricing-grid,
.equipment-grid,
.category-grid {
    display: grid;
    gap: 24px;
}

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

.feature-card,
.video-card,
.product-card,
.pricing-card,
.equipment-card,
.spotlight-card,
.metrics-panel,
.legal-copy,
.category-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-strong);
    box-shadow: 0 24px 60px rgba(45, 34, 24, 0.08);
}

.feature-card,
.video-card,
.product-card,
.category-card {
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover,
.video-card:hover,
.product-card:hover,
.category-card:hover,
.photo-card:hover,
.pricing-card:hover,
.equipment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 22, 20, 0.2);
    box-shadow: 0 28px 70px rgba(45, 34, 24, 0.12);
}

.feature-card img,
.video-card img,
.product-card img,
.category-card img,
.photo-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.feature-card__body,
.video-card__body,
.product-card__body,
.pricing-card,
.equipment-card,
.spotlight-card__content,
.legal-copy,
.category-card__overlay {
    padding: 24px;
}

.feature-card h3,
.video-card h3,
.pricing-card h3,
.equipment-card h3,
.legal-copy h2 {
    margin: 8px 0 12px;
    font-size: 1.16rem;
}

.metrics-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric {
    padding: 30px 24px;
    border-right: 1px solid var(--line);
}

.metric:last-child {
    border-right: 0;
}

.metric span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.metric strong {
    display: block;
    margin-top: 10px;
    font-family: "Libre Caslon Display", serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.1;
}

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

.category-card {
    position: relative;
    min-height: 680px;
}

.category-card img {
    position: absolute;
    inset: 0;
    height: 100%;
}

.category-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    color: #f8f3ea;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 13, 12, 0.84) 85%);
}

.photo-grid {
    columns: 3 280px;
    column-gap: 24px;
}

.photo-card {
    position: relative;
    width: 100%;
    margin: 0 0 24px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    box-shadow: 0 24px 60px rgba(45, 34, 24, 0.08);
}

.photo-card img {
    min-height: 420px;
}

.photo-card__meta {
    position: absolute;
    inset: auto 0 0 0;
    display: grid;
    gap: 4px;
    padding: 20px;
    color: #f8f3ea;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 13, 12, 0.82) 92%);
}

.spotlight-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
    overflow: hidden;
}

.spotlight-card__media video {
    min-height: 100%;
    object-fit: cover;
    background: #0d0c0c;
}

.video-grid,
.product-grid,
.pricing-grid,
.equipment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card__heading strong,
.pricing-card__price {
    font-family: "Libre Caslon Display", serif;
    font-size: 2rem;
    line-height: 1;
}

.feature-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.feature-list li {
    position: relative;
    padding-left: 22px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.76em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(83, 114, 152, 0.92) 0%, rgba(138, 164, 196, 0.82) 100%);
    box-shadow: 0 0 0 4px rgba(138, 164, 196, 0.12);
    transform: translateY(-50%);
}

.feature-list--tight {
    gap: 6px;
}

.feature-list--tight li + li {
    margin-top: 0;
}

.site-footer {
    padding: 34px 0 46px;
}

.site-footer__frame {
    display: grid;
    gap: 22px;
}

.site-footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(24, 22, 20, 0.14) 12%, rgba(24, 22, 20, 0.14) 88%, transparent 100%);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(220px, 0.7fr);
    gap: 28px 40px;
    align-items: start;
}

.site-footer__brand-block {
    display: grid;
    gap: 14px;
    max-width: 420px;
}

.brand-mark--footer {
    line-height: 0.88;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 10px 18px;
    max-width: 420px;
    padding-top: 8px;
}

.site-footer__links a,
.site-footer__credits p {
    font-size: 0.95rem;
    line-height: 1.55;
}

.site-footer__links a {
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__links a:hover {
    color: #111111;
    transform: translateY(-1px);
}

.site-footer__credits {
    display: grid;
    justify-items: end;
    gap: 10px;
    text-align: right;
}

.site-footer__credits p {
    margin: 0;
    max-width: 28ch;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(11, 10, 10, 0.84);
}

.lightbox[hidden] {
    display: none;
}

.lightbox__dialog {
    position: relative;
    width: min(1080px, calc(100vw - 32px));
    max-height: calc(100vh - 40px);
}

.lightbox__media {
    overflow: hidden;
    border-radius: var(--radius);
    background: #12100f;
}

.lightbox__media img,
.lightbox__media video {
    max-height: calc(100vh - 180px);
    object-fit: contain;
}

.lightbox__caption {
    padding-top: 14px;
    color: rgba(248, 243, 234, 0.78);
}

.lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #f8f3ea;
    font-size: 1.8rem;
    cursor: pointer;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #f8f3ea;
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 180ms ease, transform 180ms ease;
}

.lightbox__nav[hidden] {
    display: none;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-50%) scale(1.04);
}

.lightbox__nav--prev {
    left: -74px;
}

.lightbox__nav--next {
    right: -74px;
}

.back-to-top {
    position: fixed;
    right: clamp(18px, 3vw, 42px);
    bottom: clamp(18px, 3vw, 42px);
    z-index: 40;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(54, 72, 104, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #111111;
    box-shadow: 0 18px 44px rgba(28, 38, 52, 0.16);
    backdrop-filter: blur(16px);
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top span {
    font-size: 1.34rem;
    line-height: 1;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-2px);
}

.social-vault {
    position: fixed;
    top: auto !important;
    right: auto !important;
    left: clamp(18px, 3vw, 42px) !important;
    bottom: clamp(18px, 3vw, 42px) !important;
    z-index: 80;
    width: 58px;
    height: 58px;
}

body.page-home .social-vault {
    display: none;
}

.social-vault__trigger,
.social-vault__bubble {
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(54, 72, 104, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #111111;
    box-shadow: 0 18px 50px rgba(47, 67, 93, 0.16);
    backdrop-filter: blur(18px);
    transition:
        opacity 180ms ease,
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.social-vault__trigger {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    cursor: pointer;
}

.social-vault__trigger::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(48, 70, 109, 0.08), transparent 68%);
    opacity: 0;
    transform: scale(0.82);
    transition: opacity 180ms ease, transform 180ms ease;
}

.social-vault__trigger:hover,
.social-vault.is-open .social-vault__trigger,
.social-vault__bubble:hover {
    border-color: rgba(54, 72, 104, 0.34);
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-2px);
}

.social-vault__network {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.social-vault.is-open .social-vault__trigger::before {
    opacity: 1;
    transform: scale(1);
}

.social-vault.is-open .social-vault__network {
    transform: translate(-50%, -50%) rotate(12deg) scale(1.04);
}

.social-vault__bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.social-vault__bubble {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 48px;
    height: 48px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.72);
}

.social-vault__bubble svg {
    width: 22px;
    height: 22px;
}

.social-vault__bubble--youtube svg {
    fill: currentColor;
}

.social-vault__bubble--youtube svg path:last-child {
    fill: #ffffff;
}

.social-vault__bubble--instagram svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}

.social-vault.is-open .social-vault__bubbles,
.social-vault.is-open .social-vault__bubble {
    pointer-events: auto;
}

.social-vault.is-open .social-vault__bubble {
    opacity: 1;
}

.social-vault.is-open .social-vault__bubble--youtube {
    color: #c41d1d;
    transform: translate(10px, -66px) scale(1);
}

.social-vault.is-open .social-vault__bubble--instagram {
    color: #30466d;
    transform: translate(66px, -18px) scale(1);
}

.global-wallpaper-cart {
    position: fixed;
    right: clamp(18px, 3vw, 42px);
    top: clamp(16px, 2vw, 28px);
    z-index: 70;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.global-wallpaper-cart.is-visible,
.global-wallpaper-cart.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.global-wallpaper-cart.is-open {
    width: min(360px, calc(100vw - 28px));
}

.global-wallpaper-cart__trigger {
    position: relative;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(54, 72, 104, 0.18);
    border-radius: 999px;
    color: #30466d;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 50px rgba(47, 67, 93, 0.16);
    backdrop-filter: blur(18px);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.global-wallpaper-cart__trigger:hover {
    transform: translateY(-2px);
    border-color: rgba(54, 72, 104, 0.34);
    background: rgba(255, 255, 255, 0.94);
}

.global-wallpaper-cart__icon {
    position: relative;
    width: 24px;
    height: 18px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 3px 3px 7px 7px;
}

.global-wallpaper-cart__icon::before {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    top: -9px;
    height: 10px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
}

.global-wallpaper-cart__count {
    position: absolute;
    top: -5px;
    right: -4px;
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #30466d;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.global-wallpaper-cart__panel {
    display: grid;
    gap: 18px;
    width: min(360px, calc(100vw - 28px));
    padding: 20px;
    border: 1px solid rgba(54, 72, 104, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(47, 67, 93, 0.2);
    backdrop-filter: blur(18px);
}

.global-wallpaper-cart__panel[hidden] {
    display: none;
}

.global-wallpaper-cart__heading,
.global-wallpaper-cart__footer,
.global-wallpaper-cart__items li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.global-wallpaper-cart__heading .eyebrow {
    margin: 0;
    color: rgba(24, 22, 20, 0.58);
}

.global-wallpaper-cart__tools {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.global-wallpaper-cart__tools button,
.global-wallpaper-cart__items button {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(24, 22, 20, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(24, 22, 20, 0.72);
    cursor: pointer;
}

.global-wallpaper-cart__close {
    width: 34px;
    padding: 0;
}

.global-wallpaper-cart__items {
    display: grid;
    gap: 10px;
    max-height: min(360px, 52vh);
    margin: 0;
    padding: 0;
    overflow: auto;
    list-style: none;
}

.global-wallpaper-cart__items li {
    align-items: flex-start;
    padding: 12px 0;
    border-top: 1px solid rgba(24, 22, 20, 0.08);
}

.global-wallpaper-cart__items li:first-child {
    border-top: 0;
}

.global-wallpaper-cart__items strong,
.global-wallpaper-cart__items span {
    display: block;
}

.global-wallpaper-cart__items strong {
    line-height: 1.28;
}

.global-wallpaper-cart__items span,
.global-wallpaper-cart__empty,
.global-wallpaper-cart__footer span {
    color: rgba(24, 22, 20, 0.62);
}

.global-wallpaper-cart__empty {
    margin: 0;
}

.global-wallpaper-cart__footer {
    padding-top: 14px;
    border-top: 1px solid rgba(24, 22, 20, 0.1);
}

.global-wallpaper-cart form {
    margin: 0;
}

.global-wallpaper-cart form .button {
    width: 100%;
    cursor: pointer;
}

.legal-copy {
    display: grid;
    gap: 24px;
}

.legal-copy__section + .legal-copy__section {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .home-hero__editorial-stage {
        grid-template-columns: clamp(56px, 8vw, 82px) minmax(0, 1fr) clamp(52px, 7vw, 68px);
        gap: clamp(16px, 2vw, 24px);
    }

    .home-hero__vertical-nav {
        gap: 12px;
    }

    .home-hero__editorial-media {
        width: min(100%, 900px);
        height: min(52vh, 500px);
    }

    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .site-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-block;
        justify-self: end;
    }

    .site-header__meta {
        grid-column: 1 / -1;
        justify-content: space-between;
        padding-bottom: 16px;
    }

    .site-nav.is-open {
        display: grid;
        grid-column: 1 / -1;
        justify-content: start;
        gap: 14px;
        padding-bottom: 18px;
    }

    .hero__grid,
    .split-intro,
    .spotlight-card,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__frame {
        gap: 18px;
    }

    .site-footer__links {
        max-width: none;
        padding-top: 0;
    }

    .site-footer__credits {
        justify-items: start;
        text-align: left;
    }

    .feature-grid,
    .video-grid,
    .product-grid,
    .pricing-grid,
    .equipment-grid,
    .category-grid,
    .metrics-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .metric:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100vw - 28px, 100%);
        --radius: 22px;
    }
    .site-header__meta {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .page-topbar {
        width: min(100% - 28px, 100%);
        grid-template-columns: 1fr auto;
        gap: 18px;
        padding: 16px 0 32px;
    }

    .page-topbar__brand {
        font-size: clamp(1.9rem, 10vw, 3rem);
    }

    .page-topbar__nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        flex-wrap: nowrap;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .page-topbar__nav::-webkit-scrollbar {
        display: none;
    }

    .page-topbar__meta {
        grid-column: 2;
        grid-row: 1;
    }

    .feature-grid,
    .video-grid,
    .product-grid,
    .pricing-grid,
    .equipment-grid,
    .category-grid,
    .metrics-panel {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 520px;
    }

    .photo-grid {
        columns: 1;
    }

    .page-hero {
        padding-top: 96px;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px;
    }

    .social-vault {
        top: auto !important;
        right: auto !important;
        left: 14px !important;
        bottom: 14px !important;
        width: 52px;
        height: 52px;
    }

    .social-vault__trigger {
        width: 52px;
        height: 52px;
    }

    .social-vault__bubble {
        width: 44px;
        height: 44px;
    }

    .social-vault.is-open .social-vault__bubble--youtube {
        transform: translate(8px, -58px) scale(1);
    }

    .social-vault.is-open .social-vault__bubble--instagram {
        transform: translate(58px, -14px) scale(1);
    }

    .global-wallpaper-cart {
        right: 14px;
        top: 12px;
    }

    .lightbox {
        padding: 14px;
    }

    .lightbox__dialog {
        width: calc(100vw - 28px);
    }

    .lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 2.1rem;
    }

    .lightbox__nav--prev {
        left: 8px;
    }

    .lightbox__nav--next {
        right: 8px;
    }

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .home-hero__heading-block,
    .home-hero__utility,
    .home-hero__vertical-nav,
    .home-hero__next-link {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}

/* Client revision: plain white site background, no decorative grid or road motifs. */
html,
body,
.site-shell,
main,
.page-story,
.page-portfolio,
.page-wallpapers,
.page-pricing,
.page-contact,
.page-payment,
.story,
.portfolio-page,
.wallpapers-page,
.rates-page,
.contact-page,
.payment-page,
.paypal-checkout-page,
.wallpaper-payment-page {
    background: #ffffff !important;
    background-image: none !important;
}

.home-hero--editorial,
.story,
.portfolio-page,
.wallpapers-page,
.rates-page,
.contact-page,
.payment-page,
.paypal-checkout-page,
.wallpaper-payment-page {
    background: #ffffff !important;
    background-image: none !important;
}

.home-hero--editorial::before,
.story__timeline::before,
.story__timeline::after,
.payment-editorial::before,
.payment-editorial::after,
.paypal-checkout-page::before,
.wallpaper-payment-page::before {
    content: none !important;
    background: none !important;
    background-image: none !important;
}
