/* ================================================
   ARMATORI ITALIANI by MARINÉ
   Stylesheet – elegante, professionale, nautico
   ================================================ */

:root {
    --navy-900: #0a1628;
    --navy-800: #0f2238;
    --navy-700: #16304e;
    --navy-600: #1d3e64;
    --gold: #c9a961;
    --gold-light: #d9bd7a;
    --gold-dark: #a88a43;
    --ivory: #f5efe2;
    --cream: #faf6ed;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
    --border-soft: rgba(201, 169, 97, 0.25);
    --shadow-soft: 0 10px 40px rgba(10, 22, 40, 0.08);
    --shadow-strong: 0 20px 60px rgba(10, 22, 40, 0.18);
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.1rem;
    position: relative;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    flex-shrink: 0;
}

.eyebrow.centered {
    justify-content: center;
    padding: 0;
}

.eyebrow.centered::before {
    background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow.centered::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    flex-shrink: 0;
}

/* Small ornament between text and lines */
.eyebrow-ornament::before,
.eyebrow-ornament::after {
    background: var(--gold);
    width: 24px;
}

/* Section divider ornament */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 200px;
    color: var(--gold);
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-divider .diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ============ LAYOUT ============ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 110px 0;
    position: relative;
}

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

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

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(10, 22, 40, 0.0);
    backdrop-filter: blur(0px);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(20px);
    padding: 6px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.nav-logo img {
    height: 130px;
    width: auto;
    display: block;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.6);
    padding: 8px 18px;
    background: rgba(10, 22, 40, 0.55);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.nav-logo:hover img {
    border-color: var(--gold);
    background: rgba(10, 22, 40, 0.75);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

.nav.scrolled .nav-logo img {
    height: 105px;
    padding: 6px 14px;
    background: transparent;
    border-color: rgba(201, 169, 97, 0.4);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links > li > a {
    white-space: nowrap;
}

.nav-links a {
    color: var(--ivory);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    position: relative;
    padding: 8px 0;
    transition: color 0.35s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

.nav-links a.active::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy-900) !important;
    padding: 12px 26px !important;
    border-radius: 2px;
    letter-spacing: 0.12em !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--gold-light);
    color: var(--navy-900) !important;
}

/* ---- Language switcher ---- */
.nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    padding-left: 20px;
    border-left: 1px solid rgba(201, 169, 97, 0.25);
    list-style: none;
}

.nav-lang li {
    display: inline-block;
}

.nav-lang a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding: 4px 6px !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    color: rgba(245, 239, 226, 0.5) !important;
    text-transform: uppercase;
    transition: color 0.35s ease;
    border: none;
}

.nav-lang a::before,
.nav-lang a::after {
    display: none !important;
}

.nav-lang a:hover {
    color: var(--gold) !important;
}

.nav-lang a.active {
    color: var(--gold) !important;
    position: relative;
}

.nav-lang a.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 1px;
    background: var(--gold);
}

@media (max-width: 900px) {
    .nav-lang {
        margin-left: 0;
        padding-left: 0;
        padding-top: 20px;
        margin-top: 8px;
        border-left: none;
        border-top: 1px solid rgba(201, 169, 97, 0.15);
        width: 100%;
        gap: 16px;
        justify-content: center;
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ivory);
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ivory);
    margin: 5px 0;
    transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-900);
    padding: 140px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(29, 62, 100, 0.6) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent 0 60px, rgba(201, 169, 97, 0.02) 60px 61px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    color: var(--ivory);
}

.hero-text h1 {
    margin: 18px 0 24px;
    color: var(--white);
}

.hero-text h1 .accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(245, 239, 226, 0.85);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 38px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    white-space: nowrap;
}

/* Shine effect — a subtle sheen crossing the button on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    pointer-events: none;
}

.btn:hover::before {
    left: 140%;
}

.btn > * {
    position: relative;
    z-index: 1;
}

/* --- Primary (oro) --- */
.btn-primary {
    background: var(--gold);
    color: var(--navy-900);
    border-color: var(--gold);
    box-shadow: 0 4px 14px rgba(201, 169, 97, 0.25);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(201, 169, 97, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201, 169, 97, 0.35);
}

/* --- Outline (chiaro su navy) --- */
.btn-outline {
    background: transparent;
    color: var(--ivory);
    border-color: rgba(245, 239, 226, 0.35);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* --- Dark (navy) --- */
.btn-dark {
    background: var(--navy-900);
    color: var(--ivory);
    border-color: var(--navy-900);
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.25);
}

.btn-dark:hover {
    background: var(--navy-700);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(10, 22, 40, 0.4);
}

/* --- Arrow icon --- */
.btn .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 12px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.05em;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.btn:hover .arrow {
    transform: translateX(6px);
}

/* Focus ring for accessibility */
.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
}

.hero-image-frame {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-soft);
    transform: rotate(-3deg);
    z-index: 1;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid var(--gold);
    transform: translate(16px, 16px);
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    box-shadow: var(--shadow-strong);
}

.hero-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 3;
    background: var(--navy-900);
    border: 1px solid var(--gold);
    color: var(--ivory);
    padding: 24px 30px;
    text-align: center;
    font-family: var(--font-serif);
    box-shadow: var(--shadow-strong);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(201, 169, 97, 0.25);
    pointer-events: none;
}

