/* ============================================================
   LOXUNO — Main Stylesheet
   Il Lusso, Perfezionato.
   ============================================================ */

/* ── GOOGLE FONTS ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Raleway:wght@300;400;500;600&family=Cormorant+Infant:ital,wght@0,300;1,300&display=swap');

/* ── CSS CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
    /* Palette */
    --nero:           #0A0A0A;
    --avorio:         #FAFAF7;
    --oro:            #C9A96E;
    --rosa:           #B8907A;
    --surface-dark:   #141414;
    --surface-light:  #F0EDE8;
    --text-muted:     #6B6560;
    --border:         #D4C5A9;
    --error:          #8B2500;
    --text-inv:       #FAFAF7;

    /* Transparency variants */
    --oro-08:   rgba(201, 169, 110, 0.08);
    --oro-15:   rgba(201, 169, 110, 0.15);
    --oro-20:   rgba(201, 169, 110, 0.20);
    --oro-40:   rgba(201, 169, 110, 0.40);
    --nero-55:  rgba(10, 10, 10, 0.55);
    --nero-75:  rgba(10, 10, 10, 0.75);
    --nero-97:  rgba(10, 10, 10, 0.97);
    --inv-07:   rgba(250, 250, 247, 0.07);
    --inv-35:   rgba(250, 250, 247, 0.35);
    --inv-50:   rgba(250, 250, 247, 0.50);
    --inv-65:   rgba(250, 250, 247, 0.65);
    --inv-75:   rgba(250, 250, 247, 0.75);

    /* Typography */
    --f-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --f-body:    'EB Garamond', Georgia, 'Times New Roman', serif;
    --f-ui:      'Raleway', 'Helvetica Neue', sans-serif;
    --f-accent:  'Cormorant Infant', Georgia, 'Times New Roman', serif;

    /* Spacing */
    --pad-xl:   120px;
    --pad-lg:   100px;
    --pad-md:   80px;
    --pad-sm:   60px;
    --cont-max: 1280px;
    --cont-pad: 40px;
    --gap:      40px;

    /* Motion */
    --ease:      cubic-bezier(0.25, 0.1, 0.25, 1);
    --trans:     0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --trans-fast: 0.3s ease;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--f-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--nero);
    background-color: var(--avorio);
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, video {
    display: block;
    max-width: 100%;
    height: auto;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--f-ui); }

/* ── SKIP LINK ──────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--oro);
    color: var(--nero);
    padding: 10px 20px;
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10000;
    transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--f-heading);
    font-weight: 400;
    line-height: 1.05;
}

h1 { font-size: 72px; line-height: 1.05; letter-spacing: 0.02em; }
h2 { font-size: 48px; line-height: 1.15; letter-spacing: 0.015em; }
h3 { font-size: 32px; line-height: 1.20; letter-spacing: 0.015em; }
h4 { font-size: 24px; line-height: 1.30; letter-spacing: 0.01em; }

p { font-size: 18px; line-height: 1.7; }

.label-upper {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.label-gold {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oro);
}

.price-display {
    font-family: var(--f-accent);
    font-style: italic;
    font-weight: 300;
}

/* ── CONTAINER & LAYOUT ─────────────────────────────────────── */
.container {
    max-width: var(--cont-max);
    margin: 0 auto;
    padding: 0 var(--cont-pad);
}

.section-pad {
    padding-top: var(--pad-xl);
    padding-bottom: var(--pad-xl);
}

.section-pad-md {
    padding-top: var(--pad-lg);
    padding-bottom: var(--pad-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
}

/* ── TEXTURE OVERLAYS ───────────────────────────────────────── */
.texture-light {
    position: relative;
}
.texture-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 0;
}
.texture-light > * { position: relative; z-index: 1; }

.texture-dark {
    position: relative;
}
.texture-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.018) 0px,
        rgba(255,255,255,0.018) 1px,
        transparent 1px,
        transparent 9px
    );
    pointer-events: none;
    z-index: 0;
}
.texture-dark > * { position: relative; z-index: 1; }

/* ── DECORATIVE ELEMENTS ────────────────────────────────────── */
.gold-rule {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--oro);
    border: none;
    margin: 24px auto;
}

.gold-rule-left {
    margin-left: 0;
    margin-right: 0;
}

.diamond-ornament {
    display: inline-block;
    color: var(--oro);
    font-size: 10px;
    line-height: 1;
    vertical-align: middle;
}

