/* =====================================================================
   VINALDI — Architectural Textile Brand
   Premium editorial frontend (no shadows abuse, no ecommerce feel)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
    --bone:        #F8F6F2;
    --sand:        #ECE8E1;
    --paper:       #FFFFFF;
    --ink:         #1A1A1A;
    --ink-2:       #2a2a2a;
    --muted:       #6e6a63;
    --muted-2:     #9b958c;
    --line:        #e3ddd2;
    --line-soft:   #ece7dc;
    --champagne:   #B8A48C;
    --champagne-d: #8d7958;
    --overlay:     rgba(20, 18, 16, .42);

    --serif:       'Playfair Display', 'Cormorant Garamond', 'Times New Roman', serif;
    --serif-alt:   'Cormorant Garamond', 'Playfair Display', serif;
    --sans:        'Inter', 'Helvetica Neue', Arial, sans-serif;

    --container:   1380px;
    --gutter:      clamp(1.2rem, 4.2vw, 2.6rem);
    --section:     clamp(5rem, 11vw, 10rem);

    --ease:        cubic-bezier(.2, .8, .2, 1);
    --ease-out:    cubic-bezier(.16, 1, .3, 1);
    --t-1:         .35s var(--ease);
    --t-2:         .6s  var(--ease);
    --t-3:         1s   var(--ease-out);

    --radius:      0;
    --radius-sm:   0;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bone);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-1); }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--champagne); color: var(--paper); }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -.005em;
    margin: 0 0 .5em;
    line-height: 1.06;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem,   4.2vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }

p  { margin: 0 0 1rem; color: var(--ink-2); }

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--champagne-d);
}
.eyebrow--light { color: rgba(255,255,255,.78); }
.script {
    font-family: var(--serif-alt);
    font-style: italic;
    color: var(--champagne-d);
}

.h-display {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -.01em;
}

/* ── Layout ─────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.container--wide { max-width: 1620px; }
.section          { padding: var(--section) 0; position: relative; }
.section--sm      { padding: clamp(3rem, 6vw, 6rem) 0; }
.section--bone    { background: var(--bone); }
.section--sand    { background: var(--sand); }
.section--ink     { background: var(--ink); color: var(--paper); }
.section--ink h1,
.section--ink h2,
.section--ink h3 { color: var(--paper); }
.section--ink p  { color: rgba(255,255,255,.75); }

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(2.6rem, 6vw, 5rem);
}
.section-head h2 { margin-top: 1.1rem; }
.section-head p  {
    max-width: 580px;
    margin: 1.1rem auto 0;
    color: var(--muted);
    font-size: 1rem;
}

.section-rule {
    width: 1px; height: 56px;
    background: var(--champagne);
    margin: 0 auto 1.6rem;
    opacity: .9;
}

/* ── Buttons / Links ────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .9rem;
    padding: 1.05rem 2.1rem;
    background: var(--ink);
    color: var(--paper);
    border: 1px solid var(--ink);
    font-family: var(--sans);
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    transition: background var(--t-1), color var(--t-1), border-color var(--t-1);
}
.btn:hover { background: var(--champagne-d); border-color: var(--champagne-d); color: var(--paper); }
.btn--ghost {
    background: transparent;
    color: var(--paper);
    border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}
.btn--ghost-dark {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--ghost-dark:hover { background: var(--ink); color: var(--paper); }
.btn--light {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}
.btn--light:hover { background: var(--champagne); border-color: var(--champagne); color: var(--paper); }

/* Inline arrow link */
.lnk {
    display: inline-flex; align-items: center; gap: 1rem;
    font-family: var(--sans);
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: inherit;
    padding-bottom: .4rem;
    border-bottom: 1px solid currentColor;
    transition: gap var(--t-1), color var(--t-1);
}
.lnk::after {
    content: '→';
    transition: transform var(--t-1);
}
.lnk:hover { gap: 1.4rem; color: var(--champagne-d); }
.lnk:hover::after { transform: translateX(4px); }

/* ── Loader ─────────────────────────────────────────────────────── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bone);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s var(--ease-out), visibility .7s;
}
.loader__brand {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: .55em;
    color: var(--ink);
    padding-left: .55em;
    opacity: 0;
    transform: translateY(8px);
    animation: loadIn 1.1s var(--ease-out) forwards;
}
.loader__bar {
    position: absolute; left: 50%; bottom: 20%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--champagne);
    animation: loadBar 1.2s var(--ease-out) forwards;
}
@keyframes loadIn  { to { opacity: 1; transform: none; } }
@keyframes loadBar { to { width: 120px; } }
.loader.is-done { opacity: 0; visibility: hidden; }

/* ── Header (transparent → blur) ────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background var(--t-2), border-color var(--t-2);
}
.site-header.is-light       { color: var(--paper); }
.site-header.is-light .brand,
.site-header.is-light .nav-main a,
.site-header.is-light .hamburger span { color: var(--paper); }
.site-header.is-light .hamburger span { background: var(--paper); }
.site-header.is-light .header-search-btn {
    color: var(--paper);
    border-color: rgba(248, 246, 242, .42);
}
.site-header.is-light .header-search-btn:hover {
    background: rgba(255, 255, 255, .14);
}
.site-header.is-light .lang-switch__btn {
    color: rgba(248, 246, 242, .78);
    border-color: rgba(248, 246, 242, .35);
}
.site-header.is-light .lang-switch__btn.is-active {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--paper);
}

.site-header.is-scrolled {
    background: rgba(248, 246, 242, .78);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    backdrop-filter:         saturate(180%) blur(18px);
    border-bottom-color: var(--line-soft);
    color: var(--ink);
}
.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-main a { color: var(--ink); }
.site-header.is-scrolled .hamburger span { background: var(--ink); }
.site-header.is-scrolled .header-search-btn {
    color: var(--ink);
    border-color: var(--line-soft);
}
.site-header.is-scrolled .header-search-btn:hover {
    background: rgba(26, 26, 26, .06);
}
.site-header.is-scrolled .lang-switch__btn {
    color: var(--ink);
    border-color: var(--line-soft);
}
.site-header.is-scrolled .lang-switch__btn.is-active {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(.7rem, 1.2vw, 1.15rem);
    padding: clamp(1rem, 1.4vw, 1.35rem) 0;
}

.brand {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    letter-spacing: .58em;
    padding-left: .35em;
    color: var(--ink);
    flex-shrink: 0;
}
.brand img { max-height: 72px; width: auto; display: block; }

.nav-main {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: clamp(.75rem, 1.35vw, 1.25rem);
}
.nav-main a {
    position: relative;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-main a::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -8px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .55s var(--ease-out);
}
.nav-main a:hover::after,
.nav-main a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-main .nav-dealer {
    display: inline-flex;
    align-items: center;
    padding: .62rem 1rem;
    border: 1px solid rgba(184,164,140,.65);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(184,164,140,.98), rgba(141,121,88,.98));
    color: var(--paper);
    box-shadow: 0 10px 24px rgba(35, 28, 18, .12);
    letter-spacing: .14em;
}
.nav-main .nav-dealer::after { display: none; }
.nav-main .nav-dealer:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
    transform: translateY(-1px);
}
.site-header.is-scrolled .nav-main .nav-dealer { color: var(--paper); }

.nav-main .nav-design {
    display: inline-flex;
    align-items: center;
    margin-left: .15rem;
    padding: .62rem 1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: #1d3e63;
    color: #FFFFFF;
    box-shadow: 0 10px 24px rgba(29, 62, 99, .22);
    letter-spacing: .12em;
    font-weight: 600;
    white-space: nowrap;
}
.nav-main .nav-design::after { display: none; }
.nav-main .nav-design:hover {
    background: #16324f;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(29, 62, 99, .3);
}
.site-header.is-light .nav-main .nav-design,
.site-header.is-scrolled .nav-main .nav-design {
    color: #FFFFFF;
}

.has-sub { position: relative; }
.sub-menu {
    position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--paper);
    min-width: 240px;
    padding: .9rem 0;
    border-top: 2px solid var(--champagne);
    color: var(--ink);
    opacity: 0; visibility: hidden;
    transition: opacity var(--t-1), transform var(--t-1), visibility var(--t-1);
    z-index: 5;
}
.sub-menu a {
    display: block;
    padding: .75rem 1.6rem;
    color: var(--ink);
    font-size: .74rem;
    letter-spacing: .26em;
}
.sub-menu a::after { display: none; }
.sub-menu a:hover { background: var(--bone); color: var(--champagne-d); }
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Hamburger */
.hamburger {
    display: none;
    background: transparent; border: 0; padding: 0;
    width: 36px; height: 36px;
    position: relative;
}
.hamburger span {
    position: absolute; left: 6px; right: 6px;
    height: 1px;
    background: var(--ink);
    transition: top var(--t-1), transform var(--t-1), opacity var(--t-1);
}
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { top: 18px; width: 16px; right: 14px; }
.hamburger span:nth-child(3) { top: 23px; }
.hamburger.is-open span:nth-child(1) { top: 18px; transform: rotate(45deg);  width: 26px; right: 6px; }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* Ana sayfa: sabit header altında kategori bloğu (slider kaldırıldı) */
.home-start {
    padding-top: clamp(5.2rem, 10vw, 7rem);
}

/* ── Editorial product grid (ana sayfa #catalog — premium uniform) ── */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 70px auto 0;
    padding: 0 40px;
}
.ed-item {
    display: block;
    background: #fff;
    border: 1px solid #e8e3dc;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: transform .35s ease, box-shadow .35s ease;
}
.ed-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}
.ed-item__media {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: #f7f4ef;
}
.ed-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .55s ease;
    will-change: transform;
}
.ed-item:hover .ed-item__media img { transform: scale(1.03); }
.ed-item__media::after { content: none; }
.ed-item__index {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 10px;
    letter-spacing: .14em;
    color: #fff;
    background: rgba(0, 0, 0, .35);
    padding: 5px 8px;
    text-transform: uppercase;
}
.ed-item__cap { display: none; }
.ed-item__foot {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.ed-item__title {
    margin: 0;
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.3;
}
.ed-item__meta {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
}
@media (max-width: 1200px) {
    .editorial-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .editorial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 28px;
        margin-top: 40px;
    }
}

/* ── Ana sayfa koleksiyon kartları (sadece index.php) ────────────── */
.home-collections-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 560px));
    gap: 34px;
    justify-content: center;
    align-items: start;
    max-width: 1250px;
    margin: 80px auto 0;
    padding: 0 40px;
}
.home-collection-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e3dc;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}
.home-collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}
.home-collection-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}
.home-collection-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #f7f4ef;
}
.home-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .55s ease;
    will-change: transform;
}
.home-collection-card:hover .home-collection-image img { transform: scale(1.03); }
.home-collection-info {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.home-collection-title {
    margin: 0;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.3;
}
.home-collection-meta {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #999;
    flex-shrink: 0;
}
@media (max-width: 992px) {
    .home-collections-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        gap: 28px;
        margin-top: 50px;
    }
}
@media (max-width: 768px) {
    .home-collections-grid {
        padding: 0 20px;
        gap: 24px;
        margin-top: 40px;
    }
}

/* ── Koleksiyon sayfası kategori kartları (urunler.php — ana sayfa ile aynı dil) ─ */
.products-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 560px));
    gap: 34px;
    justify-content: center;
    align-items: start;
    max-width: 1250px;
    margin: 80px auto 0;
    padding: 0 40px;
}
.products-category-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e3dc;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}
.products-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}
.products-category-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}
.products-category-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #f7f4ef;
}
.products-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .55s ease;
    will-change: transform;
}
.products-category-card:hover .products-category-image img { transform: scale(1.03); }
.products-category-info {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.products-category-title {
    margin: 0;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.3;
}
.products-category-meta {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #999;
    flex-shrink: 0;
}
@media (max-width: 992px) {
    .products-category-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        gap: 28px;
        margin-top: 50px;
    }
}
@media (max-width: 768px) {
    .products-category-grid {
        padding: 0 20px;
        gap: 24px;
        margin-top: 40px;
    }
}