.hero-badge::after {
    content: '✦';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-900);
    color: var(--gold);
    padding: 0 8px;
    font-size: 0.8rem;
    line-height: 1;
}

.hero-badge:hover {
    transform: rotate(-2deg) scale(1.03);
}

.hero-badge .number {
    display: block;
    font-size: 2.6rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    font-style: italic;
}

.hero-badge .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-top: 10px;
    color: var(--ivory);
    font-family: var(--font-sans);
    font-weight: 500;
}

/* Marquee */
.marquee {
    background: var(--navy-900);
    color: var(--ivory);
    padding: 26px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 97, 0.25);
    border-bottom: 1px solid rgba(201, 169, 97, 0.25);
    position: relative;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy-900) 0%, transparent 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--navy-900) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 34s linear infinite;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(245, 239, 226, 0.9);
}

.marquee-track span {
    display: flex;
    align-items: center;
    gap: 60px;
    transition: color 0.35s ease;
}

.marquee-track span::after {
    content: '✦';
    color: var(--gold);
    font-style: normal;
    font-size: 0.85em;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ ABOUT SECTION ============ */
.about {
    background: var(--cream);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 4/5;
}

.about-visual .img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-strong);
}

.about-visual .img-overlay {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 60%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 8px solid var(--cream);
    box-shadow: var(--shadow-strong);
    z-index: 2;
}

.about-visual .decor-line {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: 0;
}

.about-text h2 {
    color: var(--navy-900);
    margin-bottom: 30px;
}

.about-text h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.about-stat {
    text-align: center;
}

.about-stat .num {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--navy-900);
    font-weight: 600;
    line-height: 1;
}

.about-stat .num em {
    color: var(--gold);
    font-style: italic;
}

.about-stat .lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============ FEATURES ============ */
.features {
    background: var(--navy-900);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.features .section-header h2 {
    color: var(--white);
}

.features .section-header h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.features .section-header p {
    color: rgba(245, 239, 226, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(245, 239, 226, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.15);
    padding: 54px 44px;
    text-align: left;
    transition: background-color 0.5s ease, border-color 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.feature-card:hover {
    background: rgba(245, 239, 226, 0.07);
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 68px;
    height: 68px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--gold);
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    position: relative;
    z-index: 1;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(201, 169, 97, 0.25);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.9);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--navy-900);
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 10px 24px rgba(201, 169, 97, 0.35);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    transform: scale(1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.feature-card p {
    color: rgba(245, 239, 226, 0.7);
    font-size: 0.96rem;
    line-height: 1.7;
}

.feature-num {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: rgba(201, 169, 97, 0.5);
    font-style: italic;
}

/* ============ COLLECTION ============ */
.collection {
    background: var(--cream);
}

.collection .section-header h2 {
    color: var(--navy-900);
}

.collection .section-header h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 20px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--navy-900);
}

.collection-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.collection-item:nth-child(2) { grid-column: span 2; }
.collection-item:nth-child(3) { grid-column: span 1; }
.collection-item:nth-child(4) { grid-column: span 1; }

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(10, 22, 40, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    padding: 34px;
    transition: background 0.5s ease;
}

.collection-overlay > div {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-overlay > div::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 40px;
    height: 1px;
    background: var(--gold);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-overlay h3 {
    color: var(--white);
    font-size: 1.55rem;
    margin-bottom: 4px;
}

.collection-overlay .cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.collection-item:hover .collection-overlay {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.35) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.collection-item:hover .collection-overlay > div {
    transform: translateY(-8px);
}

.collection-item:hover .collection-overlay > div::before {
    transform: scaleX(1);
}

/* Zoom border effect */
.collection-item::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201, 169, 97, 0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    pointer-events: none;
}

.collection-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ============ SERVICES ============ */
.services {
    background: var(--ivory);
    position: relative;
}

.services .section-header h2 {
    color: var(--navy-900);
}

.services .section-header h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 60px 50px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-left-color 0.4s ease;
    border-left: 3px solid transparent;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(201, 169, 97, 0.08) 50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.service-card:hover {
    border-left-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.service-card:hover::before {
    width: 90px;
    height: 90px;
}

.service-card .num {
    font-family: var(--font-serif);
    font-size: 0.82rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-style: italic;
}

.service-card h3 {
    color: var(--navy-900);
    margin-bottom: 20px;
    transition: color 0.35s ease;
}

.service-card:hover h3 {
    color: var(--gold-dark);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.service-card .link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy-900);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding-bottom: 6px;
    position: relative;
    transition: color 0.35s ease;
}

.service-card .link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background: currentColor;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card .link:hover {
    color: var(--gold);
}

.service-card .link:hover::after {
    width: 100%;
}

.service-card .link span {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card .link:hover span {
    transform: translateX(6px);
}

/* ============ TESTIMONIAL / QUOTE ============ */
.quote-section {
    background: var(--navy-900);
    color: var(--ivory);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 30rem;
    color: rgba(201, 169, 97, 0.07);
    line-height: 1;
}

.quote-content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-content blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: var(--ivory);
    margin-bottom: 36px;
}

