:root {
    --ink: #111111;
    --muted: #666666;
    --line: #e2e2e2;
    --paper: #f5f5f5;
    --white: #ffffff;
    --clay: #9b760b;
    --forest: #111111;
    --gold: #b78a15;
    --sage: #eeeeee;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
    --soft-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    --container: min(1180px, calc(100% - 40px));
    --top-contact-height: 38px;
    --site-header-height: 73px;
    --page-chrome-height: calc(var(--top-contact-height) + var(--site-header-height));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.smooth-page-scroll body {
    overflow-x: hidden;
}

.smooth-page-scroll .smooth-content {
    position: fixed;
    top: var(--page-chrome-height);
    right: 0;
    left: 0;
    width: 100%;
    will-change: transform;
}

.smooth-page-scroll main {
    position: static;
}

.smooth-page-scroll .mobile-dock {
    position: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.04), transparent 34%),
        radial-gradient(circle at bottom right, rgba(183, 138, 21, 0.08), transparent 30%);
}

body::after {
    content: "";
    position: fixed;
    right: 0;
    bottom: 8vh;
    z-index: -1;
    width: min(420px, 72vw);
    aspect-ratio: 1;
    background: #777777;
    opacity: 0.12;
    pointer-events: none;
    -webkit-mask: url("../img/logo-white.png") center/contain no-repeat;
    mask: url("../img/logo-white.png") center/contain no-repeat;
}
img {
    display: block;
    max-width: 100%;
}

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

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background: var(--paper);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 3px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.12s linear;
}

.top-contact {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    padding: 8px clamp(20px, 5vw, 72px);
    color: #ffffff;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 13px;
    font-weight: 800;
}

.top-contact a {
    opacity: 0.86;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.top-contact a:hover {
    color: #d9b85b;
    opacity: 1;
}

.loaded .page-loader {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    color: var(--white);
    background: var(--forest);
    border-radius: 18px;
    font-weight: 900;
    box-shadow: var(--shadow);
    animation: loaderPulse 1.1s ease-in-out infinite;
}

.loader-logo {
    width: clamp(138px, 16vw, 190px);
    height: clamp(138px, 16vw, 190px);
    object-fit: contain;
    padding: 18px;
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 30px;
    box-shadow: var(--shadow);
    animation: loaderPulse 1.15s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 15px clamp(20px, 5vw, 72px);
    background: rgb(17 17 17);
    border-bottom: 1px solid rgba(226, 226, 226, 0.9);
    backdrop-filter: blur(14px);
}

.mobile-dock {
    display: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-icon {
    width: 42px;
    height: 38px;
    object-fit: contain;
}

.brand-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1;
    white-space: nowrap;
}

.brand-logo {
    width: 132px;
    height: 48px;
    object-fit: contain;
}

.admin-brand-logo {
    width: 118px;
}

.login-brand-logo {
    width: 170px;
    height: 96px;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--forest);
    border-radius: 12px;
    font-size: 14px;
}

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

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
}

.site-nav a.active,
.site-nav a:hover {
    color: #000000;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.site-nav a:not(.active):hover {
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition-duration: 0.3s;
}

.site-nav .nav-offer {
    color: #f3dc93;
    background: rgba(217, 184, 91, 0.10);
    border: 1px solid rgba(217, 184, 91, 0.34);
    box-shadow: none;
}

.site-nav .nav-offer:hover,
.site-nav .nav-offer.active {
    color: #111111;
    background: #d9b85b;
    box-shadow: 0 10px 24px rgba(217, 184, 91, 0.18);
}

.language-switcher {
    display: inline-flex;
    padding: 3px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.site-nav .language-switcher a {
    padding: 6px 9px;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.site-nav .language-switcher a.active {
    color: #111111;
    background: #ffffff;
}

@media (max-width: 900px) {
    .language-switcher {
        align-self: flex-start;
        margin-top: 8px;
    }
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.24s ease, opacity 0.2s ease, width 0.2s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: end;
    padding: clamp(28px, 6vw, 76px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.34)),
        url("../../uploads/products/demo-nora-1.jpg") center/cover;
}

.video-hero {
    background: #111111;
}

.video-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 48%);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    padding-bottom: 42px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
    color: #d9b85b;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(46px, 9vw, 104px);
    line-height: 0.95;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
}

h3 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.2;
}

.hero-copy {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-meta span,
.hero-meta a {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-meta a:hover {
    color: #111111;
    background: #ffffff;
}

.trust-strip {
    position: relative;
    z-index: 2;
    width: var(--container);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: -42px auto 0;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.trust-strip div {
    padding: 24px;
    background: rgba(255, 255, 255, 0.94);
}

.trust-strip strong {
    display: block;
    margin-bottom: 4px;
    color: var(--forest);
    font-size: 15px;
}

.trust-strip span {
    color: var(--muted);
    font-size: 14px;
}

.inline-whatsapp {
    display: inline-block;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.inline-whatsapp:hover {
    color: var(--ink);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--soft-shadow);
}

.btn.primary {
    color: var(--white);
    background: var(--ink);
}

.btn.primary:hover {
    background: #2b2b2b;
}

.btn.ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn.ghost.dark {
    color: var(--ink);
    border-color: var(--line);
}

.btn.light {
    color: var(--ink);
    background: var(--white);
}

.section {
    position: relative;
    width: var(--container);
    margin: 0 auto;
    padding: clamp(54px, 8vw, 104px) 0;
}


.intro-grid,
.section-heading,
.story-layout,
.contact-layout,
.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
}

.intro-grid p,
.story-layout p,
.page-title p {
    color: var(--muted);
    font-size: 18px;
}

.section-heading {
    margin-bottom: 30px;
    align-items: end;
}

.text-link {
    justify-self: end;
    color: var(--ink);
    font-weight: 800;
}

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

.collection-section {
    padding-top: 0;
}

.service-tiles {
    padding-top: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    color: #ffffff;
    background: #111111;
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent);
}

.service-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transform: scale(1.02);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-card:hover img {
    filter: grayscale(0.25);
    transform: scale(1.08);
}

.service-card span {
    width: fit-content;
    padding: 7px 11px;
    color: #111111;
    background: #ffffff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.service-card h3 {
    margin-bottom: 0;
    font-size: clamp(26px, 3vw, 38px);
}

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

.collection-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 22px;
    color: var(--white);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
    isolation: isolate;
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, transparent 18%, rgba(15, 23, 21, 0.78));
}

.collection-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.collection-card:hover img {
    transform: scale(1.06);
}

.collection-card span {
    font-size: 24px;
    font-weight: 900;
}