/* ── Kategori detay ürün kartları (sadece kategori.php) ─────────── */
.category-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 70px auto 0;
    padding: 0 40px;
}
.category-product-card {
    background: #fff;
    border: 1px solid #e8e3dc;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}
.category-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}
.category-product-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}
.category-product-card .product-image {
    width: 100%;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: #f7f4ef;
}
.category-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .55s ease;
    will-change: transform;
}
.category-product-card:hover .product-image img { transform: scale(1.03); }
.category-product-card .product-info {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.category-product-card .product-title {
    margin: 0;
    font-family: var(--serif);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.3;
}
.category-product-card .product-arrow {
    font-size: 18px;
    color: #777;
    line-height: 1;
    flex-shrink: 0;
    transition: transform .35s ease, color .35s ease;
}
.category-product-card:hover .product-arrow {
    transform: translateX(4px);
    color: #1a1a1a;
}
@media (max-width: 1200px) {
    .category-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .category-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .category-products-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 24px;
        margin-top: 40px;
    }
}

/* ── Featured collections (alternating split) ───────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
@media (max-width: 900px) {
    .split, .split--reverse { grid-template-columns: 1fr; direction: ltr; }
}

.split__media {
    position: relative;
    overflow: hidden;
    background: var(--sand);
    aspect-ratio: 4 / 5;
}
.split__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 2s var(--ease-out);
}
.split__media:hover img { transform: scale(1.04); }

.split__text { max-width: 520px; }
.split__text .eyebrow { margin-bottom: 1.4rem; }
.split__text h2       { margin-bottom: 1.4rem; }
.split__text p        { color: var(--muted); }

/* ── Category panels (ana sayfa & koleksiyon listesi — büyük editorial) ─ */
.cat-panels {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2vw, 1.8rem);
}
.cat-panel {
    position: relative;
    overflow: hidden;
    grid-column: span 6;
    aspect-ratio: 5 / 6;
    color: var(--paper);
    display: block;
    background: #1a1a1a;
}
.cat-panel:nth-child(odd)  { aspect-ratio: 5 / 6; }
.cat-panel:nth-child(even) { aspect-ratio: 5 / 6; }
@media (min-width: 1100px) {
    .cat-panel:nth-child(3n+1) { grid-column: span 7; aspect-ratio: 7 / 8; }
    .cat-panel:nth-child(3n+2) { grid-column: span 5; aspect-ratio: 5 / 8; }
    .cat-panel:nth-child(3n)   { grid-column: span 12; aspect-ratio: 21 / 8; }
}
@media (max-width: 800px) {
    .cat-panel { grid-column: span 12; aspect-ratio: 4 / 5; }
}
.cat-panel__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 2.5s var(--ease-out);
}
.cat-panel:hover .cat-panel__bg { transform: scale(1.06); }
.cat-panel::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 100%);
}
.cat-panel__content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: clamp(1.6rem, 3vw, 2.8rem) clamp(1.6rem, 3vw, 2.8rem);
}
.cat-panel__eyebrow {
    font-size: .68rem;
    letter-spacing: .42em;
    color: rgba(255,255,255,.78);
    text-transform: uppercase;
    margin-bottom: .8rem;
}
.cat-panel__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--paper);
    margin: 0 0 .35rem;
}
.cat-panel__desc {
    color: rgba(255,255,255,.82);
    font-size: .95rem;
    max-width: 480px;
    margin: 0;
}
.cat-panel__cue {
    margin-top: 1.4rem;
    display: inline-flex; align-items: center; gap: 1rem;
    color: var(--paper);
    font-size: .72rem;
    letter-spacing: .32em;
    text-transform: uppercase;
}
.cat-panel__cue::after {
    content: '';
    display: inline-block;
    width: 32px; height: 1px;
    background: currentColor;
    transition: width var(--t-2);
}
.cat-panel:hover .cat-panel__cue::after { width: 56px; }

/* ── Page head & cover ──────────────────────────────────────────── */
.page-head {
    padding: clamp(8rem, 14vw, 12rem) 0 clamp(2rem, 4vw, 3rem);
    text-align: center;
}
.page-head .crumb {
    color: var(--muted-2);
    font-size: .68rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.page-head h1 { margin: 0; }
.page-head p {
    max-width: 640px;
    margin: 1.2rem auto 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.cover {
    position: relative;
    height: clamp(64vh, 80vh, 86vh);
    min-height: 520px;
    overflow: hidden;
    color: var(--paper);
    background: #1a1a1a;
}
.cover__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 12s linear;
}
.cover.is-loaded .cover__bg { transform: scale(1.12); }
.cover::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.65) 100%);
}
.cover__inner {
    position: relative; z-index: 3;
    height: 100%;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 0 clamp(1.5rem, 6vw, 5rem) clamp(3.5rem, 8vw, 6rem);
    max-width: 1620px;
    margin: 0 auto;
}
.cover__crumb {
    color: rgba(255,255,255,.78);
    font-size: .7rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.cover h1 { color: var(--paper); max-width: 980px; }
.cover p  {
    color: rgba(255,255,255,.88);
    max-width: 640px;
    font-size: 1.04rem;
    margin-top: 1.2rem;
}

/* ── Editorial / Corporate content ──────────────────────────────── */
.editorial {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--ink-2);
    font-weight: 400;
}
.editorial > p:first-of-type::first-letter {
    font-family: var(--serif);
    font-size: 3.6rem;
    float: left;
    line-height: .9;
    padding: .1rem .9rem 0 0;
    color: var(--champagne-d);
}
.editorial p          { margin: 0 0 1.6rem; }
.editorial h2,
.editorial h3        { margin: 2.6rem 0 1rem; }
.editorial img       { margin: 2.4rem auto; width: 100%; }
.editorial blockquote {
    margin: 3rem 0;
    padding: 0 1.6rem;
    border-left: 1px solid var(--champagne);
    font-family: var(--serif-alt);
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--ink);
    font-style: italic;
}

.corp-tabs {
    display: flex; justify-content: center; gap: 0;
    flex-wrap: wrap;
    margin: 0 auto clamp(2.6rem, 5vw, 4rem);
    border-bottom: 1px solid var(--line);
    max-width: 760px;
}
.corp-tabs a {
    padding: 1.1rem 1.6rem;
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    transition: color var(--t-1), border-color var(--t-1);
}
.corp-tabs a:hover  { color: var(--ink); }
.corp-tabs a.active { color: var(--ink); border-color: var(--champagne); }

/* ── Product detail ─────────────────────────────────────────────── */
.section--detail-top {
    padding-top: clamp(7.5rem, 12vw, 10rem);
}
.pd-crumb {
    margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
    color: var(--muted-2);
    font-size: .7rem;
    letter-spacing: .4em;
    text-transform: uppercase;
}
.pd-crumb a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}
.pd-crumb a:hover { color: var(--ink); }

.pd-body {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}
@media (max-width: 980px) { .pd-body { grid-template-columns: 1fr; } }

.pd-gallery { display: grid; gap: clamp(.8rem, 1.4vw, 1.4rem); }
.pd-gallery__item {
    background: var(--sand);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 5 / 4;
    max-height: 650px;
}
.pd-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1.8s var(--ease-out);
}
.pd-gallery__item:hover img { transform: scale(1.04); }

.pd-info {
    position: sticky;
    top: 100px;
    align-self: start;
}
@media (max-width: 980px) { .pd-info { position: static; } }

.pd-info .eyebrow { display: block; margin-bottom: 1.2rem; }
.pd-info h1 {
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
    margin: 0 0 1.4rem;
}
.pd-info .lede {
    color: var(--muted);
    font-size: 1.02rem;
    border-top: 1px solid var(--line);
    padding-top: 1.6rem;
    margin-top: 1.6rem;
    margin-bottom: 0;
}

.pd-accordion {
    margin-top: 2rem;
    border-top: 1px solid var(--line);
}
.pd-acc-item { border-bottom: 1px solid var(--line); }
.pd-acc-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 1.3rem 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    font-family: var(--sans);
    font-size: .8rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: left;
}
.pd-acc-trigger .ico {
    width: 14px; height: 14px;
    position: relative;
    flex-shrink: 0;
}
.pd-acc-trigger .ico::before,
.pd-acc-trigger .ico::after {
    content: '';
    position: absolute;
    background: var(--ink);
    transition: transform .4s var(--ease);
}
.pd-acc-trigger .ico::before { left: 0; right: 0; top: 50%; height: 1px; }
.pd-acc-trigger .ico::after  { top: 0; bottom: 0; left: 50%; width: 1px; }
.pd-acc-item.is-open .pd-acc-trigger .ico::after { transform: scaleY(0); }

.pd-acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .55s var(--ease);
}
.pd-acc-panel__inner {
    padding: 0 0 1.5rem;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.8;
}
.pd-acc-panel__inner ul { padding: 0 0 0 1.1rem; list-style: disc; color: var(--muted); }
.pd-acc-panel__inner li { margin-bottom: .35rem; }

.pd-actions {
    display: flex; flex-wrap: wrap; gap: .8rem;
    margin-top: 2rem;
}

/* ── Contact ────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info dt {
    font-size: .68rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin: 0;
}
.contact-info dd {
    margin: .35rem 0 1.6rem;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.6;
}
.contact-info dd a:hover { color: var(--champagne-d); }

.contact-social {
    display: flex; gap: 1.6rem;
    margin-top: 1.4rem;
    font-size: .72rem;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.contact-form { max-width: 720px; }
.contact-form h3 { margin: 0 0 1.6rem; font-size: 1.4rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 1.6rem; }
.field label {
    display: block;
    font-size: .66rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .6rem;
}
.field input,
.field textarea,
.field select {
    width: 100%;
    padding: .85rem 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-size: 1rem;
    color: var(--ink);
    transition: border-color var(--t-1);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 140px; padding-top: .8rem; }

.field-check {
    display: flex; align-items: flex-start; gap: .75rem;
    font-size: .88rem;
    color: var(--muted);
    margin: 1rem 0 1.8rem;
}
.field-check input { margin-top: 6px; }

.map-wrap {
    margin-top: clamp(3rem, 6vw, 5rem);
    overflow: hidden;
    border-top: 1px solid var(--line);
}
.map-wrap iframe {
    width: 100%; height: 460px; border: 0; display: block;
    filter: grayscale(35%);
}

/* ── CTA strip ──────────────────────────────────────────────────── */
.cta-strip {
    text-align: center;
    padding: clamp(5rem, 11vw, 9rem) var(--gutter);
    background: var(--ink);
    color: var(--paper);
}
.cta-strip h2  { color: var(--paper); margin: 1.2rem auto 1rem; max-width: 780px; }
.cta-strip p   { max-width: 540px; margin: 0 auto 2.2rem; color: rgba(255,255,255,.7); }
.cta-strip .section-rule { background: var(--champagne); }

/* ── Brand story (two-column editorial) ─────────────────────────── */
.story {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }

.story__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--sand);
    overflow: hidden;
}
.story__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s var(--ease-out); }
.story__visual:hover img { transform: scale(1.04); }

.story__visual::after {
    content: '— EST. 1998';
    position: absolute;
    right: 1.4rem; bottom: 1.4rem;
    color: rgba(255,255,255,.85);
    font-size: .68rem;
    letter-spacing: .42em;
    text-transform: uppercase;
}

.story__text h2 { margin-bottom: 1.4rem; }
.story__text p  { color: var(--muted); max-width: 540px; }
.story__signature {
    margin-top: 1.6rem;
    font-family: var(--serif-alt);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--champagne-d);
}