.quote-content blockquote em {
    color: var(--gold);
}

.quote-attr {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
}

/* ============ CONTACT ============ */
.contact {
    background: var(--cream);
}

.contact .section-header h2 {
    color: var(--navy-900);
}

.contact .section-header h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
}

.contact-info {
    background: var(--navy-900);
    color: var(--ivory);
    padding: 60px 50px;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    pointer-events: none;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 14px;
}

.contact-info > p {
    color: rgba(245, 239, 226, 0.7);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    padding: 4px 0;
    transition: transform 0.35s ease;
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-item-icon {
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.contact-item-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item:hover .contact-item-icon {
    background: var(--gold);
    color: var(--navy-900);
    transform: rotate(-6deg);
}

.contact-item:hover .contact-item-icon::after {
    opacity: 1;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.contact-item:hover .contact-item-icon svg {
    transform: scale(1.1);
}

.contact-item .lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-item .val {
    color: var(--ivory);
    font-size: 0.98rem;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-hours {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.contact-hours h4 {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.88rem;
    color: rgba(245, 239, 226, 0.85);
    border-bottom: 1px dashed rgba(201, 169, 97, 0.12);
    position: relative;
    transition: color 0.3s ease;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li:hover {
    color: var(--gold);
}

.hours-list li span:last-child {
    color: var(--ivory);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.hours-list li.closed span:last-child {
    color: rgba(245, 239, 226, 0.5);
    font-style: italic;
}

.hours-list li.closed span:last-child::before {
    content: '●';
    color: #d16b6b;
    font-size: 0.5em;
    margin-right: 6px;
    vertical-align: middle;
}

/* Contact form */
.contact-form {
    background: var(--white);
    padding: 60px 50px;
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    color: var(--navy-900);
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 2px;
    border: none;
    border-bottom: 1px solid rgba(10, 22, 40, 0.15);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.35s ease, padding 0.35s ease;
    outline: none;
    position: relative;
}

.form-group {
    position: relative;
}

/* Animated underline effect on focus */
.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.form-group:focus-within::after {
    width: 100%;
}

.form-group:focus-within label {
    color: var(--gold);
}

.form-group label {
    transition: color 0.35s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(10, 22, 40, 0.3);
    font-style: italic;
}

.form-checkbox {
    position: relative;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(10, 22, 40, 0.3);
    background: var(--white);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-checkbox input[type="checkbox"]:hover {
    border-color: var(--gold);
}

.form-checkbox input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid var(--navy-900);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-checkbox a {
    color: var(--navy-900);
    border-bottom: 1px solid var(--gold);
}

.form-success {
    display: none;
    background: rgba(201, 169, 97, 0.1);
    color: var(--navy-900);
    padding: 16px;
    border-left: 3px solid var(--gold);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

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

/* ============ FOOTER ============ */
.footer {
    background: var(--navy-900);
    color: var(--ivory);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand img {
    height: 120px;
    width: auto;
    display: block;
    margin-bottom: 28px;
    border: 1px solid rgba(201, 169, 97, 0.4);
    padding: 8px 14px;
    background: rgba(10, 22, 40, 0.4);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.footer-brand p {
    color: rgba(245, 239, 226, 0.65);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(245, 239, 226, 0.75);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact-line {
    color: rgba(245, 239, 226, 0.75);
    font-size: 0.92rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.18);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(245, 239, 226, 0.5);
}

.footer-bottom a {
    color: rgba(245, 239, 226, 0.7);
    margin-left: 18px;
}

.footer-bottom a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 97, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 239, 226, 0.75);
    margin-left: 0 !important;
    transition: color 0.35s ease, border-color 0.35s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.social-links a:hover {
    color: var(--navy-900);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.social-links a:hover::before {
    transform: translateY(0);
}

.social-links svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s ease;
}

.social-links a:hover svg {
    transform: scale(1.15);
}

/* Footer nav hover with subtle bullet */
.footer-col ul li {
    position: relative;
}

.footer-col a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: color 0.3s ease, gap 0.35s ease;
}

.footer-col a::before {
    content: '›';
    color: var(--gold);
    opacity: 0;
    width: 0;
    transition: opacity 0.35s ease, width 0.35s ease;
    overflow: hidden;
    font-size: 1.05rem;
    line-height: 1;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 0;
    gap: 8px;
}

.footer-col a:hover::before {
    opacity: 1;
    width: 12px;
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============ PRIVACY PAGE ============ */
.page-hero {
    background: var(--navy-900);
    color: var(--ivory);
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(201, 169, 97, 0.12) 0%, transparent 60%);
}

.page-hero h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero p {
    text-align: center;
    color: rgba(245, 239, 226, 0.7);
    max-width: 640px;
    margin: 20px auto 0;
    position: relative;
    z-index: 1;
}

.privacy-content {
    background: var(--cream);
    padding: 80px 0 110px;
}

.privacy-wrap {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    padding: 70px 70px;
    box-shadow: var(--shadow-soft);
}

.privacy-wrap h2 {
    color: var(--navy-900);
    font-size: 1.7rem;
    margin: 36px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-soft);
}

.privacy-wrap h2:first-of-type {
    margin-top: 0;
}

.privacy-wrap h3 {
    color: var(--navy-900);
    font-size: 1.2rem;
    margin: 24px 0 12px;
}

.privacy-wrap p,
.privacy-wrap li {
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 0.96rem;
}

.privacy-wrap ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.privacy-wrap strong {
    color: var(--navy-900);
}

/* ============================================================
   ============      PAGINE INTERNE (multi-page)     ===========
   ============================================================ */

/* ---------- Page Hero (intestazione pagine interne) ---------- */
.page-hero {
    background: var(--navy-900);
    color: var(--ivory);
    padding: 200px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(29, 62, 100, 0.5) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent 0 60px, rgba(201, 169, 97, 0.025) 60px 61px);
}

.page-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin: 18px 0 18px;
}

.page-hero h1 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.page-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(245, 239, 226, 0.78);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(245, 239, 226, 0.5);
}

.breadcrumb a {
    color: rgba(245, 239, 226, 0.7);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* ---------- Sezione "About" estesa per /about ---------- */
.about-page-intro {
    background: var(--cream);
}

.about-page-intro .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
}

/* Timeline */
.timeline-section {
    background: var(--ivory);
}

.timeline {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding: 0 50px;
}

.timeline-item:nth-child(odd) {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 14px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border: 3px solid var(--ivory);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--gold), 0 0 0 8px rgba(201, 169, 97, 0.08);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
    z-index: 1;
}

.timeline-item:hover::before {
    box-shadow: 0 0 0 1px var(--gold), 0 0 0 12px rgba(201, 169, 97, 0.15);
    transform: scale(1.1);
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 22px;
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.timeline-item:nth-child(odd)::after {
    right: 20px;
}

.timeline-item:nth-child(even)::after {
    left: 20px;
}

.timeline-item:nth-child(odd)::before {
    right: -8px;
}

.timeline-item:nth-child(even)::before {
    left: -8px;
}

.timeline-year {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold);
    font-style: italic;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.timeline-item h3 {
    color: var(--navy-900);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.7;
}

/* Values grid */
.values-section {
    background: var(--cream);
}

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

.value-card {
    background: var(--white);
    padding: 52px 42px;
    text-align: left;
    border-top: 3px solid var(--gold);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.value-card:hover::after {
    width: 100%;
}

.value-card:hover .value-num {
    color: var(--gold-dark);
    transform: scale(1.05) translateX(4px);
}

.value-num {
    transition: color 0.4s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: left center;
}

.value-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    font-style: italic;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.85;
}

.value-card h3 {
    color: var(--navy-900);
    font-size: 1.3rem;
    margin-bottom: 14px;
}

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

/* ---------- Collezione ---------- */
.catalog-filters {
    display: inline-flex;
    justify-content: center;
    gap: 6px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
    padding: 8px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
}

.catalog-filters-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--text-muted);
    padding: 14px 26px;
    cursor: pointer;
    position: relative;
    transition: color 0.4s ease, background-color 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy-900);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.filter-btn > * {
    position: relative;
    z-index: 1;
}

.filter-btn span {
    display: block;
    position: relative;
    z-index: 1;
}

.filter-btn:hover:not(.active) {
    color: var(--navy-900);
    background: rgba(201, 169, 97, 0.08);
}

.filter-btn.active {
    color: var(--gold);
    background: var(--navy-900);
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    z-index: 2;
}

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

.catalog-card {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid transparent;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(201, 169, 97, 0.25);
}

.catalog-card-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ivory);
}

.catalog-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.catalog-card:hover .catalog-card-img::before {
    opacity: 1;
}

.catalog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.catalog-card-quickview {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    color: var(--navy-900);
    padding: 12px 22px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.catalog-card:hover .catalog-card-quickview {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.catalog-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--navy-900);
    color: var(--gold);
    padding: 6px 14px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 2;
}

.catalog-card-body {
    padding: 30px 30px 34px;
}

.catalog-card-cat {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 10px;
}

.catalog-card-body h3 {
    color: var(--navy-900);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.catalog-card-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.catalog-card-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
    font-size: 0.82rem;
    color: var(--navy-900);
    font-weight: 500;
}

.catalog-card-meta span:last-child {
    color: var(--gold);
}

/* ---------- Servizi page ---------- */
.services-intro {
    background: var(--cream);
}

.services-detail {
    background: var(--ivory);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse > * {
    direction: ltr;
}

.service-row-visual {
    aspect-ratio: 4/5;
    position: relative;
}

.service-row-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-strong);
}