.diamond-ornament::before { content: '◆'; }

.gold-ornament-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px auto;
}
.gold-ornament-full::before,
.gold-ornament-full::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--oro);
}
.gold-ornament-full .diamond-ornament { font-size: 8px; }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .label-upper {
    display: block;
    margin-bottom: 16px;
}

.section-header p {
    max-width: 640px;
    margin: 24px auto 0;
    color: var(--text-muted);
    font-size: 18px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--oro);
    color: var(--oro);
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 18px 48px;
    cursor: pointer;
    transition: background var(--trans), color var(--trans), padding var(--trans);
    position: relative;
    white-space: nowrap;
}
.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--oro);
    color: var(--nero);
    padding: 18px 52px;
    outline: none;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--nero);
    color: var(--nero);
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 36px;
    cursor: pointer;
    transition: border-color var(--trans-fast), color var(--trans-fast);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: var(--oro);
    color: var(--oro);
    outline: none;
}

.btn-secondary-inv {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(250,250,247,0.5);
    color: var(--inv-75);
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 36px;
    cursor: pointer;
    transition: border-color var(--trans-fast), color var(--trans-fast);
}
.btn-secondary-inv:hover { border-color: var(--oro); color: var(--oro); }

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: var(--oro);
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    position: relative;
}
.btn-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--oro);
    transition: width 0.4s var(--ease);
}
.btn-text:hover::after,
.btn-text:focus-visible::after { width: 100%; }
.btn-text .icon-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform var(--trans-fast);
}
.btn-text:hover .icon-arrow,
.btn-text:focus-visible .icon-arrow { transform: translateX(4px); }

/* ── IMAGE PLACEHOLDERS ─────────────────────────────────────── */
.img-placeholder {
    position: relative;
    background-color: #E8E3DC;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(201,169,110,0.12);
    pointer-events: none;
    z-index: 2;
}
.img-placeholder .ph-icon {
    color: rgba(201,169,110,0.2);
    z-index: 1;
}
.img-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
}

.img-placeholder-dark {
    background-color: #1A1A1A;
}

/* ── FOCUS STATES (Accessibility) ───────────────────────────── */
:focus-visible {
    outline: 2px solid var(--oro);
    outline-offset: 2px;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--inv-35);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}
.breadcrumb a { color: var(--inv-35); transition: color var(--trans-fast); }
.breadcrumb a:hover { color: var(--oro); }
.breadcrumb .sep { color: var(--oro); }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--trans), border-color var(--trans), height var(--trans), padding var(--trans);
    height: 110px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
}

/* Transparent initial state */
.site-header .header-inner {
    width: 100%;
    max-width: var(--cont-max);
    margin: 0 auto;
    padding: 0 var(--cont-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transition: all var(--trans);
}

.header-logo {
    font-family: var(--f-heading);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--avorio);
    text-decoration: none;
    transition: font-size var(--trans), color var(--trans);
    text-transform: uppercase;
}

.header-logo-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--oro);
    margin: 8px auto 10px;
    transition: opacity var(--trans), margin var(--trans);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-nav a {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--avorio);
    padding: 4px 20px;
    position: relative;
    transition: color var(--trans-fast);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--oro);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.header-nav a:hover { color: var(--oro); }
.header-nav a:hover::after { transform: scaleX(1); }

.header-nav-sep {
    color: var(--oro);
    font-size: 6px;
    line-height: 1;
    opacity: 0.6;
    flex-shrink: 0;
}
.header-nav-sep::before { content: '◆'; }

/* ── SCROLLED STATE ─────────────────────────────────────────── */
.header-scrolled {
    background: var(--nero-97);
    border-bottom-color: rgba(201,169,110,0.2);
    height: 70px;
}

.header-scrolled .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-scrolled .header-logo {
    font-size: 20px;
    color: var(--avorio);
}

.header-scrolled .header-logo-line { display: none; }

.header-scrolled .header-nav a { color: var(--avorio); }

/* ── MOBILE HEADER ──────────────────────────────────────────── */
.menu-toggle {
    display: none;
    color: var(--oro);
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--nero);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.menu-close {
    position: absolute;
    top: 24px;
    right: 28px;
    color: var(--oro);
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--f-heading);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--avorio);
    text-decoration: none;
    transition: color var(--trans-fast);
}
.mobile-nav-link:hover { color: var(--oro); }

/* ================================================================
   HERO — FULL VIEWPORT (Homepage)
   ================================================================ */