.collection-card small {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.product-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-card-body {
    padding: 20px;
}

.product-card-body span {
    color: var(--clay);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card-body p {
    color: var(--muted);
}

.product-card-body strong,
.price {
    color: var(--forest);
    font-size: 22px;
    font-weight: 800;
}

.cta-band {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: var(--container);
    margin: 0 auto clamp(54px, 8vw, 104px);
    padding: clamp(30px, 5vw, 58px);
    color: var(--white);
    background: var(--forest);
    border-radius: 22px;
    box-shadow: var(--shadow);
}


.lookbook-band {
    position: relative;
    overflow: hidden;
    width: var(--container);
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    margin: 0 auto clamp(54px, 8vw, 104px);
    padding: clamp(20px, 3vw, 34px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--soft-shadow);
}


.lookbook-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
}

.lookbook-copy {
    padding: clamp(10px, 2vw, 24px);
}

.lookbook-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.cta-band h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.page-hero,
.page-title {
    padding: clamp(70px, 10vw, 130px) max(20px, calc((100% - 1180px) / 2));
}

.page-hero {
    min-height: 430px;
    display: flex;
    align-items: end;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28)),
        url("../../uploads/products/demo-vale-1.jpg") center/cover;
}

.page-title {
    overflow: hidden;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}


.page-title h1,
.page-hero h1 {
    max-width: 900px;
    font-size: clamp(42px, 6vw, 74px);
}

.page-title p {
    max-width: 680px;
}

.catalog-toolbar {
    width: var(--container);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 28px auto -26px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.catalog-toolbar div {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.catalog-toolbar strong {
    color: var(--forest);
    font-size: 32px;
    line-height: 1;
}

.catalog-toolbar span,
.catalog-toolbar p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.stats {
    display: grid;
    gap: 14px;
}

.stats div,
.values article,
.contact-panel,
.contact-form,
.filters {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.stats strong {
    display: block;
    color: var(--forest);
    font-size: 40px;
    line-height: 1;
}

.stats span,
.values p,
.contact-panel p {
    color: var(--muted);
}

.inline-location {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(183, 138, 21, 0.45);
    text-underline-offset: 4px;
}

.inline-location:hover {
    color: var(--gold);
}

.values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding-top: 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

.filters {
    position: sticky;
    top: 100px;
}

.filters h2 {
    font-size: 24px;
}

.filters a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 800;
}

.filters a.active,
.filters a:hover {
    color: var(--white);
    background: var(--forest);
}

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

.product-gallery img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.product-image-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.product-gallery-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-gallery-slide {
    min-width: 100%;
}

.product-gallery-slide img {
    border-radius: 24px;
}

.product-gallery-btn {
    position: absolute;
    top: 42%;
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    color: #111111;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
    cursor: pointer;
    font-size: 28px;
    transform: translateY(-50%);
}

.product-gallery-btn.prev {
    left: 16px;
}

.product-gallery-btn.next {
    right: 16px;
}

.product-gallery-dots {
    position: absolute;
    right: 0;
    bottom: 96px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.product-gallery-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
}

.product-gallery-dots button.active {
    width: 26px;
    background: #ffffff;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.product-thumbs button {
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
}

.product-thumbs button.active {
    border-color: #111111;
}

.product-thumbs img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: none;
}

.detail-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 6px;
}