.service-row-visual .frame {
    position: absolute;
    inset: -20px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.service-row-content .eyebrow {
    margin-bottom: 16px;
}

.service-row-content h2 {
    color: var(--navy-900);
    margin-bottom: 24px;
}

.service-row-content h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.service-row-content p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1rem;
}

.service-feature-list {
    list-style: none;
    margin: 28px 0;
}

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-dark);
    font-size: 0.96rem;
}

.service-feature-list li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ---------- B2B page ---------- */
.b2b-stats {
    background: var(--navy-900);
    color: var(--ivory);
    padding: 80px 0;
}

.b2b-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.b2b-stat .num {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    font-style: italic;
}

.b2b-stat .lbl {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(245, 239, 226, 0.7);
    margin-top: 14px;
}

.process-section {
    background: var(--cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 36px;
    right: -22px;
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.process-step:last-child::after {
    display: none;
}

.process-step .step-num {
    width: 78px;
    height: 78px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--gold);
    font-style: italic;
    background: var(--white);
    position: relative;
    z-index: 1;
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.process-step .step-num::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: scale(0.9);
}

.process-step:hover .step-num {
    background: var(--gold);
    color: var(--navy-900);
    transform: translateY(-4px) rotate(-6deg);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.35);
}

.process-step:hover .step-num::before {
    opacity: 1;
    transform: scale(1);
}