.hero-full {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--nero);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.05);
}

.hero-bg-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1510 0%, #0f0c08 50%, #161210 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,10,10,0.65) 0%,
        rgba(10,10,10,0.35) 60%,
        rgba(10,10,10,0.15) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--cont-max);
    margin: 0 auto;
    padding: 0 var(--cont-pad) 25vh;
    padding-left: calc(var(--cont-pad) + 10%);
    display: flex;
    align-items: flex-end;
}

.hero-text-block {
    max-width: 700px;
    position: relative;
}

/* Vertical gold accent line */
.hero-text-block::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 0;
    width: 1px;
    height: 80px;
    background: var(--oro);
    transform-origin: top;
    transform: scaleY(0);
    animation: drawLineVertical 0.8s var(--ease) 0.9s forwards;
}

.hero-headline {
    font-family: var(--f-heading);
    font-size: 72px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--avorio);
    max-width: 680px;
    overflow: hidden;
}

.hero-headline .line { display: block; }

.hero-sub {
    font-family: var(--f-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(250,250,247,0.78);
    max-width: 520px;
    margin-top: 28px;
}

.hero-cta-wrap {
    margin-top: 40px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--oro);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll span {
    font-family: var(--f-ui);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oro);
    opacity: 0.6;
}

/* ── PAGE HEROES (50vh, 45vh) ───────────────────────────────── */
.page-hero {
    position: relative;
    background: var(--nero);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-50 { min-height: 50vh; padding-bottom: var(--pad-sm); }
.page-hero-45 { min-height: 45vh; padding-bottom: var(--pad-sm); }
.page-hero-70 { min-height: 70vh; }

.page-hero .hero-content-center {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--pad-lg) var(--cont-pad) var(--pad-md);
}

.page-hero h1 {
    font-size: 60px;
    color: var(--avorio);
    margin-top: 16px;
}

.page-hero .hero-sub-sm {
    font-size: 19px;
    color: var(--inv-65);
    max-width: 580px;
    margin-top: 20px;
    line-height: 1.65;
}

/* ── HERO SPLIT (artigianato) ───────────────────────────────── */
.hero-split {
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-split-image {
    position: relative;
    overflow: hidden;
}

.hero-split-image .img-placeholder-dark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.2) contrast(1.1);
}

.hero-split-text {
    background: var(--nero);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pad-lg);
}

.hero-split-text-inner {
    max-width: 480px;
}

.hero-split-text .label-upper { color: var(--oro); }

.hero-split-text h1 {
    font-size: 52px;
    color: var(--avorio);
    margin-top: 16px;
}

.hero-split-text .hero-sub {
    font-size: 18px;
    color: var(--inv-65);
    margin-top: 20px;
    max-width: 400px;
}

.hero-split-text .gold-rule-left {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--oro);
    margin: 28px 0;
}

/* ================================================================
   BRAND PHILOSOPHY STRIP
   ================================================================ */
.philosophy-strip {
    background: var(--nero);
    border-top: 1px solid rgba(201,169,110,0.35);
    border-bottom: 1px solid rgba(201,169,110,0.35);
    padding: 22px 0;
    overflow: hidden;
}

.philosophy-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.philosophy-strip-item {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oro);
    padding: 4px 32px;
    white-space: nowrap;
}

.philosophy-strip-sep {
    color: var(--oro);
    opacity: 0.5;
    font-size: 7px;
    line-height: 1;
}
.philosophy-strip-sep::before { content: '◆'; }

/* ================================================================
   FEATURED COLLECTIONS
   ================================================================ */
.featured-collections {
    background: var(--avorio);
    padding: var(--pad-xl) 0;
}

/* Collection Card */
.collection-card {
    position: relative;
    cursor: pointer;
}

.collection-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.collection-card-image .img-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    filter: saturate(0.85) contrast(1.05);
}

.collection-card-bottom-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--oro);
    transition: width 0.5s var(--ease);
}

.collection-card:hover .collection-card-image img { transform: scale(1.04); }
.collection-card:hover .collection-card-bottom-border { width: 100%; }

.collection-card-body {
    padding-top: 24px;
}

.collection-card-body h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--nero);
    margin-top: 8px;
    transition: color var(--trans-fast);
}

.collection-card:hover .collection-card-body h3 { color: var(--oro); }

.collection-card-body p {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.65;
}

.collection-card-body .btn-text {
    margin-top: 20px;
}