.detail-metrics div {
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.detail-metrics strong {
    display: block;
    color: var(--forest);
}

.detail-metrics span {
    color: var(--muted);
    font-size: 14px;
}

.product-colors {
    display: grid;
    gap: 10px;
    margin: 22px 0 6px;
}

.product-colors > span {
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.product-colors > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-colors button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.product-colors button.active,
.product-colors button:hover {
    color: var(--ink);
    border-color: #111111;
    box-shadow: var(--soft-shadow);
}

.product-colors i {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: var(--swatch);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.18);
}

.product-info {
    padding-top: 24px;
}

.product-info h1 {
    color: var(--ink);
    font-size: clamp(40px, 6vw, 68px);
}

.product-info > p:not(.eyebrow):not(.price) {
    color: var(--muted);
    font-size: 18px;
}

.product-points {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.product-points li {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select,
.login-card input {
    width: 100%;
    padding: 13px 14px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.admin-gallery-preview {
    display: grid;
    gap: 14px;
}

.admin-gallery-preview h2 {
    margin: 0;
    font-size: 22px;
}

.admin-gallery-preview > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.admin-gallery-preview label {
    overflow: hidden;
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.admin-gallery-preview img {
    width: 100%;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
    border-radius: 10px;
}

.admin-gallery-preview span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}

.admin-color-manager {
    display: grid;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.admin-color-manager h2,
.admin-color-manager h3,
.admin-color-manager p {
    margin-bottom: 0;
}

.admin-color-manager p {
    color: var(--muted);
}

.admin-color-row {
    display: grid;
    gap: 12px;
    padding: 14px;
    background: #f5f5f5;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.admin-color-fields {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(120px, 0.45fr) minmax(100px, 0.35fr) auto;
    gap: 12px;
    align-items: end;
}

.admin-color-fields input[type="color"] {
    min-height: 48px;
    padding: 4px;
}

.inline-check {
    display: flex !important;
    min-height: 48px;
    align-items: center;
    gap: 8px !important;
}

.inline-check input {
    width: auto;
}

.admin-color-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-color-images img {
    width: 84px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
}

.admin-new-colors {
    display: grid;
    gap: 12px;
}

.contact-form textarea {
    resize: vertical;
}

.success-message {
    padding: 14px 16px;
    color: var(--ink);
    background: #eeeeee;
    border-radius: 8px;
    font-weight: 800;
}

.empty-state {
    grid-column: 1 / -1;
    color: var(--muted);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto minmax(240px, 0.5fr);
    gap: 28px;
    padding: 42px clamp(20px, 5vw, 72px);
    color: rgba(255, 255, 255, 0.72);
    background: #111111;
}

.footer-note {
    display: grid;
    gap: 6px;
}

.footer-note strong {
    color: var(--white);
}

.footer-note span {
    max-width: 300px;
}

.footer-note a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: underline;
    text-decoration-color: rgba(217, 184, 91, 0.45);
    text-underline-offset: 4px;
}

.footer-note a:hover {
    color: #ffffff;
}

.site-footer p {
    max-width: 440px;
    margin-bottom: 0;
}

.footer-brand {
    margin-bottom: 14px;
    color: var(--white);
}

.footer-brand .brand-mark {
    background: var(--clay);
}

.footer-logo {
    width: 170px;
    height: 92px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.footer-links {
    display: flex;
    gap: 18px;
    color: var(--white);
    font-weight: 800;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 85;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #ffffff;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 900;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 73px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: #111111;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

    .site-nav a {
        color: var(--white);
        background: transparent;
    }

    .site-nav a.active {
        color: #111111;
        background: var(--white);
    }

    .site-nav a:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.12);
    }

    .site-nav.open {
        display: flex;
    }

    .intro-grid,
    .section-heading,
    .story-layout,
    .contact-layout,
    .product-detail,
    .products-layout,
    .service-feature-band,
    .service-process,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .text-link {
        justify-self: start;
    }

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

    .catalog-grid,
    .collection-grid,
    .service-grid,
    .trust-strip,
    .lookbook-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip,
    .lookbook-band {
        grid-template-columns: 1fr;
    }

    .filters {
        position: static;
    }

    .cta-band {
        align-items: start;
        flex-direction: column;
    }

    .product-gallery img {
        min-height: 340px;
    }

    .product-gallery-btn {
        top: 170px;
    }

    .service-feature-band ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .catalog-toolbar {
        align-items: start;
        flex-direction: column;
        margin-bottom: -18px;
    }

    .slider-panel {
        grid-template-columns: 1fr;
    }

    .slider-panel img {
        height: 360px;
    }

    .slider-btn {
        top: 180px;
    }
}

/* Editorial blending pass: keep products as cards, soften supporting sections */
.trust-strip {
    gap: 0;
    margin-top: clamp(28px, 5vw, 56px);
    overflow: visible;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
}

.trust-strip div {
    padding: 24px clamp(16px, 3vw, 32px);
    background: transparent;
    border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
    border-right: 0;
}

.intro-grid {
    width: min(1180px, calc(100% - 40px));
    padding-top: clamp(64px, 9vw, 120px);
    padding-bottom: clamp(64px, 9vw, 120px);
    border-bottom: 1px solid var(--line);
}

.service-tiles,
.collection-section {
    padding-top: clamp(48px, 7vw, 86px);
}

.section-heading {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
}

.lookbook-band {
    overflow: visible;
    padding: clamp(28px, 5vw, 58px) 0;
    background: transparent;
    border-width: 1px 0;
    border-radius: 0;
    box-shadow: none;
}

.lookbook-image img {
    box-shadow: var(--soft-shadow);
}

.lookbook-copy {
    padding-right: 0;
}

.values article,
.stats div,
.service-detail-grid article,
.process-list article,
.offer-grid article,
.offer-steps .process-list article {
    background: transparent;
    border-width: 1px 0 0;
    border-radius: 0;
    box-shadow: none;
}

.values article:hover,
.stats div:hover {
    transform: none;
    box-shadow: none;
}

.service-detail-grid {
    gap: clamp(18px, 3vw, 34px);
}

.service-detail-grid article {
    min-height: auto;
    padding: 26px 0 0;
}

.process-list article {
    padding: 20px 0;
}

.catalog-toolbar {
    background: transparent;
    border-width: 1px 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-panel {
    border: 0;
    box-shadow: none;
}

.contact-form {
    box-shadow: none;
}

.offer-grid {
    gap: clamp(18px, 3vw, 34px);
}

.offer-grid article {
    padding: 24px 0 0;
}

.offer-strip {
    box-shadow: var(--soft-shadow);
}

@media (max-width: 900px) {
    .trust-strip {
        grid-template-columns: 1fr;
    }

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

    .trust-strip div:last-child {
        border-bottom: 0;
    }

    .lookbook-band {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 560px) {
    .intro-grid {
        width: var(--container);
    }

    .section-heading {
        padding-bottom: 14px;
    }

    .trust-strip {
        width: var(--container);
    }
}

@media (max-width: 560px) {
    :root {
        --container: min(100% - 44px, 1180px);
    }

    body {
        padding-bottom: 76px;
    }

    body::after {
        display: none;
    }

    .site-header {
        padding: 14px 22px;
    }

    .top-contact {
        justify-content: center;
        padding-right: 22px;
        padding-left: 22px;
    }

    .hero {
        min-height: 620px;
        padding: 28px 22px;
    }

    .hero-actions,
    .hero-actions .btn,
    .contact-form .btn {
        width: 100%;
    }

    .section,
    .page-title,
    .page-hero {
        padding-right: 0;
        padding-left: 0;
    }

    .cta-band {
        margin-right: auto;
        margin-left: auto;
    }

    .mobile-dock {
        position: fixed;
        right: 18px;
        bottom: 12px;
        left: 18px;
        z-index: 50;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 8px;
        background: rgba(255, 255, 255, 0.93);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(16px);
    }

    .mobile-dock a {
        display: grid;
        min-height: 44px;
        place-items: center;
        color: var(--muted);
        border-radius: 16px;
        font-size: 13px;
        font-weight: 900;
    }

    .mobile-dock a.active {
        color: var(--white);
        background: var(--forest);
    }

    .trust-strip {
        margin-top: -24px;
        border-radius: 18px;
    }

    .trust-strip div {
        padding: 18px;
    }

    .collection-card {
        min-height: 210px;
        border-radius: 18px;
    }

    .product-grid,
    .catalog-grid,
    .service-grid,
    .values,
    .detail-metrics {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 240px;
    }

    .service-hero,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-hero img {
        min-height: 380px;
    }

    .product-card img {
        aspect-ratio: 1.2 / 1;
    }

    .product-gallery img {
        min-height: 260px;
    }

    .product-image-slider {
        border-radius: 20px;
    }

    .product-gallery-slide img {
        border-radius: 20px;
    }

    .product-gallery-btn {
        top: 130px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .product-gallery-btn.prev {
        left: 10px;
    }

    .product-gallery-btn.next {
        right: 10px;
    }

    .product-gallery-dots {
        bottom: 88px;
    }

    .product-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 10px;
    }

    .product-thumbs button,
    .product-thumbs img {
        border-radius: 10px;
    }

    .service-hero {
        width: var(--container);
        margin-top: 28px;
    }

    .service-hero img {
        min-height: 280px;
        border-radius: 22px;
    }

    .service-detail-grid article {
        min-height: auto;
        padding: 22px;
    }

    .service-feature-band {
        width: var(--container);
        gap: 20px;
        padding: 24px;
        border-radius: 22px;
    }

    .service-feature-band ul {
        grid-template-columns: 1fr;
    }

    .service-feature-band li {
        padding: 14px;
        border-radius: 14px;
    }

    .service-process {
        gap: 20px;
    }

    .process-list article {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 16px;
        border-radius: 16px;
    }

    .admin-gallery-preview > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lookbook-band {
        padding: 16px;
        border-radius: 22px;
    }

    .lookbook-image img {
        border-radius: 18px;
    }

    .catalog-toolbar {
        margin-top: 18px;
    }

    .page-title {
        padding-top: 58px;
        padding-bottom: 58px;
        padding-left: 30px;
        padding-right: 30px;
    }


    .premium-slider,
    .story-slider {
        border-radius: 20px;
        overflow: visible;
        padding-bottom: 58px;
    }

    .slider-panel img {
        height: 235px;
        border-radius: 20px 20px 0 0;
    }

    .slider-copy {
        min-height: 300px;
        justify-content: flex-start;
        gap: 10px;
        padding: 22px 20px 24px;
    }

    .slider-copy h3 {
        font-size: 26px;
        line-height: 1.08;
    }

    .slider-copy p {
        font-size: 16px;
        line-height: 1.55;
    }

    .slider-copy strong {
        font-size: 24px;
    }

    .slider-copy .btn {
        width: 100%;
        margin-top: auto;
    }

    .slider-btn {
        top: auto;
        bottom: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
        transform: none;
        box-shadow: none;
    }

    .slider-btn:hover {
        transform: none;
    }

    .slider-btn.prev {
        left: 18px;
    }

    .slider-btn.next {
        right: 18px;
    }

    .site-footer {
        padding-bottom: 120px;
    }

    .slider-dots {
        bottom: 24px;
        right: 64px;
        left: 64px;
    }

    .about-panel .slider-copy {
        min-height: 250px;
    }
}

/* Polished theme layer */
.section,
.page-title,
.page-hero {
    position: relative;
}

.section-heading h2,
.intro-grid h2,
.story-layout h2 {
    max-width: 760px;
}

.product-card a {
    display: block;
    height: 100%;
}

.product-card-body {
    min-height: 220px;
}

.filters {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
}

.filters a {
    margin-bottom: 6px;
}

.product-detail {
    align-items: center;
}

.product-gallery img {
    border-radius: 24px;
}

.contact-panel {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(45, 45, 45, 0.90)),
        url("../../uploads/products/demo-miro-1.jpg") center/cover;
    color: var(--white);
}

.contact-panel p {
    color: rgba(255, 255, 255, 0.76);
}

.service-hero {
    width: var(--container);
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    margin: clamp(36px, 6vw, 80px) auto;
}

.service-hero img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
    filter: grayscale(0.2);
}

.service-hero h1 {
    font-size: clamp(52px, 8vw, 100px);
}

.service-hero p:not(.eyebrow) {
    color: var(--muted);
    font-size: 20px;
}

.service-intro {
    padding-top: 0;
}

.service-intro h2 {
    max-width: 980px;
}

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

.service-detail-grid article {
    min-height: 280px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}

.service-detail-grid span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.service-detail-grid p {
    color: var(--muted);
}

.service-feature-band {
    width: var(--container);
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: clamp(22px, 5vw, 70px);
    align-items: start;
    margin: 0 auto clamp(54px, 8vw, 104px);
    padding: clamp(28px, 5vw, 58px);
    color: #ffffff;
    background: #111111;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.service-feature-band ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-feature-band li {
    padding: 16px;
    color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    font-weight: 800;
}

.service-process {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: clamp(24px, 5vw, 70px);
    padding-top: 0;
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-list article {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.process-list span {
    color: var(--gold);
    font-weight: 900;
}

.process-list p {
    margin: 0;
    color: var(--muted);
}

/* Interactive motion layer */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-content > * {
    opacity: 0;
    transform: translateY(18px);
    animation: heroRise 0.75s ease forwards;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.3s;
}

.hero-content > *:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes heroRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.collection-card,
.product-card,
.lookbook-band,
.trust-strip,
.contact-form,
.contact-panel,
.values article,
.stats div,
.premium-slider,
.story-slider {
    will-change: transform;
}

.collection-card:hover,
.values article:hover,
.stats div:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.premium-slider,
.story-slider {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--soft-shadow);
}

.slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider-panel {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    align-items: stretch;
    background: #ffffff;
}

.slider-panel img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.slider-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: clamp(28px, 5vw, 64px);
}

.slider-copy span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.slider-copy h3 {
    font-size: clamp(30px, 4vw, 52px);
}

.slider-copy p {
    color: var(--muted);
    font-size: 18px;
}

.slider-copy strong {
    color: var(--ink);
    font-size: 28px;
}

.slider-copy .btn {
    width: fit-content;
    margin-top: 8px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.slider-btn:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev {
    left: 18px;
}

.slider-btn.next {
    right: 18px;
}

.slider-dots {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.28);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.slider-dots button.active {
    width: 28px;
    background: #111111;
}

.about-slider-section {
    padding-top: 0;
}

.about-panel .slider-copy {
    background: #111111;
    color: #ffffff;
}

.about-panel .slider-copy p {
    color: rgba(255, 255, 255, 0.74);
}

.about-panel .slider-copy span {
    color: #d9b85b;
}

.admin-body {
    background: #f5f5f5;
}

.admin-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 16px clamp(18px, 4vw, 52px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-nav a {
    padding: 9px 13px;
    color: var(--muted);
    border-radius: 999px;
    font-weight: 800;
}

.admin-nav a.active,
.admin-nav a:hover {
    color: var(--white);
    background: var(--forest);
}

.admin-main {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 36px 0 72px;
}

.admin-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.admin-title h1 {
    margin-bottom: 0;
    font-size: clamp(34px, 5vw, 58px);
}

.admin-stats,
.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.admin-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.admin-stats article,
.admin-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.admin-stats strong {
    display: block;
    color: var(--forest);
    font-size: 42px;
    line-height: 1;
}

.admin-stats span,
.login-card p,
.login-card small {
    color: var(--muted);
}

.admin-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-card h2 {
    margin-bottom: 0;
    font-size: 24px;
}

.admin-list {
    display: grid;
    gap: 12px;
}

.admin-list div,
.product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-list img,
.product-cell img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
}

.admin-list span,
.product-cell span {
    display: grid;
    color: var(--muted);
    font-size: 14px;
}

.admin-list strong,
.product-cell strong {
    color: var(--ink);
    font-size: 15px;
}

.message-list {
    display: grid;
    gap: 14px;
}

.message-list article {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.message-list a {
    display: block;
    color: var(--clay);
    font-weight: 800;
}

.message-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.table-card {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.admin-table th {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.table-actions form {
    margin: 0;
}

.btn.small {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 13px;
}

.btn.danger {
    color: var(--white);
    background: #b63f35;
}

.admin-form {
    display: grid;
    gap: 18px;
    max-width: 760px;
}

.wide-form {
    max-width: none;
}

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

.admin-form label,
.login-card label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.login-card input {
    background: #ffffff;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.login-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 20px;
}

.login-card {
    display: grid;
    width: min(440px, 100%);
    gap: 16px;
}

.login-card h1 {
    margin-bottom: 0;
    font-size: 42px;
}

.admin-alert {
    padding: 13px 14px;
    border-radius: 12px;
    font-weight: 800;
}

.admin-alert.error {
    color: #111111;
    background: #eeeeee;
}

@media (max-width: 900px) {
    .admin-header,
    .admin-title {
        align-items: start;
        flex-direction: column;
    }

    .admin-stats,
    .admin-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .admin-nav {
        width: 100%;
    }

    .admin-nav a {
        background: var(--white);
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: clamp(40px, 16vw, 68px);
    }

    .hero-copy {
        font-size: 17px;
    }

    .brand span:last-child {
        font-size: 15px;
    }

    .site-nav {
        right: 22px;
        left: 22px;
    }

    .product-card-body {
        min-height: auto;
    }

    .filters {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 12px;
    }

    .filters h2 {
        display: none;
    }

    .filters a {
        flex: 0 0 auto;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .admin-main {
        width: min(100% - 44px, 1180px);
        padding-top: 24px;
    }

    .admin-stats article,
    .admin-card {
        padding: 18px;
    }

    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .premium-slider,
    .story-slider {
        overflow: hidden;
        padding-bottom: 58px;
        border-radius: 20px;
    }

    .slider-panel {
        grid-template-columns: 1fr;
    }

    .slider-panel img {
        height: 235px;
        border-radius: 20px 20px 0 0;
    }

    .slider-copy {
        min-height: 300px;
        justify-content: flex-start;
        gap: 10px;
        padding: 22px 20px 24px;
    }

    .about-panel .slider-copy {
        min-height: 250px;
    }

    .slider-copy h3 {
        font-size: 26px;
        line-height: 1.08;
    }

    .slider-copy p {
        font-size: 16px;
        line-height: 1.55;
    }

    .slider-copy strong {
        font-size: 24px;
    }

    .slider-copy .btn {
        width: 100%;
        margin-top: auto;
    }

    .slider-btn {
        top: auto;
        bottom: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
        transform: none;
        box-shadow: none;
    }

    .slider-btn:hover {
        transform: none;
    }

    .slider-btn.prev {
        left: 18px;
    }

    .slider-btn.next {
        right: 18px;
    }

    .slider-dots {
        right: 64px;
        bottom: 24px;
        left: 64px;
    }
}

@media (max-width: 900px) {
    .service-feature-band,
    .service-process {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .product-image-slider {
        border-radius: 20px;
    }

    .product-gallery-slide img {
        min-height: 260px;
        border-radius: 20px;
    }

    .product-gallery-btn {
        top: 130px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .product-gallery-btn.prev {
        left: 10px;
    }

    .product-gallery-btn.next {
        right: 10px;
    }

    .product-gallery-dots {
        bottom: 88px;
    }

    .product-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 10px;
    }

    .service-feature-band {
        width: var(--container);
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
        border-radius: 22px;
    }

    .service-feature-band ul {
        grid-template-columns: 1fr;
    }

    .service-process {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-list article {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 16px;
    }
}

/* Final responsive hardening for service pages and product galleries */
.product-gallery-track {
    height: clamp(360px, 42vw, 560px);
    overflow: hidden;
    border-radius: 24px;
}

.product-gallery-slide img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
}

.product-thumbs img {
    height: 86px;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
}

.product-gallery-dots {
    bottom: 116px;
}

@media (max-width: 900px) {
    .service-detail-grid,
    .service-feature-band,
    .service-process {
        grid-template-columns: 1fr;
    }

    .service-detail-grid article {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .service-detail-grid {
        gap: 12px;
    }

    .service-detail-grid article {
        display: grid;
        gap: 8px;
        padding: 18px;
        border-radius: 16px;
    }

    .service-detail-grid span {
        font-size: 12px;
    }

    .service-detail-grid h3 {
        margin: 0;
        font-size: 21px;
    }

    .service-detail-grid p {
        margin: 0;
        font-size: 15px;
        line-height: 1.55;
    }

    .service-feature-band {
        gap: 18px;
        margin-bottom: 48px;
        padding: 22px;
        border-radius: 18px;
    }

    .service-feature-band h2 {
        font-size: clamp(30px, 11vw, 42px);
    }

    .service-feature-band li {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 13px 14px;
    }

    .service-process {
        gap: 18px;
        padding-top: 24px;
    }

    .process-list {
        gap: 10px;
    }

    .process-list article {
        grid-template-columns: 38px 1fr;
        align-items: center;
        padding: 15px;
        border-radius: 14px;
    }

    .process-list span {
        display: grid;
        width: 34px;
        height: 34px;
        place-items: center;
        color: #111111;
        background: #eeeeee;
        border-radius: 999px;
        font-size: 13px;
    }

    .product-detail {
        gap: 28px;
        padding-top: 42px;
    }

    .product-gallery-track {
        height: 260px;
        border-radius: 20px;
    }

    .product-gallery-slide img {
        height: 260px;
        min-height: 0;
        border-radius: 20px;
    }

    .product-gallery-btn {
        top: 130px;
    }

    .product-gallery-dots {
        bottom: 86px;
    }

    .product-thumbs img {
        height: 74px;
        min-height: 0;
    }
}

/* Stable product slider: Swiper-like active slide model */
.product-image-slider {
    overflow: visible;
}

.product-gallery-track {
    position: relative;
    display: block;
    height: clamp(360px, 42vw, 560px);
    overflow: hidden;
    background: #eeeeee;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.product-gallery-slide {
    position: absolute;
    inset: 0;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition: opacity 0.34s ease, visibility 0.34s ease, transform 0.5s ease;
}

.product-gallery-slide.active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.product-gallery-slide img,
.product-gallery img.product-gallery-main {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: none;
}

.product-gallery-btn {
    top: clamp(180px, 21vw, 280px);
}

.product-gallery-dots {
    bottom: 106px;
}

.product-gallery-dots button,
.product-thumbs button {
    transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.product-gallery-dots button:hover,
.product-thumbs button:hover {
    transform: translateY(-1px);
}

@media (max-width: 560px) {
    .product-gallery-track {
        height: 270px;
        border-radius: 20px;
    }

    .product-gallery-slide img {
        height: 270px;
        border-radius: 20px;
    }

    .product-gallery-btn {
        top: 135px;
    }

    .product-gallery-dots {
        bottom: 84px;
    }
}

/* Mobile-first polish pass */
@media (max-width: 760px) {
    :root {
        --container: min(100% - 32px, 1180px);
    }

    html {
        scroll-padding-top: 86px;
    }

    body {
        overflow-x: hidden;
        padding-bottom: 88px;
    }

    .top-contact {
        justify-content: space-between;
        gap: 10px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .site-header {
        top: 0;
        min-height: 64px;
        padding: 8px 16px;
        border-bottom-color: rgba(255, 255, 255, 0.12);
    }

    .brand-logo {
        width: 112px;
        height: 38px;
        object-position: left center;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
        padding: 11px;
        border: 1px solid rgba(255, 255, 255, 0.26);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-toggle span {
        background: #ffffff;
    }

    .site-nav {
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        gap: 4px;
        padding: 10px;
        border-radius: 18px;
    }

    .site-nav a {
        min-height: 46px;
        padding: 13px 14px;
        border-radius: 13px;
        font-size: 15px;
    }

    .mobile-dock {
        right: 12px;
        bottom: 10px;
        left: 12px;
        z-index: 80;
        gap: 5px;
        padding: 7px;
        border-radius: 20px;
    }

    .mobile-dock a {
        min-height: 46px;
        border-radius: 15px;
        font-size: 12px;
    }

    .hero {
        min-height: calc(100svh - 118px);
        padding: 30px 16px 38px;
        align-items: end;
    }

    .hero-content {
        max-width: 100%;
        gap: 14px;
    }

    h1,
    .hero h1,
    .page-title h1,
    .page-hero h1,
    .product-info h1,
    .service-hero h1 {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1.03;
        max-width: 100%;
    }

    h2,
    .section-heading h2,
    .intro-grid h2,
    .story-layout h2,
    .lookbook-copy h2,
    .service-feature-band h2 {
        font-size: clamp(28px, 8.4vw, 38px);
        line-height: 1.08;
    }

    .hero-copy,
    .page-title p,
    .page-hero p,
    .intro-grid p,
    .story-layout p,
    .product-info > p:not(.eyebrow):not(.price) {
        font-size: 16px;
        line-height: 1.62;
    }

    .hero-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn {
        width: 100%;
        min-height: 50px;
        justify-content: center;
        padding: 14px 18px;
        border-radius: 999px;
        font-size: 14px;
    }

    .section,
    .page-title,
    .page-hero {
        width: var(--container);
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .page-title,
    .page-hero {
        width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }

    .section-heading,
    .intro-grid,
    .story-layout,
    .contact-layout,
    .product-detail,
    .products-layout,
    .lookbook-band,
    .site-footer {
        gap: 22px;
        grid-template-columns: 1fr;
    }

    .catalog-toolbar {
        width: var(--container);
        display: grid;
        gap: 10px;
        padding: 16px;
        border-radius: 18px;
    }

    .filters {
        width: 100%;
        overflow-x: auto;
        padding: 10px;
        border-radius: 16px;
        scrollbar-width: none;
    }

    .filters::-webkit-scrollbar {
        display: none;
    }

    .filters a {
        min-height: 42px;
        padding: 11px 13px;
        border-radius: 999px;
        font-size: 13px;
    }

    .product-grid,
    .catalog-grid,
    .collection-grid,
    .service-grid,
    .values,
    .detail-metrics,
    .trust-strip {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-card img {
        aspect-ratio: 1.12 / 1;
        border-radius: 18px 18px 0 0;
    }

    .product-card-body {
        min-height: auto;
        gap: 8px;
        padding: 18px;
    }

    .product-card-body h3 {
        margin: 0;
        font-size: 22px;
        line-height: 1.15;
    }

    .product-card-body p {
        font-size: 15px;
        line-height: 1.5;
    }

    .product-detail {
        padding-top: 30px;
    }

    .product-gallery-track {
        height: min(72vw, 310px);
        border-radius: 18px;
    }

    .product-gallery-slide img {
        height: 100%;
        border-radius: 18px;
    }

    .product-gallery-btn {
        top: calc(min(72vw, 310px) / 2);
        width: 42px;
        height: 42px;
        font-size: 25px;
    }

    .product-gallery-btn.prev {
        left: 10px;
    }

    .product-gallery-btn.next {
        right: 10px;
    }

    .product-gallery-dots {
        bottom: 88px;
    }

    .product-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 10px;
    }

    .product-thumbs img {
        height: 72px;
        border-radius: 10px;
    }

    .product-info {
        padding-top: 0;
    }

    .price {
        font-size: 28px;
    }

    .service-hero {
        width: var(--container);
        margin-top: 22px;
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .service-hero img {
        min-height: 260px;
        border-radius: 18px;
    }

    .service-detail-grid article,
    .process-list article,
    .detail-metrics div,
    .contact-card,
    .admin-card {
        border-radius: 16px;
    }

    .service-feature-band {
        width: var(--container);
        padding: 22px;
        border-radius: 18px;
    }

    .service-feature-band ul {
        grid-template-columns: 1fr;
    }

    .premium-slider,
    .story-slider {
        border-radius: 18px;
        padding-bottom: 56px;
    }

    .slider-panel {
        grid-template-columns: 1fr;
    }

    .slider-panel img {
        height: 230px;
        border-radius: 18px 18px 0 0;
    }

    .slider-copy {
        min-height: auto;
        padding: 20px;
    }

    .slider-copy h3 {
        font-size: 25px;
        line-height: 1.1;
    }

    .slider-btn {
        top: auto;
        bottom: 9px;
        width: 40px;
        height: 40px;
        transform: none;
    }

    .slider-btn.prev {
        left: 14px;
    }

    .slider-btn.next {
        right: 14px;
    }

    .slider-dots {
        right: 58px;
        bottom: 22px;
        left: 58px;
    }

    .contact-form input,
    .contact-form textarea,
    .admin-form input,
    .admin-form textarea,
    .admin-form select,
    .login-card input {
        min-height: 50px;
        font-size: 16px;
    }

    .site-footer {
        width: 100%;
        padding: 34px 16px 118px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 84px;
        min-height: 42px;
        padding: 0 14px;
        font-size: 12px;
    }
}

/* 5000 euro offer page */
.offer-strip {
    width: var(--container);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin: 0 auto clamp(42px, 6vw, 78px);
    padding: clamp(24px, 4vw, 42px);
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(38, 38, 38, 0.92)),
        url("../../uploads/products/demo-aria-1.jpg") center/cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.offer-strip h2,
.offer-strip p {
    max-width: 720px;
}

.offer-strip p:not(.eyebrow) {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
}

.offer-strip .btn.primary,
.offer-hero .btn.primary {
    color: #111111;
    background: #ffffff;
}

.offer-hero .btn.ghost.dark {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.62);
}

.offer-hero .btn.ghost.dark:hover {
    color: #111111;
    background: #ffffff;
}

.offer-hero {
    width: var(--container);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: end;
    gap: clamp(22px, 4vw, 44px);
    margin: clamp(26px, 5vw, 64px) auto clamp(44px, 7vw, 86px);
    padding: clamp(30px, 6vw, 70px);
    min-height: 560px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.30)),
        url("../../uploads/products/demo-nora-1.jpg") center/cover;
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.offer-hero-copy {
    max-width: 760px;
}

.offer-hero h1 {
    font-size: clamp(44px, 7vw, 92px);
}

.offer-hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2vw, 22px);
}

.offer-price-card {
    padding: clamp(22px, 4vw, 34px);
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.offer-price-card span {
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.offer-price-card strong {
    display: block;
    margin: 4px 0 10px;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 1;
}

.offer-price-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

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

.offer-grid article,
.offer-steps .process-list article {
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.offer-grid span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.offer-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.offer-showcase {
    width: var(--container);
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 14px;
    margin: 0 auto;
}

.offer-showcase img {
    width: 100%;
    height: clamp(230px, 30vw, 410px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
}

.offer-showcase img:first-child {
    height: clamp(300px, 38vw, 520px);
}

@media (max-width: 900px) {
    .offer-strip,
    .offer-hero {
        grid-template-columns: 1fr;
    }

    .offer-strip .btn {
        width: fit-content;
    }

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

    .offer-showcase {
        grid-template-columns: 1fr;
    }

    .offer-showcase img,
    .offer-showcase img:first-child {
        height: 260px;
    }
}

@media (max-width: 560px) {
    .offer-strip,
    .offer-hero {
        width: var(--container);
        border-radius: 18px;
        padding: 24px;
    }

    .offer-strip .btn,
    .offer-hero .btn {
        width: 100%;
        justify-content: center;
    }

    .offer-hero {
        min-height: 560px;
        align-items: end;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* Final polish: image placeholders and admin gallery ordering */
.product-card img,
.collection-card img,
.service-card img,
.slider-panel img,
.product-gallery-slide img,
.product-thumbs img {
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.05) 8%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.05) 33%),
        #151515;
    background-size: 220% 100%;
    animation: image-placeholder 1.35s linear infinite;
}

.product-card img[src],
.collection-card img[src],
.service-card img[src],
.slider-panel img[src],
.product-gallery-slide img[src],
.product-thumbs img[src] {
    animation: none;
}

@keyframes image-placeholder {
    to {
        background-position-x: -220%;
    }
}

.admin-gallery-preview input[type="number"] {
    width: 100%;
    min-height: 40px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 0 10px;
}

.admin-gallery-preview small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

/* Stable slider arrows */
.slider-btn,
.product-gallery-btn {
    display: inline-grid;
    place-items: center;
    font-size: 0;
    line-height: 1;
}

.slider-btn::before,
.product-gallery-btn::before {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.slider-btn.prev::before,
.product-gallery-btn.prev::before {
    transform: translateX(2px) rotate(-135deg);
}

.slider-btn.next::before,
.product-gallery-btn.next::before {
    transform: translateX(-2px) rotate(45deg);
}

@media (max-width: 560px) {
    .slider-btn::before,
    .product-gallery-btn::before {
        width: 9px;
        height: 9px;
        border-width: 2px;
    }
}

@media (max-width: 380px) {
    :root {
        --container: min(100% - 24px, 1180px);
    }

    .top-contact {
        font-size: 11px;
    }

    h1,
    .hero h1,
    .page-title h1,
    .product-info h1 {
        font-size: clamp(31px, 10.5vw, 40px);
    }

    .product-gallery-track {
        height: 245px;
    }

    .product-gallery-btn {
        top: 122px;
    }
}

/* Slim mobile navbar refinement */
@media (max-width: 760px) {
    .site-header .brand {
        flex: 0 1 auto;
        max-width: 210px;
        overflow: hidden;
    }

    .site-header .brand-icon {
        width: 36px;
        height: 32px;
    }

    .site-header .brand-text {
        font-size: 16px;
        letter-spacing: 0.14em;
    }

    .site-header .brand-logo {
        width: 126px;
        height: 34px;
        object-fit: contain;
        object-position: left center;
    }

    .site-header .nav-toggle {
        display: grid;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        place-content: center;
        padding: 0;
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.08);
    }

    .site-header .nav-toggle span {
        width: 20px;
        height: 2px;
        margin: 3px 0;
        background: #ffffff;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
    }
}

/* Dark navbar edge fix */
.site-header {
    background: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.site-header + .mobile-dock + main,
.site-header + main {
    margin-top: 0;
}

.site-nav {
    background: transparent;
}

@media (max-width: 760px) {
    body.nav-open::before {
        z-index: 8;
        background: rgba(0, 0, 0, 0.42);
    }

    .site-nav {
        background: #111111;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.30);
        transform-origin: top center;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .site-nav a {
        color: #ffffff;
    }

    .site-nav a.active,
    .site-nav a:hover {
        color: #111111;
        background: #ffffff;
    }

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

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

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

.hero-meta {
    display: none;
}

@media (max-width: 900px) {
    .site-nav {
        display: flex;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(0.98);
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }
}

/* Mobile hero/trust-strip rhythm */
@media (max-width: 760px) {
    .hero {
        min-height: auto;
        height: auto;
        padding-top: clamp(92px, 22vw, 128px);
        padding-bottom: 42px;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .hero h1 {
        margin-bottom: 12px;
    }

    .hero-copy {
        max-width: 31rem;
        margin-bottom: 0;
    }

    .trust-strip {
        width: var(--container);
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0 auto;
        padding: 18px 0 8px;
        border-top: 0;
        border-bottom: 1px solid rgba(17, 17, 17, 0.10);
    }

    .trust-strip div {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(17, 17, 17, 0.10);
    }

    .trust-strip div:last-child {
        border-bottom: 0;
    }

    .trust-strip strong {
        margin-bottom: 3px;
        font-size: 14px;
    }

    .trust-strip span,
    .inline-whatsapp {
        font-size: 14px;
        line-height: 1.5;
    }

    .intro-grid {
        padding-top: 42px;
    }
}

@media (max-width: 420px) {
    .hero {
        padding-top: 88px;
        padding-bottom: 36px;
    }

    .hero-copy {
        font-size: 15px;
        line-height: 1.55;
    }

    .trust-strip {
        padding-top: 14px;
    }
}

/* Internet-inspired furniture polish: lifestyle imagery, simple grids, mobile clarity */
.collection-grid {
    grid-template-columns: 1.25fr 0.95fr 0.95fr;
    align-items: stretch;
}

.collection-card:first-child {
    grid-row: span 2;
    min-height: 520px;
}

.collection-card {
    min-height: 250px;
    border-radius: 18px;
}

.collection-card::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 5%, rgba(0, 0, 0, 0.74)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.50), transparent 62%);
}

.collection-card span {
    max-width: 14rem;
    line-height: 1.08;
}

.service-card {
    border-radius: 18px;
}

.service-card span,
.service-card h3 {
    position: relative;
    z-index: 1;
}

.product-card {
    border-radius: 14px;
}

.product-card img {
    aspect-ratio: 1 / 0.82;
}

.product-card-body {
    padding: 18px;
}

.cta-band {
    border-radius: 0;
}

.lookbook-band {
    width: 100%;
    grid-template-columns: minmax(20px, 1fr) minmax(280px, 520px) minmax(280px, 580px) minmax(20px, 1fr);
    gap: clamp(20px, 4vw, 64px);
    padding-right: 0;
    padding-left: 0;
}

.lookbook-image {
    grid-column: 2;
}

.lookbook-copy {
    grid-column: 3;
}

.offer-strip {
    border-radius: 0;
}

@media (max-width: 900px) {
    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collection-card:first-child {
        grid-row: auto;
        grid-column: span 2;
        min-height: 360px;
    }

    .lookbook-band {
        width: var(--container);
        grid-template-columns: 1fr;
    }

    .lookbook-image,
    .lookbook-copy {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .collection-card,
    .collection-card:first-child {
        min-height: 138px;
        grid-column: auto;
        display: grid;
        grid-template-columns: 42% 1fr;
        align-items: end;
        padding: 14px;
        color: #111111;
        background: #ffffff;
        border: 1px solid var(--line);
        box-shadow: none;
    }

    .collection-card::after {
        display: none;
    }

    .collection-card img {
        position: static;
        width: 100%;
        height: 100%;
        min-height: 110px;
        border-radius: 12px;
        grid-row: 1 / span 2;
        object-fit: cover;
    }

    .collection-card span,
    .collection-card small {
        margin-left: 14px;
        color: #111111;
    }

    .collection-card span {
        align-self: end;
        font-size: 20px;
    }

    .collection-card small {
        align-self: start;
        color: var(--muted);
    }

    .product-grid,
    .catalog-grid {
        gap: 14px;
    }

    .product-card {
        border-radius: 14px;
        box-shadow: none;
    }

    .product-card:hover {
        transform: none;
    }

    .lookbook-band {
        width: var(--container);
        border: 0;
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .lookbook-copy {
        padding: 0;
    }

    .cta-band,
    .offer-strip {
        border-radius: 0;
    }
}

/* Verified company info and richer contact sections */
.company-snapshot {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.company-snapshot p,
.about-capabilities p,
.contact-quick-info p,
.visit-section li {
    color: var(--muted);
}

.snapshot-list {
    display: grid;
    gap: 16px;
}

.snapshot-list article {
    display: grid;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.snapshot-list article:last-child {
    border-bottom: 0;
}

.snapshot-list span,
.contact-quick-info span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.snapshot-list strong {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.25;
}

.capability-list,
.contact-quick-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 34px);
}

.capability-list article,
.contact-quick-info article {
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.contact-quick-info {
    padding-top: clamp(44px, 7vw, 74px);
    padding-bottom: clamp(20px, 4vw, 42px);
}

.contact-quick-info h3 {
    margin-top: 8px;
}

.visit-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
    padding-top: 0;
}

.visit-section ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.visit-section li {
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    .company-snapshot,
    .visit-section {
        grid-template-columns: 1fr;
    }

    .capability-list,
    .contact-quick-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .company-snapshot {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .contact-quick-info {
        padding-top: 40px;
    }
}

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

.social-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    color: #111111;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: #111111;
    border-color: #111111;
}

.social-link svg {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.social-link svg path {
    fill: currentColor;
}

.social-link svg rect,
.social-link svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.nav-social {
    display: none;
}

.footer-social {
    margin-top: 18px;
}

.site-footer .social-link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.site-footer .social-link:hover {
    color: #111111;
    background: #ffffff;
    border-color: #ffffff;
}

.contact-social {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.contact-social > strong {
    color: var(--ink);
    font-size: 14px;
}

@media (max-width: 900px) {
    .site-nav .nav-social {
        display: flex;
        padding: 12px 2px 2px;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-nav .social-link {
        flex: 1 1 0;
        min-height: 46px;
        padding: 0 12px;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.16);
        box-shadow: none;
    }

    .site-nav .social-link:hover {
        color: #111111;
        background: #ffffff;
        border-color: #ffffff;
    }
}

/* Full-screen home hero minus the visible top bars */
.video-hero {
    min-height: calc(100vh - var(--page-chrome-height));
    min-height: calc(100svh - var(--page-chrome-height));
}

@media (max-width: 900px) {
    :root {
        --top-contact-height: 36px;
        --site-header-height: 64px;
    }
}

@media (max-width: 760px) {
    .video-hero {
        min-height: calc(100svh - var(--page-chrome-height));
        padding-top: clamp(104px, 24vw, 140px);
        padding-bottom: calc(48px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 420px) {
    .video-hero {
        padding-top: 96px;
        padding-bottom: calc(42px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 760px) {
    .admin-color-fields {
        grid-template-columns: 1fr;
    }

    .product-colors > div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-colors button {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Keep complete product photography visible inside every product frame. */
.product-card img,
.slider-panel img,
.product-gallery-slide img,
.product-thumbs img {
    display: block;
    object-fit: contain;
    object-position: center;
    background: #f7f7f5;
}

.product-card img {
    height: auto;
    aspect-ratio: 3 / 2;
    padding: clamp(8px, 1.2vw, 14px);
}

.product-card:hover img {
    transform: none;
}

.slider-panel img {
    height: 100%;
    min-height: 0;
    padding: clamp(12px, 2vw, 24px);
}

.product-gallery-track {
    width: 100%;
    max-width: 100%;
    height: clamp(390px, 48vw, 620px);
    background: #f7f7f5;
}

.product-gallery-slide {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.product-gallery-slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: clamp(10px, 1.5vw, 20px);
    box-shadow: none;
}

.product-thumbs {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
}

.product-thumbs button {
    min-width: 0;
    background: #f7f7f5;
}

.product-thumbs img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    padding: 5px;
}

@media (max-width: 760px) {
    .section.product-detail {
        display: block;
        width: calc(100% - 32px);
        max-width: none;
        margin-right: 16px;
        margin-left: 16px;
        overflow: hidden;
    }

    .product-detail > *,
    .product-image-slider {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .product-image-slider {
        overflow: hidden;
    }

    .product-gallery-track,
    .product-thumbs {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .product-gallery-slide {
        width: 100%;
        max-width: 100%;
    }

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

    .product-card img {
        aspect-ratio: 3 / 2;
        padding: 7px;
    }

    .product-gallery-track {
        height: clamp(280px, 76vw, 430px);
    }

    .product-gallery-slide img {
        height: 100%;
        padding: 8px;
    }

    .slider-panel img {
        height: auto;
        min-height: 260px;
        max-height: 440px;
    }
}