/* ── Showcase strip (architectural) ─────────────────────────────── */
.showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(.6rem, 1.2vw, 1.2rem);
}
.showcase__cell {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--sand);
}
.showcase__cell:nth-child(1),
.showcase__cell:nth-child(4) { aspect-ratio: 3 / 4; }
.showcase__cell img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.6s var(--ease-out);
}
.showcase__cell:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .showcase { grid-template-columns: repeat(2, 1fr); } }

/* ── Vinaldi Gallery grid + lightbox ───────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.gallery-item,
.showcase__cell.gallery-item,
.showcase__cell.gallery-item:nth-child(1),
.showcase__cell.gallery-item:nth-child(4) {
    width: 100%;
    aspect-ratio: 3 / 4;
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    background: #F8F8F6;
    padding: 0;
    display: block;
    text-align: left;
}

.gallery-item img,
.showcase__cell.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease;
}

.gallery-item:hover img,
.showcase__cell.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.gallery-lightbox__dialog {
    position: relative;
    z-index: 2;
    max-width: 92vw;
    max-height: 88vh;
}

.gallery-lightbox__dialog img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    border-radius: 18px;
    background: #111111;
}

.gallery-lightbox__close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: #FFFFFF;
    color: #111111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

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

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox__close {
        top: 10px;
        right: 10px;
    }
}

/* ── Sales points / media pages ─────────────────────────────────── */
.page-head--premium {
    padding-top: clamp(8rem, 14vw, 12rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
    background:
        radial-gradient(circle at 82% 20%, rgba(184,164,140,.18), transparent 28%),
        linear-gradient(135deg, var(--bone), #fff);
    border-bottom: 1px solid var(--line-soft);
}
.page-head--premium p {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.05rem;
}
.sales-container { max-width: 1400px; }
.sales-hero {
    position: relative;
    min-height: clamp(400px, 48vw, 500px);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--paper);
    background:
        linear-gradient(110deg, rgba(12,12,12,.84), rgba(12,12,12,.44)),
        radial-gradient(circle at 74% 24%, rgba(184,155,104,.32), transparent 28%),
        linear-gradient(90deg, rgba(248,246,242,.10) 0 1px, transparent 1px 9px),
        linear-gradient(135deg, #15130f, #3a3329 44%, #0f0f0f);
}
.sales-hero::before {
    content: '';
    position: absolute;
    inset: -8%;
    background:
        radial-gradient(circle at 26% 44%, rgba(255,255,255,.16), transparent 18%),
        linear-gradient(90deg, transparent 0 18%, rgba(236,232,225,.22) 18% 19%, transparent 19% 35%, rgba(184,155,104,.20) 35% 36%, transparent 36% 100%);
    filter: blur(12px);
    opacity: .68;
    transform: scale(1.04);
}
.sales-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.16), rgba(0,0,0,.52));
}
.sales-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 68px),
        linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 68px);
    opacity: .28;
}
.sales-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 5rem;
}
.sales-hero__eyebrow {
    display: inline-block;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,.74);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .46em;
    text-transform: uppercase;
}
.sales-hero h1 {
    color: var(--paper);
    margin-bottom: 1rem;
    font-size: clamp(3rem, 6.6vw, 6.4rem);
}
.sales-hero p {
    max-width: 640px;
    margin-inline: auto;
    color: rgba(255,255,255,.82);
    font-size: clamp(1rem, 1.4vw, 1.22rem);
}
.sales-section {
    background:
        radial-gradient(circle at 8% 6%, rgba(184,155,104,.12), transparent 24%),
        var(--bone);
    padding-top: 0;
}
.locator-filter {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: clamp(-3.6rem, -5vw, -2.4rem) auto clamp(3rem, 5vw, 4.5rem);
    padding: clamp(1.3rem, 2.6vw, 2rem);
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(236,232,225,.9);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(26,26,26,.10);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}
.locator-filter__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
}
.locator-filter .field { margin: 0; }
.locator-filter .field label {
    color: #6e655b;
    font-size: .68rem;
    letter-spacing: .32em;
}
.locator-filter .field select,
.locator-filter .field input {
    min-height: 54px;
    padding: .9rem 1rem;
    border: 1px solid #e5ddd0;
    border-radius: 12px;
    background: #fff;
    font-weight: 500;
}
.locator-filter .field select:focus,
.locator-filter .field input:focus {
    border-color: #B89B68;
    box-shadow: 0 0 0 4px rgba(184,155,104,.12);
}
.locator-filter__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
    margin-top: 1.25rem;
}
.locator-filter__actions .btn {
    border-radius: 999px;
    background: #1A1A1A;
    border-color: #1A1A1A;
    padding: .95rem 1.65rem;
}
.locator-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.4rem, 2.4vw, 2rem);
    align-items: stretch;
}
.locator-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(236,232,225,.72);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.locator-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184,155,104,.55);
    box-shadow: 0 28px 70px rgba(0,0,0,.11);
}
.locator-card__head {
    padding-bottom: 1.4rem;
    margin-bottom: 1.35rem;
    border-bottom: 1px solid #ECE8E1;
}
.locator-card h2 {
    margin: 0 0 .8rem;
    color: #1A1A1A;
    font-family: var(--serif);
    font-size: clamp(2rem, 2.4vw, 30px);
    font-weight: 700;
    line-height: 1.08;
}
.locator-card__badge {
    display: inline-flex;
    align-items: center;
    padding: .45rem .72rem;
    border-radius: 999px;
    background: #F8F6F2;
    color: #7a6849;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .08em;
}
.locator-card__info {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.35rem;
}
.locator-info-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: .85rem;
    align-items: start;
}
.locator-info-row__icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: #F8F6F2;
    color: #B89B68;
    font-size: 1.05rem;
}
.locator-info-row strong {
    display: block;
    margin-bottom: .15rem;
    color: #1A1A1A;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.locator-info-row p {
    margin: 0;
    color: #5f5a52;
    font-size: .95rem;
    line-height: 1.65;
}
.locator-info-row a:hover { color: #B89B68; }
.locator-card__map {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 112px;
    margin-top: auto;
    margin-bottom: 1.25rem;
    padding: 1.1rem;
    overflow: hidden;
    border: 1px solid #ECE8E1;
    border-radius: 16px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(26,26,26,.90), rgba(26,26,26,.68)),
        linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 28px),
        linear-gradient(0deg, rgba(255,255,255,.10) 0 1px, transparent 1px 28px),
        #1A1A1A;
}
.locator-card__map::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    right: -34px;
    top: -28px;
    border-radius: 50%;
    background: rgba(184,155,104,.35);
    filter: blur(8px);
}
.locator-card__map-pin {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #B89B68;
    box-shadow: 0 0 0 9px rgba(184,155,104,.18);
    color: #fff;
}
.locator-card__map span:last-child {
    position: relative;
    z-index: 1;
}
.locator-card__map strong,
.locator-card__map small {
    display: block;
}
.locator-card__map small {
    color: rgba(255,255,255,.72);
    font-size: .82rem;
}
.locator-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin-top: auto;
}
.locator-card__actions .locator-btn:only-child { grid-column: 1 / -1; }
.locator-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .85rem 1rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.locator-btn:hover { transform: translateY(-2px); }
.locator-btn--outline {
    background: #fff;
    border: 1px solid #B89B68;
    color: #8d744d;
}
.locator-btn--outline:hover {
    background: #F8F6F2;
    color: #1A1A1A;
}
.locator-btn--gold {
    background: #B89B68;
    border: 1px solid #B89B68;
    color: #fff;
    box-shadow: 0 12px 28px rgba(184,155,104,.24);
}
.locator-btn--gold:hover {
    background: #1A1A1A;
    border-color: #1A1A1A;
    color: #fff;
}
.locator-empty {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 5.5rem);
    background: #fff;
    border: 1px solid #ECE8E1;
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(0,0,0,.07);
}
.locator-empty__icon {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    background: #F8F6F2;
    color: #B89B68;
    font-size: 2.6rem;
    font-family: var(--serif);
}
.locator-empty h2 { margin-top: 1rem; }
.locator-empty p { color: var(--muted); margin-inline: auto; max-width: 540px; }

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.8rem);
}
.media-card__button {
    width: 100%;
    padding: 0;
    border: 0;
    background: var(--paper);
    color: inherit;
    text-align: left;
}
.media-card__visual {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand);
}
.media-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out), opacity var(--t-1);
}
.media-card__button:hover img { transform: scale(1.04); opacity: .92; }
.media-card__badge,
.media-card__play {
    position: absolute;
    z-index: 2;
    color: var(--paper);
    background: rgba(26,26,26,.68);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: .66rem;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.media-card__badge { top: 1rem; left: 1rem; padding: .45rem .7rem; }
.media-card__play {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: .9rem 1.2rem;
    border: 1px solid rgba(255,255,255,.32);
}
.media-card__body {
    display: block;
    padding: 1.2rem 0 0;
}
.media-card__body strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.25;
}
.media-card__body small {
    display: block;
    margin-top: .55rem;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
}

.media-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: var(--gutter);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-1), visibility var(--t-1);
}
.media-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.media-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 8, 7, .82);
}
.media-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(1080px, 100%);
}
.media-modal__content {
    background: #0b0b0b;
    box-shadow: 0 30px 80px rgba(0,0,0,.36);
}
.media-modal__content iframe,
.media-modal__content img {
    width: 100%;
    display: block;
}
.media-modal__content iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}
.media-modal__content img {
    max-height: 78vh;
    object-fit: contain;
    background: #0b0b0b;
}
.media-modal__title {
    margin: 1rem 0 0;
    color: var(--paper);
    font-size: clamp(1.3rem, 2.2vw, 2rem);
}
.media-modal__close {
    position: fixed;
    right: var(--gutter);
    top: var(--gutter);
    z-index: 3;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: var(--paper);
    padding: .85rem 1rem;
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .locator-grid,
    .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .locator-filter__grid { grid-template-columns: 1fr 1fr; }
    .locator-filter__search { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
    .locator-grid,
    .media-grid,
    .locator-filter__grid,
    .locator-card__actions { grid-template-columns: 1fr; }
    .locator-filter__actions {
        align-items: stretch;
        flex-direction: column;
    }
    .locator-filter__actions .btn,
    .locator-filter__actions .lnk { justify-content: center; }
    .sales-hero { min-height: 420px; }
    .media-modal { padding: 1rem; }
    .media-modal__close { right: 1rem; top: 1rem; }
}

/* ── AI section ─────────────────────────────────────────────────── */
.ai {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
@media (max-width: 900px) { .ai { grid-template-columns: 1fr; } }

.ai__copy h2 { margin-bottom: 1.4rem; }
.ai__copy p  { color: rgba(255,255,255,.78); max-width: 560px; }
.ai__list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    counter-reset: ai;
}
.ai__list li {
    counter-increment: ai;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.2rem;
    font-size: 1rem;
}
.ai__list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.ai__list li::before {
    content: counter(ai, decimal-leading-zero);
    font-family: var(--serif);
    color: var(--champagne);
    font-size: 1rem;
    letter-spacing: .15em;
    align-self: start;
}

.ai__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #2a2520;
}
.ai__visual img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: .92;
    transition: transform 2s var(--ease-out);
}
.ai__visual:hover img { transform: scale(1.04); }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
    background: #0c0c0c;
    color: #b4b0a7;
    padding: clamp(4rem, 8vw, 7rem) 0 1.8rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
    font-family: var(--serif);
    color: var(--paper);
    font-size: 1.05rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin: 0 0 1.6rem;
}
.site-footer p, .site-footer li, .site-footer a {
    color: #aeaaa1;
    font-size: .9rem;
    line-height: 1.95;
}
.site-footer a:hover { color: var(--champagne); }
.site-footer li      { margin-bottom: .2rem; }
.footer-brand {
    font-family: var(--serif);
    color: var(--paper);
    font-size: 1.6rem;
    letter-spacing: .45em;
    margin-bottom: 1.2rem;
}
.footer-tagline {
    font-family: var(--serif-alt);
    font-style: italic;
    color: var(--champagne);
    margin-top: 1.4rem;
    font-size: 1.05rem;
}
.social {
    display: flex; gap: 1.6rem; margin-top: 1.4rem;
    font-size: .72rem;
    letter-spacing: .32em;
    text-transform: uppercase;
}
.footer-bottom {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: .45rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: .76rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #8a857c;
}