/* ================================================================
   FLAGSHIP PRODUCT SHOWCASE
   ================================================================ */
.flagship-showcase {
    background: var(--nero);
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: 700px;
    overflow: hidden;
}

.flagship-image-wrap {
    position: relative;
    overflow: hidden;
}

.flagship-image-wrap .img-placeholder-dark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flagship-image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
}

/* Gold frame inset */
.flagship-image-wrap::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,169,110,0.25);
    pointer-events: none;
    z-index: 2;
}

/* Radial gold glow behind the image */
.flagship-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,169,110,0.07) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.flagship-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flagship-content .label-upper {
    color: var(--oro);
    font-size: 11px;
    letter-spacing: 0.2em;
}

.flagship-content h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--avorio);
    margin-top: 16px;
    line-height: 1.15;
}

.flagship-content .gold-rule-left {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--oro);
    margin: 24px 0;
}

.flagship-content p {
    color: var(--inv-75);
    font-size: 18px;
    line-height: 1.8;
}

.flagship-price {
    font-family: var(--f-accent);
    font-style: italic;
    font-weight: 300;
    font-size: 28px;
    color: var(--oro);
    margin-top: 24px;
}

.flagship-content .btn-primary {
    margin-top: 28px;
    align-self: flex-start;
}

.flagship-details {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.flagship-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flagship-detail-item .detail-icon {
    color: var(--oro);
    flex-shrink: 0;
}

.flagship-detail-item span {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250,250,247,0.45);
}

/* ================================================================
   BRAND VALUES
   ================================================================ */
.brand-values {
    background: var(--surface-light);
    padding: var(--pad-xl) 0;
}

.value-card {
    text-align: center;
    padding: 8px;
}

.value-card-icon {
    color: var(--oro);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-family: var(--f-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--nero);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
    background: var(--nero);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-bg-quote {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-heading);
    font-size: 240px;
    line-height: 1;
    color: rgba(201,169,110,0.07);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.testimonial-carousel {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--cont-pad);
    height: 280px;
}

.testimonial-slide {
    text-align: center;
    padding: 0 20px;
}

.testimonial-quote {
    font-family: var(--f-heading);
    font-style: italic;
    font-size: 28px;
    font-weight: 400;
    color: var(--avorio);
    line-height: 1.6;
    max-width: 720px;
}

.testimonial-attribution {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.testimonial-attribution .diamond-ornament {
    font-size: 7px;
    margin: 4px 0;
}

.testimonial-name {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--oro);
}

.testimonial-location {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: var(--inv-50);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--oro);
    background: transparent;
    cursor: pointer;
    transition: background var(--trans-fast);
    padding: 0;
    flex-shrink: 0;
}

.dot.active { background: var(--oro); }

/* ================================================================
   NEWSLETTER / CTA SECTION
   ================================================================ */
.newsletter-section {
    position: relative;
    overflow: hidden;
    background: var(--nero);
    padding: var(--pad-xl) 0;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
}

.newsletter-bg .img-placeholder-dark {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.newsletter-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) saturate(0.5);
    opacity: 0.4;
}

.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.82);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    padding: 0 var(--cont-pad);
}

.newsletter-content h2 {
    font-size: 44px;
    font-weight: 400;
    color: var(--avorio);
}

.newsletter-content p {
    font-size: 18px;
    color: rgba(250,250,247,0.68);
    margin-top: 20px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(201,169,110,0.35);
    border-right: none;
    color: var(--avorio);
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 400;
    padding: 16px 24px;
    outline: none;
    transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.newsletter-input::placeholder { color: rgba(250,250,247,0.3); }

.newsletter-input:focus {
    border-color: var(--oro);
    box-shadow: 0 0 0 2px rgba(201,169,110,0.1);
}

.newsletter-btn {
    background: var(--oro);
    color: var(--nero);
    border: 1px solid var(--oro);
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    cursor: pointer;
    transition: background var(--trans-fast), color var(--trans-fast);
    white-space: nowrap;
}

.newsletter-btn:hover { background: #b8904a; border-color: #b8904a; }

.newsletter-privacy {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 300;
    color: rgba(250,250,247,0.3);
    margin-top: 16px;
}

.newsletter-success {
    display: none;
    background: transparent;
    border: 1px solid var(--oro);
    padding: 20px 32px;
    margin-top: 32px;
    color: var(--avorio);
    font-family: var(--f-ui);
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
}

/* ================================================================
   COLLECTIONS PAGE
   ================================================================ */

/* Category Filter Bar */
.filter-bar-wrap {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: var(--avorio);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    transition: top var(--trans);
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 6px 18px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color var(--trans-fast);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--oro);
    transform: scaleX(0);
    transition: transform var(--trans-fast);
}

.filter-btn:hover { color: var(--oro); }
.filter-btn.active { color: var(--nero); }
.filter-btn.active::after { transform: scaleX(1); }

/* Product Grid */
.products-section {
    background: var(--avorio);
    padding: 64px 0 var(--pad-xl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 36px;
    row-gap: 56px;
    position: relative;
}

/* Product Card */
.product-card {
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.product-card-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
    background-color: var(--surface-light);
}

.product-card-image::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201,169,110,0.1);
    z-index: 2;
    pointer-events: none;
}