.process-step h4 {
    color: var(--navy-900);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---------- Contatti page ---------- */
.contact-page .contact-grid {
    grid-template-columns: 1fr 1.4fr;
}

.map-section {
    background: var(--ivory);
    padding: 0;
}

.map-wrap {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    background: var(--navy-900);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.4) contrast(0.95);
}

.map-overlay-card {
    position: absolute;
    top: 40px;
    left: 40px;
    background: var(--navy-900);
    color: var(--ivory);
    padding: 30px 36px;
    max-width: 320px;
    box-shadow: var(--shadow-strong);
    border-left: 3px solid var(--gold);
    z-index: 2;
}

.map-overlay-card h4 {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 14px;
    font-family: var(--font-sans);
}

.map-overlay-card p {
    color: var(--ivory);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    background: var(--cream);
}

.faq-wrap {
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 14px;
    box-shadow: var(--shadow-soft);
    border-left: 3px solid transparent;
    transition: border-left-color 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.03), transparent);
    transition: height 0.5s ease;
    pointer-events: none;
}

.faq-item.open {
    border-left-color: var(--gold);
    transform: translateX(4px);
    box-shadow: var(--shadow-strong);
}

.faq-item.open::before {
    height: 100%;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 34px;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy-900);
    transition: color 0.35s ease;
    position: relative;
    z-index: 1;
    gap: 20px;
}

.faq-question > span {
    flex: 1;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    background: var(--gold);
    color: var(--navy-900);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    color: var(--text-muted);
    padding: 0 34px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 34px 26px;
}

.faq-answer p {
    line-height: 1.7;
    font-size: 0.96rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: var(--ivory);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
    content: '✦';
    position: absolute;
    color: rgba(201, 169, 97, 0.15);
    font-size: 8rem;
    font-family: var(--font-serif);
}

.cta-banner::before {
    top: 20px;
    left: 10%;
}

.cta-banner::after {
    bottom: 20px;
    right: 10%;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.cta-banner h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 38px;
    color: rgba(245, 239, 226, 0.8);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* ============================================
   ============        BLOG        =============
   ============================================ */

/* ---------- Blog Index ---------- */
.blog-index {
    background: var(--cream);
    padding: 100px 0;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.blog-featured-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ivory);
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-featured:hover .blog-featured-img img {
    transform: scale(1.05);
}

.blog-featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--navy-900);
    color: var(--gold);
    padding: 8px 18px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 600;
    z-index: 2;
}

.blog-featured-body {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-body .meta {
    display: flex;
    gap: 14px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.blog-featured-body .meta .sep {
    color: rgba(201, 169, 97, 0.5);
    font-size: 0.6rem;
}

.blog-featured-body h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    color: var(--navy-900);
    margin-bottom: 18px;
    line-height: 1.25;
}

.blog-featured-body h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.blog-featured-body h2 a {
    color: inherit;
    transition: color 0.3s ease;
}

.blog-featured-body h2 a:hover {
    color: var(--gold);
}

.blog-featured-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.blog-featured-body .read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy-900);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding-bottom: 6px;
    position: relative;
    align-self: flex-start;
    transition: color 0.35s ease;
}

.blog-featured-body .read-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background: currentColor;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-featured-body .read-more:hover {
    color: var(--gold);
}

.blog-featured-body .read-more:hover::after {
    width: 100%;
}

.blog-featured-body .read-more span {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.blog-featured-body .read-more:hover span {
    transform: translateX(6px);
}

/* Blog cards grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.blog-card {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(201, 169, 97, 0.2);
}

.blog-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--ivory);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.blog-card-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    color: var(--gold);
    padding: 6px 14px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    z-index: 2;
    font-weight: 600;
}

.blog-card-body {
    padding: 30px 30px 34px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-body .meta {
    display: flex;
    gap: 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.blog-card-body .meta .sep {
    color: rgba(90, 90, 90, 0.4);
    font-size: 0.55rem;
}

.blog-card-body h3 {
    color: var(--navy-900);
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
    flex: 0 0 auto;
}

.blog-card-body h3 a {
    color: inherit;
}

.blog-card-body h3 a:hover {
    color: var(--gold);
}

.blog-card-body p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-body .read-more-small {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.35s ease;
}

.blog-card-body .read-more-small:hover {
    gap: 14px;
}

/* Blog filters */
.blog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 auto 60px;
    padding: 8px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    max-width: fit-content;
}

/* ---------- Blog Article Page ---------- */
.article-page {
    background: var(--cream);
    padding: 60px 0 100px;
}