.footer-credit {
    color: #8a857c;
    letter-spacing: .18em;
}

.footer-credit a {
    color: #B4B0A7;
    text-decoration: none;
    transition: color .28s ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
    color: #B89A63;
}

/* ── Alerts ─────────────────────────────────────────────────────── */
.alert {
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    font-size: .9rem;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    letter-spacing: .02em;
}
.alert--success { border-color: #c8dccc; color: #1f5b30; background: #f4f9f5; }
.alert--error   { border-color: #e3c3c3; color: #79221f; background: #fbf3f3; }

/* ── Empty state ────────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 6rem 1rem;
    color: var(--muted);
}
.empty-state .eyebrow { display: block; margin-bottom: 1rem; }

/* ── Mobile navigation ──────────────────────────────────────────── */
@media (max-width: 980px) {
    .hamburger {
        display: grid;
        place-items: center;
        position: relative;
        z-index: 3;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: transparent;
        transition: background .3s ease;
    }
    .hamburger.is-open {
        background: rgba(26, 26, 26, .06);
    }

    .site-header,
    .site-header.is-scrolled {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }
    .site-header.is-scrolled {
        background: rgba(248, 246, 242, .97);
    }

    body.is-locked .site-header {
        z-index: 10050;
    }

    .nav-main {
        position: fixed;
        top: 0;
        left: 0;
        width: min(360px, 86vw);
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: .15rem;
        padding: 5.75rem 1.35rem calc(1.6rem + env(safe-area-inset-bottom, 0px));
        background:
            linear-gradient(180deg, #FFFFFF 0%, #F8F6F2 48%, #F3EEE6 100%);
        border-right: 1px solid rgba(184, 155, 104, .22);
        transform: translateX(-105%);
        transition: transform .48s var(--ease-out);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 2;
        color: #1A1A1A;
        overscroll-behavior: contain;
        pointer-events: none;
        box-shadow: 24px 0 60px rgba(20, 18, 16, .18);
    }
    .nav-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 1.35rem;
        right: 1.35rem;
        height: 2px;
        background: linear-gradient(90deg, #B89B68, rgba(184, 155, 104, .15));
    }
    .nav-main.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .site-header .nav-main,
    .site-header.is-light .nav-main,
    .site-header.is-scrolled .nav-main,
    .site-header .nav-main > a,
    .site-header.is-light .nav-main > a,
    .site-header.is-scrolled .nav-main > a,
    .site-header .nav-main .has-sub > a,
    .site-header.is-light .nav-main .has-sub > a,
    .site-header.is-scrolled .nav-main .has-sub > a {
        color: #1A1A1A !important;
    }

    .nav-main > a,
    .nav-main .has-sub > a {
        position: relative;
        display: block;
        padding: 1.05rem .85rem;
        margin: 0;
        border: 0 !important;
        border-radius: 14px;
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .22em;
        text-transform: uppercase;
        transition: background .25s ease, color .25s ease, padding-left .25s ease;
    }
    .nav-main > a::after,
    .nav-main .has-sub > a::after {
        display: none !important;
    }
    .nav-main > a:hover,
    .nav-main > a:focus-visible,
    .nav-main .has-sub > a:hover,
    .nav-main .has-sub > a:focus-visible,
    .nav-main > a.active,
    .nav-main .has-sub > a.active {
        background: rgba(184, 155, 104, .12);
        color: #8B7048 !important;
        padding-left: 1.05rem;
    }
    .nav-main > a.active::before,
    .nav-main .has-sub > a.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 22%;
        bottom: 22%;
        width: 2px;
        border-radius: 2px;
        background: #B89B68;
    }

    .has-sub {
        display: block;
        width: 100%;
        margin: .15rem 0 .55rem;
    }

    .has-sub .sub-menu,
    .site-header .nav-main .sub-menu {
        position: static !important;
        left: auto !important;
        width: auto !important;
        min-width: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block;
        margin: .35rem 0 .2rem .55rem;
        padding: .55rem !important;
        border: 1px solid rgba(184, 155, 104, .18) !important;
        border-left: 2px solid #B89B68 !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, .72) !important;
        box-shadow: none !important;
        z-index: auto !important;
        overflow: visible;
    }

    .site-header .nav-main .sub-menu__intro {
        display: none;
    }

    .site-header .nav-main .sub-menu__grid {
        display: grid;
        gap: .2rem;
        padding: 0;
    }

    .sub-menu a,
    .site-header .nav-main .sub-menu a,
    .site-header.is-light .nav-main .sub-menu a,
    .site-header.is-scrolled .nav-main .sub-menu a {
        display: grid !important;
        grid-template-columns: 28px 1fr;
        grid-template-rows: auto auto;
        column-gap: .55rem;
        padding: .7rem .55rem !important;
        border: 0 !important;
        border-radius: 10px !important;
        font-size: inherit !important;
        font-weight: 500;
        letter-spacing: normal;
        text-transform: none;
        white-space: normal !important;
        color: #1A1A1A !important;
        background: transparent !important;
    }

    .site-header .nav-main .sub-menu a i {
        grid-row: 1 / span 2;
        align-self: center;
        color: #B89B68;
        font-size: .62rem;
    }

    .site-header .nav-main .sub-menu a strong {
        font-size: .68rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #1A1A1A !important;
    }

    .site-header .nav-main .sub-menu a span {
        font-size: .72rem;
        color: #8A847C !important;
        letter-spacing: 0;
        text-transform: none;
    }

    .sub-menu a:hover,
    .sub-menu a:focus-visible,
    .site-header .nav-main .sub-menu a:hover,
    .site-header .nav-main .sub-menu a:focus-visible {
        background: rgba(184, 155, 104, .12) !important;
        color: inherit !important;
        transform: none;
    }

    .site-header .nav-main .nav-dealer,
    .site-header.is-light .nav-main .nav-dealer,
    .site-header.is-scrolled .nav-main .nav-dealer {
        margin-top: .55rem;
        margin-bottom: .35rem;
        padding: 1.05rem 1.15rem !important;
        border: 0 !important;
        border-radius: 999px !important;
        text-align: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        color: #FFFFFF !important;
        letter-spacing: .18em;
        font-weight: 600;
        background: linear-gradient(135deg, #B89B68, #9C7E4F) !important;
        box-shadow: 0 14px 34px rgba(184, 155, 104, .28);
    }
    .site-header .nav-main .nav-dealer:hover,
    .site-header.is-light .nav-main .nav-dealer:hover {
        background: #161616 !important;
        transform: translateY(-1px);
    }

    .site-header .nav-main .nav-design,
    .site-header.is-light .nav-main .nav-design,
    .site-header.is-scrolled .nav-main .nav-design {
        margin-top: auto;
        margin-bottom: .35rem;
        padding: 1.05rem 1.15rem !important;
        border: 0 !important;
        border-radius: 999px !important;
        text-align: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        color: #FFFFFF !important;
        letter-spacing: .14em;
        font-weight: 700;
        background: #1d3e63 !important;
        box-shadow: 0 14px 34px rgba(29, 62, 99, .28);
    }
    .site-header .nav-main .nav-design:hover,
    .site-header.is-light .nav-main .nav-design:hover {
        background: #16324f !important;
        transform: translateY(-1px);
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(18, 16, 14, .52);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .35s ease, visibility .35s ease;
        z-index: 10040;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    .nav-backdrop.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .brand {
        letter-spacing: .28em;
        font-size: clamp(1.05rem, 4.5vw, 1.3rem);
        max-width: calc(100% - 64px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        position: relative;
        z-index: 3;
    }
    .brand img { max-height: 56px; }

    .site-header.is-light .hamburger span,
    .site-header .hamburger span {
        background: var(--ink);
    }
    .site-header.is-light:not(.is-scrolled):not(.nav-open) .hamburger span {
        background: var(--paper);
    }
    .site-header.is-light .hamburger.is-open span,
    .site-header .hamburger.is-open span,
    body.is-locked .site-header .hamburger span {
        background: #1A1A1A !important;
    }
}

/* ── Reveal-on-scroll ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }

.reveal-img {
    position: relative;
    overflow: hidden;
}
.reveal-img::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--bone);
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 1.4s var(--ease-out);
    z-index: 2;
}
.reveal-img.in-view::before { transform: scaleX(0); }
.reveal-img img {
    transform: scale(1.06);
    transition: transform 2.4s var(--ease-out);
}
.reveal-img.in-view img { transform: scale(1); }

/* Stagger helpers */
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

/* ── Reduce motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: .001s !important;
        animation-duration: .001s !important;
    }
}

/* ── Utility ────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.no-mb { margin-bottom: 0 !important; }

@media (max-width: 700px) {
    .pd-info h1 { font-size: 2rem; }
}

/* =====================================================================
   Sales Points Redesign v2 - premium card grid
   ===================================================================== */
.sales-points-page {
    background: #F8F6F2;
    min-height: 100vh;
    padding-bottom: 1px;
}

.sales-points-page .sales-hero {
    height: 460px;
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.46)),
        radial-gradient(circle at 70% 30%, rgba(184,155,104,.35), transparent 28%),
        linear-gradient(120deg, #17140f 0%, #3a3128 46%, #0d0d0d 100%);
}

.sales-points-page .sales-hero::before {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        linear-gradient(90deg, transparent 0 14%, rgba(255,255,255,.18) 14% 15%, transparent 15% 31%, rgba(236,232,225,.20) 31% 32%, transparent 32%),
        radial-gradient(circle at 28% 48%, rgba(255,255,255,.16), transparent 22%),
        radial-gradient(circle at 76% 58%, rgba(184,155,104,.18), transparent 24%);
    filter: blur(14px);
    opacity: .82;
}

.sales-points-page .sales-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 72px),
        linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 72px);
    opacity: .28;
}

.sales-points-page .sales-hero__content {
    position: relative;
    z-index: 2;
    width: min(920px, calc(100% - 48px));
    padding-top: 60px;
}

.sales-points-page .sales-hero__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(255,255,255,.78);
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .42em;
    text-transform: uppercase;
}

.sales-points-page .sales-hero h1 {
    margin: 0;
    color: #FFFFFF;
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 500;
    line-height: .98;
}

.sales-points-page .sales-hero p {
    max-width: 620px;
    margin: 22px auto 0;
    color: rgba(255,255,255,.84);
    font-family: Inter, sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
}

.sales-points-page .sales-container {
    width: min(1400px, calc(100% - 48px));
    max-width: 1400px;
    margin: -70px auto 100px;
    position: relative;
    z-index: 5;
    padding: 0;
}

.sales-filter-card {
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: 1fr 1fr 2fr auto auto;
    gap: 16px;
    align-items: end;
    margin-bottom: 48px;
}