.product-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
    transition: transform 0.6s var(--ease);
}

.product-card-hover-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: opacity var(--trans);
}

.product-card-hover-label span {
    background: rgba(10,10,10,0.62);
    border: 1px solid rgba(201,169,110,0.4);
    color: var(--avorio);
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 28px;
}

.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card:hover .product-card-hover-label { opacity: 1; }

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

.product-card-body .label-gold { display: block; }

.product-card-body .product-name {
    font-family: var(--f-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--nero);
    margin-top: 6px;
    line-height: 1.2;
    transition: color var(--trans-fast);
}

.product-card:hover .product-name { color: var(--oro); }

.product-card-body .product-price {
    font-family: var(--f-accent);
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Load More */
.load-more-section {
    text-align: center;
    padding-top: 60px;
}

.products-count {
    display: block;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 20px;
    letter-spacing: 0.05em;
}

/* Collection Story Strip */
.collection-story {
    background: var(--nero);
    display: grid;
    grid-template-columns: 60fr 40fr;
    min-height: 560px;
    overflow: hidden;
}

.collection-story-image {
    position: relative;
    overflow: hidden;
}

.collection-story-image .img-placeholder-dark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-story-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
}

.collection-story-content {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.collection-story-content .label-upper { color: var(--oro); }

.collection-story-content h2 {
    font-size: 36px;
    color: var(--avorio);
    margin-top: 16px;
    line-height: 1.2;
}

.collection-story-content p {
    color: var(--inv-65);
    font-size: 17px;
    line-height: 1.75;
    margin-top: 20px;
}

.collection-story-content .btn-text {
    margin-top: 32px;
}

/* ================================================================
   ARTIGIANATO PAGE
   ================================================================ */

/* Origin Story */
.origin-story {
    background: var(--avorio);
    padding: var(--pad-xl) 0;
    position: relative;
}

.origin-story-bg-quote {
    position: absolute;
    top: 60px;
    left: var(--cont-pad);
    font-family: var(--f-heading);
    font-size: 200px;
    line-height: 1;
    color: rgba(201,169,110,0.06);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.origin-story-text {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.origin-story-text p + p {
    margin-top: 28px;
}

.origin-story-text p {
    font-size: 19px;
    line-height: 1.85;
    color: var(--nero);
}

/* Process Timeline */
.process-section {
    background: var(--nero);
    padding: var(--pad-xl) 0;
    position: relative;
}

.timeline-wrap {
    position: relative;
    max-width: 880px;
    margin: 60px auto 0;
}

/* Vertical center line */
.timeline-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--oro);
    transform: translateX(-50%);
    transform-origin: top;
    opacity: 0.35;
}

.timeline-step {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0 24px;
    margin-bottom: 80px;
    align-items: start;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-step-left { text-align: right; }
.timeline-step-right { text-align: left; }

/* Odd steps: content left */
.timeline-step:nth-child(odd) .timeline-content { grid-column: 1; }
.timeline-step:nth-child(odd) .timeline-node    { grid-column: 2; }
.timeline-step:nth-child(odd) .timeline-empty   { grid-column: 3; }

/* Even steps: content right */
.timeline-step:nth-child(even) .timeline-empty   { grid-column: 1; }
.timeline-step:nth-child(even) .timeline-node    { grid-column: 2; }
.timeline-step:nth-child(even) .timeline-content { grid-column: 3; text-align: left; }

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
}

.timeline-node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--oro);
    background: var(--nero);
    flex-shrink: 0;
}

.timeline-step-num {
    font-family: var(--f-accent);
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    color: rgba(201,169,110,0.2);
    line-height: 1;
}