.article-hero {
    background: var(--navy-900);
    color: var(--ivory);
    padding: 170px 0 90px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.18) 0%, transparent 55%),
        linear-gradient(180deg, var(--navy-900) 0%, var(--navy-700) 100%);
}

.article-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.article-hero .category {
    display: inline-block;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--gold);
    padding: 8px 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    margin-bottom: 24px;
}

.article-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.article-hero h1 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.article-hero .subtitle {
    color: rgba(245, 239, 226, 0.85);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 34px;
    line-height: 1.65;
    font-style: italic;
    font-family: var(--font-serif);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(245, 239, 226, 0.7);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    flex-wrap: wrap;
}

.article-meta .sep {
    color: var(--gold);
    font-size: 0.6rem;
}

/* Article content */
.article-wrap {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    padding: 80px 90px;
    box-shadow: var(--shadow-soft);
}

.article-featured-img {
    margin: -80px -90px 60px;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--ivory);
}

.article-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-lead {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--navy-900);
    padding-left: 24px;
    border-left: 3px solid var(--gold);
    margin-bottom: 40px;
    font-weight: 400;
}

.article-wrap h2 {
    color: var(--navy-900);
    font-size: 1.8rem;
    margin: 44px 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}

.article-wrap h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.article-wrap h3 {
    color: var(--navy-900);
    font-size: 1.35rem;
    margin: 32px 0 14px;
}

.article-wrap p {
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.article-wrap p:first-of-type::first-letter {
    /* subtle drop cap */
}

.article-wrap ul,
.article-wrap ol {
    padding-left: 28px;
    margin-bottom: 22px;
}

.article-wrap li {
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 1rem;
}

.article-wrap strong {
    color: var(--navy-900);
    font-weight: 600;
}

.article-wrap blockquote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--navy-900);
    padding: 30px 40px;
    margin: 40px 0;
    background: var(--ivory);
    border-left: 4px solid var(--gold);
    position: relative;
}

.article-wrap blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
    font-family: var(--font-serif);
}

.article-wrap blockquote p {
    margin-bottom: 8px;
}

.article-wrap blockquote cite {
    display: block;
    margin-top: 10px;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
}

.article-wrap img {
    margin: 30px 0;
    width: 100%;
    box-shadow: var(--shadow-soft);
}