.sales-filter-field label {
    display: block;
    margin-bottom: 8px;
    color: #776c5e;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.sales-filter-card select,
.sales-filter-card input {
    width: 100%;
    height: 52px;
    border: 1px solid #DED8CC;
    border-radius: 14px;
    background: #FFFFFF;
    padding: 0 16px;
    color: #1A1A1A;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.sales-filter-card select {
    background-image:
        linear-gradient(45deg, transparent 50%, #8B7048 50%),
        linear-gradient(135deg, #8B7048 50%, transparent 50%);
    background-position:
        calc(100% - 19px) 50%,
        calc(100% - 14px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.sales-filter-card select:focus,
.sales-filter-card input:focus {
    border-color: #B89B68;
    box-shadow: 0 0 0 4px rgba(184,155,104,.14);
}

.sales-filter-btn,
.sales-filter-clear {
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.sales-filter-btn {
    border: 1px solid #1A1A1A;
    background: #1A1A1A;
    color: #FFFFFF;
}

.sales-filter-clear {
    border: 1px solid #B89B68;
    background: transparent;
    color: #8B7048;
}

.sales-filter-btn:hover,
.sales-filter-clear:hover {
    transform: translateY(-2px);
}

.sales-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.sales-card {
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 55px rgba(0,0,0,.06);
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.sales-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(0,0,0,.10);
    border-color: rgba(184,155,104,.45);
}

.sales-card__top {
    padding-bottom: 4px;
}

.sales-card__location {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #F3EEE6;
    color: #8B7048;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sales-card h2 {
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1;
    margin: 18px 0 26px;
    color: #1A1A1A;
    font-weight: 600;
}

.sales-card__body {
    display: grid;
    gap: 0;
}

.sales-info-row {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid #EEE8DD;
}

.sales-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F6F1E9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
}

.sales-info-row strong {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8B7048;
    margin-bottom: 5px;
    font-family: Inter, sans-serif;
    font-weight: 800;
}

.sales-info-row p,
.sales-info-row a {
    margin: 0;
    color: #333333;
    font-size: 15px;
    line-height: 1.55;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.sales-info-row a:hover {
    color: #B89B68;
}

.sales-map-preview {
    position: relative;
    overflow: hidden;
    min-height: 118px;
    margin-top: 18px;
    padding: 20px 20px 20px 78px;
    border-radius: 18px;
    border: 1px solid #ECE8E1;
    background:
        linear-gradient(135deg, rgba(26,26,26,.88), rgba(26,26,26,.68)),
        linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 30px),
        linear-gradient(0deg, rgba(255,255,255,.12) 0 1px, transparent 1px 30px),
        #1A1A1A;
    color: #FFFFFF;
    text-decoration: none;
}

.sales-map-preview::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(184,155,104,.35);
    filter: blur(8px);
}

.sales-map-preview__pin {
    position: absolute;
    left: 22px;
    top: 28px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #B89B68;
    box-shadow: 0 0 0 9px rgba(184,155,104,.18);
    display: grid;
    place-items: center;
    color: #FFFFFF;
}

.sales-map-preview strong,
.sales-map-preview small {
    position: relative;
    z-index: 1;
    display: block;
}

.sales-map-preview strong {
    font-family: Inter, sans-serif;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sales-map-preview small {
    margin-top: 6px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.sales-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 26px;
}

.sales-card__actions .sales-btn:only-child {
    grid-column: 1 / -1;
}

.sales-btn {
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.sales-btn--outline {
    border: 1px solid #B89B68;
    color: #8B7048;
    background: transparent;
}

.sales-btn--gold {
    background: #B89B68;
    color: #FFFFFF;
    border: 1px solid #B89B68;
    box-shadow: 0 12px 28px rgba(184,155,104,.24);
}

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

.sales-btn--outline:hover {
    background: #F8F6F2;
    color: #1A1A1A;
}

.sales-btn--gold:hover {
    background: #1A1A1A;
    border-color: #1A1A1A;
    color: #FFFFFF;
}

.sales-empty {
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(0,0,0,.07);
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 84px);
    text-align: center;
}

.sales-empty__icon {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #F8F6F2;
    color: #B89B68;
    font-family: "Playfair Display", serif;
    font-size: 44px;
}

.sales-empty h2 {
    margin-top: 16px;
}

.sales-empty p {
    max-width: 560px;
    margin: 0 auto 26px;
    color: #6E6A63;
}

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

    .sales-filter-card {
        grid-template-columns: 1fr 1fr;
    }

    .sales-filter-field--search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .sales-points-page .sales-hero {
        height: 340px;
        min-height: 340px;
    }

    .sales-points-page .sales-hero__content {
        width: min(100% - 28px, 920px);
        padding-top: 48px;
    }

    .sales-points-page .sales-container {
        width: min(calc(100% - 28px), 1400px);
        margin-top: -45px;
        margin-bottom: 70px;
    }

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

    .sales-filter-card {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 18px;
        margin-bottom: 30px;
    }

    .sales-filter-btn,
    .sales-filter-clear {
        width: 100%;
    }

    .sales-card {
        padding: 24px;
        border-radius: 20px;
    }

    .sales-card__actions {
        grid-template-columns: 1fr;
    }
}

/* =====================================================================
   Sales Points Redesign v3 - compact list cards + detail page
   ===================================================================== */
.sales-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sales-list-card {
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(0,0,0,.045);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
}

.sales-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    border-color: rgba(184,155,104,.45);
}

.sales-list-card__link {
    display: block;
    min-height: 100%;
    padding: 22px;
    color: inherit;
    text-decoration: none;
}

.sales-list-card__badge {
    display: inline-flex;
    background: #F3EEE6;
    color: #8B7048;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sales-list-card__title {
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    font-size: 28px;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #1A1A1A;
}

.sales-list-card__info {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.sales-list-card__icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F6F1E9;
    font-size: 13px;
}

.sales-list-card__info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
}

.sales-list-card__footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #EEE8DD;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B89B68;
}

.sales-list-card__footer span:last-child {
    transition: transform .3s ease;
}

.sales-list-card:hover .sales-list-card__footer span:last-child {
    transform: translateX(4px);
}

.sales-detail-page {
    background: #F8F6F2;
    min-height: 100vh;
    padding: clamp(8rem, 13vw, 11rem) 0 clamp(5rem, 9vw, 8rem);
}

.sales-detail-container {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

.sales-back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: #8B7048;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
}

.sales-back-link:hover {
    color: #1A1A1A;
}

.sales-detail-card {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 4vw, 48px);
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0,0,0,.08);
    padding: clamp(24px, 4vw, 42px);
}

.sales-detail-info {
    min-width: 0;
}

.sales-detail-location {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #F3EEE6;
    color: #8B7048;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sales-detail-info h1 {
    margin: 20px 0 28px;
    color: #1A1A1A;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
}

.sales-detail-rows {
    display: grid;
}

.sales-detail-row {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid #EEE8DD;
}

.sales-detail-row__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #F6F1E9;
    display: grid;
    place-items: center;
}

.sales-detail-row strong {
    display: block;
    margin-bottom: 6px;
    color: #8B7048;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sales-detail-row p,
.sales-detail-row a {
    margin: 0;
    color: #333333;
    font-size: 16px;
    line-height: 1.65;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.sales-detail-row a:hover {
    color: #B89B68;
}

.sales-detail-map {
    min-height: 420px;
    overflow: hidden;
    border-radius: 22px;
    background: #ECE8E1;
}

.sales-detail-map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    filter: grayscale(18%);
}

.sales-detail-map__empty {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px;
    text-align: center;
    background:
        radial-gradient(circle at 70% 20%, rgba(184,155,104,.20), transparent 28%),
        linear-gradient(135deg, #F8F6F2, #ECE8E1);
}

.sales-detail-map__empty > span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #FFFFFF;
    color: #B89B68;
    font-size: 30px;
}

.sales-detail-map__empty h2 {
    margin: 8px 0 0;
    font-size: clamp(24px, 3vw, 34px);
}

.sales-detail-map__empty p {
    max-width: 360px;
    color: #6E6A63;
}

@media (max-width: 1100px) {
    .sales-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sales-detail-card {
        grid-template-columns: 1fr;
    }

    .sales-detail-map {
        min-height: 360px;
    }
}

@media (max-width: 700px) {
    .sales-grid {
        grid-template-columns: 1fr;
    }

    .sales-list-card__title {
        font-size: 24px;
    }

    .sales-detail-container {
        width: min(calc(100% - 28px), 1400px);
    }

    .sales-detail-card {
        padding: 22px;
        border-radius: 22px;
    }

    .sales-detail-row {
        grid-template-columns: 34px 1fr;
    }

    .sales-detail-row__icon {
        width: 34px;
        height: 34px;
    }
}

/* =====================================================================
   Media Redesign v2 - premium gallery + modal
   ===================================================================== */
.media-hero {
    background: #F8F6F2;
    padding: clamp(8rem, 13vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.media-container {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

.media-hero__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #8B7048;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .38em;
    text-transform: uppercase;
}

.media-hero h1 {
    margin: 0;
    color: #1A1A1A;
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    font-size: clamp(64px, 8vw, 108px);
    font-weight: 500;
    line-height: .95;
}

.media-hero p {
    max-width: 620px;
    margin: 22px auto 0;
    color: #666666;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.media-page {
    background: #F8F6F2;
    padding: 0 0 clamp(5rem, 9vw, 8rem);
}

.media-grid {
    width: min(1400px, calc(100% - 48px));
    margin: 70px auto 120px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.media-grid.media-grid--single {
    grid-template-columns: minmax(0, 440px);
    justify-content: start;
}

.media-card {
    display: block;
    width: 100%;
    padding: 0;
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0,0,0,.06);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0,0,0,.10);
    border-color: rgba(184,155,104,.45);
}

.media-card__visual {
    aspect-ratio: 16 / 9;
    position: relative;
    display: block;
    overflow: hidden;
    background: #111111;
}

.media-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, opacity .45s ease;
}

.media-card:hover .media-card__visual img {
    transform: scale(1.045);
    opacity: .92;
}

.media-card__type {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #1A1A1A;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.media-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 68px;
    height: 68px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.88);
    color: #B89B68;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(0,0,0,.22);
    font-size: 24px;
    line-height: 1;
    padding-left: 4px;
    transition: transform .35s ease, background .35s ease;
}

.media-card:hover .media-card__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #FFFFFF;
}

.media-card__content {
    display: block;
    padding: 22px;
}

.media-card__content strong {
    display: block;
    color: #1A1A1A;
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
}

.media-card__content small {
    display: block;
    margin-top: 10px;
    color: #666666;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.media-card__content em {
    display: inline-flex;
    margin-top: 18px;
    color: #B89B68;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.media-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 84px);
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(0,0,0,.07);
}

.media-empty__icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #F8F6F2;
    color: #B89B68;
    font-size: 34px;
}

.media-empty h2 {
    margin: 0 0 12px;
}

.media-empty p {
    max-width: 520px;
    margin: 0 auto;
    color: #666666;
}

.media-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.media-modal.is-open {
    display: flex;
}

.media-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.78);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.media-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
    background: #111111;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,.45);
}

.media-modal__body {
    background: #111111;
}

.media-modal__body iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.media-modal__body img {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    background: #111111;
}

.media-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: #111111;
    border: 0;
    cursor: pointer;
    z-index: 2;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, background .25s ease;
}

.media-modal__close:hover {
    transform: scale(1.06);
    background: #FFFFFF;
}

body.media-modal-open {
    overflow: hidden;
}

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

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

    .media-hero h1 {
        font-size: 56px;
    }

    .media-container {
        width: min(calc(100% - 28px), 1400px);
    }

    .media-modal {
        padding: 14px;
    }

    .media-modal__dialog {
        border-radius: 18px;
    }

    .media-modal__close {
        top: 10px;
        right: 10px;
    }
}

/* =====================================================================
   Vinaldi Premium UI Refresh - global public polish
   ===================================================================== */
:root {
    --bone: #FFFFFF;
    --sand: #FAFAFA;
    --paper: #FFFFFF;
    --ink: #161616;
    --ink-2: #2A2A2A;
    --muted: #666666;
    --muted-2: #8A857C;
    --line: #ECE8E1;
    --line-soft: #F0ECE5;
    --champagne: #B89B68;
    --champagne-d: #8B7048;
    --container: 1400px;
    --section: clamp(4.8rem, 8vw, 8.5rem);
}

body {
    background: #FFFFFF;
    color: #161616;
}

.section,
.section--bone {
    background: #FFFFFF;
}

.section--sand {
    background: #FAFAFA;
}

.container--wide {
    max-width: 1480px;
}