.timeline-content .label-upper {
    color: var(--oro);
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-family: var(--f-heading);
    font-size: 24px;
    color: var(--avorio);
    font-weight: 500;
}

.timeline-content p {
    font-size: 16px;
    color: var(--inv-50);
    line-height: 1.7;
    margin-top: 10px;
}

/* Artisan Spotlight */
.artisan-section {
    background: var(--avorio);
    padding: var(--pad-xl) 0;
}

.artisan-card {
    text-align: center;
}

.artisan-card-image {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.artisan-card-image .img-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #D8D3CC;
    filter: grayscale(1);
}

.artisan-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
}

.artisan-card-name {
    font-family: var(--f-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--nero);
}

.artisan-card-specialty {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--oro);
    margin: 8px 0 14px;
}

.artisan-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Closing CTA Dark */
.closing-cta {
    background: var(--nero);
    padding: var(--pad-xl) 0;
    text-align: center;
}

.closing-cta h2 {
    font-size: 44px;
    color: var(--avorio);
}

.closing-cta p {
    color: var(--inv-65);
    font-size: 18px;
    max-width: 560px;
    margin: 20px auto 40px;
    line-height: 1.7;
}

.closing-cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section {
    background: var(--avorio);
    padding: var(--pad-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 0;
    align-items: start;
}

/* Form column */
.contact-form-col {
    padding-right: 64px;
}

.contact-form-col .label-upper { margin-bottom: 8px; }

.contact-form-col h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* Form fields */
.form-field {
    margin-bottom: 32px;
    position: relative;
}

.form-label {
    display: block;
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color var(--trans-fast);
}

.form-field.focused .form-label { color: var(--oro); }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    font-family: var(--f-ui);
    font-size: 15px;
    font-weight: 400;
    color: var(--nero);
    outline: none;
    transition: border-color var(--trans-fast);
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-input::placeholder { color: rgba(107,101,96,0.45); }
.form-textarea::placeholder { color: rgba(107,101,96,0.45); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-bottom-color: var(--oro);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
    cursor: pointer;
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

/* Error states */
.form-field.has-error .form-label { color: var(--error); }
.form-field.has-error .form-input,
.form-field.has-error .form-select,
.form-field.has-error .form-textarea { border-bottom-color: var(--error); }

.field-error {
    display: block;
    font-family: var(--f-ui);
    font-size: 12px;
    color: var(--error);
    margin-top: 6px;
    letter-spacing: 0.03em;
}

/* Checkbox */
.form-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 36px;
    cursor: pointer;
}

.form-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    transition: border-color var(--trans-fast);
}

.form-checkbox:checked {
    background: var(--oro);
    border-color: var(--oro);
}