/* Article footer */
.article-footer {
    max-width: 780px;
    margin: 60px auto 0;
    padding: 40px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.article-tag {
    padding: 6px 14px;
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.article-tag:hover {
    background: var(--gold);
    color: var(--navy-900);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

.article-share-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(10, 22, 40, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.article-share-btn:hover {
    background: var(--navy-900);
    color: var(--gold);
    border-color: var(--navy-900);
}

.article-share-btn svg {
    width: 14px;
    height: 14px;
}

/* Related articles */
.related-articles {
    background: var(--ivory);
    padding: 90px 0;
}

.related-articles .section-header {
    margin-bottom: 60px;
}

/* Author box */
.article-author {
    max-width: 780px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 34px;
    background: var(--navy-900);
    color: var(--ivory);
    position: relative;
}

.article-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.article-author-avatar {
    width: 64px;
    height: 64px;
    background: var(--gold);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    flex-shrink: 0;
    border-radius: 50%;
}

.article-author-info h4 {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: 6px;
    font-family: var(--font-sans);
    font-weight: 500;
}

.article-author-info .name {
    color: var(--white);
    font-size: 1.1rem;
    font-family: var(--font-serif);
    margin-bottom: 4px;
}

.article-author-info .bio {
    color: rgba(245, 239, 226, 0.7);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Responsive blog */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-featured {
        grid-template-columns: 1fr;
    }
    .blog-featured-body {
        padding: 40px 34px;
    }
}

@media (max-width: 900px) {
    .article-wrap {
        padding: 60px 40px;
    }
    .article-featured-img {
        margin: -60px -40px 40px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .article-wrap {
        padding: 44px 24px;
    }
    .article-featured-img {
        margin: -44px -24px 32px;
    }
    .article-wrap h2 {
        font-size: 1.5rem;
    }
    .article-wrap blockquote {
        padding: 24px 22px;
        font-size: 1.2rem;
    }
    .article-hero {
        padding: 130px 0 60px;
    }
    .blog-featured-body {
        padding: 34px 24px;
    }
    .article-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .article-tags {
        justify-content: center;
    }
    .article-share {
        justify-content: center;
    }
    .article-author {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }
}

/* ---------- Scroll to top ---------- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--navy-900);
    color: var(--gold);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--navy-900);
    transform: translateY(-4px);
}

.scroll-top svg {
    width: 18px;
    height: 18px;
    transition: transform 0.35s ease;
}

.scroll-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--navy-900);
    color: var(--ivory);
    padding: 26px 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 4px;
    z-index: 9999;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    display: flex;
    animation: cookieIn 0.5s ease;
}

@keyframes cookieIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-banner-text {
    flex: 1;
    min-width: 240px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(245, 239, 226, 0.85);
}

.cookie-banner-text strong {
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border: 1px solid rgba(245, 239, 226, 0.35);
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cookie-btn.primary {
    background: var(--gold);
    color: var(--navy-900);
    border-color: var(--gold);
}

.cookie-btn.primary:hover {
    background: var(--gold-light);
    color: var(--navy-900);
}

/* ---------- Newsletter ---------- */
.newsletter-strip {
    background: var(--ivory);
    padding: 70px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h3 {
    color: var(--navy-900);
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.newsletter-text h3 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.newsletter-text p {
    color: var(--text-muted);
    font-size: 0.96rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(10, 22, 40, 0.15);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

/* ---------- 404 / Not Found ---------- */
.notfound {
    min-height: 100vh;
    background: var(--navy-900);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.notfound::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
}

.notfound-content {
    position: relative;
    z-index: 1;
    max-width: 540px;
}

.notfound-code {
    font-family: var(--font-serif);
    font-size: 9rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}

.notfound h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.4rem;
}

.notfound p {
    color: rgba(245, 239, 226, 0.7);
    margin-bottom: 36px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 260px);
    }

    .collection-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .collection-item:nth-child(2) { grid-column: span 2; grid-row: span 1;}
    .collection-item:nth-child(3),
    .collection-item:nth-child(4) { grid-column: span 1; grid-row: span 1;}

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

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

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 50px;
    }

    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step::after {
        display: none;
    }
}

/* ============================================
   ============   MOBILE & TABLET   ===========
   ============================================ */

/* ---------- Tablet & medium screens (max 900) ---------- */
@media (max-width: 900px) {
    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .nav {
        padding: 16px 0;
    }

    .nav.scrolled {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-logo img {
        height: 105px;
        padding: 6px 12px;
    }

    .nav.scrolled .nav-logo img {
        height: 90px;
    }

    /* Hamburger menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 360px;
        height: 100vh;
        background: var(--navy-900);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 36px 40px;
        transition: right 0.4s ease;
        gap: 26px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 0.95rem;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 12px;
        border: 1px solid var(--gold);
        text-align: center;
        padding: 14px 24px !important;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text .eyebrow {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-text .eyebrow::before {
        position: relative;
        display: inline-block;
        margin-right: 14px;
        vertical-align: middle;
        left: auto;
        top: auto;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        max-width: 420px;
        margin: 0 auto;
        aspect-ratio: 4/5;
    }

    .hero-badge {
        bottom: -16px;
        right: 0;
        padding: 14px 20px;
    }

    .hero-badge .number {
        font-size: 1.9rem;
    }

    .hero-badge .label {
        font-size: 0.65rem;
        letter-spacing: 0.18em;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .about-visual {
        max-width: 460px;
        margin: 0 auto;
    }

    .about-visual .img-overlay {
        bottom: -30px;
        right: 0;
        width: 50%;
        border-width: 6px;
    }

    .about-visual .decor-line {
        top: -16px;
        left: -16px;
    }

    /* Stats */
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .about-stat .num {
        font-size: 1.9rem;
    }

    /* Features / Services */
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .service-card {
        padding: 40px 30px;
    }

    /* Collection grid */
    .collection-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 260px);
        gap: 16px;
    }

    .collection-item:nth-child(1),
    .collection-item:nth-child(2),
    .collection-item:nth-child(3),
    .collection-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Catalog */
    .catalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .catalog-card-body {
        padding: 22px 22px 26px;
    }

    .catalog-card-body h3 {
        font-size: 1.2rem;
    }

    .catalog-filters {
        gap: 16px;
        margin-bottom: 40px;
    }

    .filter-btn {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .value-card {
        padding: 40px 30px;
    }

    /* Service row */
    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
        margin-bottom: 70px;
    }

    .service-row-visual {
        max-width: 440px;
        margin: 0 auto;
    }

    /* B2B */
    .b2b-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .b2b-stat .num {
        font-size: 2.5rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-step::after {
        display: none;
    }

    /* Timeline */
    .timeline::before {
        left: 16px;
    }

    .timeline-item {
        width: 100%;
        padding: 0 0 0 50px;
        margin-bottom: 40px;
        text-align: left !important;
        margin-left: 0 !important;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
        margin-left: 0;
    }

    .timeline-item::before {
        left: 8px !important;
        right: auto !important;
    }

    /* Contact */
    .contact-grid,
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        padding: 44px 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Map */
    .map-wrap {
        height: 360px;
    }

    .map-overlay-card {
        position: relative;
        top: auto;
        left: auto;
        margin: -50px 20px 0;
        max-width: none;
        padding: 24px 26px;
    }

    /* Quote */
    .quote-section {
        padding: 80px 0;
    }

    .quote-section::before {
        font-size: 16rem;
        top: -40px;
    }

    /* CTA banner */
    .cta-banner {
        padding: 70px 0;
    }

    .cta-banner::before,
    .cta-banner::after {
        font-size: 5rem;
    }

    /* Newsletter */
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    /* Footer */
    .footer {
        padding: 70px 0 0;
    }

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

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand img {
        height: 110px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 24px 0;
    }

    .footer-bottom a {
        margin: 0 8px;
    }

    /* Privacy */
    .privacy-wrap {
        padding: 48px 32px;
    }

    .privacy-wrap h2 {
        font-size: 1.45rem;
    }

    /* Page hero */
    .page-hero {
        padding: 150px 0 70px;
    }

    /* Cookie */
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 20px 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner-actions {
        width: 100%;
        display: flex;
    }

    .cookie-btn {
        flex: 1;
        padding: 12px 18px;
    }

    /* 404 */
    .notfound-code {
        font-size: 6rem;
    }
}

/* ---------- Small mobile (max 600) ---------- */
@media (max-width: 600px) {
    .container,
    .nav-container {
        padding: 0 18px;
    }

    section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .nav-logo img {
        height: 82px;
        padding: 5px 10px;
    }

    .nav.scrolled .nav-logo img {
        height: 72px;
    }

    .hero {
        padding: 110px 0 70px;
    }

    .hero-text h1 {
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-visual {
        max-width: 320px;
    }

    .hero-badge {
        padding: 12px 18px;
        bottom: -14px;
    }

    .hero-badge .number {
        font-size: 1.7rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .btn {
        padding: 14px 26px;
        font-size: 0.78rem;
    }

    /* About stats */
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .about-stat:last-child {
        grid-column: span 2;
        padding-top: 14px;
        border-top: 1px solid var(--border-soft);
    }

    /* Catalog */
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .catalog-filters {
        gap: 12px;
    }

    .filter-btn {
        font-size: 0.7rem;
        padding: 8px 0;
    }

    /* Quote */
    .quote-section {
        padding: 70px 0;
    }

    .quote-content blockquote {
        font-size: 1.35rem;
    }

    .quote-section::before {
        font-size: 12rem;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    /* B2B stats */
    .b2b-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .b2b-stat .num {
        font-size: 2.2rem;
    }

    .b2b-stat .lbl {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    /* Forms */
    .contact-info,
    .contact-form {
        padding: 36px 24px;
    }

    .form-group label {
        font-size: 0.68rem;
        letter-spacing: 0.18em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.92rem;
    }

    .form-checkbox {
        font-size: 0.82rem;
    }

    /* Map */
    .map-wrap {
        height: 320px;
    }

    .map-overlay-card {
        margin: -40px 14px 0;
        padding: 20px 22px;
    }

    /* FAQ */
    .faq-question {
        padding: 22px 24px;
        font-size: 1.02rem;
        gap: 14px;
    }

    .faq-item.open .faq-answer {
        padding: 0 24px 22px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* Privacy */
    .privacy-wrap {
        padding: 36px 22px;
    }

    .privacy-wrap h2 {
        font-size: 1.3rem;
        margin-top: 28px;
    }

    .privacy-wrap p,
    .privacy-wrap li {
        font-size: 0.92rem;
    }

    .privacy-wrap table {
        font-size: 0.78rem !important;
    }

    .privacy-wrap table th,
    .privacy-wrap table td {
        padding: 8px 6px !important;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 50px;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-brand img {
        height: 110px;
    }

    .footer-col h4 {
        text-align: center;
    }

    .footer-col ul {
        text-align: center;
    }

    .footer-col a:hover {
        padding-left: 0;
    }

    .footer-contact-line {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Marquee */
    .marquee-track {
        gap: 40px;
        font-size: 0.95rem;
    }

    .marquee-track span {
        gap: 40px;
    }

    /* Page hero */
    .page-hero {
        padding: 130px 0 60px;
    }

    .breadcrumb {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }

    /* CTA */
    .cta-banner {
        padding: 60px 0;
    }

    .cta-banner::before,
    .cta-banner::after {
        display: none;
    }

    /* 404 */
    .notfound-code {
        font-size: 5rem;
    }

    .notfound h1 {
        font-size: 1.8rem;
    }

    /* Eyebrow */
    .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.28em;
    }

    .eyebrow.centered {
        padding: 0 26px;
    }

    .eyebrow.centered::before,
    .eyebrow.centered::after {
        width: 16px;
    }

    /* Cookie */
    .cookie-banner-text {
        font-size: 0.82rem;
    }
}

/* ---------- Extra small (max 380) ---------- */
@media (max-width: 380px) {
    .container,
    .nav-container {
        padding: 0 14px;
    }

    .nav-logo img {
        height: 68px;
    }

    .hero-text h1 {
        font-size: 1.85rem;
    }

    .hero-visual {
        max-width: 260px;
    }

    .hero-badge {
        right: -6px;
        padding: 10px 14px;
    }

    .hero-badge .number {
        font-size: 1.4rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stat:last-child {
        grid-column: span 1;
        border-top: none;
        padding-top: 0;
    }

    .about-stat {
        padding: 14px 0;
        border-bottom: 1px solid var(--border-soft);
    }

    .about-stat:last-child {
        border-bottom: none;
    }

    .feature-num {
        position: static;
        margin-bottom: 8px;
        display: inline-block;
    }
}

/* Avoid horizontal overflow safety net */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ---------- Skip-to-content link (a11y) ---------- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--gold);
    color: var(--navy-900);
    padding: 12px 22px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 10000;
    text-decoration: none;
    border: 2px solid var(--navy-900);
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 20px;
    outline: 3px solid var(--navy-900);
    outline-offset: 2px;
}

/* Better focus visible for keyboard users */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Screen-reader only class */
.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;
}