.section-head {
    margin-bottom: clamp(2.4rem, 4.5vw, 4.2rem);
}

.section-head h2,
.page-head h1,
.cover__inner h1 {
    letter-spacing: -.035em;
}

.section-head p,
.page-head p {
    color: #666666;
}

.page-head {
    background: #FFFFFF;
    padding: clamp(8rem, 13vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid #F0ECE5;
}

.page-head .crumb {
    color: #8B7048;
    font-weight: 700;
}

.site-header {
    transition: background .45s ease, border-color .45s ease, box-shadow .45s ease, color .45s ease;
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.86);
    border-bottom-color: rgba(236,232,225,.82);
    box-shadow: 0 16px 42px rgba(0,0,0,.045);
}

.header-inner {
    padding: clamp(.9rem, 1.2vw, 1.2rem) 0;
}

.brand img {
    max-height: 72px;
}

.nav-main {
    gap: clamp(1.35rem, 2.4vw, 2.4rem);
}

.nav-main a {
    font-size: .72rem;
    letter-spacing: .30em;
    transition: color .3s ease, transform .3s ease;
}

.nav-main a:hover {
    color: #B89B68;
}

.nav-main a::after {
    bottom: -10px;
    background: #B89B68;
}

.nav-main .nav-dealer {
    border-radius: 999px;
    padding: .78rem 1.18rem;
    border-color: rgba(184,155,104,.42);
    background: linear-gradient(135deg, #B89B68, #9C7E4F);
    box-shadow: 0 14px 34px rgba(184,155,104,.22);
}

.nav-main .nav-dealer:hover {
    transform: translateY(-2px);
    background: #161616;
    border-color: #161616;
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

.nav-main .nav-design {
    border-radius: 999px;
    padding: .78rem 1.18rem;
    letter-spacing: .16em;
}

.sub-menu {
    border: 1px solid #ECE8E1;
    border-top: 2px solid #B89B68;
    box-shadow: 0 22px 55px rgba(0,0,0,.10);
}

.btn {
    border-radius: 999px;
    background: #B89B68;
    border-color: #B89B68;
    color: #FFFFFF;
    box-shadow: 0 12px 30px rgba(184,155,104,.20);
    transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: #161616;
    border-color: #161616;
    color: #FFFFFF;
    box-shadow: 0 18px 44px rgba(0,0,0,.14);
}

.btn--ghost-dark {
    background: transparent;
    color: #8B7048;
    border-color: #B89B68;
    box-shadow: none;
}

.btn--ghost-dark:hover {
    background: #B89B68;
    border-color: #B89B68;
    color: #FFFFFF;
}

.btn--light {
    background: #FFFFFF;
    color: #161616;
    border-color: #FFFFFF;
}

.lnk {
    color: #8B7048;
}

.lnk:hover {
    color: #161616;
}

.ed-item,
.home-collection-card,
.products-category-card,
.category-product-card,
.media-card,
.sales-list-card {
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.ed-item:hover,
.home-collection-card:hover,
.products-category-card:hover,
.category-product-card:hover,
.media-card:hover,
.sales-list-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184,155,104,.48);
    box-shadow: 0 24px 65px rgba(0,0,0,.09);
}

.ed-item__media,
.home-collection-image,
.products-category-image,
.category-product-card .product-image {
    background: #FAFAFA;
}

.ed-item__media img,
.home-collection-image img,
.products-category-image img,
.category-product-card .product-image img {
    transition: transform .7s cubic-bezier(.16, 1, .3, 1), opacity .45s ease;
}

.ed-item:hover .ed-item__media img,
.home-collection-card:hover .home-collection-image img,
.products-category-card:hover .products-category-image img,
.category-product-card:hover .product-image img {
    transform: scale(1.045);
    opacity: .94;
}

.ed-item__foot,
.home-collection-info,
.products-category-info,
.category-product-card .product-info {
    padding: 20px 22px;
    background: #FFFFFF;
}

.ed-item__title,
.home-collection-title,
.products-category-title,
.category-product-card .product-title {
    color: #161616;
    letter-spacing: .10em;
}

.ed-item__meta,
.home-collection-meta,
.products-category-meta {
    color: #8B7048;
    font-weight: 700;
}

.ed-item__index {
    background: rgba(22,22,22,.52);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 7px 10px;
}

.editorial-grid,
.category-products-grid {
    max-width: 1400px;
    gap: 30px;
    padding: 0;
}

.home-collections-grid,
.products-category-grid {
    max-width: 1320px;
    gap: 30px;
    padding: 0;
}

.home-start {
    padding-top: clamp(6rem, 10vw, 8rem);
}

.story__visual,
.ai__visual,
.showcase__cell {
    border-radius: 18px;
}

.pd-gallery__item {
    border-radius: 18px;
    overflow: hidden;
    background: #FAFAFA;
    border: 1px solid #ECE8E1;
}

.pd-info h1 {
    letter-spacing: -.035em;
}

.pd-acc-trigger {
    letter-spacing: .20em;
}

.media-hero {
    padding-top: clamp(8rem, 12vw, 10rem);
    padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.media-grid {
    margin-top: clamp(2.2rem, 4vw, 4rem);
}

.media-card__content strong {
    letter-spacing: -.01em;
}

.media-card__play {
    border: 1px solid rgba(255,255,255,.72);
}

.sales-points-page {
    background: #FFFFFF;
}

.sales-points-page .sales-hero {
    min-height: 390px;
}

.sales-filter-card,
.sales-list-card,
.sales-detail-card {
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

.sales-detail-page {
    background: #FFFFFF;
}

.sales-detail-map {
    border: 1px solid #ECE8E1;
}

.site-footer {
    background: #0B0B0B;
}

.footer-grid {
    gap: clamp(2rem, 5vw, 5rem);
}

.site-footer h4 {
    letter-spacing: .18em;
}

@media (max-width: 1200px) {
    .editorial-grid,
    .category-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .editorial-grid,
    .category-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-collections-grid,
    .products-category-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .container,
    .container--wide {
        padding-inline: 1.15rem;
    }

    .section {
        padding: clamp(3.8rem, 12vw, 5.5rem) 0;
    }

    .section--sm {
        padding: clamp(2.8rem, 9vw, 4.2rem) 0;
    }

    .page-head {
        padding-top: 7rem;
    }

    .editorial-grid,
    .category-products-grid,
    .home-collections-grid,
    .products-category-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 22px;
    }

    .ed-item__foot,
    .home-collection-info,
    .products-category-info,
    .category-product-card .product-info {
        padding: 18px;
    }

    .nav-main .nav-dealer,
    .nav-main .nav-design {
        width: 100%;
    }

    .site-footer {
        padding-top: 4rem;
    }
}

/* =====================================================================
   Product UI Refresh v1 - listing cards + detail gallery
   ===================================================================== */
.product-list-card {
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(0,0,0,.045);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.product-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,.075);
    border-color: rgba(184,155,104,.45);
}

.product-list-card .product-image {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #FAFAFA;
}

.product-list-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease, opacity .35s ease;
}

.product-list-card:hover .product-image img {
    transform: scale(1.045);
    opacity: .94;
}

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #8B7048;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.product-list-card .product-info {
    padding: 20px 22px;
    align-items: flex-end;
}

.product-list-card .product-title {
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.08;
    letter-spacing: -.01em;
    text-transform: none;
}

.product-code {
    display: inline-block;
    margin-top: 8px;
    color: #8B7048;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.product-list-card .product-arrow {
    color: #B89B68;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.product-detail-page {
    background: #FFFFFF;
    padding: clamp(8rem, 12vw, 10rem) 0 clamp(5rem, 9vw, 8rem);
}

.product-detail-container {
    width: min(1480px, calc(100% - 48px));
    margin: 0 auto;
}

.product-detail-crumb {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 28px;
    color: #8B7048;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.product-detail-crumb a:hover {
    color: #161616;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

@media (min-width: 1101px) {
    .product-detail-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(min(420px, 100%), .95fr);
    }
}

.product-gallery {
    min-width: 0;
}

.product-gallery__main {
    width: 100%;
    height: clamp(520px, 62vh, 720px);
    padding: 0;
    border: 1px solid #ECE8E1;
    border-radius: 24px;
    background: #F8F8F6;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 18px 55px rgba(0,0,0,.055);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-detail-main-image-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(28px);
    transform: scale(1.12);
    opacity: .22;
    transition: opacity .25s ease;
}

.product-detail-main-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    transition: opacity .25s ease;
}

.product-gallery__main:hover .product-detail-main-image {
    transform: none;
}

.product-gallery__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
}

.product-thumb {
    width: 92px;
    min-width: 92px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #FFFFFF;
    overflow: hidden;
    cursor: pointer;
    opacity: .72;
    transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
}

.product-thumb:hover,
.product-thumb.is-active {
    opacity: 1;
    border-color: #B89B68;
    transform: translateY(-2px);
}

.product-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-detail-info {
    position: sticky;
    top: 110px;
    min-width: 0;
    max-width: 100%;
}