.form-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: 1.5px solid var(--nero);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.form-checkbox-label {
    font-family: var(--f-ui);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-checkbox-label a { color: var(--nero); text-decoration: underline; }
.form-checkbox-label a:hover { color: var(--oro); }

.form-note {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Submit full-width */
.btn-primary-full {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid var(--nero);
    color: var(--nero);
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 20px;
    cursor: pointer;
    transition: background var(--trans), color var(--trans), border-color var(--trans);
}

.btn-primary-full:hover,
.btn-primary-full:focus-visible {
    background: var(--nero);
    color: var(--avorio);
}

/* Success message */
.form-success {
    display: none;
    border: 1px solid var(--oro);
    padding: 24px 32px;
    margin-top: 32px;
}

.form-success.show { display: block; }

.form-success-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-success .success-icon { color: var(--oro); flex-shrink: 0; }

.form-success p {
    font-family: var(--f-ui);
    font-size: 14px;
    color: var(--nero);
    letter-spacing: 0.03em;
}

/* Honeypot */
.hp-field { display: none !important; visibility: hidden; }

/* ── Contact Info Column ────────────────────────────────────── */
.contact-info-col {
    background: var(--surface-light);
    padding: 48px;
    position: relative;
}

.contact-info-diamond {
    display: block;
    color: var(--oro);
    font-size: 10px;
    margin-bottom: 32px;
    text-align: center;
}
.contact-info-diamond::before { content: '◆'; }

.contact-info-block {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-block:last-of-type { border-bottom: none; }
.contact-info-block:first-of-type { padding-top: 0; }

.contact-info-icon {
    color: var(--oro);
    margin-bottom: 8px;
}

.contact-info-label {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.contact-info-value {
    font-family: var(--f-body);
    font-size: 18px;
    color: var(--nero);
    display: block;
}

.contact-info-note {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.contact-urgent-box {
    border: 1px solid var(--border);
    padding: 20px 24px;
    margin-top: 32px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-urgent-box .urgent-icon { color: var(--oro); flex-shrink: 0; margin-top: 2px; }

.contact-urgent-box p {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── Location Section ───────────────────────────────────────── */
.location-section {
    background: var(--nero);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.map-placeholder {
    position: relative;
    background: var(--surface-dark);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-pin-block {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.map-pin-icon {
    color: var(--oro);
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.map-pin-title {
    font-family: var(--f-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--avorio);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.map-pin-address {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: var(--inv-50);
    letter-spacing: 0.08em;
}

.location-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content h2 {
    font-size: 36px;
    color: var(--avorio);
    line-height: 1.2;
}

.location-content p {
    color: var(--inv-65);
    font-size: 17px;
    line-height: 1.75;
    margin-top: 20px;
}

.location-content .btn-primary { margin-top: 32px; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--nero);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand-name {
    font-family: var(--f-heading);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--avorio);
    text-transform: uppercase;
}

.footer-brand-rule {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--oro);
    margin: 12px 0 16px;
}

.footer-brand-tagline {
    font-family: var(--f-body);
    font-style: italic;
    font-size: 16px;
    color: rgba(250,250,247,0.45);
    line-height: 1.6;
    max-width: 260px;
}

.footer-col-title {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oro);
    margin-bottom: 20px;
    display: block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 300;
    color: rgba(250,250,247,0.55);
    transition: color var(--trans-fast);
    text-decoration: none;
    line-height: 1;
}

.footer-links a:hover { color: var(--oro); }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-item svg { color: rgba(201,169,110,0.55); flex-shrink: 0; }

.footer-contact-item span {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 300;
    color: rgba(250,250,247,0.55);
    line-height: 1.3;
    transition: color var(--trans-fast);
}

.footer-contact-item a:hover span,
.footer-contact-item:hover span { color: var(--oro); }

/* Bottom bar */
.footer-bottom {
    position: relative;
    padding: 0 0 36px;
}

.footer-bottom-rule {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(201,169,110,0.2);
    border: none;
    margin-bottom: 24px;
    position: relative;
}

.footer-bottom-rule::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--oro);
    font-size: 8px;
    background: var(--nero);
    padding: 0 8px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-legal-text {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 300;
    color: rgba(250,250,247,0.28);
    letter-spacing: 0.03em;
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-page {
    background: var(--avorio);
    padding: var(--pad-xl) 0;
}

.legal-page-hero {
    background: var(--nero);
    padding: calc(var(--pad-lg) + 70px) 0 var(--pad-md);
    text-align: center;
}

.legal-page-hero h1 {
    font-size: 48px;
    color: var(--avorio);
    margin-top: 12px;
}

.legal-page-hero .breadcrumb { margin-bottom: 20px; }

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--pad-lg) var(--cont-pad);
}

.legal-content h2 {
    font-family: var(--f-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--nero);
    margin-bottom: 16px;
}

.legal-content h3 {
    font-family: var(--f-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--nero);
    margin: 28px 0 12px;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--nero);
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    margin: 12px 0 20px 24px;
}

.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
    font-size: 17px;
    line-height: 1.75;
    color: var(--nero);
    margin-bottom: 8px;
}

.legal-content strong { font-weight: 600; }

.legal-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-child { border-bottom: none; }

.legal-section-rule {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.legal-section-rule .diamond-ornament { flex-shrink: 0; }

.legal-updated {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ── 1280px (large tablet / small desktop) ──────────────────── */
@media (max-width: 1280px) {
    :root {
        --cont-pad: 32px;
        --pad-xl: 100px;
        --pad-lg: 80px;
    }

    .flagship-content { padding: 60px; }
    .footer-top { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 36px; }
}

/* ── 1024px (tablet landscape) ──────────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --pad-xl: 80px;
        --pad-lg: 60px;
        --pad-sm: 48px;
        --gap: 28px;
    }

    h1 { font-size: 56px; }
    h2 { font-size: 40px; }
    h3 { font-size: 28px; }

    .hero-headline { font-size: 56px; }
    .page-hero h1  { font-size: 48px; }

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

    .flagship-content { padding: 48px; }
    .flagship-content h2 { font-size: 32px; }

    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-col { padding-right: 0; }
    .contact-info-col { margin-top: 40px; }

    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .hero-split { grid-template-columns: 1fr; min-height: auto; }
    .hero-split-image { min-height: 50vh; }
    .hero-split-text { padding: var(--pad-md); }

    .collection-story { grid-template-columns: 1fr; }
    .collection-story-image { min-height: 50vh; position: relative; }
    .collection-story-content { padding: 48px; }

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

    .timeline-step {
        grid-template-columns: 40px 1fr;
        gap: 0 16px;
    }
    .timeline-step .timeline-content { grid-column: 2 !important; grid-row: 1; text-align: left !important; }
    .timeline-step .timeline-node    { grid-column: 1 !important; grid-row: 1; }
    .timeline-step .timeline-empty   { display: none; }
    .timeline-connector { left: 20px; transform: none; }

    .location-section { grid-template-columns: 1fr; }
    .location-content { padding: 48px; }
}

/* ── 768px (tablet portrait) ────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --cont-pad: 24px;
        --pad-xl: 60px;
        --pad-lg: 48px;
        --pad-sm: 36px;
        --gap: 20px;
    }

    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    p, body { font-size: 16px; }

    /* Show mobile menu */
    .menu-toggle    { display: flex; align-items: center; justify-content: center; }
    .header-nav     { display: none; }
    .header-logo-line { display: none; }
    .mobile-menu    { display: flex; }

    .site-header { height: 70px; }
    .header-inner {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .header-logo { font-size: 20px; }
    .header-logo-line { display: none !important; }

    /* Hero */
    .hero-full { align-items: center; }
    .hero-content {
        padding: 0 var(--cont-pad);
        padding-left: var(--cont-pad);
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .hero-text-block { max-width: 100%; }
    .hero-text-block::before { display: none; }
    .hero-headline { font-size: 40px; }
    .hero-sub { font-size: 17px; max-width: 100%; }
    .hero-cta-wrap { display: flex; justify-content: center; }

    /* Flagship */
    .flagship-showcase {
        grid-template-columns: 1fr;
    }
    .flagship-image-wrap { min-height: 50vh; position: relative; }
    .flagship-content {
        padding: 40px var(--cont-pad);
        text-align: center;
        align-items: center;
    }
    .flagship-content h2 { font-size: 30px; }
    .flagship-content .gold-rule-left { margin: 20px auto; }
    .flagship-content .btn-primary { align-self: center; }
    .flagship-details { justify-content: center; }

    /* Grid */
    .grid-3, .products-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }

    /* Collections */
    .collection-story-content { padding: 40px var(--cont-pad); }
    .testimonial-quote { font-size: 22px; }
    .testimonial-carousel { height: 340px; }

    /* Newsletter */
    .newsletter-form { flex-direction: column; }
    .newsletter-input { border-right: 1px solid rgba(201,169,110,0.35); }
    .newsletter-btn { width: 100%; }

    /* Contact */
    .location-content { padding: 40px var(--cont-pad); }
    .contact-info-col { padding: 36px var(--cont-pad); }

    /* Footer */
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }

    /* Breadcrumb */
    .breadcrumb { font-size: 11px; }

    /* Philosophy strip */
    .philosophy-strip-item { padding: 4px 16px; font-size: 11px; }
}

/* ── 576px (mobile) ─────────────────────────────────────────── */
@media (max-width: 576px) {
    :root {
        --cont-pad: 20px;
        --pad-xl: 48px;
        --pad-lg: 40px;
    }

    h1 { font-size: 34px; letter-spacing: 0.01em; }
    h2 { font-size: 28px; }

    .hero-headline { font-size: 34px; }
    .page-hero h1  { font-size: 36px; }
    .hero-split-text h1 { font-size: 36px; }

    .flagship-content h2 { font-size: 26px; }

    .section-header h2 { font-size: 28px; }

    .newsletter-content h2 { font-size: 32px; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }

    .closing-cta-btns { flex-direction: column; align-items: center; }

    .testimonial-quote { font-size: 20px; }
    .testimonial-carousel { height: 400px; }

    .filter-bar { justify-content: flex-start; overflow-x: auto; }
    .filter-bar-wrap { padding: 16px 0; }

    .contact-urgent-box { flex-direction: column; }

    .legal-content h2 { font-size: 24px; }

    .location-content h2 { font-size: 26px; }
}

/* ================================================================
   UTILITY
   ================================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.d-none      { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