.product-detail-kicker {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #F3EEE6;
    color: #8B7048;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-detail-info h1,
.product-detail-title {
    margin: 20px 0 18px;
    color: #161616;
    font-size: clamp(32px, 5vw, 92px);
    line-height: 1.02;
    letter-spacing: -.04em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-detail-lede {
    max-width: 620px;
    color: #666666;
    font-size: 17px;
    line-height: 1.75;
}

.product-spec-list {
    margin: 30px 0 0;
    border-top: 1px solid #ECE8E1;
}

.product-spec-list div {
    display: grid;
    grid-template-columns: minmax(130px, .42fr) 1fr;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #ECE8E1;
}

.product-spec-list dt {
    color: #8B7048;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.product-spec-list dd {
    margin: 0;
    color: #161616;
    font-size: 15px;
}

.product-description {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid #ECE8E1;
}

.product-description h2,
.product-variants__head h2 {
    margin: 0;
    font-family: Inter, sans-serif;
    color: #161616;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.product-description div,
.product-description__body {
    margin-top: 14px;
    color: #555555;
    line-height: 1.85;
    white-space: pre-line;
}

.product-variants {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid #ECE8E1;
}

.product-variants__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 16px;
}

.product-variants__head span {
    color: #8B7048;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-detail-variant-label {
    margin: .35rem 0 0;
    color: #8B7048;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
}

.product-variants__reset {
    margin-top: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8B7048;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.product-variants__reset:hover {
    color: #161616;
}

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

.product-variant-card {
    padding: 10px;
    border: 1px solid #ECE8E1;
    border-radius: 14px;
    background: #FFFFFF;
    cursor: pointer;
    text-align: left;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-variant-card:hover {
    transform: translateY(-3px);
    border-color: #B89B68;
    box-shadow: 0 12px 30px rgba(0,0,0,.07);
}

.product-variant-card.is-active {
    border: 2px solid #B89B68;
    box-shadow: 0 12px 30px rgba(184,155,104,.25);
}

.product-variant-card span {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: #FAFAFA;
}

.product-variant-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-variant-card strong {
    display: block;
    margin-top: 8px;
    color: #161616;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
}

.product-sample-btn {
    width: 100%;
    justify-content: center;
    background: #161616;
    border-color: #161616;
}

.product-sample-btn:hover {
    background: #B89B68;
    border-color: #B89B68;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-lightbox.is-open {
    display: flex;
}

.product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.product-lightbox__dialog {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
}

.product-lightbox__dialog img {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    background: #F8F8F8;
}

.product-lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: #111111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
}

body.product-lightbox-open {
    overflow: hidden;
}

@media (max-width: 1100px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .product-gallery__main {
        height: auto;
        aspect-ratio: 4 / 5;
        max-height: min(620px, 70vh);
        min-height: 280px;
    }

    .product-detail-info {
        position: static;
    }

    .product-detail-title {
        font-size: clamp(34px, 6vw, 56px);
        line-height: 1.05;
    }

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

@media (max-width: 768px) {
    .product-detail-container {
        width: min(calc(100% - 28px), 1480px);
    }

    .product-detail-page {
        padding: 6.5rem 0 4rem;
    }

    .product-detail-lede {
        font-size: 15px;
    }

    .product-spec-list div {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (max-width: 640px) {
    .product-gallery__main {
        max-height: min(420px, 65vh);
        min-height: 240px;
        border-radius: 18px;
    }

    .product-gallery__thumbs {
        gap: 10px;
    }

    .product-thumb {
        width: 72px;
        min-width: 72px;
    }

    .product-detail-title {
        font-size: clamp(28px, 8.5vw, 40px);
        margin: 14px 0 12px;
    }

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

    .product-variant-card {
        padding: 8px;
    }

    .product-variant-card strong {
        font-size: 11px;
        letter-spacing: .04em;
        overflow-wrap: anywhere;
    }

    .product-variants__head {
        flex-wrap: wrap;
        gap: .5rem;
    }

    .product-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .product-lightbox {
        padding: 12px;
    }

    .product-lightbox__close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .product-variant-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery__main {
        max-height: min(360px, 62vh);
    }
}

/* =====================================================================
   Uniform Product / Collection Cards
   Keeps mixed image ratios from breaking card alignment.
   ===================================================================== */
.editorial-grid,
.category-products-grid,
.home-collections-grid,
.products-category-grid {
    align-items: stretch;
}

.ed-item,
.home-collection-card,
.products-category-card,
.category-product-card,
.product-list-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(0,0,0,.045);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.ed-item:hover,
.home-collection-card:hover,
.products-category-card:hover,
.category-product-card:hover,
.product-list-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184,155,104,.45);
    box-shadow: 0 24px 60px rgba(0,0,0,.075);
}

.home-collection-card > a,
.products-category-card > a,
.category-product-card > a,
.product-list-card > a {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.ed-item__media,
.home-collection-image,
.products-category-image,
.category-product-card .product-image,
.product-list-card .product-image,
.product-card-image,
.collection-card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #F8F8F6;
    flex: 0 0 auto;
}

.ed-item__media img,
.home-collection-image img,
.products-category-image img,
.category-product-card .product-image img,
.product-list-card .product-image img,
.product-card-image img,
.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ed-item__foot,
.home-collection-info,
.products-category-info,
.category-product-card .product-info,
.product-list-card .product-info,
.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
}

.ed-item__foot,
.home-collection-info,
.products-category-info {
    min-height: 96px;
}

.category-product-card .product-info,
.product-list-card .product-info {
    min-height: 132px;
}

.ed-item__meta,
.home-collection-meta,
.products-category-meta,
.product-card-footer,
.category-product-card .product-arrow,
.product-list-card .product-arrow {
    margin-top: auto;
}

.category-product-card .product-info > div,
.product-list-card .product-info > div {
    min-width: 0;
}

.category-product-card .product-title,
.product-list-card .product-title,
.ed-item__title,
.home-collection-title,
.products-category-title {
    overflow-wrap: anywhere;
}

@media (max-width: 992px) {
    .editorial-grid,
    .category-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .editorial-grid,
    .category-products-grid,
    .home-collections-grid,
    .products-category-grid {
        grid-template-columns: 1fr;
    }

    .ed-item__foot,
    .home-collection-info,
    .products-category-info,
    .category-product-card .product-info,
    .product-list-card .product-info {
        min-height: auto;
    }
}

/* =====================================================================
   Header Dropdown Readability Fix
   Keeps submenu links visible over dark heroes and page-specific sections.
   ===================================================================== */
.site-header {
    z-index: 9990;
}

.site-header.nav-open {
    z-index: 10050;
}

.site-header .nav-main .has-sub {
    position: relative;
    z-index: 9991;
}

.site-header .nav-main .sub-menu {
    background: #FFFFFF;
    border: 1px solid #ECE8E1;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(20, 18, 16, .14);
    padding: 0;
    min-width: 340px;
    z-index: 9999;
    overflow: hidden;
}

.site-header .nav-main .sub-menu--corp {
    min-width: 420px;
    width: max(420px, 28vw);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
}

.has-sub:hover .sub-menu--corp,
.has-sub:focus-within .sub-menu--corp {
    transform: translateX(-50%) translateY(0);
}

.site-header .nav-main .sub-menu__intro {
    padding: 1.15rem 1.25rem 1rem;
    background: linear-gradient(135deg, #F8F6F2 0%, #F3EEE6 100%);
    border-bottom: 1px solid #ECE8E1;
}

.site-header .nav-main .sub-menu__intro span {
    display: block;
    color: #8B7048;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.site-header .nav-main .sub-menu__intro p {
    margin: .45rem 0 0;
    color: #6E6A63;
    font-size: .84rem;
    line-height: 1.45;
    max-width: 28ch;
}

.site-header .nav-main .sub-menu__grid {
    display: grid;
    gap: .2rem;
    padding: .7rem;
}

.site-header .nav-main .sub-menu a,
.site-header.is-light .nav-main .sub-menu a,
.site-header.is-scrolled .nav-main .sub-menu a {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    column-gap: .75rem;
    row-gap: .12rem;
    align-items: start;
    color: #1A1A1A !important;
    padding: .85rem .9rem;
    border-radius: 12px;
    text-decoration: none;
    white-space: normal;
    transition: background .25s ease, transform .25s ease;
}

.site-header .nav-main .sub-menu a i {
    grid-row: 1 / span 2;
    align-self: center;
    color: #B89B68;
    font-style: normal;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.site-header .nav-main .sub-menu a strong {
    grid-column: 2;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1A1A1A;
}

.site-header .nav-main .sub-menu a span {
    grid-column: 2;
    color: #8A847C;
    font-size: .78rem;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
}

.site-header .nav-main .sub-menu a::after {
    display: none;
}

.site-header .nav-main .sub-menu a:hover,
.site-header .nav-main .sub-menu a:focus-visible {
    background: #F8F6F2;
    transform: translateX(2px);
}

.site-header .nav-main .sub-menu a:hover strong,
.site-header .nav-main .sub-menu a:focus-visible strong {
    color: #8B7048 !important;
}

.site-header .nav-main .sub-menu a:hover,
.site-header .nav-main .sub-menu a:focus-visible {
    color: inherit !important;
}

@media (max-width: 980px) {
    body.is-locked .site-header {
        z-index: 10050;
    }

    .site-header .nav-main {
        z-index: 2;
    }

    .site-header .nav-main .has-sub {
        z-index: auto;
    }

    .site-header .nav-main .sub-menu {
        background: rgba(255, 255, 255, .72) !important;
        border: 1px solid rgba(184, 155, 104, .18) !important;
        border-left: 2px solid #B89B68 !important;
        border-radius: 14px !important;
        box-shadow: none !important;
        padding: .55rem !important;
        min-width: auto;
        width: auto !important;
        z-index: auto !important;
        overflow: visible;
    }

    .site-header .nav-main .sub-menu__intro {
        display: none;
    }

    .site-header .nav-main > a,
    .site-header.is-light .nav-main > a,
    .site-header.is-scrolled .nav-main > a,
    .site-header .nav-main .has-sub > a,
    .site-header.is-light .nav-main .has-sub > a,
    .site-header.is-scrolled .nav-main .has-sub > a {
        color: #1A1A1A !important;
    }

    .site-header .nav-main .nav-dealer,
    .site-header.is-light .nav-main .nav-dealer,
    .site-header.is-scrolled .nav-main .nav-dealer {
        color: #FFFFFF !important;
    }

    .site-header .nav-main .nav-design,
    .site-header.is-light .nav-main .nav-design,
    .site-header.is-scrolled .nav-main .nav-design {
        color: #FFFFFF !important;
    }

    .site-header .nav-main .sub-menu a,
    .site-header.is-light .nav-main .sub-menu a,
    .site-header.is-scrolled .nav-main .sub-menu a {
        color: #1A1A1A !important;
        padding: .7rem .55rem !important;
        border-radius: 10px;
        border-bottom: 0;
        white-space: normal;
        background: transparent !important;
    }

    .site-header .nav-main .sub-menu a:hover,
    .site-header .nav-main .sub-menu a:focus-visible {
        background: rgba(184, 155, 104, .12) !important;
        color: inherit !important;
    }

    .site-header .nav-main .sub-menu a:hover strong,
    .site-header .nav-main .sub-menu a:focus-visible strong {
        color: #8B7048 !important;
    }
}

/* =====================================================================
   Global mobile polish
   ===================================================================== */
@media (max-width: 768px) {
    .cover {
        min-height: 420px;
        height: min(72vh, 560px);
    }

    .cover__inner {
        padding: 0 1.15rem 2.8rem;
    }

    .cover h1 {
        font-size: clamp(2rem, 9vw, 3.2rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .cover p {
        font-size: .95rem;
        max-width: 100%;
    }

    .page-head h1 {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        overflow-wrap: anywhere;
    }

    .showcase {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    img,
    video,
    iframe {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .showcase {
        grid-template-columns: 1fr;
    }

    .header-inner {
        gap: .75rem;
        padding: .95rem 0;
    }
}

/* =====================================================================
   Kurumsal page + premium layout
   ===================================================================== */
.corp-page {
    background: #FFFFFF;
}

.corp-hero {
    position: relative;
    padding: clamp(7.5rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 4.5rem);
    background:
        radial-gradient(circle at 12% 18%, rgba(184,155,104,.16), transparent 42%),
        linear-gradient(180deg, #F8F6F2 0%, #FFFFFF 100%);
    text-align: center;
    overflow: hidden;
}

.corp-hero--cover {
    min-height: clamp(420px, 58vh, 620px);
    display: flex;
    align-items: flex-end;
    padding: 0;
    text-align: left;
    background: #161616;
}

.corp-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.corp-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.55) 100%);
}

.corp-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
}

.corp-hero--cover .corp-hero__inner {
    width: min(1200px, calc(100% - 48px));
    padding: 0 0 clamp(2.8rem, 6vw, 4.5rem);
    color: #FFFFFF;
}

.corp-hero__eyebrow {
    margin: 0 0 1rem;
    color: #8B7048;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .34em;
    text-transform: uppercase;
}

.corp-hero--cover .corp-hero__eyebrow {
    color: rgba(255,255,255,.78);
}

.corp-hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -.03em;
}

.corp-hero--cover h1 {
    color: #FFFFFF;
    max-width: 14ch;
}

.corp-hero__lede {
    max-width: 540px;
    margin: 1.1rem auto 0;
    color: #6E6A63;
    font-size: 1.05rem;
    line-height: 1.7;
}

.corp-hero--cover .corp-hero__lede {
    margin-left: 0;
    color: rgba(255,255,255,.86);
}

.corp-hero__rule {
    width: 64px;
    height: 2px;
    margin: 1.8rem auto 0;
    background: linear-gradient(90deg, #B89B68, rgba(184,155,104,.2));
}

.corp-shell {
    padding: 0 0 clamp(4rem, 8vw, 7rem);
    background: #FFFFFF;
}

.corp-shell__inner {
    width: min(1280px, calc(100% - 48px));
    margin: -28px auto 0;
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.corp-side {
    position: sticky;
    top: 110px;
    padding: 1.25rem;
    border: 1px solid #ECE8E1;
    border-radius: 22px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F2 100%);
    box-shadow: 0 18px 50px rgba(20,18,16,.05);
}

.corp-side__label {
    margin: 0 0 1rem;
    color: #8B7048;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.corp-side__nav {
    display: grid;
    gap: .45rem;
}

.corp-side__nav a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: .75rem;
    align-items: start;
    padding: .9rem .85rem;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.corp-side__nav a:hover {
    background: rgba(184,155,104,.08);
    transform: translateX(2px);
}

.corp-side__nav a.is-active {
    background: #FFFFFF;
    border-color: rgba(184,155,104,.35);
    box-shadow: 0 10px 28px rgba(184,155,104,.12);
}

.corp-side__index {
    color: #B89B68;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding-top: .15rem;
}

.corp-side__copy {
    display: grid;
    gap: .2rem;
    min-width: 0;
}

.corp-side__copy strong {
    color: #1A1A1A;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.corp-side__copy em {
    color: #8A847C;
    font-style: normal;
    font-size: .8rem;
    line-height: 1.4;
}

.corp-side__nav a.is-active .corp-side__copy strong {
    color: #8B7048;
}

.corp-side__media {
    display: grid;
    gap: .2rem;
    margin-top: 1rem;
    padding: 1rem .95rem;
    border-radius: 14px;
    background: #161616;
    color: #FFFFFF;
}

.corp-side__media strong {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.corp-side__media span {
    color: rgba(255,255,255,.68);
    font-size: .8rem;
}

.corp-side__media:hover {
    background: #B89B68;
}

.corp-panel {
    border: 1px solid #ECE8E1;
    border-radius: 24px;
    background: #FFFFFF;
    box-shadow: 0 22px 60px rgba(20,18,16,.05);
    overflow: hidden;
}

.corp-panel__head {
    padding: clamp(1.5rem, 3vw, 2.1rem) clamp(1.4rem, 3vw, 2.4rem) 1.2rem;
    border-bottom: 1px solid #ECE8E1;
    background: linear-gradient(180deg, #FBFaf7 0%, #FFFFFF 100%);
}

.corp-panel__tag {
    display: inline-flex;
    margin-bottom: .7rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: #F3EEE6;
    color: #8B7048;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.corp-panel__head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.1;
}

.corp-panel__body {
    padding: clamp(1.6rem, 3.2vw, 2.6rem);
}

.corp-panel__body.editorial {
    max-width: none;
    margin: 0;
}

@media (max-width: 980px) {
    .corp-shell__inner {
        grid-template-columns: 1fr;
        margin-top: -18px;
        width: min(100% - 28px, 1280px);
    }

    .corp-side {
        position: static;
        padding: 1rem;
    }

    .corp-side__nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .corp-hero__inner,
    .corp-hero--cover .corp-hero__inner {
        width: min(100% - 28px, 1100px);
    }
}

@media (max-width: 640px) {
    .corp-hero {
        padding-top: 6.5rem;
    }

    .corp-hero h1 {
        font-size: clamp(2.1rem, 10vw, 2.8rem);
    }

    .corp-side__copy em {
        display: none;
    }

    .corp-panel {
        border-radius: 18px;
    }
}

/* =====================================================================
   Category page — compact catalog header + product grid
   ===================================================================== */
.cat-page {
    background: #FFFFFF;
}

.cat-head {
    padding: clamp(5.25rem, 8vw, 6.25rem) 0 1.35rem;
    background: linear-gradient(180deg, #F8F6F2 0%, #FFFFFF 78%);
    border-bottom: 1px solid #ECE8E1;
}

.cat-head__crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    color: #8B7048;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cat-head__crumb a:hover {
    color: #161616;
}

.cat-head__row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem 1.5rem;
}

.cat-head:not(.cat-head--media) .cat-head__row {
    grid-template-columns: minmax(0, 1fr) auto;
}

.cat-head__thumb {
    width: clamp(88px, 12vw, 120px);
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 14px;
    background: #161616;
    box-shadow: 0 10px 28px rgba(22, 22, 22, .08);
}

.cat-head__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cat-head__text {
    min-width: 0;
}

.cat-head__text h1 {
    margin: 0;
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #161616;
}

.cat-head__lede {
    max-width: 48ch;
    margin: .45rem 0 0;
    color: #6E6A63;
    font-size: .95rem;
    line-height: 1.55;
}

.cat-head__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .45rem;
}

.cat-head__count,
.cat-head__filter {
    display: inline-flex;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    border: 1px solid #ECE8E1;
    background: #FFFFFF;
    color: #161616;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cat-head__filter {
    color: #8B7048;
    background: #F8F6F2;
}

.cat-body {
    padding: 1.35rem 0 clamp(3.5rem, 7vw, 5.5rem);
    background: #FFFFFF;
}

.cat-body__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ECE8E1;
}

.cat-body__head h2 {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #161616;
}

.cat-body__head span {
    color: #8B7048;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Kategori sayfasında ürün kartlarını daha kompakt tut */
.cat-page .category-products-grid {
    margin-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.cat-page .category-product-card .product-image {
    aspect-ratio: 3 / 4;
}

.cat-page .category-product-card .product-info {
    min-height: 0;
    padding: 14px 16px;
}

/* Cover pages: header always readable */
body:has(.cover) .site-header:not(.is-scrolled),
body:has(.cat-head) .site-header:not(.is-scrolled),
body:has(.cat-hero) .site-header:not(.is-scrolled),
body:has(.corp-hero) .site-header:not(.is-scrolled),
body:has(.product-detail-page) .site-header:not(.is-scrolled) {
    background: rgba(248, 246, 242, .92);
    border-bottom: 1px solid rgba(236, 232, 225, .9);
    color: #1A1A1A;
}

body:has(.cover) .site-header:not(.is-scrolled) .brand,
body:has(.cat-head) .site-header:not(.is-scrolled) .brand,
body:has(.cat-hero) .site-header:not(.is-scrolled) .brand,
body:has(.corp-hero) .site-header:not(.is-scrolled) .brand,
body:has(.product-detail-page) .site-header:not(.is-scrolled) .brand,
body:has(.cover) .site-header:not(.is-scrolled) .nav-main > a,
body:has(.cat-head) .site-header:not(.is-scrolled) .nav-main > a,
body:has(.cat-hero) .site-header:not(.is-scrolled) .nav-main > a,
body:has(.corp-hero) .site-header:not(.is-scrolled) .nav-main > a,
body:has(.product-detail-page) .site-header:not(.is-scrolled) .nav-main > a {
    color: #1A1A1A;
}

body:has(.cover) .site-header:not(.is-scrolled) .hamburger span,
body:has(.cat-head) .site-header:not(.is-scrolled) .hamburger span,
body:has(.cat-hero) .site-header:not(.is-scrolled) .hamburger span,
body:has(.corp-hero) .site-header:not(.is-scrolled) .hamburger span,
body:has(.product-detail-page) .site-header:not(.is-scrolled) .hamburger span {
    background: #1A1A1A !important;
}

@media (max-width: 980px) {
    .cat-head {
        padding-top: 5rem;
        padding-bottom: 1.15rem;
    }

    .cat-head__row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .cat-head__aside {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

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

@media (max-width: 640px) {
    .cat-head__row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cat-head__thumb {
        width: 72px;
    }

    .cat-head__aside {
        flex-wrap: wrap;
    }

    .cat-body__head {
        margin-bottom: 1.2rem;
    }

    .cat-page .category-products-grid,
    .category-products-grid {
        gap: 16px;
        grid-template-columns: 1fr;
    }
}

/* =====================================================================
   Category subcategory filter chips
   ===================================================================== */
.cat-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 0 0 1.25rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid #ECE8E1;
}

.cat-subnav__item {
    display: inline-flex;
    align-items: center;
    padding: .7rem 1.05rem;
    border: 1px solid #ECE8E1;
    border-radius: 999px;
    background: #FFFFFF;
    color: #5F5A53;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.cat-subnav__item:hover {
    border-color: rgba(184,155,104,.55);
    color: #8B7048;
    transform: translateY(-1px);
}

.cat-subnav__item.is-active {
    background: #161616;
    border-color: #161616;
    color: #FFFFFF;
}

@media (max-width: 640px) {
    .cat-subnav {
        gap: .5rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .cat-subnav__item {
        flex: 0 0 auto;
        padding: .65rem .9rem;
        font-size: .68rem;
    }
}


/* =====================================================================
   Watermark protect (lazy — sadece sağ tık anında, layout bozmaz)
   ===================================================================== */
.wm-protect {
    position: relative;
    display: inline-block;
    line-height: 0;
    max-width: 100%;
    vertical-align: middle;
}
.wm-protect__file {
    /* Save As hedefi — neredeyse görünmez, tıklanabilir */
}
.wm-protect__view {
    pointer-events: none;
    z-index: 2;
}

/* ── Header tools: search + language ─────────────────────────────── */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
    margin-left: 0;
}

.header-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(26, 26, 26, .16);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.header-search-btn:hover {
    background: rgba(26, 26, 26, .06);
}

.site-search {
    position: relative;
    width: 100%;
}

.site-search--page {
    width: min(560px, 100%);
    margin: 0 auto;
}

.page-search {
    margin: 0 0 1.75rem;
}

.page-search--hero {
    margin: 1.6rem 0 0;
}

.site-search__field {
    position: relative;
    display: flex;
    align-items: center;
}

.site-search__input {
    width: 100%;
    height: 48px;
    padding: 0 2.4rem 0 1.1rem;
    border: 1px solid rgba(184, 155, 104, .35);
    background: #fff;
    color: var(--ink);
    font-size: .9rem;
    letter-spacing: .03em;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.site-search__input:focus {
    border-color: rgba(184, 155, 104, .75);
    box-shadow: 0 0 0 3px rgba(184, 155, 104, .14);
}

.site-search__clear {
    position: absolute;
    right: .4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.site-search__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 120;
    max-height: min(360px, 55vh);
    overflow: auto;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, .08);
    box-shadow: 0 18px 40px rgba(20, 18, 16, .16);
}

.site-search__dropdown--modal {
    position: relative;
    top: auto;
    margin-top: .75rem;
    max-height: min(420px, 55vh);
    box-shadow: none;
}

.site-search__item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem .9rem;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 26, 26, .06);
    transition: background .15s ease;
}

.site-search__item:last-child { border-bottom: 0; }
.site-search__item:hover,
.site-search__item:focus {
    background: #F7F3EC;
}

.site-search__item img,
.site-search__ph {
    width: 48px;
    height: 48px;
    object-fit: cover;
    flex-shrink: 0;
    background: #EFEAE2;
}

.site-search__meta {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}

.site-search__name {
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-search__code {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8B7048;
}

.site-search__empty {
    padding: 1rem;
    color: var(--muted);
    font-size: .84rem;
}

/* Search popup */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: start center;
    padding: max(12vh, 4.5rem) 1rem 2rem;
}

.search-modal[hidden] {
    display: none !important;
}

.search-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 14, .48);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 0;
    cursor: pointer;
}

.search-modal__panel {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    background: #fff;
    border: 1px solid rgba(26, 26, 26, .08);
    box-shadow: 0 28px 70px rgba(20, 18, 16, .28);
    padding: 1.15rem 1.2rem 1.25rem;
    animation: searchModalIn .22s ease;
}

@keyframes searchModalIn {
    from { opacity: 0; transform: translateY(-10px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.search-modal__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

.search-modal__title {
    margin: 0;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
}

.search-modal__close {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
}

.lang-switch__btn {
    min-width: 36px;
    height: 32px;
    padding: 0 .55rem;
    border: 1px solid rgba(26, 26, 26, .16);
    background: transparent;
    color: var(--ink);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.lang-switch__btn.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

/* Google Translate chrome */
#google_translate_element {
    display: none !important;
}
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    max-height: 0 !important;
}
body { top: 0 !important; }
body > .skiptranslate,
.goog-te-spinner-pos {
    display: none !important;
}
.goog-te-gadget { font-size: 0 !important; }
font { background: transparent !important; box-shadow: none !important; }

body.is-search-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .header-tools {
        gap: .3rem;
        margin-left: auto;
        margin-right: .1rem;
    }
    .header-search-btn {
        width: 36px;
        height: 36px;
    }
    .lang-switch__btn {
        min-width: 32px;
        height: 30px;
        font-size: .62rem;
    }
    .search-modal {
        padding-top: max(8vh, 4rem);
    }
}
